diff --git a/.github/workflows/abi-compatibility.yml b/.github/workflows/abi-compatibility.yml index f675b88f3..262823efb 100644 --- a/.github/workflows/abi-compatibility.yml +++ b/.github/workflows/abi-compatibility.yml @@ -26,7 +26,7 @@ on: [push, pull_request] jobs: job: name: abi-check - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 38 strategy: fail-fast: false @@ -40,16 +40,14 @@ jobs: - name: 'Configure Dependencies - Ubuntu' run: | sudo apt-get update - sudo apt-get install -y libapr1-dev libaprutil1-dev elfutils vtable-dumper universal-ctags - # note: sqlext.h exists on github VM, purge for now as we don't link correctly... - sudo apt-get purge unixodbc-dev + sudo apt-get install -y g++-11 libapr1-dev libaprutil1-dev elfutils vtable-dumper universal-ctags - name: 'run CMake' run: | cd main mkdir build cd build - cmake -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc -DLOG4CXX_ABI_CHECK=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Og" -DBUILD_TESTING=off .. + cmake -DCMAKE_CXX_COMPILER=g++-11 -DLOG4CXX_ABI_CHECK=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-g -Og -fno-eliminate-unused-debug-types" -DBUILD_TESTING=off .. cmake --build . - name: 'copy compat report' diff --git a/.github/workflows/log4cxx-cpp11.yml b/.github/workflows/log4cxx-cpp11.yml index adfc3226a..401cf4dbc 100644 --- a/.github/workflows/log4cxx-cpp11.yml +++ b/.github/workflows/log4cxx-cpp11.yml @@ -19,7 +19,7 @@ on: [push, pull_request] jobs: job: name: log4cxx-cpp11 - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 38 steps: - uses: actions/checkout@v4 @@ -30,7 +30,7 @@ jobs: - name: 'Configure Dependencies - Ubuntu' run: | sudo apt-get update - sudo apt-get install -y libapr1-dev libaprutil1-dev libboost-filesystem-dev libboost-thread-dev libesmtp-dev + sudo apt-get install -y libapr1-dev libaprutil1-dev libesmtp-dev - name: 'run cmake - *nix' run: | diff --git a/.github/workflows/log4cxx-ubuntu.yml b/.github/workflows/log4cxx-ubuntu.yml index fc71a323f..a07caadd6 100644 --- a/.github/workflows/log4cxx-ubuntu.yml +++ b/.github/workflows/log4cxx-ubuntu.yml @@ -24,10 +24,10 @@ jobs: strategy: fail-fast: false matrix: - name: [ubuntu20-gcc, ubuntu20-clang, ubuntu22-gcc, ubuntu22-clang] + name: [ubuntu22-gcc, ubuntu22-clang, ubuntu24-gcc, ubuntu24-clang] include: - - name: ubuntu20-gcc - os: ubuntu-20.04 + - name: ubuntu22-gcc + os: ubuntu-22.04 cxx: g++ fmt: OFF qt: ON @@ -38,8 +38,8 @@ jobs: exitevents: OFF fuzzers: OFF logchar: utf-8 - - name: ubuntu20-clang - os: ubuntu-20.04 + - name: ubuntu22-clang + os: ubuntu-22.04 cxx: clang++ fmt: ON qt: OFF @@ -50,8 +50,8 @@ jobs: exitevents: OFF fuzzers: ON logchar: utf-8 - - name: ubuntu22-gcc - os: ubuntu-22.04 + - name: ubuntu24-gcc + os: ubuntu-24.04 cxx: g++ fmt: OFF qt: ON @@ -62,8 +62,8 @@ jobs: exitevents: ON fuzzers: OFF logchar: utf-8 - - name: ubuntu22-clang - os: ubuntu-22.04 + - name: ubuntu24-clang + os: ubuntu-24.04 cxx: clang++ fmt: ON qt: OFF diff --git a/src/main/CMakeLists.txt b/src/main/CMakeLists.txt index 0fa790489..5134fe188 100644 --- a/src/main/CMakeLists.txt +++ b/src/main/CMakeLists.txt @@ -39,3 +39,11 @@ if(LOG4CXX_QT_SUPPORT) $ ) endif(LOG4CXX_QT_SUPPORT) + +option(LOG4CXX_ABI_CHECK "Check for ABI changes" OFF) +if(LOG4CXX_ABI_CHECK) + if(NOT "log4cxx" STREQUAL "${LOG4CXX_NS}") + message(FATAL_ERROR "ABI compatability can only be checked if LOG4CXX_NS=log4cxx, but LOG4CXX_NS=${LOG4CXX_NS}.") + endif() + add_subdirectory(abi-symbols) +endif(LOG4CXX_ABI_CHECK) diff --git a/src/main/abi-symbols/CMakeLists.txt b/src/main/abi-symbols/CMakeLists.txt new file mode 100644 index 000000000..73dad415b --- /dev/null +++ b/src/main/abi-symbols/CMakeLists.txt @@ -0,0 +1,54 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +message("Getting dependencies for ABI compatability check...") +# Get the latest version of abi-dumper and abi-compliance-checker +include(FetchContent) +FetchContent_Declare(abi-dumper + GIT_REPOSITORY https://github.com/lvc/abi-dumper.git + GIT_TAG 1.4 +) +FetchContent_GetProperties(abi-dumper) +if(NOT abi-dumper_POPULATED) + FetchContent_Populate(abi-dumper) +endif() + +FetchContent_Declare(abi-compliance-checker + GIT_REPOSITORY https://github.com/lvc/abi-compliance-checker.git + GIT_TAG f60ce442c33f1d5cda1cec7cfddee24af1777572 +) +FetchContent_GetProperties(abi-compliance-checker) +if(NOT abi-compliance-checker_POPULATED) + FetchContent_Populate(abi-compliance-checker) +endif() + +# The local script is patched to exclude register assignments to parameters +#set(abi-dumper-script ${abi-dumper_SOURCE_DIR}/abi-dumper.pl) +set(abi-dumper-script ${CMAKE_CURRENT_SOURCE_DIR}/abi-dumper.pl) +set(abi-compliance-script ${abi-compliance-checker_SOURCE_DIR}/abi-compliance-checker.pl) + +add_custom_target(dump-abi ALL + COMMAND perl ${abi-dumper-script} -public-headers public_header_files.txt -o new-abi.dump -skip-cxx -vnum ${log4cxx_VER} $ + DEPENDS log4cxx + COMMENT "Dumping ABI symbols" +) + +add_custom_target(compare-abi ALL + COMMAND perl ${abi-compliance-script} -skip-internal-symbols "\\d\\(fmt\\)" -skip-internal-types "\\(fmt\\)::" -l log4cxx -old ${CMAKE_CURRENT_SOURCE_DIR}/abi.dump -new new-abi.dump + DEPENDS dump-abi + COMMENT "Comparing ABI symbols" +) diff --git a/src/main/abi-symbols/abi-dumper.pl b/src/main/abi-symbols/abi-dumper.pl new file mode 100644 index 000000000..27ea058b0 --- /dev/null +++ b/src/main/abi-symbols/abi-dumper.pl @@ -0,0 +1,7027 @@ +#!/usr/bin/perl +########################################################################### +# ABI Dumper 1.3 +# Dump ABI of an ELF object containing DWARF debug info +# +# Copyright (C) 2013-2025 Andrey Ponomarenko's ABI Laboratory +# +# Written by Andrey Ponomarenko +# +# PLATFORMS +# ========= +# Linux +# +# REQUIREMENTS +# ============ +# Perl 5 (5.8 or newer) +# Elfutils (eu-readelf) +# GNU Binutils (objdump) +# Vtable-Dumper (1.1 or newer) +# Universal Ctags +# GCC C++ +# +# COMPATIBILITY +# ============= +# ABI Viewer >= 1.0 +# ABI Compliance Checker >= 2.2 +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301 USA +########################################################################### +use Getopt::Long; +Getopt::Long::Configure ("posix_default", "no_ignore_case", "permute"); +use File::Path qw(mkpath rmtree); +use File::Temp qw(tempdir); +use Cwd qw(abs_path cwd realpath); +use Storable qw(dclone); +use Data::Dumper; + +my $TOOL_VERSION = "1.4"; +my $ABI_DUMP_VERSION = "3.5"; +my $ORIG_DIR = cwd(); +my $TMP_DIR = tempdir(CLEANUP=>1); + +my $VTABLE_DUMPER = "vtable-dumper"; +my $VTABLE_DUMPER_VERSION = "1.0"; + +my $LOCALE = "LANG=C.UTF-8"; +my $EU_READELF = "eu-readelf"; +my $EU_READELF_L = $LOCALE." ".$EU_READELF; +my $OBJDUMP = "objdump"; +my $CTAGS = "ctags"; +my $EXUBERANT_CTAGS = 0; +my $GPP = "g++"; + +my ($Help, $ShowVersion, $DumpVersion, $OutputDump, $SortDump, $StdOut, +$TargetVersion, $ExtraInfo, $FullDump, $AllTypes, $AllSymbols, $BinOnly, +$SkipCxx, $Loud, $AddrToName, $DumpStatic, $Compare, $AltDebugInfoOpt, +$AddDirs, $VTDumperPath, $SymbolsListPath, $PublicHeadersPath, +$IgnoreTagsPath, @CtagsDef, $KernelExport, $UseTU, $ReimplementStd, +$IncludePreamble, $IncludePaths, $CacheHeaders, $MixedHeaders, $Debug, +$SearchDirDebuginfo, $KeepRegsAndOffsets, $Quiet, $IncludeDefines, +$AllUnits, $LambdaSupport, $LdLibraryPath, $ExtraDump); + +my $CmdName = getFilename($0); + +my %ERROR_CODE = ( + "Success"=>0, + "Error"=>2, + # System command is not found + "Not_Found"=>3, + # Cannot access input files + "Access_Error"=>4, + # Cannot find a module + "Module_Error"=>9, + # No debug-info + "No_DWARF"=>10, + # Invalid debug-info + "Invalid_DWARF"=>11, + # No exported symbols + "No_Exported"=>12 +); + +my $ShortUsage = "ABI Dumper $TOOL_VERSION EE +Dump ABI of an ELF object containing DWARF debug info +Copyright (C) 2025 Andrey Ponomarenko's ABI Laboratory +License: GNU LGPL 2.1 + +Usage: $CmdName [options] [object] +Example: + $CmdName libTest.so -o ABI.dump + $CmdName Module.ko.debug -o ABI.dump + +More info: $CmdName --help\n"; + +if($#ARGV==-1) +{ + printMsg("INFO", $ShortUsage); + exit(0); +} + +GetOptions("h|help!" => \$Help, + "v|version!" => \$ShowVersion, + "dumpversion!" => \$DumpVersion, +# general options + "o|output|dump-path=s" => \$OutputDump, + "sort!" => \$SortDump, + "stdout!" => \$StdOut, + "loud!" => \$Loud, + "vnum|lver|lv=s" => \$TargetVersion, + "extra-info=s" => \$ExtraInfo, + "bin-only!" => \$BinOnly, + "all-types!" => \$AllTypes, + "all-symbols!" => \$AllSymbols, + "symbols-list=s" => \$SymbolsListPath, + "skip-cxx!" => \$SkipCxx, + "all!" => \$FullDump, + "dump-static!" => \$DumpStatic, + "compare!" => \$Compare, + "alt=s" => \$AltDebugInfoOpt, + "dir!" => \$AddDirs, + "vt-dumper=s" => \$VTDumperPath, + "public-headers=s" => \$PublicHeadersPath, + "ignore-tags=s" => \$IgnoreTagsPath, + "ctags-def=s" => \@CtagsDef, + "mixed-headers!" => \$MixedHeaders, + "kernel-export!" => \$KernelExport, + "search-debuginfo=s" => \$SearchDirDebuginfo, + "keep-registers-and-offsets!" => \$KeepRegsAndOffsets, + "all-units!" => \$AllUnits, + "quiet!" => \$Quiet, + "debug!" => \$Debug, +# extra options + "use-tu-dump!" => \$UseTU, + "include-preamble=s" => \$IncludePreamble, + "include-paths=s" => \$IncludePaths, + "include-defines=s" => \$IncludeDefines, + "cache-headers=s" => \$CacheHeaders, + "lambda!" => \$LambdaSupport, + "ld-library-path=s" => \$LdLibraryPath, +# internal options + "addr2name!" => \$AddrToName, + "extra-dump!" => \$ExtraDump, +# obsolete + "reimplement-std!" => \$ReimplementStd +) or errMsg(); + +sub errMsg() +{ + printMsg("INFO", "\n".$ShortUsage); + exit($ERROR_CODE{"Error"}); +} + +my $HelpMessage=" +NAME: + ABI Dumper EE ($CmdName) + Dump ABI of an ELF object containing DWARF debug info + +DESCRIPTION: + ABI Dumper is a tool for dumping ABI information of an ELF object + containing DWARF debug info. + + The tool is intended to be used with ABI Viewer or ABICC tool for + tracking ABI changes of a C/C++ library or kernel module. + + This tool is free software: you can redistribute it and/or modify it + under the terms of the GNU LGPL 2.1. + +USAGE: + $CmdName [options] [object] + +EXAMPLES: + $CmdName libTest.so -o ABI.dump + $CmdName Module.ko.debug -o ABI.dump + +INFORMATION OPTIONS: + -h|-help + Print this help. + + -v|-version + Print version information. + + -dumpversion + Print the tool version ($TOOL_VERSION) and don't do anything else. + +GENERAL OPTIONS: + -o|-output PATH + Path to the output ABI dump file. + Default: ./ABI.dump + + -sort + Sort data in ABI dump. + + -stdout + Print ABI dump to stdout. + + -loud + Print all warnings. + + -vnum NUM + Set version of the library to NUM. + + -extra-info DIR + Dump extra analysis info to DIR. + + -bin-only + Do not dump information about inline functions, + pure virtual functions and non-exported global data. + + -all-types + Dump unused data types. + + -all-symbols + Dump symbols not exported by the object. + + -symbols-list PATH + Specify a file with a list of symbols that should be dumped. + + -skip-cxx + Do not dump stdc++ and gnu c++ symbols. + + -all + Equal to: -all-types -all-symbols. + + -dump-static + Dump static (local) symbols. + + -compare OLD.dump NEW.dump + Show added/removed symbols between two ABI dumps. + + -alt PATH + Path to the alternate debug info (Fedora). It is + detected automatically from gnu_debugaltlink section + of the input object if not specified. + + -dir + Show full paths of source files. + + -vt-dumper PATH + Path to the vtable-dumper executable if it is installed + to non-default location (not in PATH). + + -public-headers PATH + Path to directory with public header files or to file with + the list of header files. This option allows to filter out + private symbols from the ABI dump. + + -ignore-tags PATH + Path to ignore.tags file to help ctags tool to read + symbols in header files. + + -ctags-def DEF + Add -D DEF option to the ctags call. This option may be + specified multiple times. + + -reimplement-std + Do nothing. + + -mixed-headers + This option should be specified if you are using + -public-headers option and the names of public headers + intersect with the internal headers. + + -kernel-export + Dump symbols exported by the Linux kernel and modules, i.e. + symbols declared in the ksymtab section of the object and + system calls. + + -search-debuginfo DIR + Search for debug-info files referenced from gnu_debuglink + section of the object in DIR. + + -keep-registers-and-offsets + Dump used registers and stack offsets even if incompatible + build options detected. + + -all-units + Extract ABI info after reading all compilation units from + the debug info. This may require a lot of extra RAM memory. + By default all compilation units are processed separately. + + -quiet + Do not warn about incompatible build options. + + -debug + Enable debug messages. + +EXTRA OPTIONS: + -use-tu-dump + Use g++ -fdump-translation-unit instead of ctags to + list symbols in headers. This may be useful if all + functions are declared via macros in headers and + ctags can't recognize them. + + -include-preamble PATHS + Specify header files (separated by semicolon) that + should be included before others to compile without + errors. + + -include-paths DIRS + Specify include directories (separated by semicolon) + that should be passed to the compiler by -I option + in order to compile headers without errors. If this + option is not set then the tool will try to generate + include paths automatically. + + -cache-headers DIR + Cache headers analysis results to reuse later. + + -lambda + Enable support for lambda and checking of lexical + blocks. Define it if your C++ library API functions + use lambda expressions. + + -ld-library-path PATHS + Specify paths to add to LD_LIBRARY_PATH variable before + executing vtable-dumper (separated by colon). + + By default lexical blocks are not analyzed to + improve performance. +"; + +sub helpMsg() { + printMsg("INFO", $HelpMessage); +} + +my %Cache; + +# Input +my %DWARF_Info; +my @IDs; + +# Alternate +my @IDs_I; +my $AltDebugInfo = undef; +my $TooBig = 0; + +my $Compressed = undef; +my $Partial = undef; + +# Dump +my %TypeUnit; +my %Post_Change; + +# Output +my %TypeInfo; +my %SymbolInfo; + +# Other +my $TargetName = undef; +my %NestedNameSpaces; +my %HeadersInfo; +my %SourcesInfo; +my %SymVer; +my %LexicalId; + +# Reader (per compile unit) +my %TypeMember; +my %ArrayCount; +my %FuncParam; +my %TmplParam; +my %Inheritance; +my %NameSpace; +my %SpecElem; +my %OrigElem; +my %ClassMethods; + +# Reader +my %TypeSpec; +my %ClassChild; +my %SourceFile; +my %SourceFile_Alt; +my %DebugLoc; +my %TName_Tid; +my %TName_Tids; +my %RegName; + +my $STDCXX_TARGET = 0; +my $GLOBAL_ID = 0; +my %ANON_TYPE_WARN = (); + +my %Mangled_ID; +my %Checked_Spec; +my %SelectedSymbols; + +# Cleaning +my %MergedTypes; +my %LocalType; +my %UsedType; +my %DeletedAnon; +my %CheckedType; +my %DuplBaseType; + +# Language +my %TypeType = ( + "class_type"=>"Class", + "structure_type"=>"Struct", + "union_type"=>"Union", + "enumeration_type"=>"Enum", + "subroutine_type"=>"Func", + "array_type"=>"Array", + "base_type"=>"Intrinsic", + "atomic_type"=>"Intrinsic", + "unspecified_type"=>"Unspecified", + "const_type"=>"Const", + "pointer_type"=>"Pointer", + "reference_type"=>"Ref", + "rvalue_reference_type"=>"RvalueRef", + "volatile_type"=>"Volatile", + "restrict_type"=>"Restrict", + "typedef"=>"Typedef", + "ptr_to_member_type"=>"FieldPtr", + "string_type"=>"String" +); + +my %Qual = ( + "Pointer"=>"*", + "Ref"=>"&", + "RvalueRef"=>"&&", + "Volatile"=>"volatile", + "Restrict"=>"restrict", + "Const"=>"const" +); + +my %ConstSuffix = ( + "unsigned int" => "u", + "unsigned long" => "ul", + "unsigned long long" => "ull", + "long" => "l", + "long long" => "ll" +); + +my $HEADER_EXT = "h|hh|hp|hxx|hpp|h\\+\\+|tcc|txx|x|inl|inc|ads|isph"; +my $SRC_EXT = "c|cc|cp|cpp|cxx|c\\+\\+"; + +# ELF +my %Library_Symbol; +my %Library_UndefSymbol; +my %Library_Needed; +my %SymbolTable; +my %Symbol_Bind; + +# Extra Dump +my %SymbolAttribute; +my $GLOBAL_ID_T = 0; +my %FullLoc = (); + +# Kernel +my %KSymTab; + +# VTables +my %VirtualTable; +my %VTable_Symbol; +my %VTable_Class; + +# Env +my $SYS_ARCH; +my $SYS_WORD; +my $SYS_GCCV; +my $SYS_CLANGV = undef; +my $SYS_COMP; +my $LIB_LANG; +my $OBJ_LANG; + +# Errors +my $InvalidDebugLoc; +my $IncompatibleOpt = undef; +my $FKeepInLine = undef; + +# Public Headers +my %SymbolToHeader; +my %TypeToHeader; +my %PublicHeader; +my $PublicSymbols_Detected; +my $PublicHeadersIsDir = 1; + +# Filter +my %SymbolsList; + +# Dump +my $COMPRESS = "tar.gz"; + +sub printMsg($$) +{ + my ($Type, $Msg) = @_; + if($Type!~/\AINFO/) { + $Msg = $Type.": ".$Msg; + } + if($Type!~/_C\Z/) { + $Msg .= "\n"; + } + if($Type eq "ERROR" + or $Type eq "WARNING") { + print STDERR $Msg; + } + else { + print $Msg; + } +} + +sub exitStatus($$) +{ + my ($Code, $Msg) = @_; + printMsg("ERROR", $Msg); + exit($ERROR_CODE{$Code}); +} + +sub cmpVersions($$) +{ # compare two versions in dotted-numeric format + my ($V1, $V2) = @_; + return 0 if($V1 eq $V2); + return undef if($V1!~/\A\d+[\.\d+]*\Z/); + return undef if($V2!~/\A\d+[\.\d+]*\Z/); + my @V1Parts = split(/\./, $V1); + my @V2Parts = split(/\./, $V2); + for (my $i = 0; $i <= $#V1Parts && $i <= $#V2Parts; $i++) { + return -1 if(int($V1Parts[$i]) < int($V2Parts[$i])); + return 1 if(int($V1Parts[$i]) > int($V2Parts[$i])); + } + return -1 if($#V1Parts < $#V2Parts); + return 1 if($#V1Parts > $#V2Parts); + return 0; +} + +sub writeFile($$) +{ + my ($Path, $Content) = @_; + + if(my $Dir = getDirname($Path)) { + mkpath($Dir); + } + open(FILE, ">", $Path) || die ("can't open file \'$Path\': $!\n"); + print FILE $Content; + close(FILE); +} + +sub readFile($) +{ + my $Path = $_[0]; + + open(FILE, $Path); + local $/ = undef; + my $Content = ; + close(FILE); + return $Content; +} + +sub getFilename($) +{ # much faster than basename() from File::Basename module + if($_[0] and $_[0]=~/([^\/\\]+)[\/\\]*\Z/) { + return $1; + } + return ""; +} + +sub getDirname($) +{ # much faster than dirname() from File::Basename module + if($_[0] and $_[0]=~/\A(.*?)[\/\\]+[^\/\\]*[\/\\]*\Z/) { + return $1; + } + return ""; +} + +sub sepPath($) { + return (getDirname($_[0]), getFilename($_[0])); +} + +sub checkCmd($) +{ + my $Cmd = $_[0]; + + if(defined $Cache{"checkCmd"}{$Cmd}) { + return $Cache{"checkCmd"}{$Cmd}; + } + + if(-x $Cmd) + { # relative or absolute path + return ($Cache{"checkCmd"}{$Cmd} = 1); + } + + foreach my $Path (sort {length($a)<=>length($b)} split(/:/, $ENV{"PATH"})) + { + if(-x $Path."/".$Cmd) { + return ($Cache{"checkCmd"}{$Cmd} = 1); + } + } + return ($Cache{"checkCmd"}{$Cmd} = 0); +} + +my %ELF_BIND = map {$_=>1} ( + "WEAK", + "GLOBAL", + "LOCAL" +); + +my %ELF_TYPE = map {$_=>1} ( + "FUNC", + "IFUNC", + "GNU_IFUNC", + "TLS", + "OBJECT", + "COMMON" +); + +my %ELF_VIS = map {$_=>1} ( + "DEFAULT", + "PROTECTED" +); + +sub readline_ELF($) +{ # read the line of 'eu-readelf' output corresponding to the symbol + my @Info = split(/\s+/, $_[0]); + # Num: Value Size Type Bind Vis Ndx Name + # 3629: 000b09c0 32 FUNC GLOBAL DEFAULT 13 _ZNSt12__basic_fileIcED1Ev@@GLIBCXX_3.4 + # 135: 00000000 0 FUNC GLOBAL DEFAULT UNDEF av_image_fill_pointers@LIBAVUTIL_52 (3) + shift(@Info) if($Info[0] eq ""); # spaces + shift(@Info); # num + + if($#Info==7) + { # UNDEF SYMBOL (N) + if($Info[7]=~/\(\d+\)/) { + pop(@Info); + } + } + + if($#Info!=6) + { # other lines + return (); + } + return () if(not defined $ELF_TYPE{$Info[2]} and $Info[5] ne "UNDEF"); + return () if(not defined $ELF_BIND{$Info[3]}); + return () if(not defined $ELF_VIS{$Info[4]}); + if($Info[5] eq "ABS" and $Info[0]=~/\A0+\Z/) + { # 1272: 00000000 0 OBJECT GLOBAL DEFAULT ABS CXXABI_1.3 + return (); + } + if(index($Info[2], "0x") == 0) + { # size == 0x3d158 + $Info[2] = hex($Info[2]); + } + return @Info; +} + +sub readSymbols($) +{ + my $Lib_Path = $_[0]; + my $Lib_Name = getFilename($Lib_Path); + + my $Dynamic = ($Lib_Name=~/\.so(\.|\Z)/); + my $Dbg = ($Lib_Name=~/\.debug\Z/); + + if(not checkCmd($EU_READELF)) { + exitStatus("Not_Found", "can't find \"eu-readelf\" from Elfutils"); + } + + my %SectionInfo; + my %KSect; + + my $Cmd = $EU_READELF_L." -S \"$Lib_Path\" 2>\"$TMP_DIR/error\""; + foreach (split(/\n/, `$Cmd`)) + { + if(/\[\s*(\d+)\]\s+([\w\.]+)/) + { + my ($Num, $Name) = ($1, $2); + + $SectionInfo{$Num} = $Name; + + if(defined $KernelExport) + { + if($Name=~/\A(__ksymtab|__ksymtab_gpl)\Z/) { + $KSect{$1} = 1; + } + } + } + } + + if(defined $KernelExport) + { + if(not keys(%KSect)) + { + printMsg("ERROR", "can't find __ksymtab or __ksymtab_gpl sections in the object"); + exit(1); + } + + foreach my $Name (sort keys(%KSect)) + { + $Cmd = $OBJDUMP." --section=$Name -d \"$Lib_Path\" 2>\"$TMP_DIR/error\""; + + foreach my $Line (split(/\n/, qx/$Cmd/)) + { + if($Line=~/<__ksymtab_(.+?)>/) + { + $KSymTab{$1} = 1; + } + } + } + } + + if($Dynamic) + { # dynamic library specifics + $Cmd = $EU_READELF_L." -d \"$Lib_Path\" 2>\"$TMP_DIR/error\""; + foreach (split(/\n/, `$Cmd`)) + { + if(/NEEDED.+\[([^\[\]]+)\]/) + { # dependencies: + # 0x00000001 (NEEDED) Shared library: [libc.so.6] + $Library_Needed{$1} = 1; + } + } + } + + my $ExtraPath = undef; + + if($ExtraInfo) + { + mkpath($ExtraInfo); + $ExtraPath = $ExtraInfo."/elf-info"; + } + + $Cmd = $EU_READELF_L." -s \"$Lib_Path\" 2>\"$TMP_DIR/error\""; + + if($ExtraPath) + { # debug mode + # write to file + system($Cmd." >\"$ExtraPath\""); + open(LIB, $ExtraPath); + } + else + { # write to pipe + open(LIB, $Cmd." |"); + } + + my (%Symbol_Value, %Value_Symbol) = (); + + my $symtab = undef; # indicates that we are processing 'symtab' section of 'readelf' output + while() + { + if($Dynamic and not $Dbg) + { # dynamic library specifics + if(defined $symtab) + { + if(index($_, "'.dynsym'")!=-1) + { # dynamic table + $symtab = undef; + } + if(not $AllSymbols) + { # do nothing with symtab + # next; + } + } + elsif(index($_, "'.symtab'")!=-1) + { # symbol table + $symtab = 1; + } + } + if(my ($Value, $Size, $Type, $Bind, $Vis, $Ndx, $Symbol) = readline_ELF($_)) + { # read ELF entry + $Symbol_Bind{$Symbol} = $Bind; + if(index($Symbol, '@')!=-1) + { + if($Symbol=~/\A(.+?)\@/) { + $Symbol_Bind{$1} = $Bind; + } + } + + if(not $symtab) + { # dynsym + if(skipSymbol($Symbol)) { + next; + } + + if($Ndx eq "UNDEF") + { # ignore interfaces that are imported from somewhere else + $Library_UndefSymbol{$TargetName}{$Symbol} = 0; + next; + } + + if(defined $KernelExport) + { + if($Bind ne "LOCAL") + { + if(index($Symbol, "sys_")==0 + or index($Symbol, "SyS_")==0) { + $KSymTab{$Symbol} = 1; + } + } + + if(not defined $KSymTab{$Symbol}) { + next; + } + } + + if($Bind ne "LOCAL") { + $Library_Symbol{$TargetName}{$Symbol} = ($Type eq "OBJECT")?-$Size:1; + } + + if(not defined $OBJ_LANG) + { + if(index($Symbol, "_Z")==0) + { + $OBJ_LANG = "C++"; + } + } + } + + if($Ndx ne "UNDEF" and $Value!~/\A0+\Z/) + { + $Symbol_Value{$Symbol} = $Value; + $Value_Symbol{$Value}{$Symbol} = 1; + + if(defined $ExtraDump) + { + $SymbolAttribute{$Symbol} = { + "Val" => $Value, + "Size" => $Size, + "Kind" => $Type, + "Bind" => $Bind, + "Vis" => $Vis, + "Ndx" => $Ndx + }; + } + } + + if(not $symtab) + { + foreach ($SectionInfo{$Ndx}, "") + { + my $Val = $Value; + + $SymbolTable{$_}{$Val}{$Symbol} = 1; + + if($Val=~s/\A[0]+//) + { + if($Val eq "") { + $Val = "0"; + } + $SymbolTable{$_}{$Val}{$Symbol} = 1; + } + } + } + } + } + close(LIB); + + if(not defined $Library_Symbol{$TargetName}) { + return; + } + + my %Found = (); + foreach my $Symbol (sort keys(%Symbol_Value)) + { + next if(index($Symbol, '@')==-1); + if(my $Value = $Symbol_Value{$Symbol}) + { + foreach my $Symbol_SameValue (sort keys(%{$Value_Symbol{$Value}})) + { + if($Symbol_SameValue ne $Symbol + and index($Symbol_SameValue, '@')==-1) + { + $SymVer{$Symbol_SameValue} = $Symbol; + $Found{$Symbol} = 1; + + if(index($Symbol, '@@')==-1) { + last; + } + } + } + } + } + + # default + foreach my $Symbol (sort keys(%Symbol_Value)) + { + next if(defined $Found{$Symbol}); + next if(index($Symbol, '@@')==-1); + + if($Symbol=~/\A([^\@]*)\@\@/ + and not $SymVer{$1}) + { + $SymVer{$1} = $Symbol; + $Found{$Symbol} = 1; + } + } + + # non-default + foreach my $Symbol (sort keys(%Symbol_Value)) + { + next if(defined $Found{$Symbol}); + next if(index($Symbol, '@')==-1); + + if($Symbol=~/\A([^\@]*)\@([^\@]*)/ + and not $SymVer{$1}) + { + $SymVer{$1} = $Symbol; + $Found{$Symbol} = 1; + } + } + + if(not defined $OBJ_LANG) + { + $OBJ_LANG = "C"; + } +} + +sub readAltInfo($) +{ + my $Path = $_[0]; + my $Name = getFilename($Path); + + if(not checkCmd($EU_READELF)) { + exitStatus("Not_Found", "can't find \"$EU_READELF\" command"); + } + + printMsg("INFO", "Reading alternate debug-info"); + + my $ExtraPath = undef; + + # lines info + if($ExtraInfo) + { + $ExtraPath = $ExtraInfo."/alt"; + mkpath($ExtraPath); + $ExtraPath .= "/debug_line"; + } + + if($ExtraPath) + { + system($EU_READELF_L." -N --debug-dump=line \"$Path\" 2>\"$TMP_DIR/error\" >\"$ExtraPath\""); + open(SRC, $ExtraPath); + } + else { + open(SRC, $EU_READELF_L." -N --debug-dump=line \"$Path\" 2>\"$TMP_DIR/error\" |"); + } + + my $DirTable_Def = undef; + my %DirTable = (); + + while() + { + if(defined $AddDirs) + { + if(/Directory table/i) + { + $DirTable_Def = 1; + next; + } + elsif(/File name table/i) + { + $DirTable_Def = undef; + next; + } + + if(defined $DirTable_Def) + { + if(/\A\s*(.+?)\Z/) { + $DirTable{keys(%DirTable)+1} = $1; + } + elsif(/\A\s*(\d+)\s+(.+?)\s+\(\d+\)\Z/) + { # F34 + $DirTable{$1} = $2; + } + } + } + + my ($Num, $Dir, $File) = (); + + if(/(\d+)\s+(\d+)\s+\d+\s+\d+\s+([^ ]+)/) { + ($Num, $Dir, $File) = ($1, $2, $3) + } + elsif(/(\d+)\s+([^ ]+)\s+\(\d+\)\,\s+(\d+)/) + { # F34 + ($Num, $File, $Dir) = ($1, $2, $3); + } + + if($File) + { + chomp($File); + + if(defined $AddDirs) + { + if(my $DName = $DirTable{$Dir}) + { + $File = $DName."/".$File; + } + } + + $SourceFile_Alt{0}{$Num} = $File; + } + } + close(SRC); + + # debug info + if($ExtraInfo) + { + $ExtraPath = $ExtraInfo."/alt"; + mkpath($ExtraPath); + $ExtraPath .= "/debug_info"; + } + + my $INFO_fh; + + if($ExtraPath) + { + system($EU_READELF_L." -N --debug-dump=info \"$Path\" 2>\"$TMP_DIR/error\" >\"$ExtraPath\""); + open($INFO_fh, $ExtraPath); + } + else { + open($INFO_fh, $EU_READELF_L." -N --debug-dump=info \"$Path\" 2>\"$TMP_DIR/error\" |"); + } + + readDWARFDump($INFO_fh, 0); +} + +sub readDWARFInfo($) +{ + my $Path = $_[0]; + + my $Dir = getDirname($Path); + my $Name = getFilename($Path); + + if(not checkCmd($EU_READELF)) { + exitStatus("Not_Found", "can't find \"$EU_READELF\" command"); + } + + if(-s $Path > 1024*1024*100) { + $TooBig = 1; + } + + my $AddOpt = ""; + if(not defined $AddrToName) + { # disable search of symbol names + $AddOpt .= " -N"; + } + + my $Sect = `$EU_READELF_L -S \"$Path\" 2>\"$TMP_DIR/error\"`; + + if($Sect!~/\.z?debug_info/) + { # No DWARF info + if(my $DebugFile = getDebugFile($Path, "gnu_debuglink")) + { + my $DPath = $DebugFile; + my $DName = getFilename($DPath); + + printMsg("INFO", "Found link to $DName (gnu_debuglink)"); + + if(my $DDir = getDirname($Path)) + { + $DPath = $DDir."/".$DPath; + } + + my $Found = undef; + + if(defined $SearchDirDebuginfo) + { + if(-f $SearchDirDebuginfo."/".$DName) { + $Found = $SearchDirDebuginfo."/".$DName; + } + else + { + my @Files = findFiles($SearchDirDebuginfo, "f"); + + foreach my $F (@Files) + { + if(getFilename($F) eq $DName) + { + $Found = $F; + last; + } + } + } + } + elsif(-f $DPath + and $DPath ne $Path) { + $Found = $DPath; + } + + if($Found and $Found ne $Path) + { + printMsg("INFO", "Reading debug-info file $DName linked from gnu_debuglink"); + return readDWARFInfo($Found); + } + else + { + printMsg("ERROR", "missed debug-info file $DName linked from gnu_debuglink (try --search-debuginfo=DIR option)"); + return 0; + } + } + return 0; + } + elsif(not defined $AltDebugInfoOpt) + { + if($Sect=~/\.gnu_debugaltlink/) + { + if(my $AltObj = getDebugAltLink($Path)) + { + $AltDebugInfo = $AltObj; + readAltInfo($AltObj); + } + else { + exitStatus("Error", "can't read gnu_debugaltlink"); + } + } + } + + if($AltDebugInfo) + { + if($TooBig) { + printMsg("WARNING", "input object is compressed and large, may require a lot of RAM memory to process"); + } + } + + printMsg("INFO", "Reading debug-info"); + + my $ExtraPath = undef; + + # ELF header + if($ExtraInfo) + { + mkpath($ExtraInfo); + $ExtraPath = $ExtraInfo."/elf-header"; + } + + if($ExtraPath) + { + system($EU_READELF_L." -h \"$Path\" 2>\"$TMP_DIR/error\" >\"$ExtraPath\""); + open(HEADER, $ExtraPath); + } + else { + open(HEADER, $EU_READELF_L." -h \"$Path\" 2>\"$TMP_DIR/error\" |"); + } + + my %Header = (); + while(
) + { + if(/\A\s*([\w ]+?)\:\s*(.+?)\Z/) { + $Header{$1} = $2; + } + } + close(HEADER); + + $SYS_ARCH = $Header{"Machine"}; + + if($SYS_ARCH=~/80\d86/ + or $SYS_ARCH=~/i\d86/) + { # i386, i586, etc. + $SYS_ARCH = "x86"; + } + + if($SYS_ARCH=~/amd64/i + or $SYS_ARCH=~/x86\-64/i) + { # amd64 + $SYS_ARCH = "x86_64"; + } + + initRegs(); + + # ELF sections + if($ExtraInfo) + { + mkpath($ExtraInfo); + $ExtraPath = $ExtraInfo."/elf-sections"; + } + + if($ExtraPath) + { + system($EU_READELF_L." -S \"$Path\" 2>\"$TMP_DIR/error\" >\"$ExtraPath\""); + open(HEADER, $ExtraPath); + } + + # source info + if($ExtraInfo) + { + mkpath($ExtraInfo); + $ExtraPath = $ExtraInfo."/debug_line"; + } + + if($ExtraPath) + { + system($EU_READELF_L." $AddOpt --debug-dump=line \"$Path\" 2>\"$TMP_DIR/error\" >\"$ExtraPath\""); + open(SRC, $ExtraPath); + } + else { + open(SRC, $EU_READELF_L." $AddOpt --debug-dump=line \"$Path\" 2>\"$TMP_DIR/error\" |"); + } + + my $Offset = undef; + my $DirTable_Def = undef; + my %DirTable = (); + + while() + { + if(defined $AddDirs) + { + if(/Directory table/i) + { + $DirTable_Def = 1; + %DirTable = (); + next; + } + elsif(/File name table/i) + { + $DirTable_Def = undef; + next; + } + + if(defined $DirTable_Def) + { + if(/\A\s*([^\[\]\(\)]+?)\Z/) { + $DirTable{keys(%DirTable)+1} = $1; + } + elsif(/\A\s*(\d+)\s+(.+?)\s+\(\d+\)\Z/) + { # F34 + $DirTable{$1} = $2; + } + } + } + + if(index($_, "Table")!=-1 + and /Table at offset (\w+)/) { + $Offset = $1; + } + elsif(defined $Offset) + { + my ($Num, $Dir, $File) = (); + + if(/(\d+)\s+(\d+)\s+\d+\s+\d+\s+([^ ]+)/) { + ($Num, $Dir, $File) = ($1, $2, $3); + } + elsif(/(\d+)\s+([^ ]+)\s+\(\d+\)\,\s+(\d+)/) + { # F34 + ($Num, $File, $Dir) = ($1, $2, $3); + } + + if($File) + { + chomp($File); + + if(defined $AddDirs) + { + if(my $DName = $DirTable{$Dir}) + { + $File = $DName."/".$File; + } + } + + $SourceFile{$Offset}{$Num} = $File; + } + } + } + close(SRC); + + # debug_loc + if($ExtraInfo) + { + mkpath($ExtraInfo); + $ExtraPath = $ExtraInfo."/debug_loc"; + } + + if($ExtraPath) + { + system($EU_READELF_L." $AddOpt --debug-dump=loc \"$Path\" 2>\"$TMP_DIR/error\" >\"$ExtraPath\""); + open(LOC, $ExtraPath); + } + else { + open(LOC, $EU_READELF_L." $AddOpt --debug-dump=loc \"$Path\" 2>\"$TMP_DIR/error\" |"); + } + + my $Offset = undef; + + while() + { + if(/\A \[\s*(\w+)\].*\[\s*\w+\]\s*(.+)\Z/) { + $DebugLoc{$1} = $2; + } + elsif(/\A \[\s*(\w+)\]/) { + $DebugLoc{$1} = ""; + } + elsif(/Offset:\s+(.+?),/) + { # F34 + $Offset = $1; + } + elsif($Offset and /\A\s+\[\s*\w+\]\s*(.+)\Z/) + { # F34 + $DebugLoc{$Offset} = $1; + } + } + close(LOC); + + # dwarf + if($ExtraInfo) + { + mkpath($ExtraInfo); + $ExtraPath = $ExtraInfo."/debug_info"; + } + + my $INFO_fh; + + if($Dir) + { # to find ".dwz" directory (Fedora) + chdir($Dir); + } + if($ExtraPath) + { + system($EU_READELF_L." $AddOpt --debug-dump=info \"$Name\" 2>\"$TMP_DIR/error\" >\"$ExtraPath\""); + open($INFO_fh, $ExtraPath); + } + else { + open($INFO_fh, $EU_READELF_L." $AddOpt --debug-dump=info \"$Name\" 2>\"$TMP_DIR/error\" |"); + } + chdir($ORIG_DIR); + + readDWARFDump($INFO_fh, 1); + + if(my $Err = readFile("$TMP_DIR/error")) + { # eu-readelf: cannot get next DIE: invalid DWARF + if($Err=~/invalid DWARF/i) + { + if($Loud) { + printMsg("ERROR", $Err); + } + exitStatus("Invalid_DWARF", "invalid DWARF info"); + } + } + + return 1; +} + +sub getSource($) +{ + my $ID = $_[0]; + + if(defined $DWARF_Info{$ID}{"file"}) + { + my $File = $DWARF_Info{$ID}{"file"}; + my $Unit = $DWARF_Info{$ID}{"unit"}; + + my $Name = undef; + + if($ID>=0) { + $Name = $SourceFile{$Unit}{$File}; + } + else + { # imported + $Name = $SourceFile_Alt{0}{$File}; + } + + return $Name; + } + + return undef; +} + +sub readDWARFDump($$) +{ + my ($FH, $Primary) = @_; + + my $TypeUnit_Sign = undef; + my $TypeUnit_Offset = undef; + my $Type_Offset = undef; + + my $Shift_Enabled = 1; + my $ID_Shift = undef; + + my $CUnit = undef; + + if($AltDebugInfo) { + $Compressed = 1; + } + + my $ID = undef; + my $Kind = undef; + my $NS = undef; + + my $MAX_ID = undef; + + my %Shift = map {$_=>1} ( + "specification", + "spec", + "type", + "sibling", + "object_pointer", + "objptr", + "containing_type", + "container", + "abstract_origin", + "orig", + "import", + "signature" + ); + + my %SkipNode = ( + "imported_declaration" => 1, + "imported_module" => 1 + ); + + my %SkipAttr = ( + "high_pc" => 1, + "frame_base" => 1, + "encoding" => 1, + "Compilation" => 1, + "comp_dir" => 1, + "declaration" => 1, + "prototyped" => 1, + "GNU_vector" => 1, + "GNU_all_call_sites" => 1, + "explicit" => 1 + ); + + my %RenameAttr = ( + "data_member_location" => "mloc", + "decl_file" => "file", + "decl_line" => "line", + "linkage_name" => "linkage", + "object_pointer" => "objptr", + "artificial" => "art", + "external" => "ext", + "specification" => "spec", + "byte_size" => "size", + "accessibility" => "access", + "const_value" => "cval", + "containing_type" => "container", + "abstract_origin" => "orig", + "virtuality" => "virt", + "vtable_elem_location" => "vloc" + ); + + my %RenameKind = ( + "formal_parameter" => "param", + "subprogram" => "prog", + "unspecified_parameters" => "unspec_params", + "template_type_parameter" => "tmpl_param" + ); + + my %MarkByUnit = ( + "member" => 1, + "subprogram" => 1, + "prog" => 1, + "variable" => 1 + ); + + my $Lexical_Block = undef; + my $Inlined_Block = undef; + my $Subprogram_Block = undef; + my $Skip_Block = undef; + + while(my $Line = <$FH>) + { + if(defined $ID and $Line=~/\A\s*(\w+)\s+(.+?)\s*\Z/) + { + if(defined $Skip_Block) { + next; + } + + my $Attr = $1; + my $Val = $2; + + if(defined $RenameAttr{$Attr}) { + $Attr = $RenameAttr{$Attr}; + } + + if(index($Val, "(flag")==0) + { # artificial, external (on Fedora) + # flag_present + $Val = 1; + } + + if(defined $Compressed) + { + if($Kind eq "imported_unit") { + next; + } + } + + if($Kind eq "member") + { + if($Attr eq "mloc") { + delete($DWARF_Info{$ID}{"unit"}); + } + } + + if($Attr eq "sibling") + { + if($Kind ne "structure_type") { + next; + } + } + elsif($Attr eq "Type") + { + if($Line=~/Type\s+signature:\s*0x(\w+)/) { + $TypeUnit_Sign = $1; + } + if($Line=~/Type\s+offset:\s*0x(\w+)/) { + $Type_Offset = hex($1); + } + if($Line=~/Type\s+unit\s+at\s+offset\s+(\d+)/) { + $TypeUnit_Offset = $1; + } + next; + } + elsif(defined $SkipAttr{$Attr}) + { # unused + next; + } + + if($Val=~/\A\s*\(([^()]*)\)\s*\[\s*(\w+)\]\s*\Z/) + { # ref4, ref_udata, ref_addr, etc. + $Val = hex($2); + + if($1 eq "GNU_ref_alt") { + $Val = -$Val; + } + } + elsif($Attr eq "name") + { + $Val=~s/\A\([^()]*\)\s*\"(.*)\"\Z/$1/; + + if(defined $LambdaSupport) + { + if(index($Val, "\Z/}/; + } + } + } + elsif(index($Attr, "linkage_name")!=-1 or $Attr eq "linkage") + { + $Val=~s/\A\([^()]*\)\s*\"(.*)\"\Z/$1/; + $Attr = "linkage"; + } + elsif(index($Attr, "location")!=-1 or $Attr eq "mloc" or $Attr eq "vloc") + { + if($Val=~/\)\s*\Z/) + { # value on the next line + my $NL = <$FH>; + $Val .= $NL; + + if(defined $ExtraDump) + { + if($NL=~/\A\s{4,}\[\s*(\w+)\]\s*(piece \d+|\w+)/) + { + $FullLoc{$ID}{$1} = $2; + } + } + + if(index($Val, "GNU_entry_value")!=-1) + { # value on the next line + $NL = <$FH>; + $Val .= $NL; + } + } + + if($Val=~/\A\(\w+\)\s*(-?)(\w+)\Z/) + { # (data1) 1c + if ($2 != 0xFFFFFFFFFFFFFFFF) { + $Val = hex($2); + if($1) { + $Val = -$Val; + } + } + } + else + { + if($Val=~/ (-?\d+)\Z/) { + $Val = $1; + } + else + { + if($Attr eq "location" + and $Kind eq "param") + { + if($Val=~/location list\s+\[\s*(\w+)\]\Z/) + { + $Attr = "location_list"; + $Val = $1; + } + elsif($Val=~/ reg(\d+)\Z/) + { + $Attr = "register"; + $Val = $1; + } + } + } + } + } + elsif($Attr eq "access") + { + $Val=~s/\A\(.+?\)\s*//; + $Val=~s/\s*\(.+?\)\Z//; + + # NOTE: members: private by default + } + else + { + $Val=~s/\A\(\w+\)\s*//; + + if(substr($Val, 0, 1) eq "{" + and $Val=~/{(.+)}/) + { # {ID} + $Val = $1; + $Post_Change{$ID} = 1; + } + } + + if($Val eq "") + { + if($Attr eq "ext") { + next; + } + } + + if(defined $Shift_Enabled and $ID_Shift) + { + if(defined $Shift{$Attr} + and not $Post_Change{$ID}) { + $Val += $ID_Shift; + } + + # $DWARF_Info{$ID}{"rID"} = $ID-$ID_Shift; + } + + if(not $Primary) + { + if(defined $Shift{$Attr}) { + $Val = -$Val; + } + } + + if($Kind ne "partial_unit" + and $Kind ne "imported_unit") + { + if($Attr ne "stmt_list") { + $DWARF_Info{$ID}{$Attr} = "$Val"; + } + } + + if($Kind eq "compile_unit") + { + if($Attr eq "stmt_list") + { + $CUnit = $Val; + $Partial = undef + } + + if(not defined $LIB_LANG) + { + if($Attr eq "language") + { + if(index($Val, "Assembler")==-1) + { + $Val=~s/\s*\(.+?\)\Z//; + + if($Val=~/C\d/i) { + $LIB_LANG = "C"; + } + elsif($Val=~/C\+\+|C_plus_plus/i) { + $LIB_LANG = "C++"; + } + else { + $LIB_LANG = $Val; + } + } + } + } + + if(not defined $SYS_COMP and not defined $SYS_GCCV) + { + if($Attr eq "producer") + { + if(index($Val, "GNU AS")==-1) + { + $Val=~s/\A\"//; + $Val=~s/\"\Z//; + + if($Val=~/GNU\s+(C\d*|C\+\+\d*|GIMPLE)\s+(.+)\Z/) + { + $SYS_GCCV = $2; + if($SYS_GCCV=~/\A(\d+\.\d+)(\.\d+|)/) + { # 4.6.1 20110627 (Mandriva) + $SYS_GCCV = $1.$2; + } + } + elsif($Val=~/clang\s+version\s+([^\s\(]+)/) { + $SYS_CLANGV = $1; + } + else { + $SYS_COMP = $Val; + } + + if(not defined $KeepRegsAndOffsets) + { + my %Opts = (); + while($Val=~s/(\A| )(\-O([0-3]|g))( |\Z)/ /) { + $Opts{keys(%Opts)} = $2; + } + + if(keys(%Opts)) + { + if($Opts{keys(%Opts)-1} ne "-Og") + { + if(not defined $Quiet) { + printMsg("WARNING", "incompatible build option detected: ".$Opts{keys(%Opts)-1}." (required -Og for better analysis)"); + } + $IncompatibleOpt = 1; + } + } + else + { + if(not defined $Quiet) { + printMsg("WARNING", "the object should be compiled with -Og option for better analysis"); + } + $IncompatibleOpt = 1; + } + } + + if(index($Val, "-fkeep-inline-functions")!=-1) { + $FKeepInLine = 1; + } + } + } + } + } + elsif($Kind eq "type_unit") + { + if($Attr eq "stmt_list") + { + $CUnit = $Val; + $Partial = 1; + } + } + elsif($Kind eq "partial_unit") + { # support for dwz + if($Attr eq "stmt_list") + { + $CUnit = $Val; + $Partial = 1; + } + } + } + elsif(defined $ExtraDump and $Line=~/\A\s{4,}\[\s*(\w+)\]\s*(piece \d+|\w+)/) + { + $FullLoc{$ID}{$1} = $2; + } + elsif($Line=~/\A \[\s*(\w+)\](\s*)(\w+)/) + { + $ID = hex($1); + $NS = length($2); + $Kind = $3; + + if(defined $RenameKind{$Kind}) { + $Kind = $RenameKind{$Kind}; + } + + if(not defined $Compressed) + { + if($Kind eq "partial_unit" or $Kind eq "type_unit") + { # compressed debug_info + $Compressed = 1; + + if($TooBig) { + printMsg("WARNING", "input object is compressed and large, may require a lot of RAM memory to process"); + } + } + } + + if($Kind eq "compile_unit" and $CUnit + and not defined $AllUnits) + { # read the previous compile unit + completeDump($Primary); + + if($Primary) { + readABI(); + } + } + + $Skip_Block = undef; + + if(defined $SkipNode{$Kind}) + { + $Skip_Block = 1; + next; + } + + if($Kind eq "lexical_block") + { + if(defined $Lexical_Block) + { + if(length($NS)<=length($Lexical_Block)) { + $Lexical_Block = $NS; + } + } + else { + $Lexical_Block = $NS; + } + $Skip_Block = 1; + next; + } + else + { + if(defined $Lexical_Block) + { + if($NS>$Lexical_Block) + { + $LexicalId{$ID} = 1; + if(not $LambdaSupport) + { + $Skip_Block = 1; + next; + } + } + else + { # end of lexical block + $Lexical_Block = undef; + } + } + } + + if($Kind eq "inlined_subroutine") + { + $Inlined_Block = $NS; + $Skip_Block = 1; + next; + } + else + { + if(defined $Inlined_Block) + { + if($NS>$Inlined_Block) + { + $Skip_Block = 1; + next; + } + else + { # end of inlined subroutine + $Inlined_Block = undef; + } + } + } + + if($Kind eq "prog") + { + $Subprogram_Block = $NS; + } + else + { + if(defined $Subprogram_Block) + { + if($NS>$Subprogram_Block) + { + if($Kind eq "variable") + { # temp variables + $Skip_Block = 1; + next; + } + } + else + { # end of subprogram block + $Subprogram_Block = undef; + } + } + } + + if(not $Primary) { + $ID = -$ID; + } + + if(defined $Shift_Enabled) + { + if($Kind eq "type_unit") + { + if(not defined $ID_Shift) + { + if($ID_Shift<=$MAX_ID) { + $ID_Shift = $MAX_ID; + } + else { + $ID_Shift = 0; + } + } + } + + if($ID_Shift) { + $ID += $ID_Shift; + } + } + + if(defined $TypeUnit_Sign) + { + if($Kind ne "type_unit" + and $Kind ne "namespace") + { + if($TypeUnit_Offset+$Type_Offset+$ID_Shift==$ID) + { + $TypeUnit{$TypeUnit_Sign} = "$ID"; + $TypeUnit_Sign = undef; + } + } + } + + if($Kind ne "partial_unit" + and $Kind ne "imported_unit") + { + $DWARF_Info{$ID} = {}; + $DWARF_Info{$ID}{"kind"} = $Kind; + $DWARF_Info{$ID}{"ns"} = $NS; + + if(defined $CUnit) + { + if(defined $MarkByUnit{$Kind} + or defined $TypeType{$Kind}) { + $DWARF_Info{$ID}{"unit"} = $CUnit; + } + } + + if($ID>0) { + push(@IDs, $ID); + } + else { + push(@IDs_I, $ID); + } + } + + if(not defined $ID_Shift) { + $MAX_ID = $ID; + } + } + elsif(not defined $SYS_WORD + and $Line=~/Address\s*size:\s*(\d+)/i) + { + $SYS_WORD = $1; + } + } + + close($FH); + + if($Primary and not defined $ID) { + printMsg("ERROR", "the debuginfo looks empty or corrupted"); + } + + # read the last compile unit + completeDump($Primary); + + if($Primary) { + readABI(); + } +} + +sub readVtables($) +{ + my $Path = $_[0]; + + $Path = abs_path($Path); + + my $Dir = getDirname($Path); + + if(index($LIB_LANG, "C++")!=-1 + or $OBJ_LANG eq "C++") + { + printMsg("INFO", "Reading v-tables"); + + if(checkCmd($VTABLE_DUMPER)) + { + if(my $Version = `$VTABLE_DUMPER -dumpversion`) + { + if(cmpVersions($Version, $VTABLE_DUMPER_VERSION)<0) + { + printMsg("ERROR", "the version of Vtable-Dumper should be $VTABLE_DUMPER_VERSION or newer"); + return; + } + } + } + else + { + printMsg("ERROR", "cannot find \'$VTABLE_DUMPER\'"); + return; + } + + my $ExtraPath = $TMP_DIR."/v-tables"; + + if($ExtraInfo) + { + mkpath($ExtraInfo); + $ExtraPath = $ExtraInfo."/v-tables"; + } + + my $LdPaths = $Dir; + + if(defined $LdLibraryPath) { + $LdPaths .= ":".$LdLibraryPath; + } + + system("LD_LIBRARY_PATH=\"$LdPaths\" $VTABLE_DUMPER -mangled -demangled \"$Path\" >\"$ExtraPath\""); + + my $Content = readFile($ExtraPath); + foreach my $ClassInfo (split(/\n\n\n/, $Content)) + { + if($ClassInfo=~/\AVtable\s+for\s+(.+)\n((.|\n)+)\Z/i) + { + my ($CName, $VTable) = ($1, $2); + my @Entries = split(/\n/, $VTable); + + foreach (1 .. $#Entries) + { + my $Entry = $Entries[$_]; + if($Entry=~/\A(\d+)\s+(.+)\Z/) { + $VirtualTable{$CName}{$1} = $2; + } + } + + if(defined $ExtraDump) + { + if($Entries[0]=~/\A(\w+)\:/) + { + $VTable_Symbol{$CName} = $1; + $VTable_Class{$1} = $CName; + } + } + } + } + } + + if(keys(%VirtualTable)) + { + foreach my $Tid (sort keys(%TypeInfo)) + { + if($TypeInfo{$Tid}{"Type"}=~/\A(Struct|Class)\Z/) + { + my $TName = $TypeInfo{$Tid}{"Name"}; + $TName=~s/\bstruct //g; + if(defined $VirtualTable{$TName}) + { + $TypeInfo{$Tid}{"VTable"} = $VirtualTable{$TName}; + + if(defined $ExtraDump) + { + $TypeInfo{$Tid}{"VTable_Sym"} = $VTable_Symbol{$TName}; + } + $TypeInfo{$Tid}{"VTable"} = $VirtualTable{$TName}; + } + } + } + } +} + +sub createArchive($$) +{ + my ($Path, $To) = @_; + if(not $To) { + $To = "."; + } + + if(not checkCmd("tar")) { + exitStatus("Not_Found", "can't find \"tar\""); + } + if(not checkCmd("gzip")) { + exitStatus("Not_Found", "can't find \"gzip\""); + } + + my ($From, $Name) = sepPath($Path); + my $Pkg = abs_path($To)."/".$Name.".".$COMPRESS; + if(-e $Pkg) { + unlink($Pkg); + } + system("tar", "-C", $From, "-czf", $Pkg, $Name); + if($?) + { # cannot allocate memory (or other problems with "tar") + exitStatus("Error", "can't pack the ABI dump: ".$!); + } + unlink($Path); + return $To."/".$Name.".".$COMPRESS; +} + +sub createABIFile() +{ + printMsg("INFO", "Creating ABI dump"); + + my %ABI = ( + "TypeInfo" => \%TypeInfo, + "SymbolInfo" => \%SymbolInfo, + "Symbols" => \%Library_Symbol, + "UndefinedSymbols" => \%Library_UndefSymbol, + "Needed" => \%Library_Needed, + "SymbolVersion" => \%SymVer, + "LibraryVersion" => $TargetVersion, + "LibraryName" => $TargetName, + "Language" => $LIB_LANG, + "Headers" => \%HeadersInfo, + "Sources" => \%SourcesInfo, + "NameSpaces" => \%NestedNameSpaces, + "Target" => "unix", + "Arch" => $SYS_ARCH, + "WordSize" => $SYS_WORD, + "ABI_DUMP_VERSION" => $ABI_DUMP_VERSION, + "ABI_DUMPER_VERSION" => $TOOL_VERSION, + ); + + if($SYS_GCCV) { + $ABI{"GccVersion"} = $SYS_GCCV; + } + elsif($SYS_CLANGV) { + $ABI{"ClangVersion"} = $SYS_CLANGV; + } + else { + $ABI{"Compiler"} = $SYS_COMP; + } + + if(defined $ExtraDump) { + $ABI{"ExtraDump"} = "On"; + } + + if(defined $PublicHeadersPath) { + $ABI{"PublicABI"} = "1"; + } + + if(defined $IncompatibleOpt) + { + $ABI{"MissedOffsets"} = "1"; + $ABI{"MissedRegs"} = "1"; + } + + if($StdOut) + { # --stdout option + print STDOUT Dumper(\%ABI); + } + else + { + my $DumpPath = "ABI.dump"; + if($OutputDump) + { # user defined path + $DumpPath = $OutputDump; + } + my $Archive = ($DumpPath=~s/\Q.$COMPRESS\E\Z//g); + my ($DDir, $DName) = sepPath($DumpPath); + + my $DPath = $TMP_DIR."/".$DName; + if(not $Archive) { + $DPath = $DumpPath; + } + + mkpath($DDir); + + open(DUMP, ">", $DPath) || die ("can't open file \'$DumpPath\': $!\n"); + print DUMP Dumper(\%ABI); + close(DUMP); + + if(not -s $DPath) { + exitStatus("Error", "can't create ABI dump because something is going wrong with the Data::Dumper module"); + } + if($Archive) { + $DumpPath = createArchive($DPath, $DDir); + } + + printMsg("INFO", "\nThe object ABI has been dumped to:\n $DumpPath"); + } +} + +sub unmangleString($) +{ + my $Str = $_[0]; + + $Str=~s/\AN(.+)E\Z/$1/; + while($Str=~s/\A(\d+)//) + { + if(length($Str)==$1) { + last; + } + + $Str = substr($Str, $1, length($Str) - $1); + } + + return $Str; +} + +sub initABI() +{ + # register "void" type + %{$TypeInfo{"1"}} = ( + "Name"=>"void", + "Type"=>"Intrinsic" + ); + $TName_Tid{"Intrinsic"}{"void"} = "1"; + $TName_Tids{"Intrinsic"}{"void"}{"1"} = 1; + $Cache{"getTypeInfo"}{"1"} = 1; + + # register "..." type + %{$TypeInfo{"-1"}} = ( + "Name"=>"...", + "Type"=>"Intrinsic" + ); + $TName_Tid{"Intrinsic"}{"..."} = "-1"; + $TName_Tids{"Intrinsic"}{"..."}{"-1"} = 1; + $Cache{"getTypeInfo"}{"-1"} = 1; +} + +sub completeDump($) +{ + my $Primary = $_[0]; + + foreach my $ID (keys(%Post_Change)) + { + if(my $Type = $DWARF_Info{$ID}{"type"}) + { + if(my $To = $TypeUnit{$Type}) { + $DWARF_Info{$ID}{"type"} = $To; + } + } + if(my $Signature = $DWARF_Info{$ID}{"signature"}) + { + if(my $To = $TypeUnit{$Signature}) { + $DWARF_Info{$ID}{"signature"} = $To; + } + } + } + + %Post_Change = (); + %TypeUnit = (); +} + +my %IsType = map {$_=>1} ( + "struct_type", + "structure_type", + "class_type", + "union_type", + "enumeration_type", + "subroutine_type", + "array_type" +); + +my %MainKind = map {$_=>1} ( + "typedef", + "subprogram", + "prog", + "variable", + "namespace" +); + +sub readABI() +{ + my %CurID = (); + + if(@IDs_I) { + @IDs = (@IDs_I, @IDs); + } + + my $TPack = undef; + my $PPack = undef; + my $NS_Pre = undef; + + foreach my $ID (@IDs) + { + $ID = "$ID"; + + my $Kind = $DWARF_Info{$ID}{"kind"}; + my $NS = $DWARF_Info{$ID}{"ns"}; + my $Scope = $CurID{$NS-2}; + + if(defined $NS_Pre and $NS<=$NS_Pre) + { + foreach (0 .. $NS_Pre-$NS) { + delete($CurID{$NS+$_}); + } + } + + $NS_Pre = $NS; + + if($Kind eq "typedef") + { + if($DWARF_Info{$Scope}{"kind"} eq "prog") + { + $NS = $DWARF_Info{$Scope}{"ns"}; + $Scope = $CurID{$NS-2}; + } + } + + if($Kind ne "prog") { + delete($DWARF_Info{$ID}{"ns"}); + } + + if(defined $IsType{$Kind} + or defined $MainKind{$Kind}) + { + if($Kind ne "variable" + and $Kind ne "typedef") + { + $CurID{$NS} = $ID; + } + + if($Scope) + { + $NameSpace{$ID} = $Scope; + if($Kind eq "prog" + or $Kind eq "variable") + { + if($DWARF_Info{$Scope}{"kind"}=~/class|struct/) + { + $ClassMethods{$Scope} = 1; + if(my $Sp = $DWARF_Info{$Scope}{"spec"}) { + $ClassMethods{$Sp} = 1; + } + } + } + } + + if(my $Spec = $DWARF_Info{$ID}{"spec"}) { + $SpecElem{$Spec} = $ID; + } + + if(my $Orig = $DWARF_Info{$ID}{"orig"}) { + $OrigElem{$Orig} = $ID; + } + + if(defined $IsType{$Kind}) + { + if(not $DWARF_Info{$ID}{"name"} + and $DWARF_Info{$ID}{"linkage"}) + { + $DWARF_Info{$ID}{"name"} = unmangleString($DWARF_Info{$ID}{"linkage"}); + + # free memory + delete($DWARF_Info{$ID}{"linkage"}); + } + } + } + elsif($Kind eq "member") + { + if($Scope) + { + $NameSpace{$ID} = $Scope; + + if(not defined $DWARF_Info{$ID}{"mloc"} + and $DWARF_Info{$Scope}{"kind"}=~/class|struct/) + { # variable (global data) + next; + } + } + + $TypeMember{$Scope}{keys(%{$TypeMember{$Scope}})} = $ID; + } + elsif($Kind eq "enumerator") + { + $TypeMember{$Scope}{keys(%{$TypeMember{$Scope}})} = $ID; + } + elsif($Kind eq "inheritance") + { + my %In = (); + $In{"id"} = $DWARF_Info{$ID}{"type"}; + + if(my $Access = $DWARF_Info{$ID}{"access"}) + { + if($Access ne "public") + { # default inheritance access in ABI dump is "public" + $In{"access"} = $Access; + } + } + + if(defined $DWARF_Info{$ID}{"virt"}) { + $In{"virtual"} = 1; + } + $Inheritance{$Scope}{keys(%{$Inheritance{$Scope}})} = \%In; + + # free memory + delete($DWARF_Info{$ID}); + } + elsif($Kind eq "param") + { + if(defined $PPack) { + $FuncParam{$PPack}{keys(%{$FuncParam{$PPack}})} = $ID; + } + else { + $FuncParam{$Scope}{keys(%{$FuncParam{$Scope}})} = $ID; + } + } + elsif($Kind eq "unspec_params") + { + $FuncParam{$Scope}{keys(%{$FuncParam{$Scope}})} = $ID; + $DWARF_Info{$ID}{"type"} = "-1"; # "..." + } + elsif($Kind eq "subrange_type") + { + if((my $Bound = $DWARF_Info{$ID}{"upper_bound"}) ne "") { + $ArrayCount{$Scope} = $Bound + 1; + } + + # free memory + delete($DWARF_Info{$ID}); + } + elsif($Kind eq "tmpl_param" + or $Kind eq "template_value_parameter") + { + my %Info = ("key"=>$DWARF_Info{$ID}{"name"}); + + if(defined $DWARF_Info{$ID}{"type"}) { + $Info{"type"} = $DWARF_Info{$ID}{"type"}; + } + else { # void + $Info{"type"} = "1"; + } + + if(defined $DWARF_Info{$ID}{"cval"}) { + $Info{"value"} = $DWARF_Info{$ID}{"cval"}; + } + + if(defined $DWARF_Info{$ID}{"default_value"}) { + $Info{"default"} = 1; + } + + if(defined $TPack) { + $TmplParam{$TPack}{keys(%{$TmplParam{$TPack}})} = \%Info; + } + else { + $TmplParam{$Scope}{keys(%{$TmplParam{$Scope}})} = \%Info; + } + } + elsif($Kind eq "GNU_template_parameter_pack") { + $TPack = $Scope; + } + elsif($Kind eq "GNU_formal_parameter_pack") { + $PPack = $Scope; + } + + if($Kind ne "GNU_template_parameter_pack") + { + if(index($Kind, "template_")==-1) { + $TPack = undef; + } + } + + if($Kind ne "GNU_formal_parameter_pack") + { + if($Kind ne "param") { + $PPack = undef; + } + } + } + + # free memory + %CurID = (); + + foreach my $ID (@IDs) + { + if(not defined $DWARF_Info{$ID}) { + next; + } + + if(my $Kind = $DWARF_Info{$ID}{"kind"}) + { + if(defined $TypeType{$Kind} + and not defined $Cache{"getTypeInfo"}{$ID}) + { + getTypeInfo($ID); + } + } + } + + foreach my $Tid (@IDs) + { + if(defined $DWARF_Info{$Tid} + and defined $TypeInfo{$Tid}) + { + my $Type = $TypeInfo{$Tid}{"Type"}; + + if(not defined $TypeInfo{$Tid}{"Memb"}) + { + if($Type=~/Struct|Class|Union|Enum/) + { + if(my $Signature = $DWARF_Info{$Tid}{"signature"}) + { + if(defined $TypeInfo{$Signature}) + { + foreach my $Attr (keys(%{$TypeInfo{$Signature}})) + { + if(not defined $TypeInfo{$Tid}{$Attr}) { + $TypeInfo{$Tid}{$Attr} = $TypeInfo{$Signature}{$Attr}; + } + } + } + } + } + } + } + } + + # delete types info + foreach my $ID (@IDs) + { + if(not defined $DWARF_Info{$ID}) { + next; + } + + if(my $Kind = $DWARF_Info{$ID}{"kind"}) + { + if(defined $TypeType{$Kind}) { + delete($DWARF_Info{$ID}); + } + } + } + + foreach my $ID (@IDs) + { + if(not defined $DWARF_Info{$ID}) { + next; + } + + if($ID<0) + { # imported + next; + } + + if($DWARF_Info{$ID}{"kind"} eq "prog" + or $DWARF_Info{$ID}{"kind"} eq "variable") + { + getSymbolInfo($ID); + } + } + + if(defined $Compressed + and not defined $AllUnits) + { + if(not $Partial) + { + foreach my $ID (@IDs) + { + if($DWARF_Info{$ID}{"kind"} ne "base_type") { + delete($DWARF_Info{$ID}); + } + } + } + + # free memory + %TypeMember = (); + %ArrayCount = (); + %FuncParam = (); + %TmplParam = (); + } + else + { + %DWARF_Info = (); + + # free memory + %TypeMember = (); + %ArrayCount = (); + %FuncParam = (); + %TmplParam = (); + + %Inheritance = (); + %NameSpace = (); + %SpecElem = (); + %OrigElem = (); + %ClassMethods = (); + + %LexicalId = (); + + $Cache{"getTypeInfo"} = {"1"=>1, "-1"=>1}; + } + + @IDs = (); + @IDs_I = (); +} + +sub selectSymbols() +{ + foreach my $ID (sort {$a<=>$b} keys(%SymbolInfo)) + { + my $Symbol = $SymbolInfo{$ID}{"MnglName"}; + + if(not $Symbol) { + $Symbol = $SymbolInfo{$ID}{"ShortName"}; + } + + if(not $Symbol) + { + delete($SymbolInfo{$ID}); + next; + } + + my $S = selectSymbol($SymbolInfo{$ID}); + + if($S==0) + { + if(defined $AllSymbols) + { + if($SymbolInfo{$ID}{"External"}) + { + $S = 1; + } + else + { # local + if(defined $DumpStatic) { + $S = 1; + } + } + } + } + + if($S==0) + { + delete($SymbolInfo{$ID}); + next; + } + elsif(defined $PublicHeadersPath) + { + if(not selectPublic($Symbol, $ID) + and (not defined $SymbolInfo{$ID}{"Alias"} or not selectPublic($SymbolInfo{$ID}{"Alias"}, $ID))) + { + delete($SymbolInfo{$ID}); + next; + } + } + elsif(defined $KernelExport) + { + if(not defined $KSymTab{$Symbol}) + { + delete($SymbolInfo{$ID}); + next; + } + } + + $SelectedSymbols{$ID} = $S; + + delete($SymbolInfo{$ID}{"External"}); + + # add attributes + if(defined $ExtraDump) + { + foreach my $Attr (keys(%{$SymbolAttribute{$Symbol}})) { + $SymbolInfo{$ID}{$Attr} = $SymbolAttribute{$Symbol}{$Attr}; + } + } + } +} + +sub completeTypes($) +{ + my $Name = $_[0]; + + while($Name=~/T#(\d+)/) + { + my $Tid = $1; + + if(defined $TypeInfo{$Tid} + and my $TName = $TypeInfo{$Tid}{"Name"}) + { + $Name=~s/T#$Tid\b/$TName/g; + } + else + { + last; + } + } + + return formatName($Name, "T"); +} + +sub completeABI() +{ + # types + my %Incomplete = (); + my %Incomplete_TN = (); + + my @TIDs = sort {$a<=>$b} keys(%TypeInfo); + + if($AltDebugInfo) { + @TIDs = sort {$b>0<=>$a>0} sort {abs($a)<=>abs($b)} @TIDs; + } + + if(defined $Compressed + and not defined $AllUnits) + { + foreach my $Tid (@TIDs) + { + my $TName = $TypeInfo{$Tid}{"Name"}; + if(index($TName, "#")!=-1) + { + $TypeInfo{$Tid}{"Name"} = completeTypes($TName); + registerTName($Tid, $TypeInfo{$Tid}{"Name"}, $TypeInfo{$Tid}{"Type"}); + } + } + } + + foreach my $Tid (@TIDs) + { + my $Name = $TypeInfo{$Tid}{"Name"}; + my $Type = $TypeInfo{$Tid}{"Type"}; + + if(not defined $SpecElem{$Tid} + and not defined $Incomplete_TN{$Type}{$Name}) + { + if(not defined $TypeInfo{$Tid}{"Size"}) + { + if($Type=~/Struct|Class|Union|Enum/) + { + $Incomplete{$Tid} = 1; + } + } + } + + $Incomplete_TN{$Type}{$Name} = 1; + } + + # free memory + %Incomplete_TN = (); + + foreach my $Tid (sort {$a<=>$b} keys(%Incomplete)) + { + my $Name = $TypeInfo{$Tid}{"Name"}; + my $Type = $TypeInfo{$Tid}{"Type"}; + + my @Adv_TIDs = sort {$a<=>$b} keys(%{$TName_Tids{$Type}{$Name}}); + + if($AltDebugInfo) { + @Adv_TIDs = sort {$b>0<=>$a>0} sort {abs($a)<=>abs($b)} @Adv_TIDs; + } + + foreach my $Tid_Adv (@Adv_TIDs) + { + if($Tid_Adv!=$Tid) + { + if(defined $SpecElem{$Tid_Adv} + or defined $TypeInfo{$Tid_Adv}{"Size"}) + { + foreach my $Attr (keys(%{$TypeInfo{$Tid_Adv}})) + { + if(not defined $TypeInfo{$Tid}{$Attr}) + { + if(ref($TypeInfo{$Tid_Adv}{$Attr}) eq "HASH") { + $TypeInfo{$Tid}{$Attr} = dclone($TypeInfo{$Tid_Adv}{$Attr}); + } + else { + $TypeInfo{$Tid}{$Attr} = $TypeInfo{$Tid_Adv}{$Attr}; + } + + } + } + last; + } + } + } + } + + # free memory + %Incomplete = (); + + my %ReplacedAnon = (); + + foreach my $Tid (sort {$a<=>$b} keys(%TypeInfo)) + { + if($TypeInfo{$Tid}{"Type"} eq "Typedef") + { + my $TN = $TypeInfo{$Tid}{"Name"}; + my $TL = $TypeInfo{$Tid}{"Line"}; + my $NS = $TypeInfo{$Tid}{"NameSpace"}; + + if(my $BTid = $TypeInfo{$Tid}{"BaseType"}) + { + my $BName = $TypeInfo{$BTid}{"Name"}; + my $BType = $TypeInfo{$BTid}{"Type"}; + + if(defined $TypeInfo{$BTid} + and $BName=~/\Aanon\-(\w+)\-/ + and $BType=~/Enum|Struct|Union/) + { + $TypeInfo{$Tid} = dclone($TypeInfo{$BTid}); + $TypeInfo{$Tid}{"Name"} = lc($TypeInfo{$BTid}{"Type"})." ".$TN; + $TypeInfo{$Tid}{"Line"} = $TL; + + my $Name = $TypeInfo{$Tid}{"Name"}; + my $Type = $TypeInfo{$Tid}{"Type"}; + + registerTName($Tid, $Name, $Type); + + if($NS) { + $TypeInfo{$Tid}{"NameSpace"} = $NS; + } + + $DeletedAnon{$BTid} = $Tid; + foreach my $BTid_S (keys(%{$TName_Tids{$BType}{$BName}})) { + $DeletedAnon{$BTid_S} = $Tid; + } + } + } + } + elsif($TypeInfo{$Tid}{"Type"} eq "Pointer") + { + if(my $BTid = $TypeInfo{$Tid}{"BaseType"}) + { + my $To = undef; + + if(defined $DeletedAnon{$BTid}) { + $To = $DeletedAnon{$BTid}; + } + elsif(defined $ReplacedAnon{$BTid}) { + $To = $BTid; + } + + if($To) + { + $TypeInfo{$Tid}{"BaseType"} = $To; + $TypeInfo{$Tid}{"Name"} = $TypeInfo{$To}{"Name"}."*"; + + my $Name = $TypeInfo{$Tid}{"Name"}; + my $Type = $TypeInfo{$Tid}{"Type"}; + + $TName_Tid{$Type}{$Name} = $Tid; + $TName_Tids{$Type}{$Name}{$Tid} = 1; + + $ReplacedAnon{$Tid} = 1; + } + } + } + elsif($TypeInfo{$Tid}{"Type"} eq "Const") + { + if(my $BTid = $TypeInfo{$Tid}{"BaseType"}) + { + my $To = undef; + + if(defined $DeletedAnon{$BTid}) { + $To = $DeletedAnon{$BTid}; + } + elsif(defined $ReplacedAnon{$BTid}) { + $To = $BTid; + } + + if($To) + { + $TypeInfo{$Tid}{"BaseType"} = $To; + $TypeInfo{$Tid}{"Name"} = formatName($TypeInfo{$To}{"Name"}." const", "T"); + + my $Name = $TypeInfo{$Tid}{"Name"}; + my $Type = $TypeInfo{$Tid}{"Type"}; + + $TName_Tid{$Type}{$Name} = $Tid; + $TName_Tids{$Type}{$Name}{$Tid} = 1; + + $ReplacedAnon{$Tid} = 1; + } + } + } + } + + foreach my $Tid (keys(%DeletedAnon)) + { + my $TN = $TypeInfo{$Tid}{"Name"}; + my $TT = $TypeInfo{$Tid}{"Type"}; + + delete($TName_Tid{$TT}{$TN}); + delete($TName_Tids{$TT}{$TN}{$Tid}); + + if(my @TIDs = sort {$a<=>$b} keys(%{$TName_Tids{$TT}{$TN}})) + { # minimal ID + $TName_Tid{$TT}{$TN} = $TIDs[0]; + } + + delete($TypeInfo{$Tid}); + } + + # symbols + foreach my $ID (sort {$a<=>$b} keys(%SymbolInfo)) + { + if(defined $Compressed + and not defined $AllUnits) + { # replace late template arguments + my $ShortName = $SymbolInfo{$ID}{"ShortName"}; + + if(index($ShortName, "#")!=-1) { + $SymbolInfo{$ID}{"ShortName"} = completeTypes($ShortName); + } + } + + # add missed c-tors + if($SymbolInfo{$ID}{"Constructor"}) + { + if($SymbolInfo{$ID}{"MnglName"}=~/(C[1-2])([EI]).+/) + { + my ($K1, $K2) = ($1, $2); + foreach ("C1", "C2") + { + if($K1 ne $_) + { + my $Name = $SymbolInfo{$ID}{"MnglName"}; + $Name=~s/$K1$K2/$_$K2/; + + if(not defined $Mangled_ID{$Name}) { + $Mangled_ID{$Name} = cloneSymbol($ID, $Name); + } + } + } + } + } + + # add missed d-tors + if($SymbolInfo{$ID}{"Destructor"}) + { + if($SymbolInfo{$ID}{"MnglName"}=~/(D[0-2])([EI]).+/) + { + my ($K1, $K2) = ($1, $2); + foreach ("D0", "D1", "D2") + { + if($K1 ne $_) + { + my $Name = $SymbolInfo{$ID}{"MnglName"}; + $Name=~s/$K1$K2/$_$K2/; + + if(not defined $Mangled_ID{$Name}) { + $Mangled_ID{$Name} = cloneSymbol($ID, $Name); + } + } + } + } + } + } + + foreach my $ID (sort {$a<=>$b} keys(%SymbolInfo)) + { + my $SInfo = $SymbolInfo{$ID}; + my $Symbol = $SInfo->{"MnglName"}; + my $Short = $SInfo->{"ShortName"}; + + if(not $Symbol) { + $Symbol = $Short; + } + + if($LIB_LANG eq "C++") + { + if(not $SInfo->{"MnglName"}) + { + if($SInfo->{"Artificial"} + or index($Short, "~")==0) + { + delete($SymbolInfo{$ID}); + next; + } + } + } + + if($SInfo->{"Class"} + and not $SInfo->{"Data"} + and not $SInfo->{"Constructor"} + and not $SInfo->{"Destructor"} + and not $SInfo->{"Virt"} + and not $SInfo->{"PureVirt"}) + { + if(not defined $SInfo->{"Param"} + or $SInfo->{"Param"}{0}{"name"} ne "this") + { + if(not $ExtraDump or index($Symbol, "_ZTV")!=0) + { + $SInfo->{"Static"} = 1; + } + } + } + + if(not $SInfo->{"Return"}) + { # void + if(not $SInfo->{"Constructor"} + and not $SInfo->{"Destructor"}) + { + $SInfo->{"Return"} = "1"; + } + } + + if(not $SInfo->{"Header"}) + { + if($SInfo->{"Class"}) + { # detect missed header by class + if(defined $TypeInfo{$SInfo->{"Class"}}{"Header"}) { + $SInfo->{"Header"} = $TypeInfo{$SInfo->{"Class"}}{"Header"}; + } + } + } + + if(defined $PublicHeadersPath) { + fixHeader($SInfo); + } + + my $Header = $SInfo->{"Header"}; + + if(defined $SInfo->{"Source"} and defined $SInfo->{"SourceLine"}) + { + if(not defined $Header and not defined $SInfo->{"Line"}) + { + $SInfo->{"Line"} = $SInfo->{"SourceLine"}; + delete($SInfo->{"SourceLine"}); + } + } + + if(not $SInfo->{"Constructor"} + and not $SInfo->{"Destructor"}) + { + my $InLineDecl = delete($SInfo->{"DeclaredInlined"}); + + my $Bind = undef; + + if(defined $Symbol_Bind{$Symbol}) { + $Bind = $Symbol_Bind{$Symbol}; + } + elsif(my $SVer = $SymVer{$Symbol}) + { + if(defined $Symbol_Bind{$SVer}) { + $Bind = $Symbol_Bind{$SVer}; + } + } + + if($Bind ne "GLOBAL" and $Bind ne "LOCAL") + { + # Not enough info in the DWARF dump + if($Bind eq "WEAK") + { + if($InLineDecl) { + $SInfo->{"InLine"} = 1; + } + else { + $SInfo->{"InLine"} = 2; + } + } + + #if(not $SInfo->{"InLine"}) + #{ + # if(defined $PublicHeadersPath) + # { + # if($Short and defined $Header + # and defined $PublicHeader{$Header}) + # { + # if(defined $SymbolToHeader{$Short} + # and defined $SymbolToHeader{$Short}{$Header}) + # { + # if($SymbolToHeader{$Short}{$Header} eq "function") { + # $SInfo->{"InLine"} = 2; + # } + # } + # } + # } + #} + } + } + + if(defined $SInfo->{"PureVirt"}) { + delete($SInfo->{"InLine"}); + } + } +} + +sub warnPrivateType($$) +{ + my ($Name, $Note) = @_; + + if($Name=~/Private|Opaque/i) + { # _GstClockPrivate + # _Eo_Opaque + return; + } + + if($Name=~/(\A| )_/i) + { # _GstBufferList + return; + } + + if($Name=~/_\Z/i) + { # FT_RasterRec_ + return; + } + + printMsg("WARNING", "Private data type \'".$Name."\' ($Note)"); +} + +sub warnPrivateSymbol($$) +{ + my ($Name, $Note) = @_; + printMsg("WARNING", "Private symbol \'".$Name."\' ($Note)"); +} + +sub selectPublicType($) +{ + my $Tid = $_[0]; + + if($TypeInfo{$Tid}{"Type"}!~/\A(Struct|Class|Union|Enum|Typedef)\Z/) { + return 1; + } + + my $TName = $TypeInfo{$Tid}{"Name"}; + $TName=~s/\A(struct|class|union|enum) //g; + + my $Header = getFilename($TypeInfo{$Tid}{"Header"}); + + if($OBJ_LANG eq "C++" + or index($TName, "anon-")==0) { + return ($Header and defined $PublicHeader{$Header}); + } + + if($Header) + { + if(not defined $PublicHeader{$Header}) + { + if(not defined $TypeToHeader{$TName}) { + return 0; + } + } + elsif($MixedHeaders) + { + if(not defined $TypeToHeader{$TName}) + { + if(defined $Debug) { + warnPrivateType($TypeInfo{$Tid}{"Name"}, "NOT_FOUND"); + } + return 0; + } + } + } + else + { + if(not defined $TypeToHeader{$TName}) + { + # if(defined $Debug) { + # warnPrivateType($TypeInfo{$Tid}{"Name"}, "NO_HEADER"); + # } + return 0; + } + } + + return 1; +} + +sub selectPublic($$) +{ + my ($Symbol, $ID) = @_; + + if($ExtraDump) + { + if(index($Symbol, "_ZTV")==0) + { + return 1; + } + } + + my $Header = getFilename($SymbolInfo{$ID}{"Header"}); + + if($OBJ_LANG eq "C++") { + return ($Header and defined $PublicHeader{$Header}); + } + + if($Header) + { + if(not defined $PublicHeader{$Header}) + { + if(not defined $SymbolToHeader{$Symbol}) { + return 0; + } + } + elsif($MixedHeaders) + { + if(not defined $SymbolToHeader{$Symbol}) + { + if(defined $Debug) { + warnPrivateSymbol($Symbol, "NOT_FOUND"); + } + return 0; + } + } + } + else + { + if(not defined $SymbolToHeader{$Symbol}) + { + # if(defined $Debug) { + # warnPrivateSymbol($Symbol, "NO_HEADER"); + # } + return 0; + } + } + + return 1; +} + +sub add_VtableSymbols() +{ + foreach my $Symbol (sort {lc($a) cmp lc($b)} keys(%VTable_Class)) + { + my $CName = $VTable_Class{$Symbol}; + my $ID = ++$GLOBAL_ID; + + $SymbolInfo{$ID}{"MnglName"} = $Symbol; + + # TODO: move VTable attr from TypeInfo to SymbolInfo + + if(not defined $TName_Tid{"Class"}{$CName} + and not defined $TName_Tid{"Struct"}{$CName}) + { # create class + my $ID_T = ++$GLOBAL_ID_T; + + $TName_Tid{"Class"}{$CName} = $ID_T; + + $TypeInfo{$ID_T}{"Type"} = "Class"; + $TypeInfo{$ID_T}{"Name"} = $CName; + + if($CName=~/\A([\w\:]+)\:\:/) { + $TypeInfo{$ID_T}{"NameSpace"} = $1; + } + + if(defined $VirtualTable{$CName}) { + %{$TypeInfo{$ID_T}{"VTable"}} = %{$VirtualTable{$CName}}; + } + } + + if(defined $TName_Tid{"Class"}{$CName}) { + $SymbolInfo{$ID}{"Class"} = $TName_Tid{"Class"}{$CName}; + } + elsif(defined $TName_Tid{"Struct"}{$CName}) { + $SymbolInfo{$ID}{"Class"} = $TName_Tid{"Struct"}{$CName}; + } + + foreach my $Attr (keys(%{$SymbolAttribute{$Symbol}})) { + $SymbolInfo{$ID}{$Attr} = $SymbolAttribute{$Symbol}{$Attr}; + } + } +} + +sub cloneSymbol($$) +{ + my ($ID, $Symbol) = @_; + + my $nID = undef; + if(not defined $SymbolInfo{$ID + 1}) { + $nID = $ID + 1; + } + else { + $nID = ++$GLOBAL_ID; + } + foreach my $Attr (keys(%{$SymbolInfo{$ID}})) + { + if(ref($SymbolInfo{$ID}{$Attr}) eq "HASH") { + $SymbolInfo{$nID}{$Attr} = dclone($SymbolInfo{$ID}{$Attr}); + } + else { + $SymbolInfo{$nID}{$Attr} = $SymbolInfo{$ID}{$Attr}; + } + } + $SymbolInfo{$nID}{"MnglName"} = $Symbol; + return $nID; +} + +sub selectSymbol($) +{ + my $SInfo = $_[0]; + + my $MnglName = $SInfo->{"MnglName"}; + + if(not $MnglName) { + $MnglName = $SInfo->{"ShortName"}; + } + + if($SymbolsListPath + and not $SymbolsList{$MnglName}) + { + next; + } + + my $Exp = 0; + + if($Library_Symbol{$TargetName}{$MnglName} + or $Library_Symbol{$TargetName}{$SymVer{$MnglName}}) + { + $Exp = 1; + } + + if(my $Alias = $SInfo->{"Alias"}) + { + if($Library_Symbol{$TargetName}{$Alias} + or $Library_Symbol{$TargetName}{$SymVer{$Alias}}) + { + $Exp = 1; + } + } + + if(not $Exp) + { + if(defined $Library_UndefSymbol{$TargetName}{$MnglName} + or defined $Library_UndefSymbol{$TargetName}{$SymVer{$MnglName}}) + { + return 0; + } + + if($SInfo->{"Data"} + or $SInfo->{"InLine"} + or $SInfo->{"PureVirt"}) + { + if(not $SInfo->{"External"}) + { # skip static + return 0; + } + + if(defined $BinOnly) + { # data, inline, pure + return 0; + } + elsif(not defined $SInfo->{"Header"}) + { # defined in source files + return 0; + } + else { + return 2; + } + } + else { + return 0; + } + } + + return 1; +} + +sub formatName($$) +{ # type name correction + if(defined $Cache{"formatName"}{$_[1]}{$_[0]}) { + return $Cache{"formatName"}{$_[1]}{$_[0]}; + } + + my $N = $_[0]; + + if($_[1] ne "S") + { + $N=~s/\A[ ]+//g; + $N=~s/[ ]+\Z//g; + $N=~s/[ ]{2,}/ /g; + } + + $N=~s/[ ]*(\W)[ ]*/$1/g; # std::basic_string const + + $N=~s/\b(const|volatile) ([\w\:]+)([\*&,>]|\Z)/$2 $1$3/g; # "const void" to "void const" + + $N=~s/\bvolatile const\b/const volatile/g; + + $N=~s/\b(long long|short|long) unsigned\b/unsigned $1/g; + $N=~s/\b(short|long) int\b/$1/g; + + $N=~s/([\)\]])(const|volatile)\b/$1 $2/g; + + while($N=~s/>>/> >/g) {}; + + if($_[1] eq "S") + { + if(index($N, "operator")!=-1) { + $N=~s/\b(operator[ ]*)> >/$1>>/; + } + } + + $N=~s/,/, /g; + + if(defined $LambdaSupport) + { # struct {lambda()} + $N=~s/(\w)\{/$1 \{/g; + } + + return ($Cache{"formatName"}{$_[1]}{$_[0]} = $N); +} + +sub sepParams($) +{ + my $Str = $_[0]; + my @Parts = (); + my %B = ( "("=>0, "<"=>0, ")"=>0, ">"=>0 ); + my $Part = 0; + foreach my $Pos (0 .. length($Str) - 1) + { + my $S = substr($Str, $Pos, 1); + if(defined $B{$S}) { + $B{$S} += 1; + } + if($S eq "," and + $B{"("}==$B{")"} and $B{"<"}==$B{">"}) { + $Part += 1; + } + else { + $Parts[$Part] .= $S; + } + } + # remove spaces + foreach (@Parts) + { + s/\A //g; + s/ \Z//g; + } + return @Parts; +} + +sub initFuncType($$$) +{ + my ($TInfo, $FTid, $Type) = @_; + + $TInfo->{"Type"} = $Type; + + if($TInfo->{"Return"} = $DWARF_Info{$FTid}{"type"}) { + getTypeInfo($TInfo->{"Return"}); + } + else + { # void + $TInfo->{"Return"} = "1"; + } + delete($TInfo->{"BaseType"}); + + my @Prms = (); + my $PPos = 0; + foreach my $Pos (sort {$a<=>$b} keys(%{$FuncParam{$FTid}})) + { + my $ParamId = $FuncParam{$FTid}{$Pos}; + my %PInfo = %{$DWARF_Info{$ParamId}}; + + if(defined $PInfo{"art"}) + { # this + next; + } + + if(my $PTypeId = $PInfo{"type"}) + { + $TInfo->{"Param"}{$PPos}{"type"} = $PTypeId; + getTypeInfo($PTypeId); + push(@Prms, $TypeInfo{$PTypeId}{"Name"}); + } + + $PPos += 1; + } + + $TInfo->{"Name"} = $TypeInfo{$TInfo->{"Return"}}{"Name"}; + if($Type eq "FuncPtr") { + $TInfo->{"Name"} .= "(*)"; + } + $TInfo->{"Name"} .= "(".join(",", @Prms).")"; +} + +sub getShortName($) +{ + my $Name = $_[0]; + + if(my $C = findCenter($Name, "<")) + { + return substr($Name, 0, $C); + } + + return $Name; +} + +sub getTKeys($) +{ + my @TParams = @{$_[0]}; + + my @TKeys = (); + + foreach my $Pos (0 .. $#TParams) + { + my $TRef = $TParams[$Pos]; + + if(defined $Compressed + and not defined $AllUnits) + { # not all types are available in the current compile unit + # so handling them later + my $Key = undef; + + if(defined $TRef->{"val"}) { + $Key = computeValue($TRef); + } + elsif(defined $TRef->{"name"}) { + $Key = $TRef->{"name"}; + } + elsif(my $KeyT = $TRef->{"type"}) + { + if(defined $TypeInfo{$KeyT} + and my $TN = $TypeInfo{$KeyT}{"Name"}) + { + if(index($TN, "#")==-1) { + $Key = simpleName($TN); + } + else { + $Key = "T#".$KeyT; + } + } + else { + $Key = "T#".$KeyT; + } + } + + push(@TKeys, $Key); + } + else + { + my $Key = undef; + + if(defined $TRef->{"val"}) { + $Key = computeValue($TRef); + } + elsif(my $KeyT = $TRef->{"type"}) { + $Key = simpleName($TypeInfo{$KeyT}{"Name"}); + } + else { + $Key = $TRef->{"name"}; + } + + push(@TKeys, $Key); + } + } + + return @TKeys; +} + +sub getTParams($$) +{ + my ($ID, $Name) = @_; + + my ($Short, $TParams) = (); + + if(defined $TmplParam{$ID}) + { + $Short = getShortName($Name); + $TParams = getTParams_I($ID); + + my ($AddShort, $AddParam) = (); + + foreach my $Pos (0 .. $#{$TParams}) + { + my $P = $TParams->[$Pos]; + if(not defined $P->{"val"} + and defined $P->{"type"}) + { + my $TTid = $P->{"type"}; + if(not defined $TypeInfo{$TTid} + or not $TypeInfo{$TTid}{"Name"}) + { + if(not $AddParam) { + ($AddShort, $AddParam) = parseTParams($Name); + } + + if($Pos<=$#{$AddParam}) { + $P->{"name"} = $AddParam->[$Pos]{"name"}; + } + } + } + } + } + else { + ($Short, $TParams) = parseTParams($Name); + } + + if(not $TParams) { + return (); + } + + return ($Short, $TParams); +} + +sub getTParams_I($) +{ + my $ID = $_[0]; + + my @TParams = (); + + foreach my $Pos (sort {$a<=>$b} keys(%{$TmplParam{$ID}})) + { + my $TTid = $TmplParam{$ID}{$Pos}{"type"}; + + if($DWARF_Info{$TTid}{"kind"} eq "typedef") { + $TTid = $DWARF_Info{$TTid}{"type"}; + } + + my $Val = undef; + my $Key = undef; + + if(defined $TmplParam{$ID}{$Pos}{"value"}) { + $Val = $TmplParam{$ID}{$Pos}{"value"}; + } + + if(defined $TmplParam{$ID}{$Pos}{"key"}) { + $Key = $TmplParam{$ID}{$Pos}{"key"}; + } + + if($Pos>0) + { + if(defined $TmplParam{$ID}{$Pos}{"default"}) + { + if($Key=~/\A(_Alloc|_Traits|_Compare)\Z/) + { + next; + } + } + } + + getTypeInfo($TTid); + + my %PInfo = ( + "type"=>$TTid, + "key"=>$Key + ); + + if(defined $Val) { + $PInfo{"val"} = $Val; + } + + push(@TParams, \%PInfo); + } + + return \@TParams; +} + +sub parseTParams($) +{ + my $Name = $_[0]; + + if(my $Cent = findCenter($Name, "<")) + { + my $TParams = substr($Name, $Cent); + my $Short = substr($Name, 0, $Cent); + + $TParams=~s/\A<|>\Z//g; + $TParams = simpleName($TParams); + + my @Params = sepParams($TParams); + @Params = shortTParams($Short, \@Params); + + my @TParams = (); + foreach my $Pos (0 .. $#Params) + { + my $Param = $Params[$Pos]; + if($Param=~/\A(.+>)(.*?)\Z/) + { + my ($Tm, $Suf) = ($1, $2); + my ($Sh, $Prm) = parseTParams($Tm); + + if($Prm) + { + my @Keys = (); + foreach my $P (@{$Prm}) { + push(@Keys, $P->{"name"}); + } + + $Param = $Sh."<".join(", ", @Keys).">".$Suf; + } + } + my %PInfo = ( + "name"=>formatName($Param, "T") + ); + push(@TParams, \%PInfo); + } + + return ($Short, \@TParams); + } + + return (); # error +} + +sub shortTParams($$) +{ + my $Short = $_[0]; + my @Params = @{$_[1]}; + + # default arguments + if($Short eq "std::vector") + { + if($#Params==1) + { + if($Params[1] eq "std::allocator<".$Params[0].">") + { # std::vector > + splice(@Params, 1, 1); + } + } + } + elsif($Short eq "std::set") + { + if($#Params==2) + { + if($Params[1] eq "std::less<".$Params[0].">" + and $Params[2] eq "std::allocator<".$Params[0].">") + { # std::set, std::allocator > + splice(@Params, 1, 2); + } + } + } + elsif($Short eq "std::basic_string") + { + if($#Params==2) + { + if($Params[1] eq "std::char_traits<".$Params[0].">" + and $Params[2] eq "std::allocator<".$Params[0].">") + { # std::basic_string, std::allocator > + splice(@Params, 1, 2); + } + } + } + elsif($Short eq "std::basic_ostream") + { + if($#Params==1) + { + if($Params[1] eq "std::char_traits<".$Params[0].">") + { # std::basic_ostream > + splice(@Params, 1, 1); + } + } + } + + return @Params; +} + +sub getTypeInfo($) +{ + my $ID = $_[0]; + + if(not defined $DWARF_Info{$ID}) { + return; + } + + if(not keys(%{$DWARF_Info{$ID}})) + { + delete($DWARF_Info{$ID}); + return; + } + + my $Kind = $DWARF_Info{$ID}{"kind"}; + + if(defined $Cache{"getTypeInfo"}{$ID}) { + return; + } + + if(my $N = $NameSpace{$ID}) + { + if($DWARF_Info{$N}{"kind"} eq "prog") + { # local code + # template instances are declared in the subprogram (constructor) + my $Tmpl = 0; + if(my $ObjP = $DWARF_Info{$N}{"objptr"}) + { + while($DWARF_Info{$ObjP}{"type"}) { + $ObjP = $DWARF_Info{$ObjP}{"type"}; + } + my $CName = $DWARF_Info{$ObjP}{"name"}; + $CName=~s/<.*//g; + if($CName eq $DWARF_Info{$N}{"name"}) { + $Tmpl = 1; + } + } + if(not $Tmpl) + { # local types + $LocalType{$ID} = 1; + } + } + elsif($DWARF_Info{$N}{"kind"} eq "lexical_block") + { # local code + return; + } + } + + $Cache{"getTypeInfo"}{$ID} = 1; + + my %TInfo = (); + + $TInfo{"Type"} = $TypeType{$Kind}; + + if(not $TInfo{"Type"}) + { + if($DWARF_Info{$ID}{"kind"} eq "subroutine_type") { + $TInfo{"Type"} = "Func"; + } + } + + if($DWARF_Info{$ID}{"name"} eq "__unknown__") + { # size of such type may vary + delete($DWARF_Info{$ID}{"size"}); + } + + if(defined $SYS_CLANGV + and $TInfo{"Type"} eq "FieldPtr") + { # support for Clang + if(my $T = $DWARF_Info{$ID}{"type"}) + { + if($DWARF_Info{$T}{"kind"} eq "subroutine_type") + { + $TInfo{"Type"} = "MethodPtr"; + $DWARF_Info{$ID}{"pfn"} = $T; + $DWARF_Info{$T}{"objptr"} = $DWARF_Info{$ID}{"container"}; + } + } + } + + my $RealType = $TInfo{"Type"}; + + if(defined $ClassMethods{$ID}) + { + if($TInfo{"Type"} eq "Struct") { + $RealType = "Class"; + } + } + + if($TInfo{"Type"} ne "Enum" + and my $BaseType = $DWARF_Info{$ID}{"type"}) + { + $TInfo{"BaseType"} = "$BaseType"; + + if(defined $TypeType{$DWARF_Info{$BaseType}{"kind"}}) + { + getTypeInfo($TInfo{"BaseType"}); + + if(not defined $TypeInfo{$TInfo{"BaseType"}} + or not $TypeInfo{$TInfo{"BaseType"}}{"Name"}) + { # local code + delete($TypeInfo{$ID}); + return; + } + } + } + + if($RealType eq "Class") { + $TInfo{"Copied"} = 1; # will be changed in getSymbolInfo() + } + + if(defined $TypeMember{$ID}) + { + my $Unnamed = 0; + foreach my $Pos (sort {$a<=>$b} keys(%{$TypeMember{$ID}})) + { + my $MemId = $TypeMember{$ID}{$Pos}; + my $MInfo = $DWARF_Info{$MemId}; + + if(my $Name = $MInfo->{"name"}) + { + if(index($Name, "_vptr.")==0) + { # v-table pointer + $Name="_vptr"; + } + $TInfo{"Memb"}{$Pos}{"name"} = $Name; + } + else + { + $TInfo{"Memb"}{$Pos}{"name"} = "unnamed".$Unnamed; + $Unnamed += 1; + } + if($TInfo{"Type"} eq "Enum") { + $TInfo{"Memb"}{$Pos}{"value"} = $MInfo->{"cval"}; + } + else + { + $TInfo{"Memb"}{$Pos}{"type"} = $MInfo->{"type"}; + if(my $Access = $MInfo->{"access"}) + { + if($Access ne "public") + { # NOTE: default access of members in the ABI dump is "public" + $TInfo{"Memb"}{$Pos}{"access"} = $Access; + } + } + else + { + if($DWARF_Info{$ID}{"kind"} eq "class_type") + { # NOTE: default access of class members in the debug info is "private" + $TInfo{"Memb"}{$Pos}{"access"} = "private"; + } + else + { + # NOTE: default access of struct members in the debug info is "public" + } + } + if($TInfo{"Type"} eq "Union") { + $TInfo{"Memb"}{$Pos}{"offset"} = "0"; + } + elsif(defined $MInfo->{"mloc"}) { + $TInfo{"Memb"}{$Pos}{"offset"} = $MInfo->{"mloc"}; + } + } + + if((my $BitSize = $MInfo->{"bit_size"}) ne "") { + $TInfo{"Memb"}{$Pos}{"bitfield"} = $BitSize; + } + } + } + + my $NS = $NameSpace{$ID}; + if(not $NS) + { + if(my $Sp = $DWARF_Info{$ID}{"spec"}) { + $NS = $NameSpace{$Sp}; + } + } + + if($NS and $DWARF_Info{$NS}{"kind"}=~/\A(class_type|structure_type)\Z/) + { # member class + if(my $Access = $DWARF_Info{$ID}{"access"}) + { + if($Access ne "public") + { # NOTE: default access of member classes in the ABI dump is "public" + $TInfo{ucfirst($Access)} = 1; + } + } + else + { + if($DWARF_Info{$NS}{"kind"} eq "class_type") + { + # NOTE: default access of member classes in the debug info is "private" + $TInfo{"Private"} = 1; + } + else + { + # NOTE: default access to struct member classes in the debug info is "public" + } + } + } + else + { + if(my $Access = $DWARF_Info{$ID}{"access"}) + { + if($Access ne "public") + { # NOTE: default access of classes in the ABI dump is "public" + $TInfo{ucfirst($Access)} = 1; + } + } + } + + my $Size = $DWARF_Info{$ID}{"size"}; + if($Size ne "") { + $TInfo{"Size"} = $Size; + } + + setSource(\%TInfo, $ID); + + if(not $DWARF_Info{$ID}{"name"} + and my $Spec = $DWARF_Info{$ID}{"spec"}) { + $DWARF_Info{$ID}{"name"} = $DWARF_Info{$Spec}{"name"}; + } + + if($NS) + { + if($DWARF_Info{$NS}{"kind"} eq "namespace") + { + if(my $NS_F = completeNS($ID)) + { + $TInfo{"NameSpace"} = $NS_F; + } + } + elsif($DWARF_Info{$NS}{"kind"} eq "class_type" + or $DWARF_Info{$NS}{"kind"} eq "structure_type") + { # class + getTypeInfo($NS); + + if(my $Sp = $SpecElem{$NS}) { + getTypeInfo($Sp); + } + + if($TypeInfo{$NS}{"Name"}) + { + $TInfo{"NameSpace"} = $TypeInfo{$NS}{"Name"}; + $TInfo{"NameSpace"}=~s/\Astruct //; + } + } + } + + if(my $Name = $DWARF_Info{$ID}{"name"}) + { + $TInfo{"Name"} = $Name; + + if($TInfo{"NameSpace"}) { + $TInfo{"Name"} = $TInfo{"NameSpace"}."::".$TInfo{"Name"}; + } + + if($TInfo{"Type"}=~/\A(Struct|Enum|Union)\Z/) { + $TInfo{"Name"} = lc($TInfo{"Type"})." ".$TInfo{"Name"}; + } + } + + if($TInfo{"Type"} eq "Struct") + { + if(not $TInfo{"Name"}) + { + if(defined $TInfo{"Memb"} + and $TInfo{"Memb"}{0}{"name"} eq "__pfn") + { # __pfn and __delta + my $Pfn = $TInfo{"Memb"}{0}{"type"}; + if(my $Pfn_B = $DWARF_Info{$Pfn}{"type"}) + { + if($DWARF_Info{$Pfn_B}{"kind"} eq "subroutine_type") + { + $TInfo{"Type"} = "MethodPtr"; + } + } + } + } + } + + if($TInfo{"Type"}=~/Pointer|Ptr|Ref/) + { + if(not $TInfo{"Size"}) { + $TInfo{"Size"} = $SYS_WORD; + } + } + + if($TInfo{"Type"} eq "Pointer") + { + if($DWARF_Info{$TInfo{"BaseType"}}{"kind"} eq "subroutine_type") + { + initFuncType(\%TInfo, $TInfo{"BaseType"}, "FuncPtr"); + } + } + elsif($TInfo{"Type"}=~/Typedef|Const|Volatile/) + { + if($DWARF_Info{$TInfo{"BaseType"}}{"kind"} eq "subroutine_type") + { + getTypeInfo($TInfo{"BaseType"}); + } + } + elsif($TInfo{"Type"} eq "Func") + { + initFuncType(\%TInfo, $ID, "Func"); + } + elsif($TInfo{"Type"} eq "MethodPtr") + { + my $Pfn_B = undef; + + if(defined $TInfo{"Memb"} + and $TInfo{"Memb"}{0}{"name"} eq "__pfn") + { + if(my $Pfn = $TInfo{"Memb"}{0}{"type"}) { + $Pfn_B = $DWARF_Info{$Pfn}{"type"}; + } + } + else + { # support for Clang + $Pfn_B = $DWARF_Info{$ID}{"pfn"}; + } + + if($Pfn_B) + { + my @Prms = (); + my $PPos = 0; + foreach my $Pos (sort {$a<=>$b} keys(%{$FuncParam{$Pfn_B}})) + { + my $ParamId = $FuncParam{$Pfn_B}{$Pos}; + my %PInfo = %{$DWARF_Info{$ParamId}}; + + if(defined $PInfo{"art"}) + { # this + next; + } + + if(my $PTypeId = $PInfo{"type"}) + { + $TInfo{"Param"}{$PPos}{"type"} = $PTypeId; + getTypeInfo($PTypeId); + push(@Prms, $TypeInfo{$PTypeId}{"Name"}); + } + + $PPos += 1; + } + + if(my $ClassId = $DWARF_Info{$Pfn_B}{"objptr"}) + { + while($DWARF_Info{$ClassId}{"type"}) { + $ClassId = $DWARF_Info{$ClassId}{"type"}; + } + $TInfo{"Class"} = $ClassId; + getTypeInfo($TInfo{"Class"}); + } + + if($TInfo{"Return"} = $DWARF_Info{$Pfn_B}{"type"}) { + getTypeInfo($TInfo{"Return"}); + } + else + { # void + $TInfo{"Return"} = "1"; + } + + $TInfo{"Name"} = createMethodPtrName(\%TInfo); + + delete($TInfo{"BaseType"}); + } + } + elsif($TInfo{"Type"} eq "FieldPtr") + { + $TInfo{"Return"} = $TInfo{"BaseType"}; + delete($TInfo{"BaseType"}); + + if(my $Class = $DWARF_Info{$ID}{"container"}) + { + $TInfo{"Class"} = $Class; + getTypeInfo($TInfo{"Class"}); + + $TInfo{"Name"} = createFieldPtrName(\%TInfo); + } + + $TInfo{"Size"} = $SYS_WORD; + } + elsif($TInfo{"Type"} eq "String") + { + $TInfo{"Type"} = "Pointer"; + $TInfo{"Name"} = "char*"; + $TInfo{"BaseType"} = $TName_Tid{"Intrinsic"}{"char"}; + } + + if(defined $Inheritance{$ID}) + { + foreach my $Pos (sort {$a<=>$b} keys(%{$Inheritance{$ID}})) + { + if(my $BaseId = $Inheritance{$ID}{$Pos}{"id"}) + { + if(my $E = $SpecElem{$BaseId}) { + $BaseId = $E; + } + + $TInfo{"Base"}{$BaseId}{"pos"} = "$Pos"; + if(my $Access = $Inheritance{$ID}{$Pos}{"access"}) { + $TInfo{"Base"}{$BaseId}{"access"} = $Access; + } + if($Inheritance{$ID}{$Pos}{"virtual"}) { + $TInfo{"Base"}{$BaseId}{"virtual"} = 1; + } + + $ClassChild{$BaseId}{$ID} = 1; + } + } + } + + if(not $TInfo{"BaseType"}) + { + if($TInfo{"Type"} eq "Pointer") + { + $TInfo{"Name"} = "void*"; + $TInfo{"BaseType"} = "1"; + } + elsif($TInfo{"Type"} eq "Const") + { + $TInfo{"Name"} = "const void"; + $TInfo{"BaseType"} = "1"; + } + elsif($TInfo{"Type"} eq "Volatile") + { + $TInfo{"Name"} = "volatile void"; + $TInfo{"BaseType"} = "1"; + } + elsif($TInfo{"Type"} eq "Typedef") + { + $TInfo{"BaseType"} = "1"; + } + } + + if(not $TInfo{"Name"} + and $TInfo{"Type"} ne "Enum") + { + my $ID_ = $ID; + my $BaseID = undef; + my $Name = ""; + + while($BaseID = $DWARF_Info{$ID_}{"type"}) + { + my $Kind = $DWARF_Info{$ID_}{"kind"}; + if(my $Q = $Qual{$TypeType{$Kind}}) + { + $Name = $Q.$Name; + if($Q=~/\A\w/) { + $Name = " ".$Name; + } + } + if(defined $TypeInfo{$BaseID} + and $TypeInfo{$BaseID}{"Name"}) + { + $Name = $TypeInfo{$BaseID}{"Name"}.$Name; + last; + } + elsif(defined $DWARF_Info{$BaseID} + and $DWARF_Info{$BaseID}{"name"}) + { + $Name = $DWARF_Info{$BaseID}{"name"}.$Name; + $ID_ = $BaseID; + } + elsif(defined $Compressed + and not defined $AllUnits) + { + $Name = "T#".$BaseID.$Name; + last; + } + else + { # error + last; + } + } + + if($Name) { + $TInfo{"Name"} = $Name; + } + + if($TInfo{"Type"} eq "Array") + { + if(my $Count = $ArrayCount{$ID}) + { + $TInfo{"Name"} .= "[".$Count."]"; + if(my $BType = $TInfo{"BaseType"}) + { + if(my $BSize = $TypeInfo{$BType}{"Size"}) + { + if(my $Size = $Count*$BSize) + { + $TInfo{"Size"} = "$Size"; + } + } + } + } + else + { + $TInfo{"Name"} .= "[]"; + $TInfo{"Size"} = $SYS_WORD; + } + } + elsif($TInfo{"Type"} eq "Pointer") + { + if(my $BType = $TInfo{"BaseType"}) + { + if($TypeInfo{$BType}{"Type"}=~/MethodPtr|FuncPtr/) + { # void(GTestSuite::**)() + # int(**)(...) + if($TInfo{"Name"}=~s/\*\Z//) { + $TInfo{"Name"}=~s/\*(\))/\*\*$1/; + } + } + } + } + } + + if(my $Bid = $TInfo{"BaseType"}) + { + if(not $TInfo{"Size"} + and $TypeInfo{$Bid}{"Size"}) { + $TInfo{"Size"} = $TypeInfo{$Bid}{"Size"}; + } + } + if($TInfo{"Name"}) { + $TInfo{"Name"} = formatName($TInfo{"Name"}, "T"); + } + + if($TInfo{"Name"}=~/>\Z/) + { + my ($Short, $TParams) = getTParams($ID, $TInfo{"Name"}); + + if($TParams) + { + delete($TInfo{"TParam"}); + + foreach my $Pos (0 .. $#{$TParams}) { + $TInfo{"TParam"}{$Pos} = $TParams->[$Pos]; + } + + my @TKeys = getTKeys($TParams); + @TKeys = shortTParams($Short, \@TKeys); + + $TInfo{"Name"} = formatName($Short."<".join(", ", @TKeys).">", "T"); + } + } + + if(not $TInfo{"Name"}) + { + if($TInfo{"Type"}=~/\A(Class|Struct|Enum|Union)\Z/) + { + if($TInfo{"Header"}) { + $TInfo{"Name"} = "anon-".lc($TInfo{"Type"})."-".$TInfo{"Header"}."-".$TInfo{"Line"}; + } + elsif($TInfo{"Source"}) { + $TInfo{"Name"} = "anon-".lc($TInfo{"Type"})."-".$TInfo{"Source"}."-".$TInfo{"SourceLine"}; + } + else + { + if(not defined $TypeMember{$ID}) + { + if(not defined $ANON_TYPE_WARN{$TInfo{"Type"}}) + { + printMsg("WARNING", "a \"".$TInfo{"Type"}."\" type with no attributes detected in the DWARF dump ($ID)"); + $ANON_TYPE_WARN{$TInfo{"Type"}} = 1; + } + $TInfo{"Name"} = "anon-".lc($TInfo{"Type"}); + } + } + + if($TInfo{"Name"} and $TInfo{"NameSpace"}) { + $TInfo{"Name"} = $TInfo{"NameSpace"}."::".$TInfo{"Name"}; + } + } + } + + if($TInfo{"Name"}) { + registerTName($ID, $TInfo{"Name"}, $TInfo{"Type"}); + } + + if(defined $TInfo{"Source"}) + { + if(not defined $TInfo{"Header"}) + { + $TInfo{"Line"} = $TInfo{"SourceLine"}; + delete($TInfo{"SourceLine"}); + } + } + + foreach my $Attr (keys(%TInfo)) { + $TypeInfo{$ID}{$Attr} = $TInfo{$Attr}; + } + + if(my $BASE_ID = $DWARF_Info{$ID}{"spec"}) + { + foreach my $Attr (keys(%{$TypeInfo{$BASE_ID}})) + { + if($Attr ne "Type") { + $TypeInfo{$ID}{$Attr} = $TypeInfo{$BASE_ID}{$Attr}; + } + } + + foreach my $Attr (keys(%{$TypeInfo{$ID}})) { + $TypeInfo{$BASE_ID}{$Attr} = $TypeInfo{$ID}{$Attr}; + } + + $TypeSpec{$ID} = $BASE_ID; + } + + if(defined $ExtraDump) + { + if($ID>$GLOBAL_ID_T) { + $GLOBAL_ID_T = $ID; + } + } + + # remove duplicates + my $DId = undef; + + if(defined $DuplBaseType{$TInfo{"Name"}}) { + $DId = $DuplBaseType{$TInfo{"Name"}}; + } + else + { + my @DIds = sort {$a<=>$b} keys(%{$TName_Tids{$TInfo{"Type"}}{$TInfo{"Name"}}}); + + if($#DIds>0) + { + foreach (@DIds) + { + if($_>0) + { + $DId = $_; + last; + } + } + } + } + + if($DId and $DId ne $ID) + { + my $TInfo_D = $TypeInfo{$DId}; + if(keys(%{$TInfo_D})==keys(%{$TypeInfo{$ID}})) + { + $TypeInfo{$ID} = $TInfo_D; + $DuplBaseType{$TInfo{"Name"}} = $DId; + } + } +} + +sub registerTName($$$) +{ + my ($ID, $Name, $Type) = @_; + + if(not defined $TName_Tid{$Type}{$Name} + or ($ID>0 and $ID<$TName_Tid{$Type}{$Name}) + or ($ID>0 and $TName_Tid{$Type}{$Name}<0)) + { + $TName_Tid{$Type}{$Name} = "$ID"; + } + $TName_Tids{$Type}{$Name}{$ID} = 1; +} + +sub createMethodPtrName($) +{ + my $TInfo = $_[0]; + + my @Prms = (); + + if($TInfo->{"Param"}) + { + foreach my $Pos (sort {$a<=>$b} keys(%{$TInfo->{"Param"}})) { + push(@Prms, $TypeInfo{$TInfo->{"Param"}{$Pos}{"type"}}{"Name"}); + } + } + + my $TName = $TypeInfo{$TInfo->{"Return"}}{"Name"}; + $TName .= "(".$TypeInfo{$TInfo->{"Class"}}{"Name"}."::*)"; + $TName .= "(".join(",", @Prms).")"; + + return $TName; +} + +sub createFieldPtrName($) +{ + my $TInfo = $_[0]; + + return $TypeInfo{$TInfo->{"Return"}}{"Name"}."(".$TypeInfo{$TInfo->{"Class"}}{"Name"}."::*)"; +} + +sub computeValue($) +{ + my $Ref = $_[0]; + + my $TTid = $Ref->{"type"}; + my $TTName = $TypeInfo{$TTid}{"Name"}; + + my $Val = $Ref->{"val"}; + + if($TTName eq "bool") + { + if($Val eq "1") { + $Val = "true"; + } + elsif($Val eq "0") { + $Val = "false"; + } + } + else + { + if($Val=~/\A\d+\Z/) + { + if(my $S = $ConstSuffix{$TTName}) { + $Val .= $S; + } + } + } + + return $Val; +} + +sub setSource(@) +{ + my $R = shift(@_); + my $ID = shift(@_); + my $Target = undef; + + if(@_) { + $Target = shift(@_); + } + + my $File = $DWARF_Info{$ID}{"file"}; + my $Line = $DWARF_Info{$ID}{"line"}; + + if(defined $File) + { + my $InfoName = undef; + if(index($File, "(")!=-1) + { # Support for new elfutils (Fedora 30) + if($File=~s/\A(.+?)\s+\((\d+)\)/$1/) { + $InfoName = $1; + } + } + + my $Name = undef; + + if($ID>=0) { + $Name = $SourceFile{$DWARF_Info{$ID}{"unit"}}{$File}; + } + else + { # imported + $Name = $SourceFile_Alt{0}{$File}; + } + + if(not $Name) { + $Name = $InfoName; + } + + if($Name=~/\.($HEADER_EXT)\Z/i + or index($Name, ".")==-1) + { # header + if(not defined $Target or $Target eq "Header") + { + $R->{"Header"} = $Name; + if(defined $Line) { + $R->{"Line"} = $Line; + } + } + elsif($Target eq "Line") + { + if(defined $Line and $R->{"Header"} eq $Name) { + $R->{"Line"} = $Line; + } + } + } + elsif(index($Name, "")==-1) + { # source + if(not defined $Target or $Target eq "Source") + { + $R->{"Source"} = $Name; + if(defined $Line) { + $R->{"SourceLine"} = $Line; + } + } + } + } +} + +sub skipSymbol($) +{ + if($SkipCxx and not $STDCXX_TARGET) + { + if($_[0]=~/\A(_ZS|_ZNS|_ZNKS|_ZN9__gnu_cxx|_ZNK9__gnu_cxx|_ZTIS|_ZTSS|_Zd|_Zn)/) + { # stdc++ symbols + return 1; + } + } + return 0; +} + +sub findCenter($$) +{ + my ($Name, $Target) = @_; + my %B = ( "("=>0, "<"=>0, ")"=>0, ">"=>0 ); + foreach my $Pos (0 .. length($Name)-1) + { + my $S = substr($Name, length($Name)-1-$Pos, 1); + if(defined $B{$S}) { + $B{$S}+=1; + } + if($S eq $Target) + { + if($B{"("}==$B{")"} + and $B{"<"}==$B{">"}) { + return length($Name)-1-$Pos; + } + } + } + return 0; +} + +sub isExternal($) +{ + my $ID = $_[0]; + + if($DWARF_Info{$ID}{"ext"}) { + return 1; + } + elsif(my $Spec = $DWARF_Info{$ID}{"spec"}) + { + if($DWARF_Info{$Spec}{"ext"}) { + return 1; + } + } + + return 0; +} + +sub symByAddr($) +{ + my $Loc = $_[0]; + + my ($Addr, $Sect) = ("", ""); + if($Loc=~/\+(.+)/) + { + $Addr = $1; + if(not $Addr=~s/\A0x//) + { + $Addr=~s/\A00//; + } + } + if($Loc=~/([\w\.]+)\+/) { + $Sect = $1; + } + + if($Addr ne "") + { + foreach ($Sect, "") + { + if(defined $SymbolTable{$_}{$Addr}) + { + if(my @Symbols = sort keys(%{$SymbolTable{$_}{$Addr}})) { + return $Symbols[0]; + } + } + } + } + + return undef; +} + +sub getMangled($) +{ + my $ID = $_[0]; + + if(not defined $AddrToName) + { + if(my $Link = $DWARF_Info{$ID}{"linkage"}) + { + return $Link; + } + } + + if(my $Low_Pc = $DWARF_Info{$ID}{"low_pc"}) + { + if($Low_Pc=~/<([\w\@\.]+)>/) { + return $1; + } + else + { + if(my $Symbol = symByAddr($Low_Pc)) { + return $Symbol; + } + } + } + + if(my $Loc = $DWARF_Info{$ID}{"location"}) + { + if($Loc=~/<([\w\@\.]+)>/) { + return $1; + } + else + { + if(my $Symbol = symByAddr($Loc)) { + return $Symbol; + } + } + } + + if(my $Link = $DWARF_Info{$ID}{"linkage"}) + { + return $Link; + } + + return undef; +} + +sub completeNS($) +{ + my $ID = $_[0]; + + my $NS = undef; + my $ID_ = $ID; + my @NSs = (); + + while($NS = $NameSpace{$ID_} + or $NS = $NameSpace{$DWARF_Info{$ID_}{"spec"}}) + { + if(my $N = $DWARF_Info{$NS}{"name"}) { + push(@NSs, $N); + } + $ID_ = $NS; + } + + if(@NSs) + { + my $N = join("::", reverse(@NSs)); + $NestedNameSpaces{$N} = 1; + return $N; + } + + return undef; +} + +sub getSymbolInfo($) +{ + my $ID = $_[0]; + + if(my $N = $NameSpace{$ID}) + { + if($DWARF_Info{$N}{"kind"} eq "lexical_block" + or $DWARF_Info{$N}{"kind"} eq "prog") + { # local variables + return; + } + } + + my $Orig = $DWARF_Info{$ID}{"orig"}; + my $Container = undef; + + if(defined $DWARF_Info{$ID}{"container"}) { + $Container = $DWARF_Info{$ID}{"container"}; + } + elsif(defined $DWARF_Info{$Orig}{"container"}) { + $Container = $DWARF_Info{$Orig}{"container"}; + } + + if(defined $Container + and defined $LexicalId{$Container}) + { # local functions + return; + } + + if(my $Loc = $DWARF_Info{$ID}{"location"}) + { + if($Loc=~/ reg\d+\Z/) + { # local variables + return; + } + } + + my $ShortName = $DWARF_Info{$ID}{"name"}; + my $MnglName = getMangled($ID); + + if(not $MnglName) + { + if(my $Sp = $SpecElem{$ID}) + { + $MnglName = getMangled($Sp); + + if(not $MnglName) + { + if(my $OrigSp = $OrigElem{$Sp}) + { + $MnglName = getMangled($OrigSp); + } + } + } + } + + if(not $MnglName) + { + if($ShortName!~/\W/) + { # C-func + $MnglName = $ShortName; + } + } + + if(defined $Compressed + and not defined $AllUnits) + { + if(not $MnglName) + { + if(not $Partial) { + return; + } + } + } + else + { + if(not $MnglName) { + return; + } + } + + if(index($MnglName, "\@")!=-1) { + $MnglName=~s/([\@]+.*?)\Z//; + } + + if($MnglName=~/\W/) + { # unmangled operators, etc. + # foo.part.14 + # bar.isra.15 + return; + } + + if(skipSymbol($MnglName)) { + return; + } + + my %SInfo = (); + + if($DWARF_Info{$ID}{"kind"} eq "variable") + { # global data + $SInfo{"Data"} = 1; + } + + if($ShortName) { + $SInfo{"ShortName"} = $ShortName; + } + $SInfo{"MnglName"} = $MnglName; + + if($MnglName and my $OLD_ID = $Mangled_ID{$MnglName}) + { # duplicates + if(not defined $SymbolInfo{$OLD_ID}{"Header"}) { + setSource($SymbolInfo{$OLD_ID}, $ID, "Header"); + } + + if(not defined $SymbolInfo{$OLD_ID}{"Line"}) { + setSource($SymbolInfo{$OLD_ID}, $ID, "Line"); + } + + if(not defined $SymbolInfo{$OLD_ID}{"Source"}) { + setSource($SymbolInfo{$OLD_ID}, $ID, "Source"); + } + + if(not defined $SymbolInfo{$OLD_ID}{"ShortName"} + and $ShortName) { + $SymbolInfo{$OLD_ID}{"ShortName"} = $ShortName; + } + + if(defined $DWARF_Info{$OLD_ID}{"low_pc"} + or not defined $DWARF_Info{$ID}{"low_pc"}) + { + if(defined $Checked_Spec{$MnglName} + or not $DWARF_Info{$ID}{"spec"}) + { + if(defined $SymbolInfo{$OLD_ID}{"Param"} + or not defined $FuncParam{$ID}) + { + if(defined $SymbolInfo{$OLD_ID}{"Return"} + or not defined $DWARF_Info{$ID}{"type"}) + { + if(not defined $SpecElem{$ID} + and not defined $OrigElem{$ID}) { + delete($DWARF_Info{$ID}); + } + return; + } + } + } + } + } + + if($ShortName) + { + if($MnglName eq $ShortName) + { + delete($SInfo{"MnglName"}); + $MnglName = $ShortName; + } + elsif($MnglName + and index($MnglName, "_Z")!=0) + { + if($SInfo{"ShortName"}) + { + if(index($SInfo{"ShortName"}, ".")==-1) { + $SInfo{"Alias"} = $SInfo{"ShortName"}; + } + $SInfo{"ShortName"} = $SInfo{"MnglName"}; + } + + delete($SInfo{"MnglName"}); + $MnglName = $ShortName; + } + } + else + { + if(index($MnglName, "_Z")!=0) + { + $SInfo{"ShortName"} = $SInfo{"MnglName"}; + delete($SInfo{"MnglName"}); + } + } + + if(isExternal($ID)) { + $SInfo{"External"} = 1; + } + + if($Orig) + { + if(isExternal($Orig)) { + $SInfo{"External"} = 1; + } + } + + if(index($MnglName, "_ZNVK")==0) + { + $SInfo{"Const"} = 1; + $SInfo{"Volatile"} = 1; + } + elsif(index($MnglName, "_ZNV")==0) { + $SInfo{"Volatile"} = 1; + } + elsif(index($MnglName, "_ZNK")==0) { + $SInfo{"Const"} = 1; + } + + if($DWARF_Info{$ID}{"art"}) { + $SInfo{"Artificial"} = 1; + } + + my ($C, $D) = (); + + if($MnglName=~/(C[1-4])[EI].+/) + { + $C = $1; + $SInfo{"Constructor"} = 1; + } + + if($MnglName=~/(D[0-4])[EI].+/) + { + $D = $1; + $SInfo{"Destructor"} = 1; + } + + if($C or $D) + { + if($Orig) + { + if(my $InLine = $DWARF_Info{$Orig}{"inline"}) + { + if(index($InLine, "declared_not_inlined")==0) + { + $SInfo{"InLine"} = 1; + $SInfo{"Artificial"} = 1; + } + } + + setSource(\%SInfo, $Orig); + + if(my $Spec = $DWARF_Info{$Orig}{"spec"}) + { + setSource(\%SInfo, $Spec); + + $SInfo{"ShortName"} = $DWARF_Info{$Spec}{"name"}; + if($D) { + $SInfo{"ShortName"}=~s/\A\~//g; + } + + if(my $Class = $NameSpace{$Spec}) { + $SInfo{"Class"} = $Class; + } + + if(my $Virt = $DWARF_Info{$Spec}{"virt"}) + { + if(index($Virt, "virtual")!=-1) { + $SInfo{"Virt"} = 1; + } + } + + if(my $Access = $DWARF_Info{$Spec}{"access"}) + { + if($Access ne "public") + { # default access of methods in the ABI dump is "public" + $SInfo{ucfirst($Access)} = 1; + } + } + else + { # NOTE: default access of class methods in the debug info is "private" + if($TypeInfo{$SInfo{"Class"}}{"Type"} eq "Class") + { + $SInfo{"Private"} = 1; + } + } + + if(not defined $Compressed + or defined $AllUnits) + { + # clean origin + delete($SymbolInfo{$Spec}); + } + } + } + } + else + { + if(my $InLine = $DWARF_Info{$ID}{"inline"}) + { + if(index($InLine, "declared_inlined")==0) { + $SInfo{"DeclaredInlined"} = 1; + } + } + } + + if(defined $AddrToName) + { + if(not $SInfo{"Alias"} + and not $SInfo{"Constructor"} + and not $SInfo{"Destructor"}) + { + if(my $Linkage = $DWARF_Info{$ID}{"linkage"}) + { + if($Linkage ne $MnglName) { + $SInfo{"Alias"} = $Linkage; + } + } + } + } + + if($SInfo{"Data"}) + { + if(my $Spec = $DWARF_Info{$ID}{"spec"}) + { + if($DWARF_Info{$Spec}{"kind"} eq "member") + { + setSource(\%SInfo, $Spec); + $SInfo{"ShortName"} = $DWARF_Info{$Spec}{"name"}; + + if(my $NSp = $NameSpace{$Spec}) + { + if($DWARF_Info{$NSp}{"kind"} eq "namespace") { + $SInfo{"NameSpace"} = completeNS($Spec); + } + else { + $SInfo{"Class"} = $NSp; + } + } + } + } + } + + if(my $Access = $DWARF_Info{$ID}{"access"}) + { + if($Access ne "public") + { # default access of methods in the ABI dump is "public" + $SInfo{ucfirst($Access)} = 1; + } + } + elsif(not $DWARF_Info{$ID}{"spec"} + and not $Orig) + { + if(my $NS = $NameSpace{$ID}) + { + if(defined $TypeInfo{$NS}) + { # NOTE: default access of class methods in the debug info is "private" + if($TypeInfo{$NS}{"Type"} eq "Class") + { + $SInfo{"Private"} = 1; + } + } + } + } + + if(my $Class = $DWARF_Info{$ID}{"container"}) + { + $SInfo{"Class"} = $Class; + } + + if(my $NS = $NameSpace{$ID}) + { + if($DWARF_Info{$NS}{"kind"} eq "namespace") { + $SInfo{"NameSpace"} = completeNS($ID); + } + else { + $SInfo{"Class"} = $NS; + } + } + + if($SInfo{"Class"} and $MnglName + and index($MnglName, "_Z")!=0) { + return; + } + + if(my $Return = $DWARF_Info{$ID}{"type"}) + { + $SInfo{"Return"} = $Return; + } + if(my $Spec = $DWARF_Info{$ID}{"spec"}) + { + if(not $DWARF_Info{$ID}{"type"}) + { + if(my $SpRet = $DWARF_Info{$Spec}{"type"}) { + $SInfo{"Return"} = $SpRet; + } + } + if(my $Value = $DWARF_Info{$Spec}{"cval"}) + { + if($Value=~/ block:\s*(.*?)\Z/) { + $Value = $1; + } + $SInfo{"Value"} = $Value; + } + } + + if($SInfo{"ShortName"}=~/>\Z/) + { # foo + my ($Short, $TParams) = getTParams($ID, $SInfo{"ShortName"}); + + if($TParams) + { + foreach my $Pos (0 .. $#{$TParams}) { + $SInfo{"TParam"}{$Pos} = $TParams->[$Pos]; + } + + my @TKeys = getTKeys($TParams); + + $SInfo{"ShortName"} = $Short.formatName("<".join(", ", @TKeys).">", "T"); + } + } + elsif($SInfo{"ShortName"}=~/\Aoperator (\w.*)\Z/) + { # operator type::name + $SInfo{"ShortName"} = "operator ".simpleName($1); + } + + if(my $Virt = $DWARF_Info{$ID}{"virt"}) + { + if(index($Virt, "virtual")!=-1) + { + if($D or defined $SpecElem{$ID}) { + $SInfo{"Virt"} = 1; + } + else { + $SInfo{"PureVirt"} = 1; + } + } + + if((my $VirtPos = $DWARF_Info{$ID}{"vloc"}) ne "") + { + $SInfo{"VirtPos"} = $VirtPos; + } + } + + setSource(\%SInfo, $ID); + + if(not $SInfo{"Header"}) + { + if($SInfo{"Class"}) + { # detect missed header by class + if(defined $TypeInfo{$SInfo{"Class"}}{"Header"}) { + $SInfo{"Header"} = $TypeInfo{$SInfo{"Class"}}{"Header"}; + } + } + } + + my $PPos = 0; + + foreach my $Pos (sort {$a<=>$b} keys(%{$FuncParam{$ID}})) + { + my $ParamId = $FuncParam{$ID}{$Pos}; + my $Offset = undef; + my %Regs = (); + + if(my $Sp = $SpecElem{$ID}) + { + if(defined $FuncParam{$Sp}) { + $ParamId = $FuncParam{$Sp}{$Pos}; + } + } + + if((my $Loc = $DWARF_Info{$ParamId}{"location"}) ne "") { + $Offset = $Loc; + } + elsif((my $LL = $DWARF_Info{$ParamId}{"location_list"}) ne "") + { + if(my $L = $DebugLoc{$LL}) + { + if($L=~/reg(\d+)/) { + $Regs{0} = $RegName{$1}; + } + elsif($L=~/fbreg\s+(-?\w+)\Z/) { + $Offset = $1; + } + } + elsif(not defined $DebugLoc{$LL}) + { # invalid debug_loc + if(not $InvalidDebugLoc) + { + printMsg("ERROR", "invalid debug_loc section of object, please fix your elf utils"); + $InvalidDebugLoc = 1; + } + } + } + elsif(defined $ExtraDump) + { + my $Piece = 0; + foreach my $P (sort {int($a)<=>int($b)} keys(%{$FullLoc{$ParamId}})) + { + my $L = $FullLoc{$ParamId}{$P}; + + if($L=~/piece (\d+)/) { + $Piece = $1; + } + elsif($L=~/stack_value/) + { + # Nothing to do + } + elsif($L=~/reg(\d+)/) + { + $Regs{$Piece} = $RegName{$1}; + } + else + { + # Error + } + } + } + elsif(defined $DWARF_Info{$ParamId}{"register"}) + { + my $R = $DWARF_Info{$ParamId}{"register"}; + $Regs{0} = $RegName{$R}; + } + + if(my $OrigP = $DWARF_Info{$ParamId}{"orig"}) { + $ParamId = $OrigP; + } + + if(not defined $DWARF_Info{$ParamId}) + { # this is probably a lexical block + printMsg("ERROR", "incomplete info for symbol $ID"); + return; + } + + my %PInfo = %{$DWARF_Info{$ParamId}}; + + if(defined $PInfo{"name"} + and ($PInfo{"name"} eq "__in_chrg" or $PInfo{"name"} eq "__vtt_parm")) { + next; + } + + if(defined $Offset + and not defined $IncompatibleOpt) + { + if($SYS_ARCH eq "x86_64") + { + if($Offset<0) { # debug-info failure + $Offset = undef; + } + } + + if(defined $Offset) { + $SInfo{"Param"}{$Pos}{"offset"} = "$Offset"; + } + } + + if($TypeInfo{$PInfo{"type"}}{"Type"} eq "Const") + { + if(my $BTid = $TypeInfo{$PInfo{"type"}}{"BaseType"}) + { + if($TypeInfo{$BTid}{"Type"} eq "Ref") + { # const&const -> const& + $PInfo{"type"} = $BTid; + } + } + } + + $SInfo{"Param"}{$Pos}{"type"} = $PInfo{"type"}; + + if(defined $PInfo{"name"}) { + $SInfo{"Param"}{$Pos}{"name"} = $PInfo{"name"}; + } + elsif($TypeInfo{$PInfo{"type"}}{"Name"} ne "...") { + $SInfo{"Param"}{$Pos}{"name"} = "p".($PPos+1); + } + + if(defined $RegisterIdenfificationIsReliable + and my @R = keys(%Regs) + and not defined $IncompatibleOpt) + { + if(defined $ExtraDump) + { + # FIXME: 0+8, 1+16, etc. (for partially distributed parameters) + foreach my $RP (@R) + { + my $O = $Pos; + if($RP) { + $O .= "+".$RP; + } + + $SInfo{"Reg"}{$O} = $Regs{$RP}; + } + } + else + { + $SInfo{"Reg"}{$Pos} = $Regs{$R[0]}; + } + } + + if($DWARF_Info{$ParamId}{"art"} and $Pos==0) + { + if($SInfo{"Param"}{$Pos}{"name"} eq "p1") { + $SInfo{"Param"}{$Pos}{"name"} = "this"; + } + } + + if($SInfo{"Param"}{$Pos}{"name"} ne "this") + { # this, p1, p2, etc. + $PPos += 1; + } + } + + if($SInfo{"Constructor"} and not $SInfo{"InLine"} + and $SInfo{"Class"}) { + delete($TypeInfo{$SInfo{"Class"}}{"Copied"}); + } + + my $BASE_ID = undef; + + if($MnglName) { + $BASE_ID = $Mangled_ID{$MnglName}; + } + + if(defined $Compressed + and not defined $AllUnits) + { + if($MnglName and not $BASE_ID) + { + my $B_ID = undef; + if(my $Sp = $DWARF_Info{$ID}{"spec"}) { + $B_ID = $Sp; + } + elsif($Orig) + { + if(my $OrigSp = $DWARF_Info{$Orig}{"spec"}) { + $B_ID = $OrigSp; + } + } + + if($B_ID and $B_ID>0) + { # negative ones are not used for symbols + $BASE_ID = $B_ID; + + if($MnglName) { + $Mangled_ID{$MnglName} = $BASE_ID; + } + + # drop old mangled name + delete($Mangled_ID{$SymbolInfo{$BASE_ID}{"MnglName"}}); + } + } + } + + if($BASE_ID) + { + if(defined $SInfo{"Param"}) + { + if($MnglName and index($MnglName, "_Z")!=0) + { + my $DifferentParams = (keys(%{$SInfo{"Param"}})!=keys(%{$SymbolInfo{$BASE_ID}{"Param"}})); + if($DifferentParams or keys(%{$SInfo{"Param"}})==1) + { # different symbols with the same name + if(defined $SInfo{"Param"} + and $SInfo{"Param"}{0}{"type"}=="-1") + { # missed signature (...) + return; + } + } + + if($DifferentParams) + { # take the last one + delete($SymbolInfo{$BASE_ID}); + } + } + } + + $ID = $BASE_ID; + + if(defined $SymbolInfo{$ID}{"PureVirt"}) + { # if the specification of a symbol is located in other compile unit + delete($SymbolInfo{$ID}{"PureVirt"}); + $SymbolInfo{$ID}{"Virt"} = 1; + } + } + + if($MnglName) { + $Mangled_ID{$MnglName} = $ID; + } + + if($DWARF_Info{$ID}{"spec"}) { + $Checked_Spec{$MnglName} = 1; + } + + my $MixedSymbols = 0; + + if(defined $SInfo{"Param"} + and defined $SymbolInfo{$ID} + and defined $SymbolInfo{$ID}{"Param"}) + { + foreach my $K1 (keys(%{$SInfo{"Param"}})) + { + if(defined $SymbolInfo{$ID}{"Param"}{$K1}) + { + if($SInfo{"Param"}{$K1}{"type"} eq "-1" + and $SymbolInfo{$ID}{"Param"}{$K1}{"type"} ne "-1") + { + $MixedSymbols = 1; + last; + } + } + } + } + + if(not $MixedSymbols) + { + foreach my $Attr (keys(%SInfo)) + { + if(ref($SInfo{$Attr}) eq "HASH") + { + my @Prms = keys(%{$SInfo{$Attr}}); + + if($Attr eq "Param" and @Prms + and defined $SymbolInfo{$ID} + and defined $SymbolInfo{$ID}{$Attr}) + { + my $Clear = 0; + + if(keys(%{$SymbolInfo{$ID}{$Attr}})!=$#Prms+1) + { # do not mix parameters of different symbols + $Clear = 1; + } + + if($Clear) { + $SymbolInfo{$ID}{$Attr} = {}; + } + } + + foreach my $K1 (keys(%{$SInfo{$Attr}})) + { + if(ref($SInfo{$Attr}{$K1}) eq "HASH") + { + foreach my $K2 (keys(%{$SInfo{$Attr}{$K1}})) + { + $SymbolInfo{$ID}{$Attr}{$K1}{$K2} = $SInfo{$Attr}{$K1}{$K2}; + } + } + else { + $SymbolInfo{$ID}{$Attr}{$K1} = $SInfo{$Attr}{$K1}; + } + } + } + else + { + $SymbolInfo{$ID}{$Attr} = $SInfo{$Attr}; + } + } + } + + if($ID>$GLOBAL_ID) { + $GLOBAL_ID = $ID; + } +} + +sub fixHeader($) +{ + my $SInfo = $_[0]; + + if(not $SInfo->{"Header"} + or ($SInfo->{"External"} and not defined $PublicHeader{$SInfo->{"Header"}})) + { + if($SInfo->{"MnglName"} and defined $SymbolToHeader{$SInfo->{"MnglName"}}) + { + $SInfo->{"Header"} = chooseHeader($SInfo->{"MnglName"}, $SInfo->{"Source"}); + delete($SInfo->{"Line"}); + } + elsif(not $SInfo->{"Class"} + and defined $SymbolToHeader{$SInfo->{"ShortName"}}) + { + $SInfo->{"Header"} = chooseHeader($SInfo->{"ShortName"}, $SInfo->{"Source"}); + delete($SInfo->{"Line"}); + } + } + + if($SInfo->{"Alias"}) + { + if(defined $SymbolToHeader{$SInfo->{"Alias"}}) { + $SInfo->{"Header"} = chooseHeader($SInfo->{"Alias"}, $SInfo->{"Source"}); + } + } +} + +sub chooseHeader($$) +{ + my ($Symbol, $Source) = @_; + + my @Headers = sort keys(%{$SymbolToHeader{$Symbol}}); + + if($#Headers==0) { + return $Headers[0]; + } + + @Headers = sort {length($a)<=>length($b)} sort {lc($a) cmp lc($b)} @Headers; + + $Source=~s/\.\w+\Z//g; + + foreach my $Header (@Headers) + { + if($Header=~/\A\Q$Source\E(|\.[\w\+]+)\Z/i) { + return $Header; + } + } + + my $SPrefix = undef; + + if(length($Source)>3) { + $SPrefix = substr($Source, 0, 3); + } + + if(defined $SPrefix) + { + foreach my $Header (@Headers) + { + if($Header=~/\A\Q$SPrefix\E/i) { + return $Header; + } + } + } + + return $Headers[0]; +} + +sub getTypeIdByName($$) +{ + my ($Type, $Name) = @_; + return $TName_Tid{$Type}{formatName($Name, "T")}; +} + +sub getFirst($) +{ + my $Tid = $_[0]; + if(not $Tid) { + return $Tid; + } + + if(defined $DeletedAnon{$Tid}) { + $Tid = $DeletedAnon{$Tid}; + } + + if(defined $TypeSpec{$Tid}) { + $Tid = $TypeSpec{$Tid}; + } + + if(my $Name = $TypeInfo{$Tid}{"Name"}) + { + my $Type = $TypeInfo{$Tid}{"Type"}; + + my $FTid = undef; + + if($FTid = $TName_Tid{$Type}{$Name}) { + return "$FTid"; + } + + if($Name=~s/\Astruct //) + { # search for class or derived types (const, *, etc.) + foreach my $Type ("Class", "Const", "Ref", "RvalueRef", "Pointer") + { + if($FTid = $TName_Tid{$Type}{$Name}) + { + if($FTid ne $Tid) + { + $MergedTypes{$Tid} = 1; + } + return "$FTid"; + } + } + + $Name = "struct ".$Name; + } + + if(not $FTid) { + $FTid = $TName_Tid{$Type}{$Name}; + } + + if($FTid) { + return "$FTid"; + } + printMsg("ERROR", "internal error (missed type id $Tid)"); + } + + return $Tid; +} + +sub searchTypeID($) +{ + my $Name = $_[0]; + + my %Pr = map {$_=>1} ( + "Struct", + "Union", + "Enum" + ); + + foreach my $Type ("Class", "Struct", "Union", "Enum", "Typedef", "Const", + "Volatile", "Ref", "RvalueRef", "Pointer", "FuncPtr", "MethodPtr", "FieldPtr") + { + my $Tid = $TName_Tid{$Type}{$Name}; + + if(not $Tid) + { + if(defined $Pr{$Type}) + { + my $NN = lc($Type)." ".$Name; + if(defined $TName_Tid{$Type}{$NN}) { + $Tid = $TName_Tid{$Type}{$NN}; + } + } + } + if($Tid) { + return $Tid; + } + } + return undef; +} + +sub removeUnused() +{ # remove unused data types from the ABI dump + %HeadersInfo = (); + %SourcesInfo = (); + + my (%SelectedHeaders, %SelectedSources) = (); + + foreach my $ID (sort {$a<=>$b} keys(%SymbolInfo)) + { + if($SelectedSymbols{$ID}==2) + { # data, inline, pure + next; + } + + registerSymbolUsage($ID); + + if(my $H = $SymbolInfo{$ID}{"Header"}) { + $SelectedHeaders{$H} = 1; + } + if(my $S = $SymbolInfo{$ID}{"Source"}) { + $SelectedSources{$S} = 1; + } + } + + foreach my $ID (sort {$a<=>$b} keys(%SymbolInfo)) + { + if($SelectedSymbols{$ID}==2) + { # data, inline, pure + my $Save = 0; + if(my $Class = getFirst($SymbolInfo{$ID}{"Class"})) + { + if(defined $UsedType{$Class}) { + $Save = 1; + } + else + { + if(defined $ClassChild{$Class}) + { + foreach (keys(%{$ClassChild{$Class}})) + { + if(defined $UsedType{getFirst($_)}) + { + $Save = 1; + last; + } + } + } + } + } + if(my $Header = $SymbolInfo{$ID}{"Header"}) + { + if(defined $SelectedHeaders{$Header}) { + $Save = 1; + } + } + if(my $Source = $SymbolInfo{$ID}{"Source"}) + { + if(defined $SelectedSources{$Source}) { + $Save = 1; + } + } + if($Save) { + registerSymbolUsage($ID); + } + else { + delete($SymbolInfo{$ID}); + } + } + } + + if(defined $AllTypes) + { + # register all data types (except anon structs and unions) + foreach my $Tid (keys(%TypeInfo)) + { + if(defined $LocalType{$Tid}) + { # except local code + next; + } + if($TypeInfo{$Tid}{"Type"} eq "Enum" + or index($TypeInfo{$Tid}{"Name"}, "anon-")!=0) { + registerTypeUsage($Tid); + } + } + + # remove unused anons (except enums) + foreach my $Tid (keys(%TypeInfo)) + { + if(not $UsedType{$Tid}) + { + if($TypeInfo{$Tid}{"Type"} ne "Enum") + { + if(index($TypeInfo{$Tid}{"Name"}, "anon-")==0) { + delete($TypeInfo{$Tid}); + } + } + } + } + + # remove duplicates + foreach my $Tid (keys(%TypeInfo)) + { + my $Name = $TypeInfo{$Tid}{"Name"}; + my $Type = $TypeInfo{$Tid}{"Type"}; + + if($TName_Tid{$Type}{$Name} ne $Tid) { + delete($TypeInfo{$Tid}); + } + } + } + else + { + foreach my $Tid (keys(%TypeInfo)) + { # remove unused types + if(not $UsedType{$Tid}) { + delete($TypeInfo{$Tid}); + } + } + } + + foreach my $Tid (keys(%MergedTypes)) { + delete($TypeInfo{$Tid}); + } + + foreach my $Tid (keys(%LocalType)) + { + if(not $UsedType{$Tid}) { + delete($TypeInfo{$Tid}); + } + } + + # clean memory + %MergedTypes = (); + %LocalType = (); + + # completeness + foreach my $Tid (sort keys(%TypeInfo)) { + checkCompleteness($TypeInfo{$Tid}); + } + + foreach my $Sid (sort keys(%SymbolInfo)) { + checkCompleteness($SymbolInfo{$Sid}); + } + + # clean memory + %UsedType = (); +} + +sub simpleName($) +{ + my $N = $_[0]; + + $N=~s/\A(struct|class|union|enum) //; # struct, class, union, enum + + if(index($N, "std::basic_string")!=-1) + { + $N=~s/std::basic_string, std::allocator >/std::string /g; + $N=~s/std::basic_string >/std::string /g; + $N=~s/std::basic_string/std::string /g; + + $N=~s/std::basic_string, std::allocator >/std::wstring /g; + } + + if(index($N, "std::basic_ostream")!=-1) { + $N=~s/std::basic_ostream >/std::ostream /g; + } + + return formatName($N, "T"); +} + +sub registerSymbolUsage($) +{ + my $InfoId = $_[0]; + + my %FuncInfo = %{$SymbolInfo{$InfoId}}; + + if(my $S = $FuncInfo{"Source"}) { + $SourcesInfo{$S} = 1; + } + if(my $H = $FuncInfo{"Header"}) { + $HeadersInfo{$H} = 1; + } + if(my $RTid = getFirst($FuncInfo{"Return"})) + { + registerTypeUsage($RTid); + $SymbolInfo{$InfoId}{"Return"} = $RTid; + } + if(my $FCid = getFirst($FuncInfo{"Class"})) + { + registerTypeUsage($FCid); + $SymbolInfo{$InfoId}{"Class"} = $FCid; + + if(my $ThisId = getTypeIdByName("Const", $TypeInfo{$FCid}{"Name"}."*const")) + { # register "this" pointer + registerTypeUsage($ThisId); + } + if(my $ThisId_C = getTypeIdByName("Const", $TypeInfo{$FCid}{"Name"}." const*const")) + { # register "this" pointer (const method) + registerTypeUsage($ThisId_C); + } + } + foreach my $PPos (keys(%{$FuncInfo{"Param"}})) + { + if(my $PTid = getFirst($FuncInfo{"Param"}{$PPos}{"type"})) + { + registerTypeUsage($PTid); + $SymbolInfo{$InfoId}{"Param"}{$PPos}{"type"} = $PTid; + } + } + foreach my $TPos (keys(%{$FuncInfo{"TParam"}})) + { + if(my $TTid = $FuncInfo{"TParam"}{$TPos}{"type"}) + { + if($TTid = getFirst($TTid)) + { + registerTypeUsage($TTid); + $SymbolInfo{$InfoId}{"TParam"}{$TPos}{"type"} = $TTid; + delete($SymbolInfo{$InfoId}{"TParam"}{$TPos}{"name"}); + } + } + elsif(my $TPName = $FuncInfo{"TParam"}{$TPos}{"name"}) + { + if(my $TTid = searchTypeID($TPName)) + { + if(my $FTTid = getFirst($TTid)) + { + registerTypeUsage($FTTid); + $SymbolInfo{$InfoId}{"TParam"}{$TPos}{"type"} = $TTid; + delete($SymbolInfo{$InfoId}{"TParam"}{$TPos}{"name"}); + } + } + } + } +} + +sub registerTypeUsage($) +{ + my $TypeId = $_[0]; + if(not $TypeId) { + return 0; + } + if($UsedType{$TypeId}) + { # already registered + return 1; + } + my %TInfo = %{$TypeInfo{$TypeId}}; + + if(my $S = $TInfo{"Source"}) { + $SourcesInfo{$S} = 1; + } + if(my $H = $TInfo{"Header"}) { + $HeadersInfo{$H} = 1; + } + + if($TInfo{"Type"}) + { + if(my $NS = $TInfo{"NameSpace"}) + { + if(my $NSTid = searchTypeID($NS)) + { + if(my $FNSTid = getFirst($NSTid)) { + registerTypeUsage($FNSTid); + } + } + } + + if($TInfo{"Type"}=~/\A(Struct|Union|Class|FuncPtr|Func|MethodPtr|FieldPtr|Enum)\Z/) + { + $UsedType{$TypeId} = 1; + if($TInfo{"Type"}=~/\A(Struct|Class)\Z/) + { + foreach my $BaseId (keys(%{$TInfo{"Base"}})) + { # register base classes + if(my $FBaseId = getFirst($BaseId)) + { + registerTypeUsage($FBaseId); + if($FBaseId ne $BaseId) + { + %{$TypeInfo{$TypeId}{"Base"}{$FBaseId}} = %{$TypeInfo{$TypeId}{"Base"}{$BaseId}}; + delete($TypeInfo{$TypeId}{"Base"}{$BaseId}); + } + } + } + } + if($TInfo{"Type"}=~/\A(Struct|Class|Union)\Z/) + { + foreach my $TPos (keys(%{$TInfo{"TParam"}})) + { + if(my $TTid = $TInfo{"TParam"}{$TPos}{"type"}) + { + if($TTid = getFirst($TTid)) + { + registerTypeUsage($TTid); + $TypeInfo{$TypeId}{"TParam"}{$TPos}{"type"} = $TTid; + delete($TypeInfo{$TypeId}{"TParam"}{$TPos}{"name"}); + } + } + elsif(my $TPName = $TInfo{"TParam"}{$TPos}{"name"}) + { + if(my $TTid = searchTypeID($TPName)) + { + if(my $TTid = getFirst($TTid)) + { + registerTypeUsage($TTid); + $TypeInfo{$TypeId}{"TParam"}{$TPos}{"type"} = $TTid; + delete($TypeInfo{$TypeId}{"TParam"}{$TPos}{"name"}); + } + } + } + } + } + foreach my $Memb_Pos (keys(%{$TInfo{"Memb"}})) + { + if(my $MTid = getFirst($TInfo{"Memb"}{$Memb_Pos}{"type"})) + { + registerTypeUsage($MTid); + $TypeInfo{$TypeId}{"Memb"}{$Memb_Pos}{"type"} = $MTid; + } + } + if($TInfo{"Type"} eq "FuncPtr" + or $TInfo{"Type"} eq "MethodPtr" + or $TInfo{"Type"} eq "Func") + { + if(my $RTid = getFirst($TInfo{"Return"})) + { + registerTypeUsage($RTid); + $TypeInfo{$TypeId}{"Return"} = $RTid; + } + foreach my $Memb_Pos (keys(%{$TInfo{"Param"}})) + { + if(my $MTid = getFirst($TInfo{"Param"}{$Memb_Pos}{"type"})) + { + registerTypeUsage($MTid); + $TypeInfo{$TypeId}{"Param"}{$Memb_Pos}{"type"} = $MTid; + } + } + } + if($TInfo{"Type"} eq "FieldPtr") + { + if(my $RTid = getFirst($TInfo{"Return"})) + { + registerTypeUsage($RTid); + $TypeInfo{$TypeId}{"Return"} = $RTid; + } + if(my $CTid = getFirst($TInfo{"Class"})) + { + registerTypeUsage($CTid); + $TypeInfo{$TypeId}{"Class"} = $CTid; + } + } + if($TInfo{"Type"} eq "MethodPtr") + { + if(my $CTid = getFirst($TInfo{"Class"})) + { + registerTypeUsage($CTid); + $TypeInfo{$TypeId}{"Class"} = $CTid; + } + } + if($TInfo{"Type"} eq "Enum") + { + if(my $BTid = getFirst($TInfo{"BaseType"})) + { + registerTypeUsage($BTid); + $TypeInfo{$TypeId}{"BaseType"} = $BTid; + } + } + return 1; + } + elsif($TInfo{"Type"}=~/\A(Const|ConstVolatile|Volatile|Pointer|Ref|RvalueRef|Restrict|Array|Typedef)\Z/) + { + $UsedType{$TypeId} = 1; + if(my $BTid = getFirst($TInfo{"BaseType"})) + { + registerTypeUsage($BTid); + $TypeInfo{$TypeId}{"BaseType"} = $BTid; + } + return 1; + } + elsif($TInfo{"Type"}=~/\A(Intrinsic|Unspecified)\Z/) + { + $UsedType{$TypeId} = 1; + return 1; + } + } + return 0; +} + +sub checkCompleteness($) +{ + my $Info = $_[0]; + + # data types + if(defined $Info->{"Memb"}) + { + foreach my $Pos (sort keys(%{$Info->{"Memb"}})) + { + if(defined $Info->{"Memb"}{$Pos}{"type"}) { + checkTypeInfo($Info->{"Memb"}{$Pos}{"type"}); + } + } + } + if(defined $Info->{"Base"}) + { + foreach my $Bid (sort keys(%{$Info->{"Base"}})) { + checkTypeInfo($Bid); + } + } + if(defined $Info->{"BaseType"}) { + checkTypeInfo($Info->{"BaseType"}); + } + if(defined $Info->{"TParam"}) + { + foreach my $Pos (sort keys(%{$Info->{"TParam"}})) + { + my $TRef = $Info->{"TParam"}{$Pos}; + + if(my $Tid = $TRef->{"type"}) { + checkTypeInfo($Tid); + } + else + { + my $TName = $Info->{"TParam"}{$Pos}{"name"}; + if($TName=~/\A(true|false|\d.*)\Z/) { + next; + } + + if(my $Tid = searchTypeID($TName)) { + checkTypeInfo($Tid); + } + else + { + if(defined $Loud) { + printMsg("WARNING", "missed type $TName"); + } + } + } + } + } + + # symbols + if(defined $Info->{"Param"}) + { + foreach my $Pos (sort keys(%{$Info->{"Param"}})) + { + if(defined $Info->{"Param"}{$Pos}{"type"}) { + checkTypeInfo($Info->{"Param"}{$Pos}{"type"}); + } + } + } + if(defined $Info->{"Return"}) { + checkTypeInfo($Info->{"Return"}); + } + if(defined $Info->{"Class"}) { + checkTypeInfo($Info->{"Class"}); + } +} + +sub checkTypeInfo($) +{ + my $Tid = $_[0]; + + if(defined $CheckedType{$Tid}) { + return; + } + $CheckedType{$Tid} = 1; + + if(defined $TypeInfo{$Tid}) + { + if(not $TypeInfo{$Tid}{"Name"}) { + printMsg("ERROR", "missed type name ($Tid)"); + } + checkCompleteness($TypeInfo{$Tid}); + } + else { + printMsg("ERROR", "missed type id $Tid"); + } +} + +sub initRegs() +{ + if($SYS_ARCH eq "x86") + { + %RegName = ( + # integer registers + # 32 bits + "0"=>"eax", + "1"=>"ecx", + "2"=>"edx", + "3"=>"ebx", + "4"=>"esp", + "5"=>"ebp", + "6"=>"esi", + "7"=>"edi", + "8"=>"eip", + "9"=>"eflags", + "10"=>"trapno", + # FPU-control registers + # 16 bits + "37"=>"fctrl", + "38"=>"fstat", + # 32 bits + "39"=>"mxcsr", + # MMX registers + # 64 bits + "29"=>"mm0", + "30"=>"mm1", + "31"=>"mm2", + "32"=>"mm3", + "33"=>"mm4", + "34"=>"mm5", + "35"=>"mm6", + "36"=>"mm7", + # SSE registers + # 128 bits + "21"=>"xmm0", + "22"=>"xmm1", + "23"=>"xmm2", + "24"=>"xmm3", + "25"=>"xmm4", + "26"=>"xmm5", + "27"=>"xmm6", + "28"=>"xmm7", + # segment registers + # 16 bits + "40"=>"es", + "41"=>"cs", + "42"=>"ss", + "43"=>"ds", + "44"=>"fs", + "45"=>"gs", + # x87 registers + # 80 bits + "11"=>"st0", + "12"=>"st1", + "13"=>"st2", + "14"=>"st3", + "15"=>"st4", + "16"=>"st5", + "17"=>"st6", + "18"=>"st7" + ); + } + elsif($SYS_ARCH eq "x86_64") + { + %RegName = ( + # integer registers + # 64 bits + "0"=>"rax", + "1"=>"rdx", + "2"=>"rcx", + "3"=>"rbx", + "4"=>"rsi", + "5"=>"rdi", + "6"=>"rbp", + "7"=>"rsp", + "8"=>"r8", + "9"=>"r9", + "10"=>"r10", + "11"=>"r11", + "12"=>"r12", + "13"=>"r13", + "14"=>"r14", + "15"=>"r15", + "16"=>"rip", + "49"=>"rFLAGS", + # MMX registers + # 64 bits + "41"=>"mm0", + "42"=>"mm1", + "43"=>"mm2", + "44"=>"mm3", + "45"=>"mm4", + "46"=>"mm5", + "47"=>"mm6", + "48"=>"mm7", + # SSE registers + # 128 bits + "17"=>"xmm0", + "18"=>"xmm1", + "19"=>"xmm2", + "20"=>"xmm3", + "21"=>"xmm4", + "22"=>"xmm5", + "23"=>"xmm6", + "24"=>"xmm7", + "25"=>"xmm8", + "26"=>"xmm9", + "27"=>"xmm10", + "28"=>"xmm11", + "29"=>"xmm12", + "30"=>"xmm13", + "31"=>"xmm14", + "32"=>"xmm15", + # control registers + # 64 bits + "62"=>"tr", + "63"=>"ldtr", + "64"=>"mxcsr", + # 16 bits + "65"=>"fcw", + "66"=>"fsw", + # segment registers + # 16 bits + "50"=>"es", + "51"=>"cs", + "52"=>"ss", + "53"=>"ds", + "54"=>"fs", + "55"=>"gs", + # 64 bits + "58"=>"fs.base", + "59"=>"gs.base", + # x87 registers + # 80 bits + "33"=>"st0", + "34"=>"st1", + "35"=>"st2", + "36"=>"st3", + "37"=>"st4", + "38"=>"st5", + "39"=>"st6", + "40"=>"st7" + ); + } + elsif($SYS_ARCH eq "arm") + { + %RegName = ( + # integer registers + # 32-bit + "0"=>"r0", + "1"=>"r1", + "2"=>"r2", + "3"=>"r3", + "4"=>"r4", + "5"=>"r5", + "6"=>"r6", + "7"=>"r7", + "8"=>"r8", + "9"=>"r9", + "10"=>"r10", + "11"=>"r11", + "12"=>"r12", + "13"=>"r13", + "14"=>"r14", + "15"=>"r15" + ); + } +} + +sub dumpSorting($) +{ + my $Hash = $_[0]; + return [] if(not $Hash); + my @Keys = keys(%{$Hash}); + return [] if($#Keys<0); + if($Keys[0]=~/\A\d+\Z/) + { # numbers + return [sort {$a<=>$b} @Keys]; + } + else + { # strings + return [sort {$a cmp $b} @Keys]; + } +} + +sub getDebugFile($$) +{ + my ($Obj, $Header) = @_; + + my $Str = `$EU_READELF_L --strings=.$Header \"$Obj\" 2>\"$TMP_DIR/error\"`; + if($Str=~/(\s|\[)0\]\s*(.+)/) { + return $2; + } + + return undef; +} + +sub findFiles(@) +{ + my ($Path, $Type) = @_; + my $Cmd = "find \"$Path\""; + + if($Type) { + $Cmd .= " -type ".$Type; + } + + my @Res = split(/\n/, `$Cmd`); + return @Res; +} + +sub isHeader($) +{ + my $Path = $_[0]; + + if($Path=~/\.($HEADER_EXT)\Z/i) { + return 1; + } + + if(index(getFilename($Path), ".")==-1 and -T $Path) + { # C++ + return 1; + } + + return 0; +} + +sub detectPublicSymbols($) +{ + my $Path = $_[0]; + + if(not -e $Path) { + exitStatus("Access_Error", "can't access \'$Path\'"); + } + + my $Path_A = abs_path($Path); + + printMsg("INFO", "Detect public symbols"); + + if($UseTU) + { + if(not checkCmd($GPP)) { + exitStatus("Not_Found", "can't find \"$GPP\""); + } + } + else + { + if(not checkCmd($CTAGS)) { + exitStatus("Not_Found", "can't find \"$CTAGS\""); + } + + if(my $CtagsVer = `$CTAGS --version 2>&1`) + { + if($CtagsVer!~/Universal/i) + { + printMsg("ERROR", "requires Universal Ctags to work properly"); + if($CtagsVer=~/Exuberant/i) { + $EXUBERANT_CTAGS = 1; + } + } + } + } + + $PublicSymbols_Detected = 1; + + my @Files = (); + my @Headers = (); + my @DefaultInc = (); + + if($PublicHeadersIsDir) + { # directory + @Files = findFiles($Path, "f"); + + foreach my $File (@Files) + { + if(isHeader($File)) { + push(@Headers, $File); + } + } + + push(@DefaultInc, $Path_A); + + if(-d $Path_A."/include") { + push(@DefaultInc, $Path_A."/include"); + } + } + else + { # list of headers + @Headers = split(/\n/, readFile($Path)); + } + + if(not @Headers) { + exitStatus("Error", "headers not found in \'$Path\'"); + } + + my $PublicHeader_F = $CacheHeaders."/PublicHeader.data"; + my $SymbolToHeader_F = $CacheHeaders."/SymbolToHeader.data"; + my $TypeToHeader_F = $CacheHeaders."/TypeToHeader.data"; + my $Path_F = $CacheHeaders."/PATH"; + + if($CacheHeaders + and -f $PublicHeader_F + and -f $SymbolToHeader_F + and -f $TypeToHeader_F + and -f $Path_F) + { + if(readFile($Path_F) eq $Path_A) + { + %PublicHeader = %{eval(readFile($PublicHeader_F))}; + %SymbolToHeader = %{eval(readFile($SymbolToHeader_F))}; + %TypeToHeader = %{eval(readFile($TypeToHeader_F))}; + + return; + } + } + + foreach my $File (@Headers) + { + $PublicHeader{getFilename($File)} = 1; + } + + my $Is_C = ($OBJ_LANG eq "C"); + + my @Langs = undef; + + if($EXUBERANT_CTAGS) + { + @Langs = ("C++"); + if($Is_C) { + @Langs = ("C"); + } + } + else + { + @Langs = ("C++", "OldC++"); + if($Is_C) { + @Langs = ("C", "OldC"); + } + } + + @Headers = sort {length($b)<=>length($a)} sort {lc($b) cmp lc($a)} @Headers; + + foreach my $File (@Headers) + { + my $HName = getFilename($File); + + if($UseTU) + { + my $TmpDir = $TMP_DIR."/tu"; + if(not -d $TmpDir) { + mkpath($TmpDir); + } + + my $File_A = abs_path($File); + + my $IncDir = getDirname($File_A); + my $IncDir_O = getDirname($IncDir); + + my $TmpInc = $TmpDir."/tmp-inc.h"; + my $TmpContent = ""; + if($IncludeDefines) + { + foreach my $D (split(/;/, $IncludeDefines)) { + $TmpContent = "#define $D\n"; + } + } + if($IncludePreamble) + { + foreach my $P (split(/;/, $IncludePreamble)) + { + if($P=~/\A\//) { + $TmpContent = "#include \"".$P."\"\n"; + } + else { + $TmpContent = "#include <".$P.">\n"; + } + } + } + $TmpContent .= "#include \"$File_A\"\n"; + writeFile($TmpInc, $TmpContent); + + my $Cmd = $GPP." -w -fpermissive -fdump-translation-unit -fkeep-inline-functions -c \"$TmpInc\""; + + if(defined $IncludePaths) + { + foreach my $P (split(/;/, $IncludePaths)) + { + if($P!~/\A\//) { + $P = $Path_A."/".$P; + } + + $Cmd .= " -I\"".$P."\""; + } + } + else + { # automatic + $Cmd .= " -I\"$IncDir\" -I\"$IncDir_O\""; + } + + foreach my $P (@DefaultInc) { + $Cmd .= " -I\"$P\""; + } + + $Cmd .= " -o ./a.out >OUT 2>&1"; + + chdir($TmpDir); + system($Cmd); + chdir($ORIG_DIR); + + my $TuDump = $TmpDir."/tmp-inc.h.001t.tu"; + my $Errors = $TmpDir."/OUT"; + + if(not -e $TuDump) + { + printMsg("ERROR", "failed to list symbols in the header \'$HName\'"); + if($Debug) { + printMsg("ERROR", readFile($Errors)); + } + next; + } + elsif($?) + { + printMsg("ERROR", "some errors occured when compiling header \'$HName\'"); + if($Debug) { + printMsg("ERROR", readFile($Errors)); + } + } + + my (%Fdecl, %Tdecl, %Tname, %Ident, %NotDecl) = (); + my $Content = readFile($TuDump); + $Content=~s/\n[ ]+/ /g; + + my @Lines = split(/\n/, $Content); + foreach my $N (0 .. $#Lines) + { + my $Line = $Lines[$N]; + if(index($Line, "function_decl")!=-1 + or index($Line, "var_decl")!=-1) + { + if($Line=~/name: \@(\d+)/) + { + my $Id = $1; + + if($Line=~/srcp: ([^:]+)\:\d/) + { + if(defined $PublicHeader{$1}) { + $Fdecl{$Id} = $1; + } + } + } + } + elsif($Line=~/\@(\d+)\s+identifier_node\s+strg:\s+(\w+)/) + { + $Ident{$1} = $2; + } + elsif($Is_C) + { + if(index($Line, "type_decl")!=-1) + { + if($Line=~/\A\@(\d+)/) + { + my $Id = $1; + if($Line=~/name: \@(\d+)/) + { + my $NId = $1; + + if($Line=~/srcp: ([^:]+)\:\d/) + { + if(defined $PublicHeader{$1}) + { + $Tdecl{$Id} = $1; + $Tname{$Id} = $NId; + } + } + } + } + } + elsif(index($Line, "record_type")!=-1 + or index($Line, "union_type")!=-1) + { + if($Line!~/ flds:/) + { + if($Line=~/name: \@(\d+)/) + { + $NotDecl{$1} = 1; + } + } + } + elsif(index($Line, "enumeral_type")!=-1) + { + if($Line!~/ csts:/) + { + if($Line=~/name: \@(\d+)/) + { + $NotDecl{$1} = 1; + } + } + } + elsif(index($Line, "integer_type")!=-1) + { + if($Line=~/name: \@(\d+)/) + { + $NotDecl{$1} = 1; + } + } + } + } + + foreach my $Id (keys(%Fdecl)) + { + if(my $Name = $Ident{$Id}) { + $SymbolToHeader{$Name}{$Fdecl{$Id}} = 1; + } + } + + if($Is_C) + { + foreach my $Id (keys(%Tdecl)) + { + if(defined $NotDecl{$Id}) { + next; + } + + if(my $Name = $Ident{$Tname{$Id}}) { + $TypeToHeader{$Name} = $Tdecl{$Id}; + } + } + } + + unlink($TuDump); + } + else + { # using Ctags + my $IgnoreTags = ""; + + if(defined $IgnoreTagsPath) { + $IgnoreTags .= " -I \@".$IgnoreTagsPath; + } + + if(@CtagsDef) + { + foreach my $Def (@CtagsDef) { + $IgnoreTags .= " -D '".$Def."'"; + } + } + + foreach my $Lang (@Langs) + { + my $List_S = `$CTAGS -x --$Lang-kinds=fpvxd --languages=+$Lang --language-force=$Lang $IgnoreTags \"$File\"`; + foreach my $Line (split(/\n/, $List_S)) + { + if($Line=~/\A(\w+)\s+(\w+)/) { + $SymbolToHeader{$1}{$HName} = $2; + } + + if(index($Line, " macro ")!=-1) + { + if($Line=~/#define\s+(\w+)\s+(\w+)\Z/) { + $SymbolToHeader{$2}{$HName} = "prototype"; + } + } + + if(not $Is_C) + { + if(index($Line, "operator ")==0) + { + if($Line=~/\A(operator) (\w.*?)\s+(prototype|function)/) { + $SymbolToHeader{$1." ".$2}{$HName} = $3; + } + elsif($Line=~/\A(operator) (\W.*?)\s+(prototype|function)/) { + $SymbolToHeader{$1.$2}{$HName} = $3; + } + } + } + } + + if($Is_C) + { + my $List_T = `$CTAGS -x --$Lang-kinds=gstu --languages=+$Lang --language-force=$Lang $IgnoreTags \"$File\"`; + foreach my $Line (split(/\n/, $List_T)) + { + if($Line=~/\A(\w+)/) + { + my $N = $1; + + if($Line!~/\b$N\s+$N\b/) { + $TypeToHeader{$N} = $HName; + } + } + } + } + } + } + } + + # We can't fully rely on the output of Ctags because it may + # miss some symbols intentionally (due to branches of code) + # or occasionally (due to complex macros). + if(not $UseTU) + { + foreach my $File (@Headers) + { + my $HName = getFilename($File); + my $Content = readFile($File); + + $Content=~s&/\*.+?\*/&&sg; + $Content=~s&(//|#define).*\n&\n&g; + + # Functions + my @Func = ($Content=~/([a-zA-Z]\w+)\s*\(/g); + foreach (@Func) + { + if(not defined $SymbolToHeader{$_} or not defined $SymbolToHeader{$_}{$HName}) { + $SymbolToHeader{$_}{$HName} = "prototype"; + } + } + + # Data + my @Data = ($Content=~/([a-zA-Z_]\w+)\s*;/gi); + foreach (@Data) + { + if(not defined $SymbolToHeader{$_} or not defined $SymbolToHeader{$_}{$HName}) { + $SymbolToHeader{$_}{$HName} = "prototype"; + } + } + + # Types + if($Is_C) + { + my @Type1 = ($Content=~/}\s*([a-zA-Z]\w+)\s*;/g); + my @Type2 = ($Content=~/([a-zA-Z]\w+)\s*{/g); + foreach (@Type1, @Type2) + { + if(not defined $TypeToHeader{$_} or not defined $TypeToHeader{$_}{$HName}) { + $TypeToHeader{$_}{$HName} = 1; + } + } + } + } + } + + if($CacheHeaders) + { + writeFile($PublicHeader_F, Dumper(\%PublicHeader)); + writeFile($SymbolToHeader_F, Dumper(\%SymbolToHeader)); + writeFile($TypeToHeader_F, Dumper(\%TypeToHeader)); + writeFile($Path_F, $Path_A); + } +} + +sub getDebugAltLink($) +{ + my $Obj = $_[0]; + + my $AltDebugFile = getDebugFile($Obj, "gnu_debugaltlink"); + + if(not $AltDebugFile) { + return undef; + } + + my $Dir = getDirname($Obj); + + my $AltObj_R = $AltDebugFile; + if($Dir and $Dir ne ".") { + $AltObj_R = $Dir."/".$AltObj_R; + } + + if(-e $AltObj_R) + { + printMsg("INFO", "Set alternate debug-info file to \'$AltObj_R\' (use -alt option to change it)"); + return $AltObj_R; + } + + printMsg("WARNING", "can't access \'$AltObj_R\'"); + return undef; +} + +sub scenario() +{ + if($Help) + { + helpMsg(); + exit(0); + } + if($ShowVersion) + { + printMsg("INFO", "ABI Dumper $TOOL_VERSION EE"); + printMsg("INFO", "Copyright (C) 2025 Andrey Ponomarenko's ABI Laboratory"); + printMsg("INFO", "License: GNU LGPL 2.1 "); + printMsg("INFO", "This program is free software: you can redistribute it and/or modify it.\n"); + printMsg("INFO", "Written by Andrey Ponomarenko."); + exit(0); + } + if($DumpVersion) + { + printMsg("INFO", $TOOL_VERSION); + exit(0); + } + + $Data::Dumper::Sortkeys = 1; + + if($SortDump) { + $Data::Dumper::Sortkeys = \&dumpSorting; + } + + if($SearchDirDebuginfo) + { + if(not -d $SearchDirDebuginfo) { + exitStatus("Access_Error", "can't access directory \'$SearchDirDebuginfo\'"); + } + } + + if($PublicHeadersPath) + { + if(not -e $PublicHeadersPath) { + exitStatus("Access_Error", "can't access \'$PublicHeadersPath\'"); + } + + $PublicHeadersIsDir = (-d $PublicHeadersPath); + + foreach my $P (split(/;/, $IncludePaths)) + { + if($PublicHeadersIsDir and $P!~/\A\//) { + $P = $PublicHeadersPath."/".$P; + } + + if(not -e $P) { + exitStatus("Access_Error", "can't access \'$P\'"); + } + } + } + + if($SymbolsListPath) + { + if(not -f $SymbolsListPath) { + exitStatus("Access_Error", "can't access file \'$SymbolsListPath\'"); + } + foreach my $S (split(/\s*\n\s*/, readFile($SymbolsListPath))) { + $SymbolsList{$S} = 1; + } + } + + if($VTDumperPath) + { + if(not -x $VTDumperPath) { + exitStatus("Access_Error", "can't access \'$VTDumperPath\'"); + } + + $VTABLE_DUMPER = $VTDumperPath; + } + + if(defined $Compare) + { + my $P1 = $ARGV[0]; + my $P2 = $ARGV[1]; + + if(not $P1) { + exitStatus("Error", "arguments are not specified"); + } + elsif(not -e $P1) { + exitStatus("Access_Error", "can't access \'$P1\'"); + } + + if(not $P2) { + exitStatus("Error", "second argument is not specified"); + } + elsif(not -e $P2) { + exitStatus("Access_Error", "can't access \'$P2\'"); + } + + my %ABI = (); + + $ABI{1} = eval(readFile($P1)); + $ABI{2} = eval(readFile($P2)); + + my %SymInfo = (); + + foreach (1, 2) + { + foreach my $ID (keys(%{$ABI{$_}->{"SymbolInfo"}})) + { + my $Info = $ABI{$_}->{"SymbolInfo"}{$ID}; + + if(my $MnglName = $Info->{"MnglName"}) { + $SymInfo{$_}{$MnglName} = $Info; + } + elsif(my $ShortName = $Info->{"ShortName"}) { + $SymInfo{$_}{$ShortName} = $Info; + } + } + } + + foreach my $Symbol (sort keys(%{$SymInfo{1}})) + { + if(not defined $SymInfo{2}{$Symbol}) { + printMsg("INFO", "Removed $Symbol"); + } + } + + foreach my $Symbol (sort keys(%{$SymInfo{2}})) + { + if(not defined $SymInfo{1}{$Symbol}) { + printMsg("INFO", "Added $Symbol"); + } + } + + exit(0); + } + + if($TargetVersion eq "") { + printMsg("WARNING", "module version is not specified (-lver NUM)"); + } + + if($FullDump) + { + $AllTypes = 1; + $AllSymbols = 1; + } + + if(not $OutputDump) { + $OutputDump = "./ABI.dump"; + } + + if(not @ARGV) { + exitStatus("Error", "object path is not specified"); + } + + foreach my $Obj (@ARGV) + { + if(not -e $Obj) { + exitStatus("Access_Error", "can't access \'$Obj\'"); + } + } + + if($AltDebugInfoOpt) + { + if(not -e $AltDebugInfoOpt) { + exitStatus("Access_Error", "can't access \'$AltDebugInfoOpt\'"); + } + $AltDebugInfo = $AltDebugInfoOpt; + readAltInfo($AltDebugInfoOpt); + } + + if($ExtraInfo) + { + mkpath($ExtraInfo); + $ExtraInfo = abs_path($ExtraInfo); + } + + initABI(); + + my $Res = 0; + + foreach my $Obj (@ARGV) + { + if($Obj=~/\.a\Z/) { + exitStatus("Error", "analysis of static libraries is not supported, please dump ABIs of individual objects in the archive or compile a shared library"); + } + + if(not $TargetName) + { + $TargetName = getFilename(realpath($Obj)); + $TargetName=~s/\.debug\Z//; # nouveau.ko.debug + + if(index($TargetName, "libstdc++")==0 + or index($TargetName, "libc++")==0) { + $STDCXX_TARGET = 1; + } + } + + readSymbols($Obj); + + if(not defined $PublicSymbols_Detected) + { + if(defined $PublicHeadersPath) { + detectPublicSymbols($PublicHeadersPath); + } + } + + $Res += readDWARFInfo($Obj); + + %DWARF_Info = (); + + readVtables($Obj); + } + + if(not defined $Library_Symbol{$TargetName}) { + exitStatus("No_Exported", "can't find exported symbols in object(s), please add a shared object on command line"); + } + + if(not $Res) { + exitStatus("No_DWARF", "can't find debug info in object(s)"); + } + + if(defined $ExtraDump) + { # add v-table symbols + add_VtableSymbols(); + } + + %VTable_Symbol = (); + %VTable_Class = (); + + %VirtualTable = (); + + completeABI(); + selectSymbols(); + removeUnused(); + + if(defined $PublicHeadersPath) + { + foreach my $Tid (sort {$a<=>$b} keys(%TypeInfo)) + { + if(not $TypeInfo{$Tid}{"Header"} + or not defined $PublicHeader{$TypeInfo{$Tid}{"Header"}}) + { + if($TypeInfo{$Tid}{"Type"}=~/Struct|Union|Enum|Typedef/) + { + my $TName = $TypeInfo{$Tid}{"Name"}; + $TName=~s/\A(struct|class|union|enum) //g; + + if(defined $TypeToHeader{$TName}) { + $TypeInfo{$Tid}{"Header"} = $TypeToHeader{$TName}; + } + #elsif(index($TName, "::")!=-1) + #{ + # if($TName=~/::(.+?)\Z/) + # { + # if(defined $TypeToHeader{$1}) + # { + # $TypeInfo{$Tid}{"Header"} = $TypeToHeader{$1}; + # } + # } + #} + } + } + + if(not selectPublicType($Tid)) { + $TypeInfo{$Tid}{"PrivateABI"} = 1; + } + } + } + + if(defined $PublicHeadersPath) + { + foreach my $H (keys(%HeadersInfo)) + { + if(not defined $PublicHeader{getFilename($H)}) { + delete($HeadersInfo{$H}); + } + } + } + + # free memory + %Mangled_ID = (); + %Checked_Spec = (); + %SelectedSymbols = (); + %Cache = (); + + %ClassChild = (); + %TypeSpec = (); + + %SourceFile = (); + %SourceFile_Alt = (); + %DebugLoc = (); + %TName_Tid = (); + %TName_Tids = (); + %SymbolTable = (); + + %SymbolAttribute = (); + + %NameSpace = (); + + %DeletedAnon = (); + %CheckedType = (); + %DuplBaseType = (); + + %KSymTab = (); + %TypeToHeader = (); + %PublicHeader = (); + + createABIFile(); + + exit(0); +} + +scenario(); diff --git a/src/main/abi-symbols/abi.dump b/src/main/abi-symbols/abi.dump index 2b5f9f388..4b64d4b81 100644 --- a/src/main/abi-symbols/abi.dump +++ b/src/main/abi-symbols/abi.dump @@ -1,8 +1,8 @@ $VAR1 = { - 'ABI_DUMPER_VERSION' => '1.2', + 'ABI_DUMPER_VERSION' => '1.4', 'ABI_DUMP_VERSION' => '3.5', 'Arch' => 'x86_64', - 'Compiler' => 'GNU C++17 9.4.0 -mtune=generic -march=x86-64 -g -Og -std=c++2a -fPIC -fasynchronous-unwind-tables -fstack-protector-strong -fstack-clash-protection -fcf-protection', + 'GccVersion' => '11.4.0', 'Headers' => { '__mbstate_t.h' => 1, 'absolutetimedateformat.h' => 1, @@ -35,6 +35,7 @@ $VAR1 = { 'asyncappender.h' => 1, 'atomic' => 1, 'atomic_base.h' => 1, + 'atomic_wide_counter.h' => 1, 'atomic_word.h' => 1, 'basic_string.h' => 1, 'basicconfigurator.h' => 1, @@ -190,6 +191,7 @@ $VAR1 = { 'socketoutputstream.h' => 1, 'std_function.h' => 1, 'std_mutex.h' => 1, + 'std_thread.h' => 1, 'stddef.h' => 1, 'stdint-intn.h' => 1, 'stdint-uintn.h' => 1, @@ -202,6 +204,7 @@ $VAR1 = { 'stl_vector.h' => 1, 'stream.h' => 1, 'strftimedateformat.h' => 1, + 'string_conversions.h' => 1, 'stringfwd.h' => 1, 'stringhelper.h' => 1, 'stringmatchfilter.h' => 1, @@ -215,7 +218,6 @@ $VAR1 = { 'systemerrwriter.h' => 1, 'systemoutwriter.h' => 1, 'telnetappender.h' => 1, - 'thread' => 1, 'thread-shared-types.h' => 1, 'threadlocal.h' => 1, 'threadpatternconverter.h' => 1, @@ -244,8 +246,9 @@ $VAR1 = { }, 'Language' => 'C++', 'LibraryName' => 'liblog4cxx.so.15.2.0', - 'LibraryVersion' => '15', + 'LibraryVersion' => '1.2.0', 'NameSpaces' => { + '__cxxabiv1' => 1, '__gnu_cxx' => 1, '__gnu_cxx::__ops' => 1, '__pstl::execution::v1' => 1, @@ -264,13 +267,26 @@ $VAR1 = { 'log4cxx::varia' => 1, 'log4cxx::xml' => 1, 'std' => 1, + 'std::_V2' => 1, + 'std::__cmp_cat' => 1, + 'std::__cmp_cust' => 1, 'std::__cxx11' => 1, 'std::__detail' => 1, 'std::__exception_ptr' => 1, + 'std::__parse_int' => 1, + 'std::__swappable_details' => 1, + 'std::__swappable_with_details' => 1, 'std::chrono' => 1, 'std::chrono::_V2' => 1, 'std::filesystem' => 1, - 'std::filesystem::__cxx11' => 1 + 'std::filesystem::__cxx11' => 1, + 'std::filesystem::__cxx11::__detail' => 1, + 'std::ranges' => 1, + 'std::ranges::__cust_access' => 1, + 'std::ranges::__cust_imove' => 1, + 'std::ranges::__cust_iswap' => 1, + 'std::ranges::__cust_swap' => 1, + 'std::ranges::__detail' => 1 }, 'Needed' => { 'ld-linux-x86-64.so.2' => 1, @@ -432,90493 +448,89208 @@ $VAR1 = { 'zipcompressaction.cpp' => 1 }, 'SymbolInfo' => { - '10060231' => { - 'Class' => '10060110', - 'Const' => 1, - 'Header' => 'loggerpatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10063371' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '10060360' => { - 'Class' => '10060076', - 'Header' => 'loggerpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loggerpatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '10060377' => { - 'Class' => '10060076', - 'Header' => 'loggerpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loggerpatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '10060394' => { - 'Class' => '10060076', - 'Const' => 1, - 'Header' => 'loggerpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10062995' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loggerpatternconverter.cpp', - 'SourceLine' => '28', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '10060433' => { - 'Class' => '10060076', - 'Const' => 1, - 'Header' => 'loggerpatternconverter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10062995' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '10060477' => { - 'Class' => '10060076', - 'Const' => 1, - 'Header' => 'loggerpatternconverter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10062995' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '10060563' => { - 'Class' => '10060076', - 'Header' => 'loggerpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'options', - 'type' => '2273842' - } - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'loggerpatternconverter.cpp', - 'SourceLine' => '37', - 'Static' => 1 - }, - '10060591' => { - 'Class' => '10060076', - 'Const' => 1, - 'Header' => 'loggerpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10062995' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' - } - }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'loggerpatternconverter.cpp', - 'SourceLine' => '49', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '10061180' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes34LoggerPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LoggerPatternConverterRegistration', - 'Source' => 'loggerpatternconverter.cpp' - }, - '10066408' => { + '10038000' => { 'Artificial' => 1, - 'Class' => '10060076', + 'Class' => '9957092', 'Destructor' => 1, - 'Header' => 'loggerpatternconverter.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterD0Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx2db10DBAppender14DBAppenderPrivD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10062796' + 'type' => '9975709' } }, - 'ShortName' => 'LoggerPatternConverter', + 'ShortName' => 'DBAppenderPriv', + 'Source' => 'dbappender.cpp', 'Virt' => 1 }, - '10066409' => { + '10038001' => { 'Artificial' => 1, - 'Class' => '10060076', + 'Class' => '9957092', 'Destructor' => 1, - 'Header' => 'loggerpatternconverter.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterD2Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx2db10DBAppender14DBAppenderPrivD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10062796' + 'type' => '9975709' } }, - 'ShortName' => 'LoggerPatternConverter', + 'ShortName' => 'DBAppenderPriv', + 'Source' => 'dbappender.cpp', 'Virt' => 1 }, - '10066737' => { + '10047522' => { 'Artificial' => 1, - 'Class' => '10060076', + 'Class' => '9957092', 'Destructor' => 1, - 'Header' => 'loggerpatternconverter.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterD1Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx2db10DBAppender14DBAppenderPrivD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10062796' + 'type' => '9975709' } }, - 'ShortName' => 'LoggerPatternConverter', + 'ShortName' => 'DBAppenderPriv', + 'Source' => 'dbappender.cpp', 'Virt' => 1 }, - '10076643' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_22LoggerPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '10062818' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '10036181' - } - } - }, - '10076644' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_22LoggerPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '10062818' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '10036181' - } - } - }, - '10077140' => { + '10074396' => { 'Artificial' => 1, - 'Class' => '10058446', + 'Class' => '9947519', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10062285' + 'type' => '9974191' } }, 'ShortName' => 'WideLife' }, - '10077141' => { + '10074397' => { 'Artificial' => 1, - 'Class' => '10058446', + 'Class' => '9947519', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10062285' + 'type' => '9974191' } }, 'ShortName' => 'WideLife' }, - '10077282' => { + '10074539' => { 'Artificial' => 1, - 'Class' => '10058446', + 'Class' => '9947519', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10062285' + 'type' => '9974191' } }, 'ShortName' => 'WideLife' }, - '10077283' => { + '10074540' => { 'Artificial' => 1, - 'Class' => '10058446', + 'Class' => '9947519', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10062285' + 'type' => '9974191' } }, 'ShortName' => 'WideLife' }, - '1008401' => { - 'Class' => '836422', - 'Constructor' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppenderC2Ev', + '1008539' => { + 'Class' => '558569', + 'Destructor' => 1, + 'Header' => 'appenderattachableimpl.h', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843940' + 'type' => '955418' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'AsyncAppender', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '178' + 'ShortName' => 'AppenderAttachableImpl', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '44', + 'Virt' => 1 }, - '1008498' => { - 'Artificial' => 1, - 'Class' => '262983', - 'Constructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx8AppenderC2Ev', + '1008639' => { + 'Class' => '558569', + 'Destructor' => 1, + 'Header' => 'appenderattachableimpl.h', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843078' + 'type' => '955418' } }, - 'ShortName' => 'Appender' + 'ShortName' => 'AppenderAttachableImpl', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '44', + 'Virt' => 1 }, - '1008499' => { - 'Artificial' => 1, - 'Class' => '262983', - 'Constructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx8AppenderC1Ev', + '1010648' => { + 'Class' => '558569', + 'Destructor' => 1, + 'Header' => 'appenderattachableimpl.h', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843078' + 'type' => '955418' } }, - 'ShortName' => 'Appender' + 'ShortName' => 'AppenderAttachableImpl', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '44', + 'Virt' => 1 }, - '10086087' => { - 'Class' => '10060076', - 'Constructor' => 1, - 'Header' => 'loggerpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterC1ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10062796' - }, - '1' => { - 'name' => 'options', - 'type' => '2273842' - } - }, - 'ShortName' => 'LoggerPatternConverter', - 'Source' => 'loggerpatternconverter.cpp', - 'SourceLine' => '30' - }, - '10090296' => { - 'Class' => '10060076', - 'Constructor' => 1, - 'Header' => 'loggerpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterC2ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10062796' - }, - '2' => { - 'name' => 'options', - 'type' => '2273842' - } - }, - 'ShortName' => 'LoggerPatternConverter', - 'Source' => 'loggerpatternconverter.cpp', - 'SourceLine' => '30' - }, - '10096523' => { - 'Artificial' => 1, - 'Class' => '10060110', + '10120376' => { + 'Class' => '9956860', 'Destructor' => 1, - 'Header' => 'loggerpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD0Ev', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10063360' + 'type' => '9977226' } }, - 'ShortName' => 'ClazzLoggerPatternConverter', + 'ShortName' => 'DBAppender', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '107', 'Virt' => 1 }, - '10096524' => { - 'Artificial' => 1, - 'Class' => '10060110', + '10120475' => { + 'Class' => '9956860', 'Destructor' => 1, - 'Header' => 'loggerpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD1Ev', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10063360' + 'type' => '9977226' } }, - 'ShortName' => 'ClazzLoggerPatternConverter', + 'ShortName' => 'DBAppender', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '107', 'Virt' => 1 }, - '10096665' => { - 'Artificial' => 1, - 'Class' => '10060110', + '10120764' => { + 'Class' => '9956860', 'Destructor' => 1, - 'Header' => 'loggerpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD2Ev', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10063360' + 'type' => '9977226' } }, - 'ShortName' => 'ClazzLoggerPatternConverter', + 'ShortName' => 'DBAppender', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '107', 'Virt' => 1 }, - '10096755' => { - 'Artificial' => 1, - 'Class' => '10060110', + '10120919' => { + 'Class' => '9956860', 'Constructor' => 1, - 'Header' => 'loggerpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterC2Ev', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10063360' + 'type' => '9977226' } }, - 'ShortName' => 'ClazzLoggerPatternConverter' + 'ShortName' => 'DBAppender', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '102' }, - '10096756' => { - 'Artificial' => 1, - 'Class' => '10060110', + '10123105' => { + 'Class' => '9956860', 'Constructor' => 1, - 'Header' => 'loggerpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterC1Ev', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10063360' + 'type' => '9977226' } }, - 'ShortName' => 'ClazzLoggerPatternConverter' + 'ShortName' => 'DBAppender', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '102' }, - '1020490' => { + '1012607' => { + 'Class' => '558569', + 'Constructor' => 1, + 'Header' => 'appenderattachableimpl.h', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplC1ERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955418' + }, + '1' => { + 'name' => 'pool', + 'type' => '210607' + } + }, + 'ShortName' => 'AppenderAttachableImpl', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '39' + }, + '1013911' => { + 'Class' => '558569', + 'Constructor' => 1, + 'Header' => 'appenderattachableimpl.h', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplC2ERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955418' + }, + '2' => { + 'name' => 'pool', + 'type' => '210607' + } + }, + 'ShortName' => 'AppenderAttachableImpl', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '39' + }, + '1015032' => { + 'Artificial' => 1, + 'Class' => '566027', + 'Constructor' => 1, + 'Header' => 'appenderattachable.h', + 'InLine' => 1, + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1014982' + } + }, + 'ShortName' => 'AppenderAttachable' + }, + '1015033' => { 'Artificial' => 1, - 'Class' => '836440', + 'Class' => '566027', + 'Constructor' => 1, + 'Header' => 'appenderattachable.h', + 'InLine' => 1, + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1014982' + } + }, + 'ShortName' => 'AppenderAttachable' + }, + '1016888' => { + 'Artificial' => 1, + 'Class' => '558583', 'Destructor' => 1, - 'Header' => 'asyncappender.h', + 'Header' => 'appenderattachableimpl.h', 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD0Ev', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845167' + 'type' => '955543' } }, - 'ShortName' => 'ClazzAsyncAppender', + 'ShortName' => 'ClazzAppenderAttachableImpl', 'Virt' => 1 }, - '1020491' => { + '1016889' => { 'Artificial' => 1, - 'Class' => '836440', + 'Class' => '558583', 'Destructor' => 1, - 'Header' => 'asyncappender.h', + 'Header' => 'appenderattachableimpl.h', 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD1Ev', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845167' + 'type' => '955543' } }, - 'ShortName' => 'ClazzAsyncAppender', + 'ShortName' => 'ClazzAppenderAttachableImpl', 'Virt' => 1 }, - '1020632' => { + '1017035' => { 'Artificial' => 1, - 'Class' => '836440', + 'Class' => '558583', 'Destructor' => 1, - 'Header' => 'asyncappender.h', + 'Header' => 'appenderattachableimpl.h', 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD2Ev', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845167' + 'type' => '955543' } }, - 'ShortName' => 'ClazzAsyncAppender', + 'ShortName' => 'ClazzAppenderAttachableImpl', 'Virt' => 1 }, - '1020722' => { + '1017130' => { 'Artificial' => 1, - 'Class' => '836440', + 'Class' => '558583', 'Constructor' => 1, - 'Header' => 'asyncappender.h', + 'Header' => 'appenderattachableimpl.h', 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderC2Ev', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845167' + 'type' => '955543' } }, - 'ShortName' => 'ClazzAsyncAppender' + 'ShortName' => 'ClazzAppenderAttachableImpl' }, - '1020723' => { + '1017131' => { 'Artificial' => 1, - 'Class' => '836440', + 'Class' => '558583', 'Constructor' => 1, - 'Header' => 'asyncappender.h', + 'Header' => 'appenderattachableimpl.h', 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderC1Ev', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845167' + 'type' => '955543' } }, - 'ShortName' => 'ClazzAsyncAppender' + 'ShortName' => 'ClazzAppenderAttachableImpl' }, - '10210501' => { - 'Class' => '10210380', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent7getNameB5cxx11Ev', + '1017195' => { + 'Artificial' => 1, + 'Class' => '566027', + 'Destructor' => 1, + 'Header' => 'appenderattachable.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1014982' + } + }, + 'ShortName' => 'AppenderAttachable', + 'Virt' => 1 + }, + '1017196' => { + 'Artificial' => 1, + 'Class' => '566027', + 'Destructor' => 1, + 'Header' => 'appenderattachable.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1014982' + } + }, + 'ShortName' => 'AppenderAttachable', + 'Virt' => 1 + }, + '10198954' => { + 'Artificial' => 1, + 'Class' => '9956878', + 'Destructor' => 1, + 'Header' => 'dbappender.h', + 'InLine' => 1, + 'Line' => '116', + 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216432' + 'type' => '9977530' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzDBAppender', + 'Virt' => 1 }, - '10210540' => { - 'Class' => '10210380', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv', + '10198955' => { + 'Artificial' => 1, + 'Class' => '9956878', + 'Destructor' => 1, + 'Header' => 'dbappender.h', + 'InLine' => 1, + 'Line' => '116', + 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216432' + 'type' => '9977530' } }, - 'Return' => '841473', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzDBAppender', + 'Virt' => 1 }, - '10210579' => { + '10199101' => { 'Artificial' => 1, - 'Class' => '10210380', - 'Header' => 'loggingevent.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZTch0_h0_NK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv', + 'Class' => '9956878', + 'Destructor' => 1, + 'Header' => 'dbappender.h', + 'InLine' => 1, + 'Line' => '116', + 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216432' + 'type' => '9977530' } }, - 'Return' => '841473', - 'ShortName' => '_ZTch0_h0_NK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv' + 'ShortName' => 'ClazzDBAppender', + 'Virt' => 1 }, - '10210622' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent8getClassEv', + '10199196' => { + 'Artificial' => 1, + 'Class' => '9956878', + 'Constructor' => 1, + 'Header' => 'dbappender.h', + 'InLine' => 1, + 'Line' => '116', + 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216376' + 'type' => '9977530' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '168', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '10210678' => { - 'Class' => '407370', - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '168', - 'Static' => 1 + 'ShortName' => 'ClazzDBAppender' }, - '10210695' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'InLine' => 2, - 'Line' => '54', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent4castERKNS_7helpers5ClassE', + '10199197' => { + 'Artificial' => 1, + 'Class' => '9956878', + 'Constructor' => 1, + 'Header' => 'dbappender.h', + 'InLine' => 1, + 'Line' => '116', + 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216376' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '9977530' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzDBAppender' }, - '10210739' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'InLine' => 2, - 'Line' => '56', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent10instanceofERKNS_7helpers5ClassE', + '10575994' => { + 'Class' => '10575955', + 'Header' => 'defaultconfigurator.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx19DefaultConfigurator9configureESt10shared_ptrINS_3spi16LoggerRepositoryEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216376' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'repository', + 'type' => '565552' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '10211105' => { - 'Class' => '407370', - 'Header' => 'loggingevent.h', - 'Line' => '114', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent12getStartTimeEv', - 'Return' => '649587', - 'ShortName' => 'getStartTime', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '174', + 'Return' => '1', + 'ShortName' => 'configure', + 'Source' => 'defaultconfigurator.cpp', + 'SourceLine' => '51', 'Static' => 1 }, - '10211154' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '123', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent17getThreadUserNameB5cxx11Ev', + '10576015' => { + 'Class' => '10575955', + 'Header' => 'defaultconfigurator.h', + 'Line' => '66', + 'MnglName' => '_ZN7log4cxx19DefaultConfigurator24setConfigurationFileNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216376' + 'name' => 'path', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getThreadUserName', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '205' + 'Return' => '1', + 'ShortName' => 'setConfigurationFileName', + 'Source' => 'defaultconfigurator.cpp', + 'SourceLine' => '38', + 'Static' => 1 }, - '10211217' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent18getChronoTimeStampEv', + '10576036' => { + 'Class' => '10575955', + 'Header' => 'defaultconfigurator.h', + 'Line' => '72', + 'MnglName' => '_ZN7log4cxx19DefaultConfigurator28setConfigurationWatchSecondsEi', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216376' + 'name' => 'seconds', + 'type' => '190263' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '38897', - 'ShortName' => 'getChronoTimeStamp', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '484' + 'Return' => '1', + 'ShortName' => 'setConfigurationWatchSeconds', + 'Source' => 'defaultconfigurator.cpp', + 'SourceLine' => '44', + 'Static' => 1 }, - '10211430' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '184', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent11getPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', + '10576057' => { + 'Class' => '10575955', + 'Header' => 'defaultconfigurator.h', + 'Line' => '99', + 'MnglName' => '_ZN7log4cxx19DefaultConfigurator17configureFromFileERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EESB_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216376' + 'name' => 'directories', + 'type' => '6085700' }, '1' => { - 'name' => 'key', - 'type' => '263006' - }, - '2' => { - 'name' => 'dest', - 'type' => '409210' + 'name' => 'filenames', + 'type' => '6085700' } }, - 'Return' => '50284', - 'ShortName' => 'getProperty', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '304' + 'Return' => '10457937', + 'ShortName' => 'configureFromFile', + 'Source' => 'defaultconfigurator.cpp', + 'SourceLine' => '174', + 'Static' => 1 }, - '10211472' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '191', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent17getPropertyKeySetB5cxx11Ev', + '10576088' => { + 'Class' => '10575955', + 'Header' => 'defaultconfigurator.h', + 'Line' => '103', + 'MnglName' => '_ZN7log4cxx19DefaultConfigurator24getConfigurationFileNameB5cxx11Ev', + 'Private' => 1, + 'Return' => '209673', + 'ShortName' => 'getConfigurationFileName', + 'Source' => 'defaultconfigurator.cpp', + 'SourceLine' => '137', + 'Static' => 1 + }, + '10576104' => { + 'Class' => '10575955', + 'Header' => 'defaultconfigurator.h', + 'Line' => '104', + 'MnglName' => '_ZN7log4cxx19DefaultConfigurator20getConfiguratorClassB5cxx11Ev', + 'Private' => 1, + 'Return' => '209673', + 'ShortName' => 'getConfiguratorClass', + 'Source' => 'defaultconfigurator.cpp', + 'SourceLine' => '124', + 'Static' => 1 + }, + '10576120' => { + 'Class' => '10575955', + 'Header' => 'defaultconfigurator.h', + 'Line' => '105', + 'MnglName' => '_ZN7log4cxx19DefaultConfigurator26getConfigurationWatchDelayEv', + 'Private' => 1, + 'Return' => '190263', + 'ShortName' => 'getConfigurationWatchDelay', + 'Source' => 'defaultconfigurator.cpp', + 'SourceLine' => '150', + 'Static' => 1 + }, + '10576136' => { + 'Class' => '10575955', + 'Header' => 'defaultconfigurator.h', + 'Line' => '106', + 'MnglName' => '_ZN7log4cxx19DefaultConfigurator11tryLoadFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216376' + 'name' => 'filename', + 'type' => '210597' } }, - 'Return' => '8064794', - 'ShortName' => 'getPropertyKeySet', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '322' - }, - '10211504' => { - 'Class' => '407370', - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent11setPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Private' => 1, + 'Return' => '3117865', + 'ShortName' => 'tryLoadFile', + 'Source' => 'defaultconfigurator.cpp', + 'SourceLine' => '160', + 'Static' => 1 + }, + '10578505' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'Line' => '222', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator9configureERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216387' - }, - '1' => { - 'name' => 'key', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'filename', + 'type' => '202831' } }, - 'Return' => '1', - 'ShortName' => 'setProperty', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '439' - }, - '10211631' => { - 'Class' => '407370', - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent20getCurrentThreadNameB5cxx11Ev', - 'Private' => 1, - 'Return' => '263006', - 'ShortName' => 'getCurrentThreadName', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '340', + 'Return' => '3117865', + 'ShortName' => 'configure', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '852', 'Static' => 1 }, - '10211648' => { - 'Class' => '407370', - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent24getCurrentThreadUserNameB5cxx11Ev', - 'Private' => 1, - 'Return' => '263006', - 'ShortName' => 'getCurrentThreadUserName', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '387', + '10578698' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'Line' => '292', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator9configureERKNS_4FileE', + 'Param' => { + '0' => { + 'name' => 'configFilename', + 'type' => '575822' + } + }, + 'Return' => '3117865', + 'ShortName' => 'configure', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '123', 'Static' => 1 }, - '10212833' => { - 'Data' => 1, - 'Line' => '168', - 'MnglName' => '_ZN7log4cxx7classes24LoggingEventRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LoggingEventRegistration', - 'Source' => 'loggingevent.cpp' + '10590501' => { + 'Destructor' => 1, + 'Header' => 'file.h', + 'Line' => '99', + 'MnglName' => '_ZN7log4cxx4FileD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10586409' + } + } }, - '1021370' => { - 'Artificial' => 1, - 'Class' => '262983', - 'Destructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx8AppenderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '843078' - } - }, - 'ShortName' => 'Appender', - 'Virt' => 1 - }, - '1021371' => { - 'Artificial' => 1, - 'Class' => '262983', - 'Destructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx8AppenderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '843078' - } - }, - 'ShortName' => 'Appender', - 'Virt' => 1 - }, - '10271552' => { + '10590528' => { + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx4FileC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10586409' + }, + '1' => { + 'name' => 'path', + 'type' => '202831' + } + } + }, + '10590567' => { + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx4FileC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10586409' + } + } + }, + '10601981' => { 'Artificial' => 1, - 'Class' => '10208425', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEED2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA36_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10215608' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '10588809' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '10588809' + } + } }, - '10271553' => { + '10601982' => { 'Artificial' => 1, - 'Class' => '10208425', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEED0Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA36_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10215608' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '10588809' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '10588809' + } + } }, - '10271694' => { + '10602137' => { 'Artificial' => 1, - 'Class' => '10208425', + 'Class' => '3115821', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEEC2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA20_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10215608' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '10588783' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '10588783' + } + } }, - '10271695' => { + '10602138' => { 'Artificial' => 1, - 'Class' => '10208425', + 'Class' => '3115821', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEEC1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA20_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10215608' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '10588783' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '10588783' + } + } }, - '10300428' => { - 'Class' => '407370', - 'Destructor' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEventD0Ev', + '10603021' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA22_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216387' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '8374120' } }, - 'ShortName' => 'LoggingEvent', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '201', - 'Virt' => 1 + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '8374120' + } + } }, - '10300526' => { - 'Class' => '407370', - 'Destructor' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEventD1Ev', + '10603022' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA22_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216387' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '8374120' } }, - 'ShortName' => 'LoggingEvent', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '201', - 'Virt' => 1 + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '8374120' + } + } }, - '10304209' => { - 'Class' => '407370', - 'Destructor' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEventD2Ev', + '10974274' => { + 'Class' => '565893', + 'Const' => 1, + 'Header' => 'loggerfactory.h', + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx3spi13LoggerFactory8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216387' + 'type' => '24285531' } }, - 'ShortName' => 'LoggingEvent', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '201', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '47', + 'Virt' => 1, + 'VirtPos' => '2' }, - '10307943' => { - 'Class' => '407370', - 'Constructor' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEES9_RKNS0_12LocationInfoE', + '10974311' => { + 'Class' => '565893', + 'Header' => 'loggerfactory.h', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '47', + 'Static' => 1 + }, + '10975245' => { + 'Class' => '10975132', + 'Const' => 1, + 'Header' => 'defaultloggerfactory.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactory7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216387' - }, - '1' => { - 'name' => 'logger1', - 'type' => '263006' - }, - '2' => { - 'name' => 'level1', - 'type' => '412081' - }, - '3' => { - 'name' => 'message1', - 'type' => '263006' - }, - '4' => { - 'name' => 'locationInfo1', - 'type' => '839402' + 'type' => '10983580' } }, - 'ShortName' => 'LoggingEvent', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '194' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '10312907' => { - 'Class' => '407370', - 'Constructor' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEES9_RKNS0_12LocationInfoE', + '10975312' => { + 'Class' => '10975114', + 'Header' => 'defaultloggerfactory.h', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'defaultloggerfactory.cpp', + 'SourceLine' => '23', + 'Static' => 1 + }, + '10975328' => { + 'Class' => '10975114', + 'Header' => 'defaultloggerfactory.h', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'defaultloggerfactory.cpp', + 'SourceLine' => '23', + 'Static' => 1 + }, + '10975344' => { + 'Class' => '10975114', + 'Const' => 1, + 'Header' => 'defaultloggerfactory.h', + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216387' - }, - '2' => { - 'name' => 'logger1', - 'type' => '263006' - }, - '3' => { - 'name' => 'level1', - 'type' => '412081' - }, - '4' => { - 'name' => 'message1', - 'type' => '263006' - }, - '5' => { - 'name' => 'locationInfo1', - 'type' => '839402' + 'type' => '10983540' } }, - 'ShortName' => 'LoggingEvent', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '194' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'defaultloggerfactory.cpp', + 'SourceLine' => '23', + 'Virt' => 1, + 'VirtPos' => '2' }, - '10317922' => { - 'Class' => '407370', - 'Constructor' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEERKNS0_12LocationInfoEOS7_', + '10975381' => { + 'Class' => '10975114', + 'Const' => 1, + 'Header' => 'defaultloggerfactory.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216387' + 'type' => '10983540' }, '1' => { - 'name' => 'logger', - 'type' => '263006' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' - }, - '4' => { - 'name' => 'message', - 'type' => '9687304' + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'LoggingEvent', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '184' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '10323270' => { - 'Class' => '407370', - 'Constructor' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEERKNS0_12LocationInfoEOS7_', + '10975423' => { + 'Class' => '10975114', + 'Const' => 1, + 'Header' => 'defaultloggerfactory.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216387' + 'type' => '10983540' }, - '2' => { - 'name' => 'logger', - 'type' => '263006' - }, - '3' => { - 'name' => 'level', - 'type' => '412081' - }, - '4' => { - 'name' => 'location', - 'type' => '839402' - }, - '5' => { - 'name' => 'message', - 'type' => '9687304' + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'LoggingEvent', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '184' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '10328621' => { - 'Class' => '407370', - 'Constructor' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC1Ev', + '10975465' => { + 'Class' => '10975114', + 'Const' => 1, + 'Header' => 'defaultloggerfactory.h', + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory21makeNewLoggerInstanceERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216387' + 'type' => '10983540' + }, + '1' => { + 'name' => 'pool', + 'type' => '210607' + }, + '2' => { + 'name' => 'name', + 'type' => '210597' } }, - 'ShortName' => 'LoggingEvent', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '179' + 'Return' => '3121982', + 'ShortName' => 'makeNewLoggerInstance', + 'Source' => 'defaultloggerfactory.cpp', + 'SourceLine' => '25', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '10975564' => { + 'Data' => 1, + 'Line' => '23', + 'MnglName' => '_ZN7log4cxx7classes32DefaultLoggerFactoryRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'DefaultLoggerFactoryRegistration', + 'Source' => 'defaultloggerfactory.cpp' }, - '10332192' => { - 'Class' => '407370', + '10984820' => { + 'Class' => '566426', 'Constructor' => 1, - 'Header' => 'loggingevent.h', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC2Ev', + 'Header' => 'logger.h', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx6LoggerC1ERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216387' + 'type' => '10983089' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'name1', + 'type' => '210597' } }, - 'ShortName' => 'LoggingEvent', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '179' + 'ShortName' => 'Logger', + 'Source' => 'logger.cpp', + 'SourceLine' => '89' }, - '10338379' => { + '10987608' => { 'Artificial' => 1, - 'Class' => '10210380', + 'Class' => '10975114', 'Destructor' => 1, - 'Header' => 'loggingevent.h', + 'Header' => 'defaultloggerfactory.h', 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD0Ev', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216421' + 'type' => '10983550' } }, - 'ShortName' => 'ClazzLoggingEvent', + 'ShortName' => 'DefaultLoggerFactory', 'Virt' => 1 }, - '10338380' => { + '10987609' => { 'Artificial' => 1, - 'Class' => '10210380', + 'Class' => '10975114', 'Destructor' => 1, - 'Header' => 'loggingevent.h', + 'Header' => 'defaultloggerfactory.h', 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD1Ev', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216421' + 'type' => '10983550' } }, - 'ShortName' => 'ClazzLoggingEvent', + 'ShortName' => 'DefaultLoggerFactory', 'Virt' => 1 }, - '10338521' => { + '10987846' => { 'Artificial' => 1, - 'Class' => '10210380', + 'Class' => '10975114', 'Destructor' => 1, - 'Header' => 'loggingevent.h', + 'Header' => 'defaultloggerfactory.h', 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD2Ev', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216421' + 'type' => '10983550' } }, - 'ShortName' => 'ClazzLoggingEvent', + 'ShortName' => 'DefaultLoggerFactory', 'Virt' => 1 }, - '10338611' => { + '10994018' => { 'Artificial' => 1, - 'Class' => '10210380', - 'Constructor' => 1, - 'Header' => 'loggingevent.h', + 'Class' => '10972219', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventC2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216421' + 'type' => '10982938' } }, - 'ShortName' => 'ClazzLoggingEvent' + 'ShortName' => 'WideLife' }, - '10338612' => { + '10994019' => { 'Artificial' => 1, - 'Class' => '10210380', - 'Constructor' => 1, - 'Header' => 'loggingevent.h', + 'Class' => '10972219', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventC1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216421' + 'type' => '10982938' } }, - 'ShortName' => 'ClazzLoggingEvent' + 'ShortName' => 'WideLife' }, - '10408957' => { - 'Class' => '10408836', - 'Const' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 2, - 'Line' => '51', - 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverter7getNameB5cxx11Ev', + '10994161' => { + 'Artificial' => 1, + 'Class' => '10972219', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411567' + 'type' => '10982938' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '10409192' => { - 'Class' => '2271385', - 'Header' => 'loggingeventpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loggingeventpatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '10409209' => { - 'Class' => '2271385', - 'Const' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter8getClassEv', + '10994162' => { + 'Artificial' => 1, + 'Class' => '10972219', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273423' + 'type' => '10982938' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loggingeventpatternconverter.cpp', - 'SourceLine' => '28', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'WideLife' }, - '10409436' => { - 'Class' => '2271385', - 'Const' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv', + '10998901' => { + 'Artificial' => 1, + 'Class' => '10975132', + 'Destructor' => 1, + 'Header' => 'defaultloggerfactory.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273423' + 'type' => '10983570' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'handlesThrowable', - 'Source' => 'loggingeventpatternconverter.cpp', - 'SourceLine' => '55', - 'Virt' => 1, - 'VirtPos' => '8' - }, - '10409583' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes40LoggingEventPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LoggingEventPatternConverterRegistration', - 'Source' => 'loggingeventpatternconverter.cpp' + 'ShortName' => 'ClazzDefaultLoggerFactory', + 'Virt' => 1 }, - '10417891' => { + '10998902' => { 'Artificial' => 1, - 'Class' => '10407495', + 'Class' => '10975132', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'defaultloggerfactory.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEED2Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411013' + 'type' => '10983570' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzDefaultLoggerFactory', + 'Virt' => 1 }, - '10417892' => { + '10999047' => { 'Artificial' => 1, - 'Class' => '10407495', + 'Class' => '10975132', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'defaultloggerfactory.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEED0Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411013' + 'type' => '10983570' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzDefaultLoggerFactory', + 'Virt' => 1 }, - '10418032' => { + '10999142' => { 'Artificial' => 1, - 'Class' => '10407495', + 'Class' => '10975132', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'defaultloggerfactory.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEEC2Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411013' + 'type' => '10983570' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzDefaultLoggerFactory' }, - '10418033' => { + '10999143' => { 'Artificial' => 1, - 'Class' => '10407495', + 'Class' => '10975132', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'defaultloggerfactory.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEEC1Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411013' + 'type' => '10983570' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzDefaultLoggerFactory' }, - '10420214' => { - 'Class' => '2271385', - 'Constructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterC1ESt10unique_ptrINS0_16PatternConverter23PatternConverterPrivateESt14default_deleteIS4_EE', + '10999217' => { + 'Artificial' => 1, + 'Class' => '565893', + 'Destructor' => 1, + 'Header' => 'loggerfactory.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304124' - }, - '1' => { - 'name' => 'priv', - 'type' => '2391088' + 'type' => '10999170' } }, - 'Protected' => 1, - 'ShortName' => 'LoggingEventPatternConverter', - 'Source' => 'loggingeventpatternconverter.cpp', - 'SourceLine' => '37' + 'ShortName' => 'LoggerFactory', + 'Virt' => 1 }, - '10422051' => { - 'Class' => '2271385', - 'Constructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterC2ESt10unique_ptrINS0_16PatternConverter23PatternConverterPrivateESt14default_deleteIS4_EE', + '10999218' => { + 'Artificial' => 1, + 'Class' => '565893', + 'Destructor' => 1, + 'Header' => 'loggerfactory.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304124' - }, - '2' => { - 'name' => 'priv', - 'type' => '2391088' + 'type' => '10999170' } }, - 'Protected' => 1, - 'ShortName' => 'LoggingEventPatternConverter', - 'Source' => 'loggingeventpatternconverter.cpp', - 'SourceLine' => '37' + 'ShortName' => 'LoggerFactory', + 'Virt' => 1 }, - '10423998' => { - 'Class' => '2271385', - 'Constructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '11314279' => { + 'Class' => '11314196', + 'Const' => 1, + 'Header' => 'defaultrepositoryselector.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelector7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304124' - }, - '1' => { - 'name' => 'name1', - 'type' => '263006' - }, - '2' => { - 'name' => 'style1', - 'type' => '263006' + 'type' => '28018648' } }, - 'Protected' => 1, - 'ShortName' => 'LoggingEventPatternConverter', - 'Source' => 'loggingeventpatternconverter.cpp', - 'SourceLine' => '32' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '10424116' => { - 'Class' => '2271385', - 'Constructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '11314317' => { + 'Class' => '11314111', + 'Const' => 1, + 'Header' => 'defaultrepositoryselector.h', + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx3spi25DefaultRepositorySelector8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304124' - }, - '2' => { - 'name' => 'name1', - 'type' => '263006' - }, - '3' => { - 'name' => 'style1', - 'type' => '263006' + 'type' => '11324896' } }, - 'Protected' => 1, - 'ShortName' => 'LoggingEventPatternConverter', - 'Source' => 'loggingeventpatternconverter.cpp', - 'SourceLine' => '32' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '43', + 'Virt' => 1, + 'VirtPos' => '2' }, - '10426067' => { - 'Artificial' => 1, - 'Class' => '10408836', - 'Destructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD0Ev', + '11314354' => { + 'Class' => '11314111', + 'Header' => 'defaultrepositoryselector.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector19getLoggerRepositoryEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411556' + 'type' => '11326703' } }, - 'ShortName' => 'ClazzLoggingEventPatternConverter', - 'Virt' => 1 + 'Return' => '565552', + 'ShortName' => 'getLoggerRepository', + 'Source' => 'defaultrepositoryselector.cpp', + 'SourceLine' => '37', + 'Virt' => 1, + 'VirtPos' => '5' }, - '10426068' => { - 'Artificial' => 1, - 'Class' => '10408836', - 'Destructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD1Ev', + '11314472' => { + 'Class' => '11314111', + 'Const' => 1, + 'Header' => 'defaultrepositoryselector.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx3spi25DefaultRepositorySelector10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411556' + 'type' => '11324896' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzLoggingEventPatternConverter', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '10426208' => { - 'Artificial' => 1, - 'Class' => '10408836', - 'Destructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD2Ev', + '11314514' => { + 'Class' => '11314111', + 'Const' => 1, + 'Header' => 'defaultrepositoryselector.h', + 'InLine' => 2, + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx3spi25DefaultRepositorySelector4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411556' + 'type' => '11324896' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzLoggingEventPatternConverter', - 'Virt' => 1 + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '10426298' => { - 'Artificial' => 1, - 'Class' => '10408836', - 'Constructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterC2Ev', + '11315389' => { + 'Class' => '3118493', + 'Const' => 1, + 'Header' => 'repositoryselector.h', + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx3spi18RepositorySelector8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411556' + 'type' => '24285436' } }, - 'ShortName' => 'ClazzLoggingEventPatternConverter' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '50', + 'Virt' => 1, + 'VirtPos' => '2' }, - '10426299' => { - 'Artificial' => 1, - 'Class' => '10408836', - 'Constructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10411556' - } - }, - 'ShortName' => 'ClazzLoggingEventPatternConverter' + '11315426' => { + 'Class' => '3118493', + 'Header' => 'repositoryselector.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '50', + 'Static' => 1 }, - '10513597' => { - 'Artificial' => 1, - 'Class' => '10502617', + '11327616' => { + 'Class' => '11314111', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEED2Ev', + 'Header' => 'defaultrepositoryselector.h', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10504509' + 'type' => '11326703' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'DefaultRepositorySelector', + 'Source' => 'defaultrepositoryselector.cpp', + 'SourceLine' => '35', + 'Virt' => 1 }, - '10513598' => { - 'Artificial' => 1, - 'Class' => '10502617', + '11327717' => { + 'Class' => '11314111', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10504509' - } - }, - 'ShortName' => 'WideLife' - }, - '10513739' => { - 'Artificial' => 1, - 'Class' => '10502617', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10504509' - } - }, - 'ShortName' => 'WideLife' - }, - '10513740' => { - 'Artificial' => 1, - 'Class' => '10502617', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEEC1Ev', + 'Header' => 'defaultrepositoryselector.h', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10504509' + 'type' => '11326703' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'DefaultRepositorySelector', + 'Source' => 'defaultrepositoryselector.cpp', + 'SourceLine' => '35', + 'Virt' => 1 }, - '10528321' => { - 'Class' => '405355', + '11328822' => { + 'Class' => '11314111', 'Destructor' => 1, - 'Header' => 'loglog.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers6LogLogD2Ev', + 'Header' => 'defaultrepositoryselector.h', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10504208' + 'type' => '11326703' } }, - 'ShortName' => 'LogLog', - 'Source' => 'loglog.cpp', - 'SourceLine' => '60' + 'ShortName' => 'DefaultRepositorySelector', + 'Source' => 'defaultrepositoryselector.cpp', + 'SourceLine' => '35', + 'Virt' => 1 }, - '10528750' => { - 'Class' => '405355', + '11329888' => { + 'Class' => '11314111', 'Constructor' => 1, - 'Header' => 'loglog.h', - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers6LogLogC2Ev', + 'Header' => 'defaultrepositoryselector.h', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorC1ESt10shared_ptrINS0_16LoggerRepositoryEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10504208' + 'type' => '11326703' + }, + '1' => { + 'name' => 'repository1', + 'type' => '11314700' } }, - 'Private' => 1, - 'ShortName' => 'LogLog', - 'Source' => 'loglog.cpp', - 'SourceLine' => '53' + 'ShortName' => 'DefaultRepositorySelector', + 'Source' => 'defaultrepositoryselector.cpp', + 'SourceLine' => '29' }, - '10528751' => { - 'Class' => '405355', + '11331987' => { + 'Class' => '11314111', 'Constructor' => 1, - 'Header' => 'loglog.h', - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers6LogLogC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10504208' - } - }, - 'Private' => 1, - 'ShortName' => 'LogLog', - 'Source' => 'loglog.cpp', - 'SourceLine' => '53' - }, - '10637588' => { - 'Class' => '10637467', - 'Const' => 1, 'Header' => 'defaultrepositoryselector.h', - 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelector7getNameB5cxx11Ev', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorC2ESt10shared_ptrINS0_16LoggerRepositoryEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10641731' + 'type' => '11326703' + }, + '2' => { + 'name' => 'repository1', + 'type' => '11314700' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '10637702' => { - 'Class' => '4279448', - 'Header' => 'defaultrepositoryselector.h', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '43', - 'Static' => 1 - }, - '10637719' => { - 'Class' => '4279448', - 'Header' => 'defaultrepositoryselector.h', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '43', - 'Static' => 1 + 'ShortName' => 'DefaultRepositorySelector', + 'Source' => 'defaultrepositoryselector.cpp', + 'SourceLine' => '29' }, - '10637736' => { - 'Class' => '4279448', - 'Const' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'MnglName' => '_ZNK7log4cxx3spi25DefaultRepositorySelector8getClassEv', + '11333981' => { + 'Artificial' => 1, + 'Class' => '3118493', + 'Constructor' => 1, + 'Header' => 'repositoryselector.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4290404' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '10638135' => { - 'Data' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7classes37DefaultRepositorySelectorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DefaultRepositorySelectorRegistration', - 'Source' => 'logmanager.cpp' - }, - '10638153' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3spi18RepositorySelectorENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', - 'Param' => { - '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'type' => '11333931' } }, - 'Return' => '1118276', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '4279770' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } - }, - '10640231' => { - 'Class' => '1149943', - 'Data' => 1, - 'Header' => 'logmanager.h', - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx10LogManager5guardE', - 'Return' => '50560', - 'ShortName' => 'guard', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '45' + 'ShortName' => 'RepositorySelector' }, - '10667925' => { + '11333982' => { 'Artificial' => 1, - 'Class' => '10635454', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '3118493', + 'Constructor' => 1, + 'Header' => 'repositoryselector.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEED2Ev', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10640129' + 'type' => '11333931' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RepositorySelector' }, - '10667926' => { + '11334190' => { 'Artificial' => 1, - 'Class' => '10635454', + 'Class' => '3118493', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'repositoryselector.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEED0Ev', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10640129' + 'type' => '11333931' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RepositorySelector', + 'Virt' => 1 }, - '10668067' => { + '11334191' => { 'Artificial' => 1, - 'Class' => '10635454', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '3118493', + 'Destructor' => 1, + 'Header' => 'repositoryselector.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEEC2Ev', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10640129' + 'type' => '11333931' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RepositorySelector', + 'Virt' => 1 }, - '10668068' => { - 'Artificial' => 1, - 'Class' => '10635454', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEEC1Ev', + '11515333' => { + 'Class' => '1374417', + 'Header' => 'exception.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10640129' + 'type' => '2536672' + }, + '1' => { + 'name' => 'src', + 'type' => '11525256' } }, - 'ShortName' => 'WideLife' + 'Return' => '11525261', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '69' }, - '10707846' => { - 'Artificial' => 1, - 'Class' => '10637467', - 'Destructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD0Ev', + '11515935' => { + 'Class' => '11515853', + 'Header' => 'exception.h', + 'Line' => '279', + 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10641720' + 'type' => '11525297' + }, + '1' => { + 'name' => 'src', + 'type' => '11525302' } }, - 'ShortName' => 'ClazzDefaultRepositorySelector', - 'Virt' => 1 + 'Return' => '11525307', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '494' }, - '10707847' => { - 'Artificial' => 1, - 'Class' => '10637467', - 'Destructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD1Ev', + '11516092' => { + 'Class' => '11516005', + 'Header' => 'exception.h', + 'Line' => '264', + 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10641720' + 'type' => '11525317' + }, + '1' => { + 'name' => 'src', + 'type' => '11525322' } }, - 'ShortName' => 'ClazzDefaultRepositorySelector', - 'Virt' => 1 + 'Return' => '11525327', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '478' }, - '10707988' => { - 'Artificial' => 1, - 'Class' => '10637467', - 'Destructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD2Ev', + '11516304' => { + 'Class' => '11516162', + 'Header' => 'exception.h', + 'Line' => '96', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10641720' + 'type' => '11525617' + }, + '1' => { + 'name' => 'src', + 'type' => '11525622' } }, - 'ShortName' => 'ClazzDefaultRepositorySelector', - 'Virt' => 1 + 'Return' => '11525627', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '167' }, - '10708078' => { - 'Artificial' => 1, - 'Class' => '10637467', - 'Constructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorC2Ev', + '11516339' => { + 'Class' => '11516162', + 'Header' => 'exception.h', + 'Line' => '98', + 'MnglName' => '_ZN7log4cxx7helpers11IOException13formatMessageB5cxx11Ei', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10641720' + 'name' => 'stat', + 'type' => '1918053' } }, - 'ShortName' => 'ClazzDefaultRepositorySelector' + 'Private' => 1, + 'Return' => '209661', + 'ShortName' => 'formatMessage', + 'Source' => 'exception.cpp', + 'SourceLine' => '173', + 'Static' => 1 }, - '10708079' => { - 'Artificial' => 1, - 'Class' => '10637467', - 'Constructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorC1Ev', + '11516486' => { + 'Class' => '11516399', + 'Header' => 'exception.h', + 'Line' => '250', + 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10641720' + 'type' => '11525337' + }, + '1' => { + 'name' => 'src', + 'type' => '11525342' } }, - 'ShortName' => 'ClazzDefaultRepositorySelector' + 'Return' => '11525347', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '463' }, - '10785585' => { - 'Class' => '10785388', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamlsEPFRSt8ios_baseS2_E', + '11516675' => { + 'Class' => '11516556', + 'Header' => 'exception.h', + 'Line' => '218', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525397' }, '1' => { - 'name' => 'manip', - 'type' => '6898570' + 'name' => 'src', + 'type' => '11525402' } }, - 'Return' => '10789472', - 'ShortName' => 'operator<<', - 'Source' => 'logstream.cpp', - 'SourceLine' => '393' + 'Return' => '11525407', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '418' }, - '10785622' => { - 'Class' => '10785388', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamlsEPFRNS_14logstream_baseES2_E', + '11516827' => { + 'Class' => '11516745', + 'Header' => 'exception.h', + 'Line' => '238', + 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525357' }, '1' => { - 'name' => 'manip', - 'type' => '10789478' + 'name' => 'src', + 'type' => '11525362' } }, - 'Return' => '10789472', - 'ShortName' => 'operator<<', - 'Source' => 'logstream.cpp', - 'SourceLine' => '366' + 'Return' => '11525367', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '448' }, - '10785659' => { - 'Class' => '10785388', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamlsERKSt10shared_ptrINS_5LevelEE', + '11516984' => { + 'Class' => '11516897', + 'Header' => 'exception.h', + 'Line' => '230', + 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525377' }, '1' => { - 'name' => 'l', - 'type' => '412081' + 'name' => 'src', + 'type' => '11525382' } }, - 'Return' => '10789472', - 'ShortName' => 'operator<<', - 'Source' => 'logstream.cpp', - 'SourceLine' => '372' + 'Return' => '11525387', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '433' }, - '10785696' => { - 'Class' => '10785388', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamlsERKNS_3spi12LocationInfoE', + '11517136' => { + 'Class' => '11517054', + 'Header' => 'exception.h', + 'Line' => '206', + 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525417' }, '1' => { - 'name' => 'newlocation', - 'type' => '839402' + 'name' => 'src', + 'type' => '11525422' } }, - 'Return' => '10789472', - 'ShortName' => 'operator<<', - 'Source' => 'logstream.cpp', - 'SourceLine' => '378' + 'Return' => '11525427', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '399' }, - '10785733' => { - 'Class' => '10785388', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamrsERKNS_3spi12LocationInfoE', + '11517288' => { + 'Class' => '11517206', + 'Header' => 'exception.h', + 'Line' => '198', + 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525437' }, '1' => { - 'name' => 'newlocation', - 'type' => '839402' + 'name' => 'src', + 'type' => '11525442' } }, - 'Return' => '10789472', - 'ShortName' => 'operator>>', - 'Source' => 'logstream.cpp', - 'SourceLine' => '384' + 'Return' => '11525447', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '382' }, - '10785770' => { - 'Class' => '10785388', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamcvRSt13basic_ostreamIwSt11char_traitsIwEEEv', + '11517786' => { + 'Class' => '11517699', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525497' + }, + '1' => { + 'name' => 'src', + 'type' => '11525502' } }, - 'Return' => '10789059', - 'ShortName' => 'operator std::basic_ostream&', - 'Source' => 'logstream.cpp', - 'SourceLine' => '399' + 'Return' => '11525507', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '325' }, - '10785802' => { - 'Class' => '10785388', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstream3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE', + '11517941' => { + 'Class' => '11517856', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525517' }, '1' => { - 'name' => 'log', - 'type' => '7201841' - }, - '2' => { - 'name' => 'lev', - 'type' => '412081' - }, - '3' => { - 'name' => 'loc', - 'type' => '839402' + 'name' => 'src', + 'type' => '11525522' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'log', - 'Source' => 'logstream.cpp', - 'SourceLine' => '410', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '11525527', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '246' }, - '10785854' => { - 'Class' => '10785388', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstream5eraseEv', + '11517976' => { + 'Class' => '11517856', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers19TranscoderException13formatMessageB5cxx11Ei', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10789449' + 'name' => 'p1', + 'type' => '1918053' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'erase', - 'Source' => 'logstream.cpp', - 'SourceLine' => '426', - 'Virt' => 1, - 'VirtPos' => '3' + 'Private' => 1, + 'Return' => '209661', + 'ShortName' => 'formatMessage', + 'Source' => 'exception.cpp', + 'SourceLine' => '252', + 'Static' => 1 }, - '10785890' => { - 'Class' => '10785388', - 'Const' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZNK7log4cxx10wlogstream16get_stream_stateERSt8ios_baseS2_RiRb', + '11518155' => { + 'Class' => '11518036', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789518' + 'type' => '11525537' }, '1' => { - 'name' => 'base', - 'type' => '6887057' - }, - '2' => { - 'name' => 'mask', - 'type' => '6887057' - }, - '3' => { - 'name' => 'fill', - 'type' => '1594565' - }, - '4' => { - 'name' => 'fillSet', - 'type' => '651059' + 'name' => 'src', + 'type' => '11525542' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'get_stream_state', - 'Source' => 'logstream.cpp', - 'SourceLine' => '436', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '11525547', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '301' }, - '10785946' => { - 'Class' => '10785388', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstream20refresh_stream_stateEv', + '11518191' => { + 'Class' => '11518036', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadException13formatMessageB5cxx11Ei', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10789449' + 'name' => 'stat', + 'type' => '1918053' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'refresh_stream_state', - 'Source' => 'logstream.cpp', - 'SourceLine' => '457', - 'Virt' => 1, - 'VirtPos' => '5' + 'Private' => 1, + 'Return' => '209661', + 'ShortName' => 'formatMessage', + 'Source' => 'exception.cpp', + 'SourceLine' => '307', + 'Static' => 1 }, - '10786177' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base6insertEPFRSt8ios_baseS2_E', + '11518366' => { + 'Class' => '11518252', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525557' }, '1' => { - 'name' => 'manip', - 'type' => '6898570' + 'name' => 'src', + 'type' => '11525562' } }, - 'Return' => '1', - 'ShortName' => 'insert', - 'Source' => 'logstream.cpp', - 'SourceLine' => '64' + 'Return' => '11525567', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '272' }, - '10786209' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base9precisionEv', + '11518402' => { + 'Class' => '11518252', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedException13formatMessageB5cxx11Ei', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10789632' + 'name' => 'stat', + 'type' => '1918053' } }, - 'Return' => '50231', - 'ShortName' => 'precision', - 'Source' => 'logstream.cpp', - 'SourceLine' => '125' + 'Private' => 1, + 'Return' => '209661', + 'ShortName' => 'formatMessage', + 'Source' => 'exception.cpp', + 'SourceLine' => '278', + 'Static' => 1 }, - '10786240' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base5widthEv', + '11518548' => { + 'Class' => '11518463', + 'Header' => 'exception.h', + 'Line' => '116', + 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525577' + }, + '1' => { + 'name' => 'src', + 'type' => '11525582' } }, - 'Return' => '50231', - 'ShortName' => 'width', - 'Source' => 'logstream.cpp', - 'SourceLine' => '140' + 'Return' => '11525587', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '224' }, - '10786271' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base9precisionEi', + '11518583' => { + 'Class' => '11518463', + 'Header' => 'exception.h', + 'Line' => '118', + 'MnglName' => '_ZN7log4cxx7helpers13PoolException13formatMessageB5cxx11Ei', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10789632' - }, - '1' => { - 'name' => 'p', - 'type' => '50231' + 'name' => 'p1', + 'type' => '1918053' } }, - 'Return' => '50231', - 'ShortName' => 'precision', - 'Source' => 'logstream.cpp', - 'SourceLine' => '116' + 'Private' => 1, + 'Return' => '209661', + 'ShortName' => 'formatMessage', + 'Source' => 'exception.cpp', + 'SourceLine' => '230', + 'Static' => 1 }, - '10786307' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base5widthEi', + '11518728' => { + 'Class' => '11518643', + 'Header' => 'exception.h', + 'Line' => '106', + 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525597' }, '1' => { - 'name' => 'w', - 'type' => '50231' + 'name' => 'src', + 'type' => '11525602' } }, - 'Return' => '50231', - 'ShortName' => 'width', - 'Source' => 'logstream.cpp', - 'SourceLine' => '131' + 'Return' => '11525607', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '200' }, - '10786343' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base4fillEv', + '11518763' => { + 'Class' => '11518643', + 'Header' => 'exception.h', + 'Line' => '108', + 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceException13formatMessageERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10789632' + 'name' => 'key', + 'type' => '210597' } }, - 'Return' => '50231', - 'ShortName' => 'fill', - 'Source' => 'logstream.cpp', - 'SourceLine' => '156' + 'Private' => 1, + 'Return' => '209661', + 'ShortName' => 'formatMessage', + 'Source' => 'exception.cpp', + 'SourceLine' => '206', + 'Static' => 1 }, - '10786374' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base4fillEi', + '11519273' => { + 'Class' => '11519188', + 'Header' => 'exception.h', + 'Line' => '72', + 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525657' }, '1' => { - 'name' => 'newfill', - 'type' => '50231' + 'name' => 'src', + 'type' => '11525662' } }, - 'Return' => '50231', - 'ShortName' => 'fill', - 'Source' => 'logstream.cpp', - 'SourceLine' => '146' + 'Return' => '11525667', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '124' }, - '10786410' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base5flagsESt13_Ios_Fmtflags', + '11526976' => { + 'Artificial' => 1, + 'Class' => '11519188', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' - }, - '1' => { - 'name' => 'newflags', - 'type' => '6868698' + 'type' => '11525657' } }, - 'Return' => '6868698', - 'ShortName' => 'flags', - 'Source' => 'logstream.cpp', - 'SourceLine' => '162' + 'ShortName' => 'NullPointerException', + 'Virt' => 1 }, - '10786446' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base4setfESt13_Ios_FmtflagsS1_', + '11526977' => { + 'Artificial' => 1, + 'Class' => '11519188', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' - }, - '1' => { - 'name' => 'newflags', - 'type' => '6868698' - }, - '2' => { - 'name' => 'mask', - 'type' => '6868698' + 'type' => '11525657' } }, - 'Return' => '6868698', - 'ShortName' => 'setf', - 'Source' => 'logstream.cpp', - 'SourceLine' => '171' + 'ShortName' => 'NullPointerException', + 'Virt' => 1 }, - '10786487' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base4setfESt13_Ios_Fmtflags', + '11527216' => { + 'Artificial' => 1, + 'Class' => '11519188', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' - }, - '1' => { - 'name' => 'newflags', - 'type' => '6868698' + 'type' => '11525657' } }, - 'Return' => '6868698', - 'ShortName' => 'setf', - 'Source' => 'logstream.cpp', - 'SourceLine' => '180' + 'ShortName' => 'NullPointerException', + 'Virt' => 1 }, - '10786523' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base6endmsgERS0_', + '11527854' => { + 'Artificial' => 1, + 'Class' => '11518643', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '101', + 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionD0Ev', 'Param' => { '0' => { - 'name' => 'stream', - 'type' => '10789500' + 'name' => 'this', + 'type' => '11525597' } }, - 'Return' => '10789500', - 'ShortName' => 'endmsg', - 'Source' => 'logstream.cpp', - 'SourceLine' => '93', - 'Static' => 1 + 'ShortName' => 'MissingResourceException', + 'Virt' => 1 }, - '10786551' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base3nopERS0_', + '11527855' => { + 'Artificial' => 1, + 'Class' => '11518643', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '101', + 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionD1Ev', 'Param' => { '0' => { - 'name' => 'stream', - 'type' => '10789500' + 'name' => 'this', + 'type' => '11525597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '10789500', - 'ShortName' => 'nop', - 'Source' => 'logstream.cpp', - 'SourceLine' => '99', - 'Static' => 1 + 'ShortName' => 'MissingResourceException', + 'Virt' => 1 }, - '10786579' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base11end_messageEv', + '11528047' => { + 'Artificial' => 1, + 'Class' => '11518643', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '101', + 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525597' } }, - 'Return' => '1', - 'ShortName' => 'end_message', - 'Source' => 'logstream.cpp', - 'SourceLine' => '104' + 'ShortName' => 'MissingResourceException', + 'Virt' => 1 }, - '10786606' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base8setLevelERKSt10shared_ptrINS_5LevelEE', + '11528199' => { + 'Artificial' => 1, + 'Class' => '11518463', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '111', + 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' - }, - '1' => { - 'name' => 'newlevel', - 'type' => '412081' + 'type' => '11525577' } }, - 'Return' => '1', - 'ShortName' => 'setLevel', - 'Source' => 'logstream.cpp', - 'SourceLine' => '191' + 'ShortName' => 'PoolException', + 'Virt' => 1 }, - '10786669' => { - 'Class' => '10786072', - 'Const' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZNK7log4cxx14logstream_base12isEnabledForERKSt10shared_ptrINS_5LevelEE', + '11528200' => { + 'Artificial' => 1, + 'Class' => '11518463', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '111', + 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789643' - }, - '1' => { - 'name' => 'l', - 'type' => '412081' + 'type' => '11525577' } }, - 'Return' => '50284', - 'ShortName' => 'isEnabledFor', - 'Source' => 'logstream.cpp', - 'SourceLine' => '203' + 'ShortName' => 'PoolException', + 'Virt' => 1 }, - '10786705' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base11setLocationERKNS_3spi12LocationInfoE', + '11528392' => { + 'Artificial' => 1, + 'Class' => '11518463', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '111', + 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' - }, - '1' => { - 'name' => 'newlocation', - 'type' => '839402' + 'type' => '11525577' } }, - 'Return' => '1', - 'ShortName' => 'setLocation', - 'Source' => 'logstream.cpp', - 'SourceLine' => '209' + 'ShortName' => 'PoolException', + 'Virt' => 1 }, - '10786737' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base16set_stream_stateERSt8ios_baseRi', + '11528544' => { + 'Artificial' => 1, + 'Class' => '11518252', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '122', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' - }, - '1' => { - 'name' => 'dest', - 'type' => '6887057' - }, - '2' => { - 'name' => 'dstchar', - 'type' => '1594565' + 'type' => '11525557' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '50284', - 'ShortName' => 'set_stream_state', - 'Source' => 'logstream.cpp', - 'SourceLine' => '72' + 'ShortName' => 'InterruptedException', + 'Virt' => 1 }, - '10786778' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'Line' => '152', - 'MnglName' => '_ZN7log4cxx14logstream_base3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE', + '11528545' => { + 'Artificial' => 1, + 'Class' => '11518252', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '122', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789626' - }, - '1' => { - 'name' => 'p1', - 'type' => '7201841' - }, - '2' => { - 'name' => 'p2', - 'type' => '412081' - }, - '3' => { - 'name' => 'p3', - 'type' => '839402' + 'type' => '11525557' } }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'log', - 'VirtPos' => '2' + 'ShortName' => 'InterruptedException', + 'Virt' => 1 }, - '10786829' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'Line' => '158', - 'MnglName' => '_ZN7log4cxx14logstream_base5eraseEv', + '11528737' => { + 'Artificial' => 1, + 'Class' => '11518252', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '122', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789626' + 'type' => '11525557' } }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'erase', - 'VirtPos' => '3' + 'ShortName' => 'InterruptedException', + 'Virt' => 1 }, - '10786865' => { - 'Class' => '10786072', - 'Const' => 1, - 'Header' => 'stream.h', - 'Line' => '164', - 'MnglName' => '_ZNK7log4cxx14logstream_base16get_stream_stateERSt8ios_baseS2_RiRb', + '11528889' => { + 'Artificial' => 1, + 'Class' => '11518036', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '133', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789637' - }, - '1' => { - 'name' => 'p1', - 'type' => '6887057' - }, - '2' => { - 'name' => 'p2', - 'type' => '6887057' - }, - '3' => { - 'name' => 'p3', - 'type' => '1594565' - }, - '4' => { - 'name' => 'p4', - 'type' => '651059' + 'type' => '11525537' } }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'get_stream_state', - 'VirtPos' => '4' + 'ShortName' => 'ThreadException', + 'Virt' => 1 }, - '10786921' => { - 'Class' => '10786072', - 'Header' => 'stream.h', - 'Line' => '168', - 'MnglName' => '_ZN7log4cxx14logstream_base20refresh_stream_stateEv', + '11528890' => { + 'Artificial' => 1, + 'Class' => '11518036', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '133', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789626' + 'type' => '11525537' } }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'refresh_stream_state', - 'VirtPos' => '5' + 'ShortName' => 'ThreadException', + 'Virt' => 1 }, - '10787523' => { - 'Class' => '10787332', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamlsEPFRSt8ios_baseS2_E', + '11529082' => { + 'Artificial' => 1, + 'Class' => '11518036', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '133', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'manip', - 'type' => '6898570' + 'type' => '11525537' } }, - 'Return' => '10789563', - 'ShortName' => 'operator<<', - 'Source' => 'logstream.cpp', - 'SourceLine' => '264' + 'ShortName' => 'ThreadException', + 'Virt' => 1 }, - '10787560' => { - 'Class' => '10787332', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamlsEPFRNS_14logstream_baseES2_E', + '11529234' => { + 'Artificial' => 1, + 'Class' => '11517856', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '145', + 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'manip', - 'type' => '10789478' + 'type' => '11525517' } }, - 'Return' => '10789563', - 'ShortName' => 'operator<<', - 'Source' => 'logstream.cpp', - 'SourceLine' => '240' + 'ShortName' => 'TranscoderException', + 'Virt' => 1 }, - '10787596' => { - 'Class' => '10787332', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamlsERKSt10shared_ptrINS_5LevelEE', + '11529235' => { + 'Artificial' => 1, + 'Class' => '11517856', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '145', + 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'l', - 'type' => '412081' + 'type' => '11525517' } }, - 'Return' => '10789563', - 'ShortName' => 'operator<<', - 'Source' => 'logstream.cpp', - 'SourceLine' => '246' + 'ShortName' => 'TranscoderException', + 'Virt' => 1 }, - '10787632' => { - 'Class' => '10787332', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamlsERKNS_3spi12LocationInfoE', + '11529427' => { + 'Artificial' => 1, + 'Class' => '11517856', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '145', + 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'newlocation', - 'type' => '839402' + 'type' => '11525517' } }, - 'Return' => '10789563', - 'ShortName' => 'operator<<', - 'Source' => 'logstream.cpp', - 'SourceLine' => '252' + 'ShortName' => 'TranscoderException', + 'Virt' => 1 }, - '10787668' => { - 'Class' => '10787332', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamrsERKNS_3spi12LocationInfoE', + '11529579' => { + 'Artificial' => 1, + 'Class' => '11517699', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '155', + 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'newlocation', - 'type' => '839402' + 'type' => '11525497' } }, - 'Return' => '10789563', - 'ShortName' => 'operator>>', - 'Source' => 'logstream.cpp', - 'SourceLine' => '258' + 'ShortName' => 'IllegalMonitorStateException', + 'Virt' => 1 }, - '10787705' => { - 'Class' => '10787332', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamcvRSoEv', + '11529580' => { + 'Artificial' => 1, + 'Class' => '11517699', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '155', + 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' + 'type' => '11525497' } }, - 'Return' => '6887191', - 'ShortName' => 'operator std::basic_ostream&', - 'Source' => 'logstream.cpp', - 'SourceLine' => '270' + 'ShortName' => 'IllegalMonitorStateException', + 'Virt' => 1 }, - '10787737' => { - 'Class' => '10787332', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstream3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE', + '11529772' => { + 'Artificial' => 1, + 'Class' => '11517699', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '155', + 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'log', - 'type' => '7201841' - }, - '2' => { - 'name' => 'lev', - 'type' => '412081' - }, - '3' => { - 'name' => 'loc', - 'type' => '839402' + 'type' => '11525497' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'log', - 'Source' => 'logstream.cpp', - 'SourceLine' => '281', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'IllegalMonitorStateException', + 'Virt' => 1 }, - '10787789' => { - 'Class' => '10787332', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstream5eraseEv', + '11530614' => { + 'Artificial' => 1, + 'Class' => '11517206', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '193', + 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' + 'type' => '11525437' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'erase', - 'Source' => 'logstream.cpp', - 'SourceLine' => '297', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'NoSuchElementException', + 'Virt' => 1 }, - '10787825' => { - 'Class' => '10787332', - 'Const' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZNK7log4cxx9logstream16get_stream_stateERSt8ios_baseS2_RiRb', + '11530615' => { + 'Artificial' => 1, + 'Class' => '11517206', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '193', + 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789575' - }, - '1' => { - 'name' => 'base', - 'type' => '6887057' - }, - '2' => { - 'name' => 'mask', - 'type' => '6887057' - }, - '3' => { - 'name' => 'fill', - 'type' => '1594565' - }, - '4' => { - 'name' => 'fillSet', - 'type' => '651059' + 'type' => '11525437' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'get_stream_state', - 'Source' => 'logstream.cpp', - 'SourceLine' => '307', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'NoSuchElementException', + 'Virt' => 1 }, - '10787881' => { - 'Class' => '10787332', - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstream20refresh_stream_stateEv', + '11530807' => { + 'Artificial' => 1, + 'Class' => '11517206', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '193', + 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' + 'type' => '11525437' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'refresh_stream_state', - 'Source' => 'logstream.cpp', - 'SourceLine' => '328', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'NoSuchElementException', + 'Virt' => 1 }, - '10790100' => { + '11530959' => { 'Artificial' => 1, - 'Class' => '10787023', + 'Class' => '11517054', 'Destructor' => 1, - 'Header' => 'stream.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '183', - 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseD0Ev', + 'Line' => '201', + 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789654' + 'type' => '11525417' } }, - 'ShortName' => 'logstream_ios_base', + 'ShortName' => 'IllegalStateException', 'Virt' => 1 }, - '10790101' => { + '11530960' => { 'Artificial' => 1, - 'Class' => '10787023', + 'Class' => '11517054', 'Destructor' => 1, - 'Header' => 'stream.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '183', - 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseD1Ev', + 'Line' => '201', + 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789654' + 'type' => '11525417' } }, - 'ShortName' => 'logstream_ios_base', + 'ShortName' => 'IllegalStateException', 'Virt' => 1 }, - '10790242' => { + '11531152' => { 'Artificial' => 1, - 'Class' => '10787023', + 'Class' => '11517054', 'Destructor' => 1, - 'Header' => 'stream.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '183', - 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseD2Ev', + 'Line' => '201', + 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789654' + 'type' => '11525417' } }, - 'ShortName' => 'logstream_ios_base', + 'ShortName' => 'IllegalStateException', 'Virt' => 1 }, - '10825995' => { - 'Class' => '10785388', + '11531304' => { + 'Artificial' => 1, + 'Class' => '11516897', 'Destructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamD0Ev', + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '225', + 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525377' } }, - 'ShortName' => 'wlogstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '361', + 'ShortName' => 'ConnectException', 'Virt' => 1 }, - '10825996' => { - 'Class' => '10785388', + '11531305' => { + 'Artificial' => 1, + 'Class' => '11516897', 'Destructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamD1Ev', + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '225', + 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525377' } }, - 'ShortName' => 'wlogstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '361', + 'ShortName' => 'ConnectException', 'Virt' => 1 }, - '10826091' => { - 'Class' => '10785388', + '11531591' => { + 'Artificial' => 1, + 'Class' => '11516897', 'Destructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamD2Ev', + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '225', + 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' + 'type' => '11525377' } }, - 'ShortName' => 'wlogstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '361', + 'ShortName' => 'ConnectException', 'Virt' => 1 }, - '10826211' => { - 'Class' => '10785388', - 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamC2ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKSt10shared_ptrINS_5LevelEE', + '11531837' => { + 'Artificial' => 1, + 'Class' => '11516745', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '233', + 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' - }, - '1' => { - 'name' => 'loggerName', - 'type' => '646920' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' + 'type' => '11525357' } }, - 'ShortName' => 'wlogstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '356' + 'ShortName' => 'ClosedChannelException', + 'Virt' => 1 }, - '10826212' => { - 'Class' => '10785388', - 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamC1ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKSt10shared_ptrINS_5LevelEE', + '11531838' => { + 'Artificial' => 1, + 'Class' => '11516745', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '233', + 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' - }, - '1' => { - 'name' => 'loggerName', - 'type' => '646920' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' + 'type' => '11525357' } }, - 'ShortName' => 'wlogstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '356' + 'ShortName' => 'ClosedChannelException', + 'Virt' => 1 }, - '10827227' => { - 'Class' => '10785388', - 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamC2EPKwRKSt10shared_ptrINS_5LevelEE', + '11532124' => { + 'Artificial' => 1, + 'Class' => '11516745', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '233', + 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' - }, - '1' => { - 'name' => 'loggerName', - 'type' => '10789466' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' + 'type' => '11525357' } }, - 'ShortName' => 'wlogstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '349' + 'ShortName' => 'ClosedChannelException', + 'Virt' => 1 }, - '10827228' => { - 'Class' => '10785388', - 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamC1EPKwRKSt10shared_ptrINS_5LevelEE', + '11532370' => { + 'Artificial' => 1, + 'Class' => '11516399', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '245', + 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' - }, - '1' => { - 'name' => 'loggerName', - 'type' => '10789466' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' + 'type' => '11525337' } }, - 'ShortName' => 'wlogstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '349' + 'ShortName' => 'BindException', + 'Virt' => 1 }, - '10828243' => { - 'Class' => '10785388', - 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamC2ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', + '11532371' => { + 'Artificial' => 1, + 'Class' => '11516399', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '245', + 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' - }, - '1' => { - 'name' => 'logger', - 'type' => '4509554' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' + 'type' => '11525337' } }, - 'ShortName' => 'wlogstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '344' + 'ShortName' => 'BindException', + 'Virt' => 1 }, - '10828244' => { - 'Class' => '10785388', - 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx10wlogstreamC1ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', + '11532657' => { + 'Artificial' => 1, + 'Class' => '11516399', + 'Destructor' => 1, + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '245', + 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789449' - }, - '1' => { - 'name' => 'logger', - 'type' => '4509554' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' + 'type' => '11525337' } }, - 'ShortName' => 'wlogstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '344' + 'ShortName' => 'BindException', + 'Virt' => 1 }, - '10840564' => { - 'Class' => '10787332', + '11532903' => { + 'Artificial' => 1, + 'Class' => '11515853', 'Destructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamD0Ev', + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '274', + 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' + 'type' => '11525297' } }, - 'ShortName' => 'logstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '235', + 'ShortName' => 'SocketTimeoutException', 'Virt' => 1 }, - '10840565' => { - 'Class' => '10787332', + '11532904' => { + 'Artificial' => 1, + 'Class' => '11515853', 'Destructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamD1Ev', + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '274', + 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' + 'type' => '11525297' } }, - 'ShortName' => 'logstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '235', + 'ShortName' => 'SocketTimeoutException', 'Virt' => 1 }, - '10840660' => { - 'Class' => '10787332', + '11533193' => { + 'Artificial' => 1, + 'Class' => '11515853', 'Destructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamD2Ev', + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '274', + 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' + 'type' => '11525297' } }, - 'ShortName' => 'logstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '235', + 'ShortName' => 'SocketTimeoutException', 'Virt' => 1 }, - '10840778' => { - 'Class' => '10787332', - 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'loggerName', - 'type' => '61517' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' - } - }, - 'ShortName' => 'logstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '230' - }, - '10840779' => { - 'Class' => '10787332', - 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'loggerName', - 'type' => '61517' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' - } - }, - 'ShortName' => 'logstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '230' - }, - '10841790' => { - 'Class' => '10787332', - 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamC2EPKcRKSt10shared_ptrINS_5LevelEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'loggerName', - 'type' => '10789557' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' - } - }, - 'ShortName' => 'logstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '223' - }, - '10841791' => { - 'Class' => '10787332', + '11539773' => { + 'Class' => '11515853', 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamC1EPKcRKSt10shared_ptrINS_5LevelEE', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' + 'type' => '11525297' }, '1' => { - 'name' => 'loggerName', - 'type' => '10789557' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' + 'name' => 'src', + 'type' => '11525302' } }, - 'ShortName' => 'logstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '223' + 'ShortName' => 'SocketTimeoutException', + 'Source' => 'exception.cpp', + 'SourceLine' => '489' }, - '10842802' => { - 'Class' => '10787332', + '11539774' => { + 'Class' => '11515853', 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamC2ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' + 'type' => '11525297' }, '1' => { - 'name' => 'logger', - 'type' => '4509554' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' + 'name' => 'src', + 'type' => '11525302' } }, - 'ShortName' => 'logstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '218' + 'ShortName' => 'SocketTimeoutException', + 'Source' => 'exception.cpp', + 'SourceLine' => '489' }, - '10842803' => { - 'Class' => '10787332', + '11539886' => { + 'Class' => '11515853', 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx9logstreamC1ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789552' - }, - '1' => { - 'name' => 'logger', - 'type' => '4509554' - }, - '2' => { - 'name' => 'level', - 'type' => '412081' + 'type' => '11525297' } }, - 'ShortName' => 'logstream', - 'Source' => 'logstream.cpp', - 'SourceLine' => '218' + 'ShortName' => 'SocketTimeoutException', + 'Source' => 'exception.cpp', + 'SourceLine' => '484' }, - '10848363' => { - 'Class' => '10786072', + '11541405' => { + 'Artificial' => 1, + 'Class' => '11516005', 'Destructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_baseD0Ev', + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '259', + 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525317' } }, - 'ShortName' => 'logstream_base', - 'Source' => 'logstream.cpp', - 'SourceLine' => '60', + 'ShortName' => 'InterruptedIOException', 'Virt' => 1 }, - '10848364' => { - 'Class' => '10786072', + '11541406' => { + 'Artificial' => 1, + 'Class' => '11516005', 'Destructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_baseD1Ev', + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '259', + 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525317' } }, - 'ShortName' => 'logstream_base', - 'Source' => 'logstream.cpp', - 'SourceLine' => '60', + 'ShortName' => 'InterruptedIOException', 'Virt' => 1 }, - '10848459' => { - 'Class' => '10786072', + '11541647' => { + 'Artificial' => 1, + 'Class' => '11516005', 'Destructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_baseD2Ev', + 'Header' => 'exception.h', + 'InLine' => 1, + 'Line' => '259', + 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525317' } }, - 'ShortName' => 'logstream_base', - 'Source' => 'logstream.cpp', - 'SourceLine' => '60', + 'ShortName' => 'InterruptedIOException', 'Virt' => 1 }, - '10849939' => { - 'Class' => '10786072', + '11541946' => { + 'Class' => '11516005', 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_baseC2ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525317' }, '1' => { - 'name' => 'log', - 'type' => '4509554' - }, - '2' => { - 'name' => 'lvl', - 'type' => '412081' + 'name' => 'src', + 'type' => '11525322' } }, - 'ShortName' => 'logstream_base', - 'Source' => 'logstream.cpp', - 'SourceLine' => '53' + 'ShortName' => 'InterruptedIOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '473' }, - '10849940' => { - 'Class' => '10786072', + '11541947' => { + 'Class' => '11516005', 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_baseC1ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789632' + 'type' => '11525317' }, '1' => { - 'name' => 'log', - 'type' => '4509554' - }, - '2' => { - 'name' => 'lvl', - 'type' => '412081' + 'name' => 'src', + 'type' => '11525322' } }, - 'ShortName' => 'logstream_base', - 'Source' => 'logstream.cpp', - 'SourceLine' => '53' + 'ShortName' => 'InterruptedIOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '473' }, - '10851912' => { - 'Class' => '10787023', + '11542072' => { + 'Class' => '11516005', 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseC2ESt13_Ios_Fmtflagsi', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789654' + 'type' => '11525317' }, '1' => { - 'name' => 'initval', - 'type' => '6868698' - }, - '2' => { - 'name' => 'initsize', - 'type' => '50231' + 'name' => 'msg', + 'type' => '210597' } }, - 'ShortName' => 'logstream_ios_base', - 'Source' => 'logstream.cpp', - 'SourceLine' => '33' + 'ShortName' => 'InterruptedIOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '469' }, - '10851913' => { - 'Class' => '10787023', + '11542073' => { + 'Class' => '11516005', 'Constructor' => 1, - 'Header' => 'stream.h', - 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseC1ESt13_Ios_Fmtflagsi', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10789654' + 'type' => '11525317' }, '1' => { - 'name' => 'initval', - 'type' => '6868698' - }, - '2' => { - 'name' => 'initsize', - 'type' => '50231' + 'name' => 'msg', + 'type' => '210597' } }, - 'ShortName' => 'logstream_ios_base', - 'Source' => 'logstream.cpp', - 'SourceLine' => '33' + 'ShortName' => 'InterruptedIOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '469' }, - '10913930' => { - 'Class' => '10913809', - 'Const' => 1, - 'Header' => 'manualtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy7getNameB5cxx11Ev', + '11542295' => { + 'Class' => '11516399', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915924' + 'type' => '11525337' + }, + '1' => { + 'name' => 'src', + 'type' => '11525342' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'BindException', + 'Source' => 'exception.cpp', + 'SourceLine' => '458' }, - '10913969' => { - 'Class' => '10913809', - 'Const' => 1, - 'Header' => 'manualtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv', + '11542296' => { + 'Class' => '11516399', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915924' + 'type' => '11525337' + }, + '1' => { + 'name' => 'src', + 'type' => '11525342' } }, - 'Return' => '10915850', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'BindException', + 'Source' => 'exception.cpp', + 'SourceLine' => '458' }, - '10914008' => { - 'Artificial' => 1, - 'Class' => '10913809', - 'Header' => 'manualtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv', + '11542421' => { + 'Class' => '11516399', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915924' + 'type' => '11525337' + }, + '1' => { + 'name' => 'status', + 'type' => '1918053' } }, - 'Return' => '10915850', - 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv' + 'ShortName' => 'BindException', + 'Source' => 'exception.cpp', + 'SourceLine' => '454' }, - '10914120' => { - 'Class' => '10913791', - 'Const' => 1, - 'Header' => 'manualtriggeringpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy8getClassEv', + '11542644' => { + 'Class' => '11516745', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915890' + 'type' => '11525357' + }, + '1' => { + 'name' => 'src', + 'type' => '11525362' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'manualtriggeringpolicy.cpp', - 'SourceLine' => '26', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '10914159' => { - 'Class' => '10913791', - 'Header' => 'manualtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'manualtriggeringpolicy.cpp', - 'SourceLine' => '26', - 'Static' => 1 - }, - '10914176' => { - 'Class' => '10913791', - 'Header' => 'manualtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'manualtriggeringpolicy.cpp', - 'SourceLine' => '26', - 'Static' => 1 + 'ShortName' => 'ClosedChannelException', + 'Source' => 'exception.cpp', + 'SourceLine' => '443' }, - '10914193' => { - 'Class' => '10913791', - 'Const' => 1, - 'Header' => 'manualtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy4castERKNS_7helpers5ClassE', + '11542645' => { + 'Class' => '11516745', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915890' + 'type' => '11525357' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'src', + 'type' => '11525362' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClosedChannelException', + 'Source' => 'exception.cpp', + 'SourceLine' => '443' }, - '10914237' => { - 'Class' => '10913791', - 'Const' => 1, - 'Header' => 'manualtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy10instanceofERKNS_7helpers5ClassE', + '11542757' => { + 'Class' => '11516745', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915890' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '11525357' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClosedChannelException', + 'Source' => 'exception.cpp', + 'SourceLine' => '439' }, - '10914318' => { - 'Class' => '10913791', - 'Header' => 'manualtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', + '11544375' => { + 'Class' => '11516897', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915856' + 'type' => '11525377' }, '1' => { - 'name' => 'p1', - 'type' => '264877' - }, - '2' => { - 'name' => 'p2', - 'type' => '154261' - }, - '3' => { - 'name' => 'p3', - 'type' => '263006' - }, - '4' => { - 'name' => 'p4', - 'type' => '50486' + 'name' => 'src', + 'type' => '11525382' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx', - '3' => 'rcx', - '4' => 'r8' - }, - 'Return' => '50284', - 'ShortName' => 'isTriggeringEvent', - 'Source' => 'manualtriggeringpolicy.cpp', - 'SourceLine' => '32', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'ConnectException', + 'Source' => 'exception.cpp', + 'SourceLine' => '428' }, - '10914377' => { - 'Class' => '10913791', - 'Header' => 'manualtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy15activateOptionsERNS_7helpers4PoolE', + '11544376' => { + 'Class' => '11516897', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915856' + 'type' => '11525377' }, '1' => { - 'name' => 'p1', - 'type' => '64643' + 'name' => 'src', + 'type' => '11525382' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'manualtriggeringpolicy.cpp', - 'SourceLine' => '40', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'ConnectException', + 'Source' => 'exception.cpp', + 'SourceLine' => '428' }, - '10914418' => { - 'Class' => '10913791', - 'Header' => 'manualtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '11544501' => { + 'Class' => '11516897', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915856' + 'type' => '11525377' }, '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '263006' + 'name' => 'status', + 'type' => '1918053' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'manualtriggeringpolicy.cpp', - 'SourceLine' => '44', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '10914669' => { - 'Data' => 1, - 'Line' => '26', - 'MnglName' => '_ZN7log4cxx7classes34ManualTriggeringPolicyRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ManualTriggeringPolicyRegistration', - 'Source' => 'manualtriggeringpolicy.cpp' + 'ShortName' => 'ConnectException', + 'Source' => 'exception.cpp', + 'SourceLine' => '424' }, - '10916530' => { + '11544625' => { 'Artificial' => 1, - 'Class' => '10913791', + 'Class' => '11516556', 'Destructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyD0Ev', + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915856' + 'type' => '11525397' } }, - 'ShortName' => 'ManualTriggeringPolicy', + 'ShortName' => 'SocketException', 'Virt' => 1 }, - '10916531' => { + '11544626' => { 'Artificial' => 1, - 'Class' => '10913791', + 'Class' => '11516556', 'Destructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyD2Ev', + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915856' + 'type' => '11525397' } }, - 'ShortName' => 'ManualTriggeringPolicy', + 'ShortName' => 'SocketException', 'Virt' => 1 }, - '10916799' => { + '11544865' => { 'Artificial' => 1, - 'Class' => '10913791', + 'Class' => '11516556', 'Destructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyD1Ev', + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915856' + 'type' => '11525397' } }, - 'ShortName' => 'ManualTriggeringPolicy', + 'ShortName' => 'SocketException', 'Virt' => 1 }, - '10919738' => { - 'Artificial' => 1, - 'Class' => '10912549', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10915700' - } - }, - 'ShortName' => 'WideLife' - }, - '10919739' => { - 'Artificial' => 1, - 'Class' => '10912549', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEED0Ev', + '11545163' => { + 'Class' => '11516556', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915700' + 'type' => '11525397' + }, + '1' => { + 'name' => 'src', + 'type' => '11525402' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'SocketException', + 'Source' => 'exception.cpp', + 'SourceLine' => '413' }, - '10919879' => { - 'Artificial' => 1, - 'Class' => '10912549', + '11545164' => { + 'Class' => '11516556', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEEC2Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915700' + 'type' => '11525397' + }, + '1' => { + 'name' => 'src', + 'type' => '11525402' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'SocketException', + 'Source' => 'exception.cpp', + 'SourceLine' => '413' }, - '10919880' => { - 'Artificial' => 1, - 'Class' => '10912549', + '11545289' => { + 'Class' => '11516556', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEEC1Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915700' + 'type' => '11525397' + }, + '1' => { + 'name' => 'status', + 'type' => '1918053' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'SocketException', + 'Source' => 'exception.cpp', + 'SourceLine' => '409' }, - '10920417' => { - 'Class' => '10913791', + '11545415' => { + 'Class' => '11516556', 'Constructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyC1Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915856' + 'type' => '11525397' + }, + '1' => { + 'name' => 'msg', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'ManualTriggeringPolicy', - 'Source' => 'manualtriggeringpolicy.cpp', - 'SourceLine' => '28' + 'ShortName' => 'SocketException', + 'Source' => 'exception.cpp', + 'SourceLine' => '405' }, - '10920635' => { - 'Class' => '10913791', + '11545416' => { + 'Class' => '11516556', 'Constructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyC2Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915856' + 'type' => '11525397' + }, + '1' => { + 'name' => 'msg', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'ManualTriggeringPolicy', - 'Source' => 'manualtriggeringpolicy.cpp', - 'SourceLine' => '28' + 'ShortName' => 'SocketException', + 'Source' => 'exception.cpp', + 'SourceLine' => '405' }, - '10922966' => { + '11545539' => { 'Artificial' => 1, - 'Class' => '10913809', + 'Class' => '11516162', 'Destructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD0Ev', + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915913' + 'type' => '11525617' } }, - 'ShortName' => 'ClazzManualTriggeringPolicy', + 'ShortName' => 'IOException', 'Virt' => 1 }, - '10922967' => { + '11545540' => { 'Artificial' => 1, - 'Class' => '10913809', + 'Class' => '11516162', 'Destructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD1Ev', + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915913' + 'type' => '11525617' } }, - 'ShortName' => 'ClazzManualTriggeringPolicy', + 'ShortName' => 'IOException', 'Virt' => 1 }, - '10923107' => { + '11545732' => { 'Artificial' => 1, - 'Class' => '10913809', + 'Class' => '11516162', 'Destructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD2Ev', + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915913' + 'type' => '11525617' } }, - 'ShortName' => 'ClazzManualTriggeringPolicy', + 'ShortName' => 'IOException', 'Virt' => 1 }, - '10923197' => { - 'Artificial' => 1, - 'Class' => '10913809', + '11545983' => { + 'Class' => '11517054', 'Constructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyC2Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915913' + 'type' => '11525417' + }, + '1' => { + 'name' => 'src', + 'type' => '11525422' } }, - 'ShortName' => 'ClazzManualTriggeringPolicy' + 'ShortName' => 'IllegalStateException', + 'Source' => 'exception.cpp', + 'SourceLine' => '394' }, - '10923198' => { - 'Artificial' => 1, - 'Class' => '10913809', + '11545984' => { + 'Class' => '11517054', 'Constructor' => 1, - 'Header' => 'manualtriggeringpolicy.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyC1Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915913' + 'type' => '11525417' + }, + '1' => { + 'name' => 'src', + 'type' => '11525422' } }, - 'ShortName' => 'ClazzManualTriggeringPolicy' + 'ShortName' => 'IllegalStateException', + 'Source' => 'exception.cpp', + 'SourceLine' => '394' }, - '11011614' => { - 'Class' => '11011493', - 'Const' => 1, - 'Header' => 'mapfilter.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx6filter9MapFilter14ClazzMapFilter7getNameB5cxx11Ev', + '11546096' => { + 'Class' => '11517054', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015613' + 'type' => '11525417' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'IllegalStateException', + 'Source' => 'exception.cpp', + 'SourceLine' => '389' }, - '11011653' => { - 'Class' => '11011493', - 'Const' => 1, - 'Header' => 'mapfilter.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv', + '11546312' => { + 'Class' => '11517206', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015613' + 'type' => '11525437' + }, + '1' => { + 'name' => 'src', + 'type' => '11525442' } }, - 'Return' => '11015504', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'NoSuchElementException', + 'Source' => 'exception.cpp', + 'SourceLine' => '377' }, - '11011692' => { - 'Artificial' => 1, - 'Class' => '11011493', - 'Header' => 'mapfilter.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv', + '11546313' => { + 'Class' => '11517206', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015613' + 'type' => '11525437' + }, + '1' => { + 'name' => 'src', + 'type' => '11525442' } }, - 'Return' => '11015504', - 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv' + 'ShortName' => 'NoSuchElementException', + 'Source' => 'exception.cpp', + 'SourceLine' => '377' }, - '11011949' => { - 'Class' => '11011475', - 'Const' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter9MapFilter8getClassEv', + '11546425' => { + 'Class' => '11517206', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015538' + 'type' => '11525437' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '42', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '11011988' => { - 'Class' => '11011475', - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '42', - 'Static' => 1 - }, - '11012005' => { - 'Class' => '11011475', - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '42', - 'Static' => 1 + 'ShortName' => 'NoSuchElementException', + 'Source' => 'exception.cpp', + 'SourceLine' => '372' }, - '11012022' => { - 'Class' => '11011475', - 'Const' => 1, - 'Header' => 'mapfilter.h', - 'InLine' => 2, - 'Line' => '50', - 'MnglName' => '_ZNK7log4cxx6filter9MapFilter4castERKNS_7helpers5ClassE', + '11547646' => { + 'Class' => '5650347', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015538' + 'type' => '5681671' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'src', + 'type' => '5681676' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClassNotFoundException', + 'Source' => 'exception.cpp', + 'SourceLine' => '352' }, - '11012066' => { - 'Class' => '11011475', - 'Const' => 1, - 'Header' => 'mapfilter.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx6filter9MapFilter10instanceofERKNS_7helpers5ClassE', + '11547647' => { + 'Class' => '5650347', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015538' + 'type' => '5681671' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'src', + 'type' => '5681676' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClassNotFoundException', + 'Source' => 'exception.cpp', + 'SourceLine' => '352' }, - '11012190' => { - 'Class' => '11011475', - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '11547772' => { + 'Class' => '5650347', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015510' + 'type' => '5681671' }, '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'className', + 'type' => '210597' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '51', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'ClassNotFoundException', + 'Source' => 'exception.cpp', + 'SourceLine' => '347' }, - '11012236' => { - 'Class' => '11011475', - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter11setKeyValueERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '11548878' => { + 'Class' => '5650529', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015510' + 'type' => '5681691' }, '1' => { - 'name' => 'strKey', - 'type' => '263006' - }, - '2' => { - 'name' => 'strValue', - 'type' => '263006' + 'name' => 'src', + 'type' => '5681696' } }, - 'Return' => '1', - 'ShortName' => 'setKeyValue', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '108' + 'ShortName' => 'InstantiationException', + 'Source' => 'exception.cpp', + 'SourceLine' => '336' }, - '11012273' => { - 'Class' => '11011475', - 'Const' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter9MapFilter8getValueERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '11548879' => { + 'Class' => '5650529', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015538' + 'type' => '5681691' }, '1' => { - 'name' => 'strKey', - 'type' => '263006' + 'name' => 'src', + 'type' => '5681696' } }, - 'Return' => '263006', - 'ShortName' => 'getValue', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '113' + 'ShortName' => 'InstantiationException', + 'Source' => 'exception.cpp', + 'SourceLine' => '336' }, - '11012309' => { - 'Class' => '11011475', - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter16setAcceptOnMatchEb', + '11549004' => { + 'Class' => '5650529', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015510' + 'type' => '5681691' }, '1' => { - 'name' => 'acceptOnMatch1', - 'type' => '50284' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setAcceptOnMatch', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '121' + 'ShortName' => 'InstantiationException', + 'Source' => 'exception.cpp', + 'SourceLine' => '331' }, - '11012341' => { - 'Class' => '11011475', - 'Const' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter9MapFilter16getAcceptOnMatchEv', + '11549227' => { + 'Class' => '11517699', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015538' + 'type' => '11525497' + }, + '1' => { + 'name' => 'src', + 'type' => '11525502' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAcceptOnMatch', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '126' + 'ShortName' => 'IllegalMonitorStateException', + 'Source' => 'exception.cpp', + 'SourceLine' => '320' }, - '11012372' => { - 'Class' => '11011475', - 'Const' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter9MapFilter15getMustMatchAllEv', + '11549228' => { + 'Class' => '11517699', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015538' + 'type' => '11525497' + }, + '1' => { + 'name' => 'src', + 'type' => '11525502' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getMustMatchAll', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '131' + 'ShortName' => 'IllegalMonitorStateException', + 'Source' => 'exception.cpp', + 'SourceLine' => '320' }, - '11012403' => { - 'Class' => '11011475', - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter15setMustMatchAllEb', + '11549353' => { + 'Class' => '11517699', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015510' + 'type' => '11525497' }, '1' => { - 'name' => 'mustMatchAll1', - 'type' => '50284' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setMustMatchAll', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '136' + 'ShortName' => 'IllegalMonitorStateException', + 'Source' => 'exception.cpp', + 'SourceLine' => '315' }, - '11012435' => { - 'Class' => '11011475', - 'Const' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter9MapFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', + '11549354' => { + 'Class' => '11517699', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015538' + 'type' => '11525497' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Return' => '151101', - 'ShortName' => 'decide', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '68', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '11012507' => { - 'Data' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7classes21MapFilterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'MapFilterRegistration', - 'Source' => 'mapfilter.cpp' + 'ShortName' => 'IllegalMonitorStateException', + 'Source' => 'exception.cpp', + 'SourceLine' => '315' }, - '11045204' => { - 'Artificial' => 1, - 'Class' => '11011719', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD0Ev', + '11550530' => { + 'Class' => '11518036', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11014768' + 'type' => '11525537' + }, + '1' => { + 'name' => 'src', + 'type' => '11525542' } }, - 'ShortName' => 'MapFilterPrivate', - 'Source' => 'mapfilter.cpp', - 'Virt' => 1 + 'ShortName' => 'ThreadException', + 'Source' => 'exception.cpp', + 'SourceLine' => '296' }, - '11045205' => { - 'Artificial' => 1, - 'Class' => '11011719', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD1Ev', + '11550531' => { + 'Class' => '11518036', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11014768' + 'type' => '11525537' + }, + '1' => { + 'name' => 'src', + 'type' => '11525542' } }, - 'ShortName' => 'MapFilterPrivate', - 'Source' => 'mapfilter.cpp', - 'Virt' => 1 + 'ShortName' => 'ThreadException', + 'Source' => 'exception.cpp', + 'SourceLine' => '296' }, - '11046314' => { - 'Artificial' => 1, - 'Class' => '11011719', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD2Ev', + '11550656' => { + 'Class' => '11518036', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11014768' + 'type' => '11525537' + }, + '1' => { + 'name' => 'msg', + 'type' => '210597' } }, - 'ShortName' => 'MapFilterPrivate', - 'Source' => 'mapfilter.cpp', - 'Virt' => 1 + 'ShortName' => 'ThreadException', + 'Source' => 'exception.cpp', + 'SourceLine' => '291' }, - '11051076' => { - 'Artificial' => 1, - 'Class' => '1149270', + '11550657' => { + 'Class' => '11518036', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '11525537' + }, + '1' => { + 'name' => 'msg', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ThreadException', + 'Source' => 'exception.cpp', + 'SourceLine' => '291' }, - '11051077' => { - 'Artificial' => 1, - 'Class' => '1149270', + '11550782' => { + 'Class' => '11518036', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '11525537' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ThreadException', + 'Source' => 'exception.cpp', + 'SourceLine' => '286' }, - '11052322' => { - 'Artificial' => 1, - 'Class' => '11009482', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEED2Ev', + '11550783' => { + 'Class' => '11518036', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC1Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11014643' + 'type' => '11525537' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ThreadException', + 'Source' => 'exception.cpp', + 'SourceLine' => '286' }, - '11052323' => { - 'Artificial' => 1, - 'Class' => '11009482', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEED0Ev', + '11552842' => { + 'Class' => '11518252', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11014643' + 'type' => '11525557' + }, + '1' => { + 'name' => 'src', + 'type' => '11525562' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'InterruptedException', + 'Source' => 'exception.cpp', + 'SourceLine' => '267' }, - '11052464' => { - 'Artificial' => 1, - 'Class' => '11009482', + '11552843' => { + 'Class' => '11518252', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEEC2Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11014643' + 'type' => '11525557' + }, + '1' => { + 'name' => 'src', + 'type' => '11525562' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'InterruptedException', + 'Source' => 'exception.cpp', + 'SourceLine' => '267' }, - '11052465' => { - 'Artificial' => 1, - 'Class' => '11009482', + '11552968' => { + 'Class' => '11518252', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEEC1Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11014643' + 'type' => '11525557' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'InterruptedException', + 'Source' => 'exception.cpp', + 'SourceLine' => '262' }, - '11064542' => { - 'Class' => '11011475', - 'Destructor' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilterD0Ev', + '11552969' => { + 'Class' => '11518252', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC1Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015510' + 'type' => '11525557' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' } }, - 'ShortName' => 'MapFilter', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '49', - 'Virt' => 1 + 'ShortName' => 'InterruptedException', + 'Source' => 'exception.cpp', + 'SourceLine' => '262' }, - '11064640' => { - 'Class' => '11011475', - 'Destructor' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilterD1Ev', + '11553964' => { + 'Class' => '11518252', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015510' + 'type' => '11525557' } }, - 'ShortName' => 'MapFilter', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '49', - 'Virt' => 1 + 'ShortName' => 'InterruptedException', + 'Source' => 'exception.cpp', + 'SourceLine' => '258' }, - '11064836' => { - 'Class' => '11011475', - 'Destructor' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilterD2Ev', + '11553965' => { + 'Class' => '11518252', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015510' + 'type' => '11525557' } }, - 'ShortName' => 'MapFilter', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '49', - 'Virt' => 1 + 'ShortName' => 'InterruptedException', + 'Source' => 'exception.cpp', + 'SourceLine' => '258' }, - '11064966' => { - 'Class' => '11011475', + '11554762' => { + 'Class' => '11517856', 'Constructor' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilterC1Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015510' + 'type' => '11525517' + }, + '1' => { + 'name' => 'src', + 'type' => '11525522' } }, - 'ShortName' => 'MapFilter', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '44' + 'ShortName' => 'TranscoderException', + 'Source' => 'exception.cpp', + 'SourceLine' => '241' }, - '11068723' => { - 'Class' => '11011475', + '11554763' => { + 'Class' => '11517856', 'Constructor' => 1, - 'Header' => 'mapfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9MapFilterC2Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015510' + 'type' => '11525517' + }, + '1' => { + 'name' => 'src', + 'type' => '11525522' } }, - 'ShortName' => 'MapFilter', - 'Source' => 'mapfilter.cpp', - 'SourceLine' => '44' + 'ShortName' => 'TranscoderException', + 'Source' => 'exception.cpp', + 'SourceLine' => '241' }, - '11076507' => { - 'Artificial' => 1, - 'Class' => '11011493', - 'Destructor' => 1, - 'Header' => 'mapfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD0Ev', + '11554887' => { + 'Class' => '11517856', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015602' + 'type' => '11525517' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' } }, - 'ShortName' => 'ClazzMapFilter', - 'Virt' => 1 + 'ShortName' => 'TranscoderException', + 'Source' => 'exception.cpp', + 'SourceLine' => '236' }, - '11076508' => { - 'Artificial' => 1, - 'Class' => '11011493', - 'Destructor' => 1, - 'Header' => 'mapfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD1Ev', + '11554888' => { + 'Class' => '11517856', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionC1Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015602' + 'type' => '11525517' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' } }, - 'ShortName' => 'ClazzMapFilter', - 'Virt' => 1 + 'ShortName' => 'TranscoderException', + 'Source' => 'exception.cpp', + 'SourceLine' => '236' }, - '11076649' => { - 'Artificial' => 1, - 'Class' => '11011493', - 'Destructor' => 1, - 'Header' => 'mapfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD2Ev', + '11556573' => { + 'Class' => '11518463', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015602' + 'type' => '11525577' + }, + '1' => { + 'name' => 'src', + 'type' => '11525582' } }, - 'ShortName' => 'ClazzMapFilter', - 'Virt' => 1 + 'ShortName' => 'PoolException', + 'Source' => 'exception.cpp', + 'SourceLine' => '219' }, - '11076739' => { - 'Artificial' => 1, - 'Class' => '11011493', + '11556574' => { + 'Class' => '11518463', 'Constructor' => 1, - 'Header' => 'mapfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterC2Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015602' + 'type' => '11525577' + }, + '1' => { + 'name' => 'src', + 'type' => '11525582' } }, - 'ShortName' => 'ClazzMapFilter' + 'ShortName' => 'PoolException', + 'Source' => 'exception.cpp', + 'SourceLine' => '219' }, - '11076740' => { - 'Artificial' => 1, - 'Class' => '11011493', + '11556698' => { + 'Class' => '11518463', 'Constructor' => 1, - 'Header' => 'mapfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterC1Ev', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11015602' + 'type' => '11525577' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' } }, - 'ShortName' => 'ClazzMapFilter' + 'ShortName' => 'PoolException', + 'Source' => 'exception.cpp', + 'SourceLine' => '214' }, - '11195016' => { - 'Class' => '650212', + '11559068' => { + 'Class' => '11518643', 'Constructor' => 1, - 'Header' => 'mdc.h', - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx3MDCC2ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEES8_', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11157448' + 'type' => '11525597' }, '1' => { - 'name' => 'key1', - 'type' => '646944' - }, - '2' => { - 'name' => 'value', - 'type' => '646944' + 'name' => 'src', + 'type' => '11525602' } }, - 'ShortName' => 'MDC', - 'Source' => 'mdc.cpp', - 'SourceLine' => '141' + 'ShortName' => 'MissingResourceException', + 'Source' => 'exception.cpp', + 'SourceLine' => '195' }, - '11195017' => { - 'Class' => '650212', + '11559069' => { + 'Class' => '11518643', 'Constructor' => 1, - 'Header' => 'mdc.h', - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx3MDCC1ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEES8_', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11157448' + 'type' => '11525597' }, '1' => { - 'name' => 'key1', - 'type' => '646944' - }, - '2' => { - 'name' => 'value', - 'type' => '646944' + 'name' => 'src', + 'type' => '11525602' } }, - 'ShortName' => 'MDC', - 'Source' => 'mdc.cpp', - 'SourceLine' => '141' + 'ShortName' => 'MissingResourceException', + 'Source' => 'exception.cpp', + 'SourceLine' => '195' }, - '11220045' => { - 'Class' => '650212', - 'Destructor' => 1, - 'Header' => 'mdc.h', - 'Line' => '60', - 'MnglName' => '_ZN7log4cxx3MDCD2Ev', + '11559193' => { + 'Class' => '11518643', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11157448' + 'type' => '11525597' + }, + '1' => { + 'name' => 'key', + 'type' => '210597' } }, - 'ShortName' => 'MDC', - 'Source' => 'mdc.cpp', - 'SourceLine' => '37' + 'ShortName' => 'MissingResourceException', + 'Source' => 'exception.cpp', + 'SourceLine' => '189' }, - '11222173' => { - 'Class' => '650212', + '11564906' => { + 'Class' => '11516162', 'Constructor' => 1, - 'Header' => 'mdc.h', - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3MDCC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11157448' + 'type' => '11525617' }, '1' => { - 'name' => 'key1', - 'type' => '61535' - }, - '2' => { - 'name' => 'value', - 'type' => '61535' + 'name' => 'src', + 'type' => '11525622' } }, - 'ShortName' => 'MDC', - 'Source' => 'mdc.cpp', - 'SourceLine' => '30' + 'ShortName' => 'IOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '162' }, - '11222174' => { - 'Class' => '650212', + '11564907' => { + 'Class' => '11516162', 'Constructor' => 1, - 'Header' => 'mdc.h', - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3MDCC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11157448' + 'type' => '11525617' }, '1' => { - 'name' => 'key1', - 'type' => '61535' - }, - '2' => { - 'name' => 'value', - 'type' => '61535' + 'name' => 'src', + 'type' => '11525622' } }, - 'ShortName' => 'MDC', - 'Source' => 'mdc.cpp', - 'SourceLine' => '30' + 'ShortName' => 'IOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '162' }, - '11309486' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '11565031' => { + 'Class' => '11516162', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '11525617' }, '1' => { - 'name' => 'msg', - 'type' => '61517' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Return' => '11313161', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '101' + 'ShortName' => 'IOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '157' }, - '11309522' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEPKc', + '11565032' => { + 'Class' => '11516162', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '11525617' }, '1' => { - 'name' => 'msg', - 'type' => '51127' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Return' => '11313161', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '115' + 'ShortName' => 'IOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '157' }, - '11309558' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '69', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEPc', + '11565156' => { + 'Class' => '11516162', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '11525617' }, '1' => { - 'name' => 'msg', - 'type' => '51958' + 'name' => 'stat', + 'type' => '1918053' } }, - 'Return' => '11313161', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '135' + 'ShortName' => 'IOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '151' }, - '11309594' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '76', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEc', + '11566150' => { + 'Class' => '11516162', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11525617' + } + }, + 'ShortName' => 'IOException', + 'Source' => 'exception.cpp', + 'SourceLine' => '146' + }, + '11566363' => { + 'Class' => '2502844', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2526424' }, '1' => { - 'name' => 'msg', - 'type' => '50678' + 'name' => 'src', + 'type' => '2526429' } }, - 'Return' => '11313161', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '140' + 'ShortName' => 'IllegalArgumentException', + 'Source' => 'exception.cpp', + 'SourceLine' => '135' }, - '11309630' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '92', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEPFRSt8ios_baseS3_E', + '11566364' => { + 'Class' => '2502844', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2526424' }, '1' => { - 'name' => 'manip', - 'type' => '11310317' + 'name' => 'src', + 'type' => '2526429' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '185' + 'ShortName' => 'IllegalArgumentException', + 'Source' => 'exception.cpp', + 'SourceLine' => '135' }, - '11309666' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '98', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEb', + '11566488' => { + 'Class' => '2502844', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2526424' }, '1' => { - 'name' => 'val', - 'type' => '50284' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '192' + 'ShortName' => 'IllegalArgumentException', + 'Source' => 'exception.cpp', + 'SourceLine' => '130' }, - '11309702' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '105', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEs', + '11566708' => { + 'Class' => '11519188', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '11525657' }, '1' => { - 'name' => 'val', - 'type' => '50224' + 'name' => 'src', + 'type' => '11525662' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '196' + 'ShortName' => 'NullPointerException', + 'Source' => 'exception.cpp', + 'SourceLine' => '119' }, - '11309738' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '111', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEi', + '11566709' => { + 'Class' => '11519188', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '11525657' }, '1' => { - 'name' => 'val', - 'type' => '50231' + 'name' => 'src', + 'type' => '11525662' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '200' + 'ShortName' => 'NullPointerException', + 'Source' => 'exception.cpp', + 'SourceLine' => '119' }, - '11309774' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '117', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEj', + '11566833' => { + 'Class' => '11519188', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '11525657' }, '1' => { - 'name' => 'val', - 'type' => '50167' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '204' + 'ShortName' => 'NullPointerException', + 'Source' => 'exception.cpp', + 'SourceLine' => '114' }, - '11309810' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '123', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEl', + '11568344' => { + 'Class' => '2503005', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2526444' }, '1' => { - 'name' => 'val', - 'type' => '50244' + 'name' => 'src', + 'type' => '2526449' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '208' + 'ShortName' => 'RuntimeException', + 'Source' => 'exception.cpp', + 'SourceLine' => '95' }, - '11309846' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '129', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEm', + '11568345' => { + 'Class' => '2503005', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2526444' }, '1' => { - 'name' => 'val', - 'type' => '50193' + 'name' => 'src', + 'type' => '2526449' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '212' + 'ShortName' => 'RuntimeException', + 'Source' => 'exception.cpp', + 'SourceLine' => '95' }, - '11309882' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '135', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEf', + '11568469' => { + 'Class' => '2503005', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2526444' }, '1' => { - 'name' => 'val', - 'type' => '50277' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '216' + 'ShortName' => 'RuntimeException', + 'Source' => 'exception.cpp', + 'SourceLine' => '90' }, - '11309918' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '141', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEd', + '11568470' => { + 'Class' => '2503005', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2526444' }, '1' => { - 'name' => 'val', - 'type' => '50270' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '220' + 'ShortName' => 'RuntimeException', + 'Source' => 'exception.cpp', + 'SourceLine' => '90' }, - '11309954' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '147', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEe', + '11568594' => { + 'Class' => '2503005', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2526444' }, '1' => { - 'name' => 'val', - 'offset' => '0', - 'type' => '50263' + 'name' => 'stat', + 'type' => '1918053' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '224' + 'ShortName' => 'RuntimeException', + 'Source' => 'exception.cpp', + 'SourceLine' => '85' }, - '11309990' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '153', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEPv', + '11570071' => { + 'Class' => '1374417', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2536672' }, '1' => { - 'name' => 'val', - 'type' => '50560' + 'name' => 'src', + 'type' => '11525256' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '228' + 'ShortName' => 'Exception', + 'Source' => 'exception.cpp', + 'SourceLine' => '59' }, - '11310026' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '158', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffercvRSoEv', + '11570072' => { + 'Class' => '1374417', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2536672' + }, + '1' => { + 'name' => 'src', + 'type' => '11525256' } }, - 'Return' => '6887191', - 'ShortName' => 'operator std::basic_ostream&', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '155' + 'ShortName' => 'Exception', + 'Source' => 'exception.cpp', + 'SourceLine' => '59' }, - '11310057' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '165', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffer11extract_strB5cxx11ERSo', + '11570326' => { + 'Class' => '1374417', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC2EPKc', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2536672' }, '1' => { - 'name' => 'p1', - 'type' => '6887191' + 'name' => 'm', + 'type' => '191618' } }, - 'Reg' => { - '1' => 'rdx' - }, - 'Return' => '68', - 'ShortName' => 'extract_str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '160' + 'ShortName' => 'Exception', + 'Source' => 'exception.cpp', + 'SourceLine' => '48' }, - '11310093' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '172', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffer11extract_strB5cxx11ERS1_', + '11570327' => { + 'Class' => '1374417', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC1EPKc', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2536672' }, '1' => { - 'name' => 'p1', - 'type' => '11313161' + 'name' => 'm', + 'type' => '191618' } }, - 'Reg' => { - '1' => 'rdx' - }, - 'Return' => '68', - 'ShortName' => 'extract_str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '165' + 'ShortName' => 'Exception', + 'Source' => 'exception.cpp', + 'SourceLine' => '48' }, - '11310129' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '179', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffer3strB5cxx11ERSo', + '11570608' => { + 'Class' => '1374417', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2536672' }, '1' => { - 'name' => 'p1', - 'type' => '6887191' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '61517', - 'ShortName' => 'str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '170' + 'ShortName' => 'Exception', + 'Source' => 'exception.cpp', + 'SourceLine' => '30' }, - '11310165' => { - 'Class' => '11309345', - 'Header' => 'messagebuffer.h', - 'Line' => '186', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffer3strB5cxx11ERS1_', + '11570609' => { + 'Class' => '1374417', + 'Constructor' => 1, + 'Header' => 'exception.h', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '2536672' }, '1' => { - 'name' => 'p1', - 'type' => '11313161' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '61517', - 'ShortName' => 'str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '175' + 'ShortName' => 'Exception', + 'Source' => 'exception.cpp', + 'SourceLine' => '30' }, - '11310201' => { - 'Class' => '11309345', + '11927814' => { + 'Class' => '1378014', 'Const' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '192', - 'MnglName' => '_ZNK7log4cxx7helpers17CharMessageBuffer9hasStreamEv', + 'Header' => 'errorhandler.h', + 'Line' => '61', + 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313201' + 'type' => '11942144' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'hasStream', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '180' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '43', + 'Virt' => 1, + 'VirtPos' => '2' }, - '11310473' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '422', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '11927851' => { + 'Class' => '1378014', + 'Header' => 'errorhandler.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '11927940' => { + 'Class' => '1378014', + 'Const' => 1, + 'Header' => 'errorhandler.h', + 'InLine' => 2, + 'Line' => '65', + 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11942144' }, '1' => { - 'name' => 'msg', - 'type' => '646920' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '11313524', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '245' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '11310510' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '428', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEPKw', + '11927982' => { + 'Class' => '1378014', + 'Const' => 1, + 'Header' => 'errorhandler.h', + 'InLine' => 2, + 'Line' => '62', + 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11942144' }, '1' => { - 'name' => 'msg', - 'type' => '51285' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '11313524', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '259' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '11310547' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '434', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEPw', + '11929133' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '652', + 'MnglName' => '_ZNK7log4cxx6Logger19getLoggerRepositoryEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' - }, - '1' => { - 'name' => 'msg', - 'type' => '51223' + 'type' => '25464604' } }, - 'Return' => '11313524', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '280' + 'Return' => '10588285', + 'ShortName' => 'getLoggerRepository', + 'Source' => 'logger.cpp', + 'SourceLine' => '246' }, - '11310584' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '441', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEw', + '11929165' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '659', + 'MnglName' => '_ZNK7log4cxx6Logger7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' - }, - '1' => { - 'name' => 'msg', - 'type' => '50399' + 'type' => '25464604' } }, - 'Return' => '11313524', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '285' + 'Return' => '210597', + 'ShortName' => 'getName', + 'Source' => 'logger.cpp', + 'SourceLine' => '570' }, - '11310621' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '448', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEPFRSt8ios_baseS3_E', + '11929990' => { + 'Artificial' => 1, + 'Class' => '5659276', + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZTch0_h0_NK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' - }, - '1' => { - 'name' => 'manip', - 'type' => '11310317' + 'type' => '11940881' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '330' + 'Return' => '5679463', + 'ShortName' => '_ZTch0_h0_NK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv' }, - '11310658' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '454', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEb', + '11930083' => { + 'Class' => '5659265', + 'Const' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' - }, - '1' => { - 'name' => 'val', - 'type' => '50284' + 'type' => '11940826' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '337' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '33', + 'Virt' => 1, + 'VirtPos' => '2' }, - '11310695' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '461', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEs', + '11930120' => { + 'Class' => '5659265', + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '33', + 'Static' => 1 + }, + '11930152' => { + 'Class' => '5659265', + 'Const' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940826' }, '1' => { - 'name' => 'val', - 'type' => '50224' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '341' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '11310732' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '467', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEi', + '11930194' => { + 'Class' => '5659265', + 'Const' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 2, + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940826' }, '1' => { - 'name' => 'val', - 'type' => '50231' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '345' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '11310769' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '473', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEj', + '11930312' => { + 'Class' => '5659265', + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940801' }, '1' => { - 'name' => 'val', - 'type' => '50167' + 'name' => 'logger', + 'type' => '11940831' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '349' + 'Return' => '1', + 'ShortName' => 'setLogger', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '49', + 'Virt' => 1, + 'VirtPos' => '7' }, - '11310806' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '479', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEl', + '11930351' => { + 'Class' => '5659265', + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940801' }, '1' => { - 'name' => 'val', - 'type' => '50244' + 'name' => 'p1', + 'type' => '210607' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '353' + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '119', + 'Virt' => 1, + 'VirtPos' => '5' }, - '11310843' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '485', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEm', + '11930390' => { + 'Class' => '5659265', + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940801' }, '1' => { - 'name' => 'val', - 'type' => '50193' + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210597' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '357' + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '123', + 'Virt' => 1, + 'VirtPos' => '6' }, - '11310880' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '491', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEf', + '11930434' => { + 'Class' => '5659265', + 'Const' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940826' }, '1' => { - 'name' => 'val', - 'type' => '50277' + 'name' => 'message', + 'type' => '210597' + }, + '2' => { + 'name' => 'e', + 'type' => '215735' + }, + '3' => { + 'name' => 'errorCode', + 'type' => '190263' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '361' + 'Return' => '1', + 'ShortName' => 'error', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '56', + 'Virt' => 1, + 'VirtPos' => '8' }, - '11310917' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '497', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEd', + '11930483' => { + 'Class' => '5659265', + 'Const' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940826' }, '1' => { - 'name' => 'val', - 'type' => '50270' + 'name' => 'message', + 'type' => '210597' + }, + '2' => { + 'name' => 'e', + 'type' => '215735' + }, + '3' => { + 'name' => 'p3', + 'type' => '190263' + }, + '4' => { + 'name' => 'p4', + 'type' => '576659' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '365' + 'Return' => '1', + 'ShortName' => 'error', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '63', + 'Virt' => 1, + 'VirtPos' => '10' }, - '11310954' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '503', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEe', + '11930537' => { + 'Class' => '5659265', + 'Const' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 2, + 'Line' => '94', + 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940826' }, '1' => { - 'name' => 'val', - 'offset' => '0', - 'type' => '50263' + 'name' => 'p1', + 'type' => '210597' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '369' + 'Return' => '1', + 'ShortName' => 'error', + 'Virt' => 1, + 'VirtPos' => '9' }, - '11310991' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '509', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEPv', + '11930576' => { + 'Class' => '5659265', + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940801' }, '1' => { - 'name' => 'val', - 'type' => '50560' + 'name' => 'primary1', + 'type' => '3129701' } }, - 'Return' => '10789059', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '373' + 'Return' => '1', + 'ShortName' => 'setAppender', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '96', + 'Virt' => 1, + 'VirtPos' => '11' }, - '11311028' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '515', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffercvRSt13basic_ostreamIwSt11char_traitsIwEEEv', + '11930615' => { + 'Class' => '5659265', + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '11940801' + }, + '1' => { + 'name' => 'backup1', + 'type' => '3129701' } }, - 'Return' => '10789059', - 'ShortName' => 'operator std::basic_ostream&', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '300' + 'Return' => '1', + 'ShortName' => 'setBackupAppender', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '103', + 'Virt' => 1, + 'VirtPos' => '12' }, - '11311060' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '522', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffer11extract_strB5cxx11ERSt13basic_ostreamIwSt11char_traitsIwEE', + '11930755' => { + 'Class' => '11930671', + 'Const' => 1, + 'Header' => 'hierarchy.h', + 'InLine' => 2, + 'Line' => '61', + 'MnglName' => '_ZNK7log4cxx9Hierarchy14ClazzHierarchy7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' - }, - '1' => { - 'name' => 'p1', - 'type' => '10789059' + 'type' => '18617192' } }, - 'Reg' => { - '1' => 'rdx' - }, - 'Return' => '513815', - 'ShortName' => 'extract_str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '305' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '11311097' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '529', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffer11extract_strB5cxx11ERS1_', + '11930794' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'Line' => '231', + 'MnglName' => '_ZN7log4cxx9Hierarchy11addAppenderESt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '18615999' }, '1' => { - 'name' => 'p1', - 'type' => '11313524' + 'name' => 'appender', + 'type' => '946694' } }, - 'Reg' => { - '1' => 'rdx' - }, - 'Return' => '513815', - 'ShortName' => 'extract_str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '310' + 'Return' => '1', + 'ShortName' => 'addAppender', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '486' }, - '11311134' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '536', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffer3strB5cxx11ERSt13basic_ostreamIwSt11char_traitsIwEE', + '11931285' => { + 'Data' => 1, + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx7classes32FallbackErrorHandlerRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'FallbackErrorHandlerRegistration', + 'Source' => 'fallbackerrorhandler.cpp' + }, + '11962722' => { + 'Artificial' => 1, + 'Class' => '11925401', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' - }, - '1' => { - 'name' => 'p1', - 'type' => '10789059' + 'type' => '11939749' } }, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '646920', - 'ShortName' => 'str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '315' + 'ShortName' => 'WideLife' }, - '11311171' => { - 'Class' => '11310329', - 'Header' => 'messagebuffer.h', - 'Line' => '543', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffer3strB5cxx11ERS1_', + '11962723' => { + 'Artificial' => 1, + 'Class' => '11925401', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' - }, - '1' => { - 'name' => 'p1', - 'type' => '11313524' + 'type' => '11939749' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '646920', - 'ShortName' => 'str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '320' + 'ShortName' => 'WideLife' }, - '11311208' => { - 'Class' => '11310329', - 'Const' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '549', - 'MnglName' => '_ZNK7log4cxx7helpers17WideMessageBuffer9hasStreamEv', + '11962865' => { + 'Artificial' => 1, + 'Class' => '11925401', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313536' + 'type' => '11939749' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'hasStream', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '325' + 'ShortName' => 'WideLife' }, - '11311498' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '590', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffercvRSoEv', + '11962866' => { + 'Artificial' => 1, + 'Class' => '11925401', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '11939749' } }, - 'Return' => '11313167', - 'ShortName' => 'operator std::ostream&', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '423' + 'ShortName' => 'WideLife' }, - '11311530' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '598', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '12057461' => { + 'Class' => '5659265', + 'Destructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' + 'type' => '11940801' } }, - 'Return' => '11313161', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '428' + 'ShortName' => 'FallbackErrorHandler', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '47', + 'Virt' => 1 }, - '11311567' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '605', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPKc', + '12057560' => { + 'Class' => '5659265', + 'Destructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'msg', - 'type' => '51127' + 'type' => '11940801' } }, - 'Return' => '11313161', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '433' + 'ShortName' => 'FallbackErrorHandler', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '47', + 'Virt' => 1 }, - '11311604' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '612', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPc', + '12060328' => { + 'Class' => '5659265', + 'Destructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'msg', - 'type' => '51958' + 'type' => '11940801' } }, - 'Return' => '11313161', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '437' + 'ShortName' => 'FallbackErrorHandler', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '47', + 'Virt' => 1 }, - '11311641' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '620', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEc', + '12062969' => { + 'Class' => '5659265', + 'Constructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'msg', - 'type' => '50678' + 'type' => '11940801' } }, - 'Return' => '11313161', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '442' + 'ShortName' => 'FallbackErrorHandler', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '42' }, - '11311678' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '628', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer11extract_strB5cxx11ERNS0_17CharMessageBufferE', + '12064590' => { + 'Class' => '5659265', + 'Constructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'buf', - 'type' => '11313161' + 'type' => '11940801' } }, - 'Return' => '36898', - 'ShortName' => 'extract_str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '447' + 'ShortName' => 'FallbackErrorHandler', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '42' }, - '11311715' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '636', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer11extract_strB5cxx11ERSo', + '12065898' => { + 'Artificial' => 1, + 'Class' => '1378014', + 'Constructor' => 1, + 'Header' => 'errorhandler.h', + 'InLine' => 1, + 'Line' => '58', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'os', - 'type' => '11313167' + 'type' => '12065848' } }, - 'Return' => '36898', - 'ShortName' => 'extract_str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '452' + 'ShortName' => 'ErrorHandler' }, - '11311752' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '644', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer3strB5cxx11ERNS0_17CharMessageBufferE', + '12065899' => { + 'Artificial' => 1, + 'Class' => '1378014', + 'Constructor' => 1, + 'Header' => 'errorhandler.h', + 'InLine' => 1, + 'Line' => '58', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'buf', - 'type' => '11313161' + 'type' => '12065848' } }, - 'Return' => '61535', - 'ShortName' => 'str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '457' + 'ShortName' => 'ErrorHandler' }, - '11311789' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '652', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer3strB5cxx11ERSo', + '12067998' => { + 'Artificial' => 1, + 'Class' => '5659276', + 'Destructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'os', - 'type' => '11313167' + 'type' => '11940871' } }, - 'Return' => '61535', - 'ShortName' => 'str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '462' + 'ShortName' => 'ClazzFallbackErrorHandler', + 'Virt' => 1 }, - '11311826' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '660', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '12067999' => { + 'Artificial' => 1, + 'Class' => '5659276', + 'Destructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' + 'type' => '11940871' } }, - 'Return' => '11313524', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '467' + 'ShortName' => 'ClazzFallbackErrorHandler', + 'Virt' => 1 }, - '11311863' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '667', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPKw', + '12068145' => { + 'Artificial' => 1, + 'Class' => '5659276', + 'Destructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'msg', - 'type' => '51285' + 'type' => '11940871' } }, - 'Return' => '11313524', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '473' + 'ShortName' => 'ClazzFallbackErrorHandler', + 'Virt' => 1 }, - '11311900' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '674', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPw', + '12068240' => { + 'Artificial' => 1, + 'Class' => '5659276', + 'Constructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'msg', - 'type' => '51223' + 'type' => '11940871' } }, - 'Return' => '11313524', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '478' + 'ShortName' => 'ClazzFallbackErrorHandler' }, - '11311937' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '681', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEw', + '12068241' => { + 'Artificial' => 1, + 'Class' => '5659276', + 'Constructor' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'msg', - 'type' => '50399' + 'type' => '11940871' } }, - 'Return' => '11313524', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '484' + 'ShortName' => 'ClazzFallbackErrorHandler' }, - '11311974' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '752', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPFRSt8ios_baseS3_E', + '12068305' => { + 'Artificial' => 1, + 'Class' => '1378014', + 'Destructor' => 1, + 'Header' => 'errorhandler.h', + 'InLine' => 1, + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'manip', - 'type' => '11310317' + 'type' => '12065848' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '416' + 'ShortName' => 'ErrorHandler', + 'Virt' => 1 }, - '11312011' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '759', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEb', + '12068306' => { + 'Artificial' => 1, + 'Class' => '1378014', + 'Destructor' => 1, + 'Header' => 'errorhandler.h', + 'InLine' => 1, + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'val', - 'type' => '50284' + 'type' => '12065848' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '510' + 'ShortName' => 'ErrorHandler', + 'Virt' => 1 }, - '11312048' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '766', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEs', + '12467614' => { + 'Class' => '567061', + 'Destructor' => 1, + 'Header' => 'file.h', + 'Line' => '99', + 'MnglName' => '_ZN7log4cxx4FileD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'val', - 'type' => '50224' + 'type' => '10586409' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '514' + 'ShortName' => 'File', + 'Source' => 'file.cpp', + 'SourceLine' => '136' }, - '11312085' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '772', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEi', + '12469767' => { + 'Class' => '567061', + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '91', + 'MnglName' => '_ZN7log4cxx4FileC2ERKS0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '10586409' }, '1' => { - 'name' => 'val', - 'type' => '50231' + 'name' => 'src', + 'type' => '575822' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '518' + 'ShortName' => 'File', + 'Source' => 'file.cpp', + 'SourceLine' => '117' }, - '11312122' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '778', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEj', + '12473564' => { + 'Class' => '567061', + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '62', + 'MnglName' => '_ZN7log4cxx4FileC2EPKw', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '10586409' }, '1' => { - 'name' => 'val', - 'type' => '50167' + 'name' => 'name1', + 'type' => '191807' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '522' + 'ShortName' => 'File', + 'Source' => 'file.cpp', + 'SourceLine' => '92' }, - '11312159' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '784', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEl', + '12473565' => { + 'Class' => '567061', + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '62', + 'MnglName' => '_ZN7log4cxx4FileC1EPKw', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '10586409' }, '1' => { - 'name' => 'val', - 'type' => '50244' + 'name' => 'name1', + 'type' => '191807' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '526' + 'ShortName' => 'File', + 'Source' => 'file.cpp', + 'SourceLine' => '92' }, - '11312196' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '790', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEm', + '12478298' => { + 'Class' => '567061', + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx4FileC2ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '10586409' }, '1' => { - 'name' => 'val', - 'type' => '50193' + 'name' => 'name1', + 'type' => '202841' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '530' + 'ShortName' => 'File', + 'Source' => 'file.cpp', + 'SourceLine' => '87' }, - '11312233' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '796', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEf', + '12483032' => { + 'Class' => '567061', + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx4FileC2EPKc', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '10586409' }, '1' => { - 'name' => 'val', - 'type' => '50277' + 'name' => 'name1', + 'type' => '191618' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '534' + 'ShortName' => 'File', + 'Source' => 'file.cpp', + 'SourceLine' => '81' }, - '11312270' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '802', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEd', + '12483033' => { + 'Class' => '567061', + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx4FileC1EPKc', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '10586409' }, '1' => { - 'name' => 'val', - 'type' => '50270' + 'name' => 'name1', + 'type' => '191618' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '538' + 'ShortName' => 'File', + 'Source' => 'file.cpp', + 'SourceLine' => '81' }, - '11312307' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '808', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEe', + '12487766' => { + 'Class' => '567061', + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx4FileC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '10586409' }, '1' => { - 'name' => 'val', - 'offset' => '0', - 'type' => '50263' + 'name' => 'name1', + 'type' => '202831' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '542' + 'ShortName' => 'File', + 'Source' => 'file.cpp', + 'SourceLine' => '76' }, - '11312344' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '814', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPv', + '12492488' => { + 'Class' => '567061', + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx4FileC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'val', - 'type' => '50560' + 'type' => '10586409' } }, - 'Return' => '11313167', - 'ShortName' => 'operator<<', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '546' + 'ShortName' => 'File', + 'Source' => 'file.cpp', + 'SourceLine' => '49' }, - '11312381' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '821', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer11extract_strB5cxx11ERNS0_17WideMessageBufferE', + '12959754' => { + 'Class' => '12959670', + 'Const' => 1, + 'Header' => 'fileoutputstream.h', + 'InLine' => 2, + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream21ClazzFileOutputStream7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'buf', - 'type' => '11313524' + 'type' => '14604152' } }, - 'Return' => '555309', - 'ShortName' => 'extract_str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '490' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '11312418' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '829', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer11extract_strB5cxx11ERSt13basic_ostreamIwSt11char_traitsIwEE', + '12966891' => { + 'Artificial' => 1, + 'Class' => '5661562', + 'Header' => 'fileappender.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZTch0_h0_NK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'os', - 'type' => '10789059' + 'type' => '12982871' } }, - 'Return' => '555309', - 'ShortName' => 'extract_str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '495' + 'Return' => '5680288', + 'ShortName' => '_ZTch0_h0_NK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv' }, - '11312455' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '837', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer3strB5cxx11ERNS0_17WideMessageBufferE', + '12967149' => { + 'Class' => '5661553', + 'Const' => 1, + 'Header' => 'fileappender.h', + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx12FileAppender8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' - }, - '1' => { - 'name' => 'buf', - 'type' => '11313524' + 'type' => '12982727' } }, - 'Return' => '646944', - 'ShortName' => 'str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '500' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '36', + 'Virt' => 1, + 'VirtPos' => '2' }, - '11312492' => { - 'Class' => '11311328', - 'Header' => 'messagebuffer.h', - 'Line' => '845', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer3strB5cxx11ERSt13basic_ostreamIwSt11char_traitsIwEE', + '12967187' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx12FileAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '36', + 'Static' => 1 + }, + '12967221' => { + 'Class' => '5661553', + 'Const' => 1, + 'Header' => 'fileappender.h', + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx12FileAppender4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '12982727' }, '1' => { - 'name' => 'os', - 'type' => '10789059' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '646944', - 'ShortName' => 'str', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '505' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '11312529' => { - 'Class' => '11311328', + '12967264' => { + 'Class' => '5661553', 'Const' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '869', - 'MnglName' => '_ZNK7log4cxx7helpers13MessageBuffer9hasStreamEv', + 'Header' => 'fileappender.h', + 'InLine' => 2, + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx12FileAppender10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313865' + 'type' => '12982727' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '50284', - 'ShortName' => 'hasStream', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '407' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '11374339' => { - 'Class' => '11311328', - 'Destructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '585', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferD2Ev', + '12967545' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'Line' => '104', + 'MnglName' => '_ZN7log4cxx12FileAppender7setFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '12982737' + }, + '1' => { + 'name' => 'file', + 'type' => '210597' } }, - 'ShortName' => 'MessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '403' + 'Return' => '1', + 'ShortName' => 'setFile', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '92', + 'Virt' => 1, + 'VirtPos' => '23' }, - '11375169' => { - 'Class' => '11311328', - 'Constructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '581', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferC2Ev', + '12967584' => { + 'Class' => '5661553', + 'Const' => 1, + 'Header' => 'fileappender.h', + 'Line' => '109', + 'MnglName' => '_ZNK7log4cxx12FileAppender9getAppendEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '12982727' } }, - 'ShortName' => 'MessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '398' + 'Return' => '174077', + 'ShortName' => 'getAppend', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '378' }, - '11375170' => { - 'Class' => '11311328', - 'Constructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '581', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferC1Ev', + '12967616' => { + 'Class' => '5661553', + 'Const' => 1, + 'Header' => 'fileappender.h', + 'Line' => '112', + 'MnglName' => '_ZNK7log4cxx12FileAppender7getFileB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '12982727' } }, - 'ShortName' => 'MessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '398' + 'Return' => '209661', + 'ShortName' => 'getFile', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '358' }, - '11407346' => { - 'Class' => '11310329', - 'Destructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '414', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferD2Ev', + '12967648' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'Line' => '123', + 'MnglName' => '_ZN7log4cxx12FileAppender15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '12982737' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'WideMessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '241' + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '149', + 'Virt' => 1, + 'VirtPos' => '5' }, - '11408473' => { - 'Class' => '11310329', - 'Constructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '410', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferC2Ev', + '12967687' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx12FileAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '12982737' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'ShortName' => 'WideMessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '236' + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '114', + 'Virt' => 1, + 'VirtPos' => '6' }, - '11408474' => { - 'Class' => '11310329', - 'Constructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '410', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferC1Ev', + '12967731' => { + 'Class' => '5661553', + 'Const' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZNK7log4cxx12FileAppender13getBufferedIOEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '12982727' } }, - 'ShortName' => 'WideMessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '236' + 'Return' => '174077', + 'ShortName' => 'getBufferedIO', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '363' }, - '11439820' => { - 'Class' => '11309345', - 'Destructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferD2Ev', + '12967763' => { + 'Class' => '5661553', + 'Const' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZNK7log4cxx12FileAppender13getBufferSizeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '12982727' } }, - 'ShortName' => 'CharMessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '97' + 'Return' => '190263', + 'ShortName' => 'getBufferSize', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '368' }, - '11440947' => { - 'Class' => '11309345', - 'Constructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferC2Ev', + '12967795' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppender9setAppendEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '12982737' + }, + '1' => { + 'name' => 'fileAppend1', + 'type' => '174077' } }, - 'ShortName' => 'CharMessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '93' + 'Return' => '1', + 'ShortName' => 'setAppend', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '86' }, - '11440948' => { - 'Class' => '11309345', - 'Constructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferC1Ev', + '12967827' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppender13setBufferedIOEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '12982737' + }, + '1' => { + 'name' => 'bufferedIO1', + 'type' => '174077' } }, - 'ShortName' => 'CharMessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '93' + 'Return' => '1', + 'ShortName' => 'setBufferedIO', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '103' }, - '1149767' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '749', - 'MnglName' => '_ZN7log4cxx6Logger13getRootLoggerEv', - 'Private' => 1, - 'Return' => '1150380', - 'ShortName' => 'getRootLogger', - 'Source' => 'logger.cpp', - 'SourceLine' => '591', - 'Static' => 1 - }, - '1149822' => { - 'Class' => '1149782', - 'Header' => 'basicconfigurator.h', - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx17BasicConfigurator9configureERKSt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'layoutArg', - 'type' => '412075' - } - }, - 'Return' => '1', - 'ShortName' => 'configure', - 'Source' => 'basicconfigurator.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '1149846' => { - 'Class' => '1149782', - 'Header' => 'basicconfigurator.h', - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx17BasicConfigurator9configureERKSt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'appender', - 'type' => '1151508' - } - }, - 'Return' => '1', - 'ShortName' => 'configure', - 'Source' => 'basicconfigurator.cpp', - 'SourceLine' => '40', - 'Static' => 1 - }, - '1149870' => { - 'Class' => '1149782', - 'Header' => 'basicconfigurator.h', - 'Line' => '64', - 'MnglName' => '_ZN7log4cxx17BasicConfigurator18resetConfigurationEv', - 'Return' => '1', - 'ShortName' => 'resetConfiguration', - 'Source' => 'basicconfigurator.cpp', - 'SourceLine' => '46', - 'Static' => 1 - }, - '1149968' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx10LogManager21getRepositorySelectorEv', - 'Private' => 1, - 'Return' => '1149710', - 'ShortName' => 'getRepositorySelector', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '47', - 'Static' => 1 - }, - '1149984' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx10LogManager21setRepositorySelectorESt10shared_ptrINS_3spi18RepositorySelectorEEPv', - 'Param' => { - '0' => { - 'name' => 'selector', - 'type' => '1149710' - }, - '1' => { - 'name' => 'guard1', - 'type' => '50560' - } - }, - 'Return' => '1', - 'ShortName' => 'setRepositorySelector', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '58', - 'Static' => 1 - }, - '1150013' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '70', - 'MnglName' => '_ZN7log4cxx10LogManager19getLoggerRepositoryEv', - 'Return' => '835664', - 'ShortName' => 'getLoggerRepository', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '76', - 'Static' => 1 - }, - '1150030' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '78', - 'MnglName' => '_ZN7log4cxx10LogManager13getRootLoggerEv', - 'Return' => '1150380', - 'ShortName' => 'getRootLogger', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '81', - 'Static' => 1 - }, - '1150047' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '88', - 'MnglName' => '_ZN7log4cxx10LogManager9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '61535' - } - }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '111', - 'Static' => 1 - }, - '1150074' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '98', - 'MnglName' => '_ZN7log4cxx10LogManager9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '61535' - }, - '1' => { - 'name' => 'factory', - 'type' => '1152981' - } - }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '117', - 'Static' => 1 - }, - '1150106' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '103', - 'MnglName' => '_ZN7log4cxx10LogManager6existsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '61535' - } - }, - 'Return' => '1150380', - 'ShortName' => 'exists', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '124', - 'Static' => 1 - }, - '1150133' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '113', - 'MnglName' => '_ZN7log4cxx10LogManager9getLoggerERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '646944' - } - }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '131', - 'Static' => 1 - }, - '1150160' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '122', - 'MnglName' => '_ZN7log4cxx10LogManager9getLoggerERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '646944' - }, - '1' => { - 'name' => 'factory', - 'type' => '1152981' - } - }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '137', - 'Static' => 1 - }, - '1150192' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx10LogManager6existsERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '646944' - } - }, - 'Return' => '1150380', - 'ShortName' => 'exists', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '144', - 'Static' => 1 - }, - '1150219' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '194', - 'MnglName' => '_ZN7log4cxx10LogManager11getLoggerLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '263006' - } - }, - 'Return' => '1150380', - 'ShortName' => 'getLoggerLS', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '92', - 'Static' => 1 - }, - '1150246' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '204', - 'MnglName' => '_ZN7log4cxx10LogManager11getLoggerLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '263006' - }, - '1' => { - 'name' => 'factory', - 'type' => '1152981' - } - }, - 'Return' => '1150380', - 'ShortName' => 'getLoggerLS', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '102', - 'Static' => 1 - }, - '1150278' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '210', - 'MnglName' => '_ZN7log4cxx10LogManager8existsLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '263006' - } - }, - 'Return' => '1150380', - 'ShortName' => 'existsLS', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '193', - 'Static' => 1 - }, - '1150305' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '212', - 'MnglName' => '_ZN7log4cxx10LogManager17getCurrentLoggersEv', - 'Return' => '1150392', - 'ShortName' => 'getCurrentLoggers', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '198', - 'Static' => 1 - }, - '1150322' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '218', - 'MnglName' => '_ZN7log4cxx10LogManager8shutdownEv', - 'Return' => '1', - 'ShortName' => 'shutdown', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '203', - 'Static' => 1 - }, - '1150336' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '225', - 'MnglName' => '_ZN7log4cxx10LogManager18resetConfigurationEv', - 'Return' => '1', - 'ShortName' => 'resetConfiguration', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '209', - 'Static' => 1 - }, - '1150350' => { - 'Class' => '1149943', - 'Header' => 'logmanager.h', - 'Line' => '238', - 'MnglName' => '_ZN7log4cxx10LogManager12removeLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '263006' - }, - '1' => { - 'name' => 'ifNotUsed', - 'type' => '50284' - } - }, - 'Return' => '50284', - 'ShortName' => 'removeLogger', - 'Source' => 'logmanager.cpp', - 'SourceLine' => '214', - 'Static' => 1 - }, - '11523853' => { - 'Class' => '11523732', - 'Const' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverter7getNameB5cxx11Ev', + '12967859' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppender13setBufferSizeEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11527495' + 'type' => '12982737' + }, + '1' => { + 'name' => 'bufferSize1', + 'type' => '190263' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '11523982' => { - 'Class' => '11523698', - 'Header' => 'messagepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'messagepatternconverter.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '11523999' => { - 'Class' => '11523698', - 'Header' => 'messagepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'messagepatternconverter.cpp', - 'SourceLine' => '27', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'setBufferSize', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '373' }, - '11524016' => { - 'Class' => '11523698', - 'Const' => 1, - 'Header' => 'messagepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter8getClassEv', + '12967892' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppender25stripDuplicateBackslashesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '11526844' + 'name' => 'src', + 'type' => '210597' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'messagepatternconverter.cpp', - 'SourceLine' => '27', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '209661', + 'ShortName' => 'stripDuplicateBackslashes', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '202', + 'Static' => 1 }, - '11524055' => { - 'Class' => '11523698', - 'Const' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter4castERKNS_7helpers5ClassE', + '12967918' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'Line' => '196', + 'MnglName' => '_ZN7log4cxx12FileAppender23activateOptionsInternalERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11526844' + 'type' => '12982737' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'activateOptionsInternal', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '155' }, - '11524099' => { - 'Class' => '11523698', - 'Const' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter10instanceofERKNS_7helpers5ClassE', + '12967950' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'Line' => '218', + 'MnglName' => '_ZN7log4cxx12FileAppender15setFileInternalERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbmRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11526844' + 'type' => '12982737' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'filename', + 'type' => '210597' + }, + '2' => { + 'name' => 'append1', + 'type' => '174077' + }, + '3' => { + 'name' => 'bufferedIO1', + 'type' => '174077' + }, + '4' => { + 'name' => 'bufferSize1', + 'type' => '190816' + }, + '5' => { + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'setFileInternal', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '265' }, - '11524180' => { - 'Class' => '11523698', - 'Header' => 'messagepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '12968003' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'Line' => '222', + 'MnglName' => '_ZN7log4cxx12FileAppender15setFileInternalERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'options', - 'type' => '2273842' + 'name' => 'this', + 'type' => '12982737' + }, + '1' => { + 'name' => 'file', + 'type' => '210597' } }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'messagepatternconverter.cpp', - 'SourceLine' => '70', - 'Static' => 1 + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'setFileInternal', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '98' }, - '11524208' => { - 'Class' => '11523698', - 'Const' => 1, - 'Header' => 'messagepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '12968169' => { + 'Data' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7classes24FileAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'FileAppenderRegistration', + 'Source' => 'fileappender.cpp' + }, + '12968944' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '194', + 'MnglName' => '_ZN7log4cxx14WriterAppender17setWriterInternalERKSt10shared_ptrINS_7helpers6WriterEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11526844' + 'type' => '7877635' }, '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'name' => 'newWriter', + 'type' => '7877740' } }, - 'Reg' => { - '3' => 'rcx' - }, + 'Protected' => 1, 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'messagepatternconverter.cpp', - 'SourceLine' => '81', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'setWriterInternal', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '297' }, - '11524633' => { - 'Data' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7classes35MessagePatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'MessagePatternConverterRegistration', - 'Source' => 'messagepatternconverter.cpp' + '12968976' => { + 'Class' => '3122360', + 'Const' => 1, + 'Header' => 'writerappender.h', + 'Line' => '139', + 'MnglName' => '_ZNK7log4cxx14WriterAppender11getEncodingB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877625' + } + }, + 'Return' => '209661', + 'ShortName' => 'getEncoding', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '243' }, - '11532934' => { - 'Artificial' => 1, - 'Class' => '11523698', - 'Destructor' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterD0Ev', + '12969006' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '123', + 'MnglName' => '_ZN7log4cxx14WriterAppender11closeWriterEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11526600' + 'type' => '7877635' } }, - 'ShortName' => 'MessagePatternConverter', - 'Virt' => 1 + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'closeWriter', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '180' }, - '11532935' => { - 'Artificial' => 1, - 'Class' => '11523698', - 'Destructor' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterD2Ev', + '12969116' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx14WriterAppender17setImmediateFlushEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11526600' + 'type' => '7877635' + }, + '1' => { + 'name' => 'value', + 'type' => '174077' } }, - 'ShortName' => 'MessagePatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setImmediateFlush', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '320' }, - '11533202' => { - 'Artificial' => 1, - 'Class' => '11523698', + '12984249' => { + 'Constructor' => 1, + 'Header' => 'bufferedwriter.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterC1ERSt10shared_ptrINS0_6WriterEEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + }, + '1' => { + 'name' => 'out', + 'type' => '3337129' + }, + '2' => { + 'name' => 'sz', + 'type' => '190816' + } + } + }, + '12984310' => { 'Destructor' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterD1Ev', + 'Header' => 'bytebuffer.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBufferD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11526600' + 'type' => '4014802' } - }, - 'ShortName' => 'MessagePatternConverter', - 'Virt' => 1 + } }, - '11546810' => { - 'Artificial' => 1, - 'Class' => '2269898', + '12984337' => { 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_23MessagePatternConverterEEJEEEOT_DpOT0_', + 'Header' => 'bytebuffer.h', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBufferC1EPcm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '4014802' }, '1' => { - 'name' => 'arg0', - 'type' => '11526622' + 'name' => 'data', + 'type' => '192483' + }, + '2' => { + 'name' => 'capacity', + 'type' => '190816' } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '11495203' - } - } + } }, - '11546811' => { - 'Artificial' => 1, - 'Class' => '2269898', + '12984388' => { 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, + 'Header' => 'fileoutputstream.h', 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_23MessagePatternConverterEEJEEEOT_DpOT0_', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '12981896' }, '1' => { - 'name' => 'arg0', - 'type' => '11526622' + 'name' => 'filename', + 'type' => '210597' + }, + '2' => { + 'name' => 'append', + 'type' => '174077' } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '11495203' - } - } + } }, - '11547891' => { + '13009533' => { 'Artificial' => 1, - 'Class' => '11522056', + 'Class' => '12966918', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'fileappender_priv.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEED2Ev', + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11525724' + 'type' => '12981079' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'FileAppenderPriv', + 'Virt' => 1 }, - '11547892' => { + '13009534' => { 'Artificial' => 1, - 'Class' => '11522056', + 'Class' => '12966918', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'fileappender_priv.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEED0Ev', + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11525724' + 'type' => '12981079' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'FileAppenderPriv', + 'Virt' => 1 }, - '11548033' => { + '13015499' => { 'Artificial' => 1, - 'Class' => '11522056', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '12966918', + 'Destructor' => 1, + 'Header' => 'fileappender_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEEC2Ev', + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11525724' + 'type' => '12981079' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'FileAppenderPriv', + 'Virt' => 1 }, - '11548034' => { + '13048373' => { 'Artificial' => 1, - 'Class' => '11522056', - 'Constructor' => 1, + 'Class' => '12960346', + 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEEC1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11525724' + 'type' => '12980968' } }, 'ShortName' => 'WideLife' }, - '11561459' => { - 'Class' => '11523698', - 'Constructor' => 1, - 'Header' => 'messagepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterC1Ev', + '13048374' => { + 'Artificial' => 1, + 'Class' => '12960346', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11526600' + 'type' => '12980968' } }, - 'ShortName' => 'MessagePatternConverter', - 'Source' => 'messagepatternconverter.cpp', - 'SourceLine' => '64' + 'ShortName' => 'WideLife' }, - '11565647' => { - 'Class' => '11523698', + '13048515' => { + 'Artificial' => 1, + 'Class' => '12960346', 'Constructor' => 1, - 'Header' => 'messagepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterC2Ev', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11526600' + 'type' => '12980968' } }, - 'ShortName' => 'MessagePatternConverter', - 'Source' => 'messagepatternconverter.cpp', - 'SourceLine' => '64' + 'ShortName' => 'WideLife' }, - '11578445' => { + '13048516' => { 'Artificial' => 1, - 'Class' => '11523732', - 'Destructor' => 1, - 'Header' => 'messagepatternconverter.h', + 'Class' => '12960346', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11527484' + 'type' => '12980968' } }, - 'ShortName' => 'ClazzMessagePatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '11578446' => { - 'Artificial' => 1, - 'Class' => '11523732', + '13092343' => { + 'Class' => '5661553', 'Destructor' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD1Ev', + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11527484' + 'type' => '12982737' } }, - 'ShortName' => 'ClazzMessagePatternConverter', + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '81', 'Virt' => 1 }, - '11578587' => { - 'Artificial' => 1, - 'Class' => '11523732', + '13092441' => { + 'Class' => '5661553', 'Destructor' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD2Ev', + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11527484' + 'type' => '12982737' } }, - 'ShortName' => 'ClazzMessagePatternConverter', + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '81', 'Virt' => 1 }, - '11578677' => { - 'Artificial' => 1, - 'Class' => '11523732', - 'Constructor' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterC2Ev', + '13092729' => { + 'Class' => '5661553', + 'Destructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11527484' + 'type' => '12982737' } }, - 'ShortName' => 'ClazzMessagePatternConverter' + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '81', + 'Virt' => 1 }, - '11578678' => { - 'Artificial' => 1, - 'Class' => '11523732', + '13092895' => { + 'Class' => '5661553', 'Constructor' => 1, - 'Header' => 'messagepatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterC1Ev', + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC1ESt10unique_ptrINS0_16FileAppenderPrivESt14default_deleteIS2_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11527484' + 'type' => '12982737' + }, + '1' => { + 'name' => 'priv', + 'type' => '12866354' } }, - 'ShortName' => 'ClazzMessagePatternConverter' + 'Protected' => 1, + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '76' }, - '11649833' => { - 'Class' => '11649712', - 'Const' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverter7getNameB5cxx11Ev', + '13094825' => { + 'Class' => '5661553', + 'Constructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC2ESt10unique_ptrINS0_16FileAppenderPrivESt14default_deleteIS2_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11653041' + 'type' => '12982737' + }, + '2' => { + 'name' => 'priv', + 'type' => '12866354' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '11649962' => { - 'Class' => '11649678', - 'Header' => 'methodlocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'methodlocationpatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '11649979' => { - 'Class' => '11649678', - 'Header' => 'methodlocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'methodlocationpatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 + 'Protected' => 1, + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '76' }, - '11649996' => { - 'Class' => '11649678', - 'Const' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter8getClassEv', + '13096513' => { + 'Class' => '5661553', + 'Constructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652713' + 'type' => '12982737' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '2' => { + 'name' => 'fileName1', + 'type' => '210597' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'methodlocationpatternconverter.cpp', - 'SourceLine' => '28', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '69' }, - '11650035' => { - 'Class' => '11649678', - 'Const' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter4castERKNS_7helpers5ClassE', + '13098917' => { + 'Class' => '5661553', + 'Constructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652713' + 'type' => '12982737' }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + '2' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '3' => { + 'name' => 'fileName1', + 'type' => '210597' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '69' }, - '11650079' => { - 'Class' => '11649678', - 'Const' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter10instanceofERKNS_7helpers5ClassE', + '13101095' => { + 'Class' => '5661553', + 'Constructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652713' + 'type' => '12982737' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'layout1', + 'type' => '1391157' + }, + '2' => { + 'name' => 'fileName1', + 'type' => '210597' + }, + '3' => { + 'name' => 'append1', + 'type' => '174077' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '58' }, - '11650160' => { - 'Class' => '11649678', - 'Header' => 'methodlocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '13103526' => { + 'Class' => '5661553', + 'Constructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', 'Param' => { '0' => { - 'name' => 'p1', - 'type' => '410985' + 'name' => 'this', + 'type' => '12982737' + }, + '2' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '3' => { + 'name' => 'fileName1', + 'type' => '210597' + }, + '4' => { + 'name' => 'append1', + 'type' => '174077' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'methodlocationpatternconverter.cpp', - 'SourceLine' => '36', - 'Static' => 1 + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '58' }, - '11650188' => { - 'Class' => '11649678', - 'Const' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '13105755' => { + 'Class' => '5661553', + 'Constructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652713' + 'type' => '12982737' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'layout1', + 'type' => '1391157' }, '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' + 'name' => 'fileName1', + 'type' => '210597' }, '3' => { - 'name' => 'p3', - 'type' => '64643' + 'name' => 'append1', + 'type' => '174077' + }, + '4' => { + 'name' => 'bufferedIO1', + 'type' => '174077' + }, + '5' => { + 'name' => 'bufferSize1', + 'type' => '190263' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'methodlocationpatternconverter.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '11651077' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes42MethodLocationPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'MethodLocationPatternConverterRegistration', - 'Source' => 'methodlocationpatternconverter.cpp' + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '45' }, - '11656042' => { - 'Artificial' => 1, - 'Class' => '11649678', - 'Destructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterD0Ev', + '13108219' => { + 'Class' => '5661553', + 'Constructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652514' + 'type' => '12982737' + }, + '2' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '3' => { + 'name' => 'fileName1', + 'type' => '210597' + }, + '4' => { + 'name' => 'append1', + 'type' => '174077' + }, + '5' => { + 'name' => 'bufferedIO1', + 'type' => '174077' + }, + '6' => { + 'name' => 'bufferSize1', + 'type' => '190263' } }, - 'ShortName' => 'MethodLocationPatternConverter', - 'Virt' => 1 + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '45' }, - '11656043' => { - 'Artificial' => 1, - 'Class' => '11649678', - 'Destructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterD2Ev', + '13110406' => { + 'Class' => '5661553', + 'Constructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652514' + 'type' => '12982737' } }, - 'ShortName' => 'MethodLocationPatternConverter', - 'Virt' => 1 + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '40' }, - '11656307' => { - 'Artificial' => 1, - 'Class' => '11649678', - 'Destructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterD1Ev', + '13112592' => { + 'Class' => '5661553', + 'Constructor' => 1, + 'Header' => 'fileappender.h', + 'MnglName' => '_ZN7log4cxx12FileAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652514' + 'type' => '12982737' } }, - 'ShortName' => 'MethodLocationPatternConverter', - 'Virt' => 1 + 'ShortName' => 'FileAppender', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '40' }, - '11663155' => { + '13115737' => { 'Artificial' => 1, - 'Class' => '2269898', + 'Class' => '12966918', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'fileappender_priv.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_30MethodLocationPatternConverterEEJEEEOT_DpOT0_', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivC2ESt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '12981079' }, '1' => { - 'name' => 'arg0', - 'type' => '11652536' + 'name' => '_layout', + 'type' => '1381467' + }, + '2' => { + 'name' => '_fileName', + 'type' => '210597' + }, + '3' => { + 'name' => '_fileAppend', + 'type' => '174077' + }, + '4' => { + 'name' => '_bufferedIO', + 'type' => '174077' + }, + '5' => { + 'name' => '_bufferSize', + 'type' => '190263' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '11626815' - } - } + 'ShortName' => 'FileAppenderPriv' }, - '11663156' => { + '13115738' => { 'Artificial' => 1, - 'Class' => '2269898', + 'Class' => '12966918', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'fileappender_priv.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_30MethodLocationPatternConverterEEJEEEOT_DpOT0_', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivC1ESt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '12981079' }, '1' => { - 'name' => 'arg0', - 'type' => '11652536' + 'name' => '_layout', + 'type' => '1381467' + }, + '2' => { + 'name' => '_fileName', + 'type' => '210597' + }, + '3' => { + 'name' => '_fileAppend', + 'type' => '174077' + }, + '4' => { + 'name' => '_bufferedIO', + 'type' => '174077' + }, + '5' => { + 'name' => '_bufferSize', + 'type' => '190263' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '11626815' - } - } + 'ShortName' => 'FileAppenderPriv' }, - '11663571' => { + '13126347' => { 'Artificial' => 1, - 'Class' => '11648036', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '7862611', + 'Constructor' => 1, + 'Header' => 'writerappender_priv.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEED2Ev', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC2ERKSt10shared_ptrINS_6LayoutEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652206' + 'type' => '7874674' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WriterAppenderPriv' }, - '11663572' => { + '13126348' => { 'Artificial' => 1, - 'Class' => '11648036', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '7862611', + 'Constructor' => 1, + 'Header' => 'writerappender_priv.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEED0Ev', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC1ERKSt10shared_ptrINS_6LayoutEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652206' + 'type' => '7874674' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WriterAppenderPriv' }, - '11663712' => { + '13134407' => { 'Artificial' => 1, - 'Class' => '11648036', + 'Class' => '1379591', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'appenderskeleton_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEEC2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC2ESt10shared_ptrINS_6LayoutEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652206' + 'type' => '1389202' + }, + '1' => { + 'name' => 'lay', + 'type' => '1381467' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'AppenderSkeletonPrivate' }, - '11663713' => { + '13134408' => { 'Artificial' => 1, - 'Class' => '11648036', + 'Class' => '1379591', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'appenderskeleton_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '11652206' - } - }, - 'ShortName' => 'WideLife' - }, - '11670054' => { - 'Class' => '11649678', - 'Constructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '11652514' - } - }, - 'ShortName' => 'MethodLocationPatternConverter', - 'Source' => 'methodlocationpatternconverter.cpp', - 'SourceLine' => '30' - }, - '11674171' => { - 'Class' => '11649678', - 'Constructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterC2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC1ESt10shared_ptrINS_6LayoutEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652514' + 'type' => '1389202' + }, + '1' => { + 'name' => 'lay', + 'type' => '1381467' } }, - 'ShortName' => 'MethodLocationPatternConverter', - 'Source' => 'methodlocationpatternconverter.cpp', - 'SourceLine' => '30' + 'ShortName' => 'AppenderSkeletonPrivate' }, - '11680206' => { + '13140966' => { 'Artificial' => 1, - 'Class' => '11649712', + 'Class' => '5661562', 'Destructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', + 'Header' => 'fileappender.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD0Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11653030' + 'type' => '12982861' } }, - 'ShortName' => 'ClazzMethodLocationPatternConverter', + 'ShortName' => 'ClazzFileAppender', 'Virt' => 1 }, - '11680207' => { + '13140967' => { 'Artificial' => 1, - 'Class' => '11649712', + 'Class' => '5661562', 'Destructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', + 'Header' => 'fileappender.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11653030' + 'type' => '12982861' } }, - 'ShortName' => 'ClazzMethodLocationPatternConverter', + 'ShortName' => 'ClazzFileAppender', 'Virt' => 1 }, - '11680347' => { + '13141112' => { 'Artificial' => 1, - 'Class' => '11649712', + 'Class' => '5661562', 'Destructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', + 'Header' => 'fileappender.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11653030' + 'type' => '12982861' } }, - 'ShortName' => 'ClazzMethodLocationPatternConverter', + 'ShortName' => 'ClazzFileAppender', 'Virt' => 1 }, - '11680437' => { + '13141206' => { 'Artificial' => 1, - 'Class' => '11649712', + 'Class' => '5661562', 'Constructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', + 'Header' => 'fileappender.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterC2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11653030' + 'type' => '12982861' } }, - 'ShortName' => 'ClazzMethodLocationPatternConverter' + 'ShortName' => 'ClazzFileAppender' }, - '11680438' => { + '13141207' => { 'Artificial' => 1, - 'Class' => '11649712', + 'Class' => '5661562', 'Constructor' => 1, - 'Header' => 'methodlocationpatternconverter.h', + 'Header' => 'fileappender.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterC1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11653030' + 'type' => '12982861' } }, - 'ShortName' => 'ClazzMethodLocationPatternConverter' + 'ShortName' => 'ClazzFileAppender' }, - '1168633' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev', + '13480182' => { + 'Class' => '13480143', + 'Header' => 'filedatepatternconverter.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7pattern24FileDatePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'filedatepatternconverter.cpp', + 'SourceLine' => '27', + 'Static' => 1 + }, + '1374568' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog11getInstanceEv', + 'Private' => 1, + 'Return' => '1389707', + 'ShortName' => 'getInstance', + 'Source' => 'loglog.cpp', + 'SourceLine' => '62', + 'Static' => 1 + }, + '1374616' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '58', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog20setInternalDebuggingEb', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '1153112' + 'name' => 'debugEnabled1', + 'type' => '174077' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setInternalDebugging', + 'Source' => 'loglog.cpp', + 'SourceLine' => '69', + 'Static' => 1 }, - '1168634' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED0Ev', + '1374637' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog5debugERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'msg', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'debug', + 'Source' => 'loglog.cpp', + 'SourceLine' => '77', + 'Static' => 1 + }, + '1374658' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog5debugERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exception', + 'Param' => { + '0' => { + 'name' => 'msg', + 'type' => '210597' + }, + '1' => { + 'name' => 'e', + 'type' => '215735' + } + }, + 'Return' => '1', + 'ShortName' => 'debug', + 'Source' => 'loglog.cpp', + 'SourceLine' => '93', + 'Static' => 1 + }, + '1374684' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'msg', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'error', + 'Source' => 'loglog.cpp', + 'SourceLine' => '108', + 'Static' => 1 + }, + '1374705' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exception', + 'Param' => { + '0' => { + 'name' => 'msg', + 'type' => '210597' + }, + '1' => { + 'name' => 'e', + 'type' => '215735' + } + }, + 'Return' => '1', + 'ShortName' => 'error', + 'Source' => 'loglog.cpp', + 'SourceLine' => '119', + 'Static' => 1 + }, + '1374731' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '88', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog12setQuietModeEb', + 'Param' => { + '0' => { + 'name' => 'quietMode1', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setQuietMode', + 'Source' => 'loglog.cpp', + 'SourceLine' => '130', + 'Static' => 1 + }, + '1374752' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '93', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog4warnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'msg', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'warn', + 'Source' => 'loglog.cpp', + 'SourceLine' => '138', + 'Static' => 1 + }, + '1374773' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '97', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog4warnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exception', + 'Param' => { + '0' => { + 'name' => 'msg', + 'type' => '210597' + }, + '1' => { + 'name' => 'e', + 'type' => '215735' + } + }, + 'Return' => '1', + 'ShortName' => 'warn', + 'Source' => 'loglog.cpp', + 'SourceLine' => '148', + 'Static' => 1 + }, + '1374799' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '100', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog4emitERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'msg', + 'type' => '210597' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'emit', + 'Source' => 'loglog.cpp', + 'SourceLine' => '159', + 'Static' => 1 + }, + '1374821' => { + 'Class' => '1374445', + 'Header' => 'loglog.h', + 'Line' => '101', + 'MnglName' => '_ZN7log4cxx7helpers6LogLog4emitERKSt9exception', + 'Param' => { + '0' => { + 'name' => 'ex', + 'type' => '215735' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'emit', + 'Source' => 'loglog.cpp', + 'SourceLine' => '169', + 'Static' => 1 + }, + '1374945' => { + 'Class' => '1374860', + 'Const' => 1, + 'Header' => 'onlyonceerrorhandler.h', + 'InLine' => 2, + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '33237910' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '1169388' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA24_KcJEEEOT_DpOT0_', + '1374982' => { + 'Class' => '1374860', + 'Const' => 1, + 'Header' => 'onlyonceerrorhandler.h', + 'InLine' => 2, + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '33237910' + } + }, + 'Return' => '1390312', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '1376975' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '180', + 'MnglName' => '_ZN7log4cxx5Level9toLevelLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'sArg', + 'type' => '210597' + } + }, + 'Return' => '567044', + 'ShortName' => 'toLevelLS', + 'Source' => 'level.cpp', + 'SourceLine' => '92', + 'Static' => 1 + }, + '1377001' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '222', + 'MnglName' => '_ZN7log4cxx5Level6getAllEv', + 'Return' => '567044', + 'ShortName' => 'getAll', + 'Source' => 'level.cpp', + 'SourceLine' => '76', + 'Static' => 1 + }, + '1377670' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '100', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent8getLevelEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822716' + } + }, + 'Return' => '575807', + 'ShortName' => 'getLevel', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '449' + }, + '1378108' => { + 'Class' => '1378023', + 'Const' => 1, + 'Header' => 'errorhandler.h', + 'InLine' => 2, + 'Line' => '61', + 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler17ClazzErrorHandler7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286071' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '1379981' => { + 'Class' => '1379867', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'InLine' => 2, + 'Line' => '56', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton21ClazzAppenderSkeleton7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391226' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '1380144' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '1391117' }, '1' => { - 'name' => 'arg0', - 'type' => '1153514' + 'name' => 'p1', + 'type' => '576659' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '1153514' - } - } + 'Protected' => 1, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'append', + 'VirtPos' => '17' }, - '1169389' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA24_KcJEEEOT_DpOT0_', + '1380189' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton12doAppendImplERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '1391122' }, '1' => { - 'name' => 'arg0', - 'type' => '1153514' + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'pool1', + 'type' => '210607' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '1153514' - } - } + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'doAppendImpl', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '98' + }, + '1380226' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '31', + 'Static' => 1 + }, + '1380242' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '31', + 'Static' => 1 + }, + '1380258' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'Line' => '56', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '31', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '1380295' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'InLine' => 2, + 'Line' => '57', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '1380337' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'InLine' => 2, + 'Line' => '61', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '1380498' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '71', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton8finalizeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + } + }, + 'Return' => '1', + 'ShortName' => 'finalize', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '53' + }, + '1380525' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'InLine' => 2, + 'Line' => '78', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '1380565' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '156', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '1380610' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '92', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'newFilter', + 'type' => '565576' + } + }, + 'Return' => '1', + 'ShortName' => 'addFilter', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '65', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '1380650' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '98', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton12clearFiltersEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + } + }, + 'Return' => '1', + 'ShortName' => 'clearFilters', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '80', + 'Virt' => 1, + 'VirtPos' => '9' + }, + '1380685' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton15getErrorHandlerEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + } + }, + 'Return' => '1378194', + 'ShortName' => 'getErrorHandler', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '166' + }, + '1380715' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'Line' => '109', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton9getFilterEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + } + }, + 'Return' => '565564', + 'ShortName' => 'getFilter', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '171', + 'Virt' => 1, + 'VirtPos' => '8' + }, + '1380752' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton14getFirstFilterEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + } + }, + 'Return' => '565576', + 'ShortName' => 'getFirstFilter', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '176' + }, + '1380782' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'Line' => '121', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton9getLayoutEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + } + }, + 'Return' => '1381467', + 'ShortName' => 'getLayout', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '181', + 'Virt' => 1, + 'VirtPos' => '14' + }, + '1380819' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'Line' => '127', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '186', + 'Virt' => 1, + 'VirtPos' => '12' + }, + '1380856' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton12getThresholdEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + } + }, + 'Return' => '567056', + 'ShortName' => 'getThreshold', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '191' + }, + '1380886' => { + 'Class' => '1379573', + 'Const' => 1, + 'Header' => 'appenderskeleton.h', + 'Line' => '140', + 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton21isAsSevereAsThresholdERKSt10shared_ptrINS_5LevelEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391152' + }, + '1' => { + 'name' => 'level', + 'type' => '575807' + } + }, + 'Return' => '174077', + 'ShortName' => 'isAsSevereAsThreshold', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '86' + }, + '1380921' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '148', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'pool1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'doAppend', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '91', + 'Virt' => 1, + 'VirtPos' => '11' + }, + '1380966' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '153', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton15setErrorHandlerESt10shared_ptrINS_3spi12ErrorHandlerEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'errorHandler1', + 'type' => '1378194' + } + }, + 'Return' => '1', + 'ShortName' => 'setErrorHandler', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '134' + }, + '1380998' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '159', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1381479' + } + }, + 'Return' => '1', + 'ShortName' => 'setLayout', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '196', + 'Virt' => 1, + 'VirtPos' => '13' + }, + '1381038' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'Line' => '164', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'name1', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setName', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '201', + 'Virt' => 1, + 'VirtPos' => '15' + }, + '1381078' => { + 'Class' => '1379573', + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton12setThresholdERKSt10shared_ptrINS_5LevelEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'threshold1', + 'type' => '575807' + } + }, + 'Return' => '1', + 'ShortName' => 'setThreshold', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '150' + }, + '1381206' => { + 'Class' => '1381121', + 'Const' => 1, + 'Header' => 'layout.h', + 'InLine' => 2, + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx6Layout11ClazzLayout7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21208215' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '1381258' => { + 'Data' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7classes28AppenderSkeletonRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'AppenderSkeletonRegistration', + 'Source' => 'appenderskeleton.cpp' + }, + '1381408' => { + 'Class' => '567947', + 'Const' => 1, + 'Header' => 'appender.h', + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx8Appender8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24285521' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '44', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '1381445' => { + 'Class' => '567947', + 'Header' => 'appender.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx8Appender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '44', + 'Static' => 1 }, - '11766310' => { - 'Class' => '11766191', + '13844361' => { + 'Class' => '13844248', 'Const' => 1, - 'Header' => 'nameabbreviator.h', + 'Header' => 'fileinputstream.h', 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviator7getNameB5cxx11Ev', + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7helpers15FileInputStream20ClazzFileInputStream7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11771037' + 'type' => '13864943' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '11766388' => { - 'Class' => '11766174', - 'Header' => 'nameabbreviator.h', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator14getStaticClassEv', - 'Return' => '64678', + '13844419' => { + 'Class' => '13844139', + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '28', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '40', 'Static' => 1 }, - '11766405' => { - 'Class' => '11766174', - 'Header' => 'nameabbreviator.h', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator13registerClassEv', - 'Return' => '64684', + '13844435' => { + 'Class' => '13844139', + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '28', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '40', 'Static' => 1 }, - '11766422' => { - 'Class' => '11766174', + '13844451' => { + 'Class' => '13844139', 'Const' => 1, - 'Header' => 'nameabbreviator.h', - 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator8getClassEv', + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZNK7log4cxx7helpers15FileInputStream8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11771015' + 'type' => '13864883' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '28', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '40', 'Virt' => 1, 'VirtPos' => '2' }, - '11766461' => { - 'Class' => '11766174', + '13844488' => { + 'Class' => '13844139', 'Const' => 1, - 'Header' => 'nameabbreviator.h', + 'Header' => 'fileinputstream.h', 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator4castERKNS_7helpers5ClassE', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7helpers15FileInputStream4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11771015' + 'type' => '13864883' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '11766505' => { - 'Class' => '11766174', + '13844530' => { + 'Class' => '13844139', 'Const' => 1, - 'Header' => 'nameabbreviator.h', + 'Header' => 'fileinputstream.h', 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator10instanceofERKNS_7helpers5ClassE', + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7helpers15FileInputStream10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11771015' + 'type' => '13864883' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '11766613' => { - 'Class' => '11766174', - 'Header' => 'nameabbreviator.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator14getAbbreviatorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '13844700' => { + 'Class' => '13844139', + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream5closeEv', 'Param' => { '0' => { - 'name' => 'pattern', - 'type' => '263006' + 'name' => 'this', + 'type' => '13864893' } }, - 'Return' => '11768513', - 'ShortName' => 'getAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '267', - 'Static' => 1 - }, - '11766642' => { - 'Class' => '11766174', - 'Header' => 'nameabbreviator.h', - 'Line' => '70', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator21getDefaultAbbreviatorEv', - 'Return' => '11768513', - 'ShortName' => 'getDefaultAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '362', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '92', + 'Virt' => 1, + 'VirtPos' => '6' }, - '11766660' => { - 'Class' => '11766174', - 'Const' => 1, - 'Header' => 'nameabbreviator.h', - 'Line' => '78', - 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '13844734' => { + 'Class' => '13844139', + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream4readERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11771009' + 'type' => '13864893' }, '1' => { - 'name' => 'p1', - 'type' => '281' - }, - '2' => { - 'name' => 'p2', - 'type' => '409210' + 'name' => 'buf', + 'type' => '210612' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'abbreviate', + 'Return' => '190263', + 'ShortName' => 'read', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '107', + 'Virt' => 1, 'VirtPos' => '5' }, - '11767059' => { - 'Class' => '11766940', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviator7getNameB5cxx11Ev', + '13844842' => { + 'Class' => '13844139', + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream4openERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770998' + 'type' => '13864893' + }, + '1' => { + 'name' => 'filename', + 'type' => '210597' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '11767166' => { - 'Class' => '11766923', - 'Line' => '261', - 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'nameabbreviator.cpp', - 'Static' => 1 + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'open', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '56' }, - '11767184' => { - 'Class' => '11766923', - 'Line' => '261', - 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'nameabbreviator.cpp', - 'Static' => 1 + '13849734' => { + 'Data' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7classes27FileInputStreamRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'FileInputStreamRegistration', + 'Source' => 'fileinputstream.cpp' }, - '11767202' => { - 'Class' => '11766923', - 'Const' => 1, - 'Line' => '261', - 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator8getClassEv', + '13866331' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '93', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC1Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770107' + 'type' => '11525617' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '2' + } }, - '11767243' => { - 'Class' => '11766923', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator4castERKNS_7helpers5ClassE', + '13872062' => { + 'Artificial' => 1, + 'Class' => '13845395', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770107' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '13864512' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '11767287' => { - 'Class' => '11766923', - 'Const' => 1, - 'InLine' => 2, + '13872063' => { + 'Artificial' => 1, + 'Class' => '13845395', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator10instanceofERKNS_7helpers5ClassE', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770107' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '13864512' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife' }, - '11767358' => { - 'Class' => '11766923', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '64', - 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '13872205' => { + 'Artificial' => 1, + 'Class' => '13845395', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770107' - }, - '1' => { - 'name' => 'p1', - 'type' => '281' - }, - '2' => { - 'name' => 'p2', - 'type' => '409210' + 'type' => '13864512' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'abbreviate', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'WideLife' }, - '11767577' => { - 'Class' => '11767458', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '81', - 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviator7getNameB5cxx11Ev', + '13872206' => { + 'Artificial' => 1, + 'Class' => '13845395', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770976' + 'type' => '13864512' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife' }, - '11767697' => { - 'Class' => '11767441', - 'Line' => '262', - 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'nameabbreviator.cpp', - 'Static' => 1 + '13873725' => { + 'Class' => '13844139', + 'Destructor' => 1, + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '13864893' + } + }, + 'ShortName' => 'FileInputStream', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '83', + 'Virt' => 1 }, - '11767715' => { - 'Class' => '11767441', - 'Line' => '262', - 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'nameabbreviator.cpp', - 'Static' => 1 + '13873726' => { + 'Class' => '13844139', + 'Destructor' => 1, + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '13864893' + } + }, + 'ShortName' => 'FileInputStream', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '83', + 'Virt' => 1 }, - '11767733' => { - 'Class' => '11767441', - 'Const' => 1, - 'Line' => '262', - 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator8getClassEv', + '13873821' => { + 'Class' => '13844139', + 'Destructor' => 1, + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769969' + 'type' => '13864893' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'FileInputStream', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '83', + 'Virt' => 1 }, - '11767774' => { - 'Class' => '11767441', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '82', - 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator4castERKNS_7helpers5ClassE', + '13874577' => { + 'Class' => '13844139', + 'Constructor' => 1, + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC2ERKNS_4FileE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769969' + 'type' => '13864893' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'aFile', + 'type' => '575822' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'FileInputStream', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '69' }, - '11767818' => { - 'Class' => '11767441', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '85', - 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator10instanceofERKNS_7helpers5ClassE', + '13876447' => { + 'Class' => '13844139', + 'Constructor' => 1, + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC2EPKc', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769969' + 'type' => '13864893' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'filename', + 'type' => '575792' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'FileInputStream', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '48' }, - '11767894' => { - 'Class' => '11767441', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '99', - 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '13876448' => { + 'Class' => '13844139', + 'Constructor' => 1, + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC1EPKc', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769969' + 'type' => '13864893' }, '1' => { - 'name' => 'nameStart', - 'type' => '281' + 'name' => 'filename', + 'type' => '575792' + } + }, + 'ShortName' => 'FileInputStream', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '48' + }, + '13878698' => { + 'Class' => '13844139', + 'Constructor' => 1, + 'Header' => 'fileinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '13864893' }, - '2' => { - 'name' => 'buf', - 'type' => '409210' + '1' => { + 'name' => 'filename', + 'type' => '210597' } }, - 'Return' => '1', - 'ShortName' => 'abbreviate', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'FileInputStream', + 'Source' => 'fileinputstream.cpp', + 'SourceLine' => '42' }, - '11768113' => { - 'Class' => '11767994', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '209', - 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviator7getNameB5cxx11Ev', + '13881495' => { + 'Artificial' => 1, + 'Class' => '13844248', + 'Destructor' => 1, + 'Header' => 'fileinputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770954' + 'type' => '13864933' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzFileInputStream', + 'Virt' => 1 }, - '11768233' => { - 'Class' => '11767977', - 'Line' => '263', - 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator14getStaticClassEv', - 'Return' => '64678', + '13881496' => { + 'Artificial' => 1, + 'Class' => '13844248', + 'Destructor' => 1, + 'Header' => 'fileinputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '13864933' + } + }, + 'ShortName' => 'ClazzFileInputStream', + 'Virt' => 1 + }, + '13881641' => { + 'Artificial' => 1, + 'Class' => '13844248', + 'Destructor' => 1, + 'Header' => 'fileinputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '13864933' + } + }, + 'ShortName' => 'ClazzFileInputStream', + 'Virt' => 1 + }, + '13881736' => { + 'Artificial' => 1, + 'Class' => '13844248', + 'Constructor' => 1, + 'Header' => 'fileinputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '13864933' + } + }, + 'ShortName' => 'ClazzFileInputStream' + }, + '13881737' => { + 'Artificial' => 1, + 'Class' => '13844248', + 'Constructor' => 1, + 'Header' => 'fileinputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '13864933' + } + }, + 'ShortName' => 'ClazzFileInputStream' + }, + '1392548' => { + 'Class' => '1374846', + 'Constructor' => 1, + 'Header' => 'onlyonceerrorhandler.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1390317' + } + }, + 'ShortName' => 'OnlyOnceErrorHandler', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '40' + }, + '1410515' => { + 'Artificial' => 1, + 'Class' => '1375460', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1390359' + } + }, + 'ShortName' => 'WideLife' + }, + '1410516' => { + 'Artificial' => 1, + 'Class' => '1375460', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1390359' + } + }, + 'ShortName' => 'WideLife' + }, + '1410658' => { + 'Artificial' => 1, + 'Class' => '1375460', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1390359' + } + }, + 'ShortName' => 'WideLife' + }, + '1410659' => { + 'Artificial' => 1, + 'Class' => '1375460', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1390359' + } + }, + 'ShortName' => 'WideLife' + }, + '14212382' => { + 'Class' => '9954387', + 'Header' => 'filelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'nameabbreviator.cpp', + 'Source' => 'filelocationpatternconverter.cpp', + 'SourceLine' => '27', 'Static' => 1 }, - '11768251' => { - 'Class' => '11767977', - 'Line' => '263', - 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator13registerClassEv', - 'Return' => '64684', + '14212398' => { + 'Class' => '9954387', + 'Header' => 'filelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'nameabbreviator.cpp', + 'Source' => 'filelocationpatternconverter.cpp', + 'SourceLine' => '27', 'Static' => 1 }, - '11768269' => { - 'Class' => '11767977', + '14212414' => { + 'Class' => '9954387', 'Const' => 1, - 'Line' => '263', - 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator8getClassEv', + 'Header' => 'filelocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770038' + 'type' => '14224161' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'nameabbreviator.cpp', + 'Source' => 'filelocationpatternconverter.cpp', + 'SourceLine' => '27', 'Virt' => 1, 'VirtPos' => '2' }, - '11768310' => { - 'Class' => '11767977', + '14212451' => { + 'Class' => '9954387', 'Const' => 1, + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 2, - 'Line' => '210', - 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator4castERKNS_7helpers5ClassE', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770038' + 'type' => '14224161' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', - 'Source' => 'nameabbreviator.cpp', 'Virt' => 1, 'VirtPos' => '4' }, - '11768354' => { - 'Class' => '11767977', + '14212493' => { + 'Class' => '9954387', 'Const' => 1, + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 2, - 'Line' => '213', - 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator10instanceofERKNS_7helpers5ClassE', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770038' + 'type' => '14224161' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', - 'Source' => 'nameabbreviator.cpp', 'Virt' => 1, 'VirtPos' => '3' }, - '11768430' => { - 'Class' => '11767977', + '14212598' => { + 'Class' => '9954387', 'Const' => 1, - 'InLine' => 2, - 'Line' => '233', - 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'filelocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770038' + 'type' => '14224161' }, '1' => { - 'name' => 'nameStart', - 'type' => '281' + 'name' => 'event', + 'type' => '576659' }, '2' => { - 'name' => 'buf', - 'type' => '409210' + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, 'Return' => '1', - 'ShortName' => 'abbreviate', - 'Source' => 'nameabbreviator.cpp', + 'ShortName' => 'format', + 'Source' => 'filelocationpatternconverter.cpp', + 'SourceLine' => '42', 'Virt' => 1, - 'VirtPos' => '5' - }, - '11768538' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes27NameAbbreviatorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'NameAbbreviatorRegistration', - 'Source' => 'nameabbreviator.cpp' - }, - '11768555' => { - 'Data' => 1, - 'Line' => '261', - 'MnglName' => '_ZN7log4cxx7classes26NOPAbbreviatorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'NOPAbbreviatorRegistration', - 'Source' => 'nameabbreviator.cpp' - }, - '11768573' => { - 'Data' => 1, - 'Line' => '262', - 'MnglName' => '_ZN7log4cxx7classes33MaxElementAbbreviatorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'MaxElementAbbreviatorRegistration', - 'Source' => 'nameabbreviator.cpp' + 'VirtPos' => '7' }, - '11768591' => { + '14215501' => { 'Data' => 1, - 'Line' => '263', - 'MnglName' => '_ZN7log4cxx7classes30PatternAbbreviatorRegistrationE', + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7classes40FileLocationPatternConverterRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'PatternAbbreviatorRegistration', - 'Source' => 'nameabbreviator.cpp' + 'Return' => '210733', + 'ShortName' => 'FileLocationPatternConverterRegistration', + 'Source' => 'filelocationpatternconverter.cpp' }, - '11779456' => { + '14228467' => { 'Artificial' => 1, - 'Class' => '11766923', + 'Class' => '9954387', 'Destructor' => 1, + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviatorD0Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769860' + 'type' => '14223820' } }, - 'ShortName' => 'NOPAbbreviator', - 'Source' => 'nameabbreviator.cpp', + 'ShortName' => 'FileLocationPatternConverter', 'Virt' => 1 }, - '11779457' => { + '14228468' => { 'Artificial' => 1, - 'Class' => '11766923', + 'Class' => '9954387', 'Destructor' => 1, + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviatorD1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769860' + 'type' => '14223820' } }, - 'ShortName' => 'NOPAbbreviator', - 'Source' => 'nameabbreviator.cpp', + 'ShortName' => 'FileLocationPatternConverter', 'Virt' => 1 }, - '11779602' => { + '14228737' => { 'Artificial' => 1, - 'Class' => '11766923', + 'Class' => '9954387', 'Destructor' => 1, + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviatorD2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769860' + 'type' => '14223820' } }, - 'ShortName' => 'NOPAbbreviator', - 'Source' => 'nameabbreviator.cpp', + 'ShortName' => 'FileLocationPatternConverter', 'Virt' => 1 }, - '11779708' => { + '14235625' => { 'Artificial' => 1, - 'Class' => '11767441', - 'Destructor' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviatorD0Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_28FileLocationPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769603' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '14223650' } }, - 'ShortName' => 'MaxElementAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '14151637' + } + } }, - '11779709' => { + '14235626' => { 'Artificial' => 1, - 'Class' => '11767441', - 'Destructor' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviatorD1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_28FileLocationPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769603' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '14223650' } }, - 'ShortName' => 'MaxElementAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '14151637' + } + } }, - '11779854' => { + '14236053' => { 'Artificial' => 1, - 'Class' => '11767441', + 'Class' => '14210113', 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviatorD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769603' + 'type' => '14223374' } }, - 'ShortName' => 'MaxElementAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '11779960' => { + '14236054' => { 'Artificial' => 1, - 'Class' => '11767977', + 'Class' => '14210113', 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '201', - 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviatorD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769714' + 'type' => '14223374' } }, - 'ShortName' => 'PatternAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '11779961' => { + '14236196' => { 'Artificial' => 1, - 'Class' => '11767977', - 'Destructor' => 1, + 'Class' => '14210113', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '201', - 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviatorD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769714' + 'type' => '14223374' } }, - 'ShortName' => 'PatternAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '11780727' => { + '14236197' => { 'Artificial' => 1, - 'Class' => '11767977', - 'Destructor' => 1, + 'Class' => '14210113', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '201', - 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviatorD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769714' + 'type' => '14223374' } }, - 'ShortName' => 'PatternAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '11802589' => { - 'Artificial' => 1, - 'Class' => '11765058', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '11769760' - } - }, - 'ShortName' => 'WideLife' - }, - '11802590' => { - 'Artificial' => 1, - 'Class' => '11765058', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEED0Ev', + '14242779' => { + 'Class' => '9954387', + 'Constructor' => 1, + 'Header' => 'filelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769760' + 'type' => '14223820' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'FileLocationPatternConverter', + 'Source' => 'filelocationpatternconverter.cpp', + 'SourceLine' => '29' }, - '11803382' => { - 'Artificial' => 1, - 'Class' => '11765058', + '14245802' => { + 'Class' => '9954387', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEEC2IS2_INS3_14NOPAbbreviatorEEJEEEOT_DpOT0_', + 'Header' => 'filelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769760' - }, - '1' => { - 'name' => 'arg0', - 'type' => '11769882' + 'type' => '14223820' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '11733077' - } - } + 'ShortName' => 'FileLocationPatternConverter', + 'Source' => 'filelocationpatternconverter.cpp', + 'SourceLine' => '29' }, - '11803383' => { + '14250557' => { 'Artificial' => 1, - 'Class' => '11765058', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '9954412', + 'Destructor' => 1, + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEEC1IS2_INS3_14NOPAbbreviatorEEJEEEOT_DpOT0_', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769760' - }, - '1' => { - 'name' => 'arg0', - 'type' => '11769882' + 'type' => '14224321' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '11733077' - } - } + 'ShortName' => 'ClazzFileLocationPatternConverter', + 'Virt' => 1 }, - '11804385' => { + '14250558' => { 'Artificial' => 1, - 'Class' => '11764701', + 'Class' => '9954412', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEED2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769318' + 'type' => '14224321' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzFileLocationPatternConverter', + 'Virt' => 1 }, - '11804386' => { + '14250703' => { 'Artificial' => 1, - 'Class' => '11764701', + 'Class' => '9954412', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEED0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769318' + 'type' => '14224321' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzFileLocationPatternConverter', + 'Virt' => 1 }, - '11804527' => { + '14250798' => { 'Artificial' => 1, - 'Class' => '11764701', + 'Class' => '9954412', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEEC2Ev', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769318' + 'type' => '14224321' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzFileLocationPatternConverter' }, - '11804528' => { + '14250799' => { 'Artificial' => 1, - 'Class' => '11764701', + 'Class' => '9954412', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'filelocationpatternconverter.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEEC1Ev', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769318' + 'type' => '14224321' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzFileLocationPatternConverter' }, - '11804607' => { - 'Artificial' => 1, - 'Class' => '11764344', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEED2Ev', + '1447232' => { + 'Class' => '1379573', + 'Destructor' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeletonD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + } + }, + 'ShortName' => 'AppenderSkeleton', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '51', + 'Virt' => 1 + }, + '1447331' => { + 'Class' => '1379573', + 'Destructor' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeletonD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + } + }, + 'ShortName' => 'AppenderSkeleton', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '51', + 'Virt' => 1 + }, + '1447678' => { + 'Class' => '1379573', + 'Destructor' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeletonD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + } + }, + 'ShortName' => 'AppenderSkeleton', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '51', + 'Virt' => 1 + }, + '1448092' => { + 'Class' => '1379573', + 'Constructor' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC1ERKSt10shared_ptrINS_6LayoutEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' + } + }, + 'ShortName' => 'AppenderSkeleton', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '45' + }, + '1448761' => { + 'Class' => '1379573', + 'Constructor' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC2ERKSt10shared_ptrINS_6LayoutEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '2' => { + 'name' => 'layout1', + 'type' => '1391157' + } + }, + 'ShortName' => 'AppenderSkeleton', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '45' + }, + '1449485' => { + 'Class' => '1379573', + 'Constructor' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + } + }, + 'ShortName' => 'AppenderSkeleton', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '39' + }, + '1450141' => { + 'Class' => '1379573', + 'Constructor' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + } + }, + 'ShortName' => 'AppenderSkeleton', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '39' + }, + '1450864' => { + 'Class' => '1379573', + 'Constructor' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC1ESt10unique_ptrINS0_23AppenderSkeletonPrivateESt14default_deleteIS2_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '1290772' + } + }, + 'Protected' => 1, + 'ShortName' => 'AppenderSkeleton', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '33' + }, + '1451443' => { + 'Class' => '1379573', + 'Constructor' => 1, + 'Header' => 'appenderskeleton.h', + 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC2ESt10unique_ptrINS0_23AppenderSkeletonPrivateESt14default_deleteIS2_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391122' + }, + '2' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '1290772' + } + }, + 'Protected' => 1, + 'ShortName' => 'AppenderSkeleton', + 'Source' => 'appenderskeleton.cpp', + 'SourceLine' => '33' + }, + '1453217' => { + 'Artificial' => 1, + 'Class' => '1379591', + 'Destructor' => 1, + 'Header' => 'appenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1389202' + } + }, + 'ShortName' => 'AppenderSkeletonPrivate', + 'Virt' => 1 + }, + '1453218' => { + 'Artificial' => 1, + 'Class' => '1379591', + 'Destructor' => 1, + 'Header' => 'appenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1389202' + } + }, + 'ShortName' => 'AppenderSkeletonPrivate', + 'Virt' => 1 + }, + '1457175' => { + 'Artificial' => 1, + 'Class' => '1379591', + 'Destructor' => 1, + 'Header' => 'appenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1389202' + } + }, + 'ShortName' => 'AppenderSkeletonPrivate', + 'Virt' => 1 + }, + '14583568' => { + 'Class' => '12959656', + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '40', + 'Static' => 1 + }, + '14583584' => { + 'Class' => '12959656', + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '40', + 'Static' => 1 + }, + '14583600' => { + 'Class' => '12959656', + 'Const' => 1, + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769255' + 'type' => '14604092' } }, - 'ShortName' => 'WideLife' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '40', + 'Virt' => 1, + 'VirtPos' => '2' }, - '11804608' => { - 'Artificial' => 1, - 'Class' => '11764344', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEED0Ev', + '14583637' => { + 'Class' => '12959656', + 'Const' => 1, + 'Header' => 'fileoutputstream.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769255' + 'type' => '14604092' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '11804749' => { - 'Artificial' => 1, - 'Class' => '11764344', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEEC2Ev', + '14583679' => { + 'Class' => '12959656', + 'Const' => 1, + 'Header' => 'fileoutputstream.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769255' + 'type' => '14604092' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '11804750' => { - 'Artificial' => 1, - 'Class' => '11764344', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEEC1Ev', + '14583828' => { + 'Class' => '12959656', + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream5closeERNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769255' + 'type' => '12981896' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '90', + 'Virt' => 1, + 'VirtPos' => '5' }, - '11804829' => { - 'Artificial' => 1, - 'Class' => '11763987', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEED2Ev', + '14583867' => { + 'Class' => '12959656', + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream5flushERNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769192' + 'type' => '12981896' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '105', + 'Virt' => 1, + 'VirtPos' => '6' }, - '11804830' => { - 'Artificial' => 1, - 'Class' => '11763987', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEED0Ev', + '14583906' => { + 'Class' => '12959656', + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769192' + 'type' => '12981896' + }, + '1' => { + 'name' => 'buf', + 'type' => '210612' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '109', + 'Virt' => 1, + 'VirtPos' => '7' }, - '11804971' => { - 'Artificial' => 1, - 'Class' => '11763987', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEEC2Ev', + '14583950' => { + 'Class' => '12959656', + 'Const' => 1, + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream10getFilePtrEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769192' + 'type' => '14604092' } }, - 'ShortName' => 'WideLife' + 'Return' => '1932117', + 'ShortName' => 'getFilePtr', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '136' }, - '11804972' => { - 'Artificial' => 1, - 'Class' => '11763987', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEEC1Ev', + '14584046' => { + 'Class' => '12959656', + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream4openERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS0_4PoolE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '11769192' + 'name' => 'filename', + 'type' => '210597' + }, + '1' => { + 'name' => 'append', + 'type' => '174077' + }, + '2' => { + 'name' => 'pool', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Private' => 1, + 'Return' => '1932117', + 'ShortName' => 'open', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '54', + 'Static' => 1 + }, + '14588943' => { + 'Data' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7classes28FileOutputStreamRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'FileOutputStreamRegistration', + 'Source' => 'fileoutputstream.cpp' }, - '11806466' => { + '14611271' => { 'Artificial' => 1, - 'Class' => '11763227', + 'Class' => '14584604', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11768733' + 'type' => '14603721' } }, 'ShortName' => 'WideLife' }, - '11806467' => { + '14611272' => { 'Artificial' => 1, - 'Class' => '11763227', + 'Class' => '14584604', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11768733' + 'type' => '14603721' } }, 'ShortName' => 'WideLife' }, - '11806608' => { + '14611414' => { 'Artificial' => 1, - 'Class' => '11763227', + 'Class' => '14584604', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11768733' + 'type' => '14603721' } }, 'ShortName' => 'WideLife' }, - '11806609' => { + '14611415' => { 'Artificial' => 1, - 'Class' => '11763227', + 'Class' => '14584604', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11768733' + 'type' => '14603721' } }, 'ShortName' => 'WideLife' }, - '11834308' => { - 'Artificial' => 1, - 'Class' => '11767994', + '1461205' => { + 'Artificial' => 1, + 'Class' => '1379591', + 'Constructor' => 1, + 'Header' => 'appenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1389202' + } + }, + 'ShortName' => 'AppenderSkeletonPrivate' + }, + '1461206' => { + 'Artificial' => 1, + 'Class' => '1379591', + 'Constructor' => 1, + 'Header' => 'appenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1389202' + } + }, + 'ShortName' => 'AppenderSkeletonPrivate' + }, + '14613557' => { + 'Class' => '12959656', 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '209', - 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD0Ev', + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770943' + 'type' => '12981896' } }, - 'ShortName' => 'ClazzPatternAbbreviator', - 'Source' => 'nameabbreviator.cpp', + 'ShortName' => 'FileOutputStream', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '82', 'Virt' => 1 }, - '11834309' => { - 'Artificial' => 1, - 'Class' => '11767994', + '14613558' => { + 'Class' => '12959656', 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '209', - 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD1Ev', + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770943' + 'type' => '12981896' } }, - 'ShortName' => 'ClazzPatternAbbreviator', - 'Source' => 'nameabbreviator.cpp', + 'ShortName' => 'FileOutputStream', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '82', 'Virt' => 1 }, - '11834450' => { - 'Artificial' => 1, - 'Class' => '11767994', + '14613653' => { + 'Class' => '12959656', 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '209', - 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD2Ev', + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770943' + 'type' => '12981896' } }, - 'ShortName' => 'ClazzPatternAbbreviator', - 'Source' => 'nameabbreviator.cpp', + 'ShortName' => 'FileOutputStream', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '82', 'Virt' => 1 }, - '11837615' => { - 'Artificial' => 1, - 'Class' => '11767458', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '81', - 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD0Ev', + '14614874' => { + 'Class' => '12959656', + 'Constructor' => 1, + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamC2EPKcb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770965' + 'type' => '12981896' + }, + '1' => { + 'name' => 'filename', + 'type' => '575792' + }, + '2' => { + 'name' => 'append', + 'type' => '174077' } }, - 'ShortName' => 'ClazzMaxElementAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 + 'ShortName' => 'FileOutputStream', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '48' }, - '11837616' => { - 'Artificial' => 1, - 'Class' => '11767458', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '81', - 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD1Ev', + '14614875' => { + 'Class' => '12959656', + 'Constructor' => 1, + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamC1EPKcb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770965' + 'type' => '12981896' + }, + '1' => { + 'name' => 'filename', + 'type' => '575792' + }, + '2' => { + 'name' => 'append', + 'type' => '174077' } }, - 'ShortName' => 'ClazzMaxElementAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 + 'ShortName' => 'FileOutputStream', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '48' }, - '11837757' => { - 'Artificial' => 1, - 'Class' => '11767458', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '81', - 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD2Ev', + '14617459' => { + 'Class' => '12959656', + 'Constructor' => 1, + 'Header' => 'fileoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770965' + 'type' => '12981896' + }, + '1' => { + 'name' => 'filename', + 'type' => '210597' + }, + '2' => { + 'name' => 'append', + 'type' => '174077' } }, - 'ShortName' => 'ClazzMaxElementAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 + 'ShortName' => 'FileOutputStream', + 'Source' => 'fileoutputstream.cpp', + 'SourceLine' => '42' }, - '11839083' => { + '14620572' => { 'Artificial' => 1, - 'Class' => '11766940', + 'Class' => '12959670', 'Destructor' => 1, + 'Header' => 'fileoutputstream.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD0Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770987' + 'type' => '14604142' } }, - 'ShortName' => 'ClazzNOPAbbreviator', - 'Source' => 'nameabbreviator.cpp', + 'ShortName' => 'ClazzFileOutputStream', 'Virt' => 1 }, - '11839084' => { + '14620573' => { 'Artificial' => 1, - 'Class' => '11766940', + 'Class' => '12959670', 'Destructor' => 1, + 'Header' => 'fileoutputstream.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD1Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11770987' + 'type' => '14604142' } }, - 'ShortName' => 'ClazzNOPAbbreviator', - 'Source' => 'nameabbreviator.cpp', + 'ShortName' => 'ClazzFileOutputStream', 'Virt' => 1 }, - '11839225' => { + '14620718' => { 'Artificial' => 1, - 'Class' => '11766940', + 'Class' => '12959670', 'Destructor' => 1, + 'Header' => 'fileoutputstream.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '11770987' - } - }, - 'ShortName' => 'ClazzNOPAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'Virt' => 1 - }, - '11839371' => { - 'Class' => '11766174', - 'Destructor' => 1, - 'Header' => 'nameabbreviator.h', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '11769492' - } - }, - 'ShortName' => 'NameAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '34', - 'Virt' => 1 - }, - '11839372' => { - 'Class' => '11766174', - 'Destructor' => 1, - 'Header' => 'nameabbreviator.h', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '11769492' - } - }, - 'ShortName' => 'NameAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '34', - 'Virt' => 1 - }, - '11839466' => { - 'Class' => '11766174', - 'Destructor' => 1, - 'Header' => 'nameabbreviator.h', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorD2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769492' + 'type' => '14604142' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'NameAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '34', + 'ShortName' => 'ClazzFileOutputStream', 'Virt' => 1 }, - '11839582' => { - 'Class' => '11766174', - 'Constructor' => 1, - 'Header' => 'nameabbreviator.h', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '11769492' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'NameAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '30' - }, - '11839583' => { - 'Class' => '11766174', + '14620813' => { + 'Artificial' => 1, + 'Class' => '12959670', 'Constructor' => 1, - 'Header' => 'nameabbreviator.h', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorC1Ev', + 'Header' => 'fileoutputstream.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769492' + 'type' => '14604142' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'NameAbbreviator', - 'Source' => 'nameabbreviator.cpp', - 'SourceLine' => '30' + 'ShortName' => 'ClazzFileOutputStream' }, - '11841624' => { + '14620814' => { 'Artificial' => 1, - 'Class' => '11766191', - 'Destructor' => 1, - 'Header' => 'nameabbreviator.h', + 'Class' => '12959670', + 'Constructor' => 1, + 'Header' => 'fileoutputstream.h', 'InLine' => 1, 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD0Ev', + 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11771026' + 'type' => '14604142' } }, - 'ShortName' => 'ClazzNameAbbreviator', - 'Virt' => 1 + 'ShortName' => 'ClazzFileOutputStream' }, - '11841625' => { - 'Artificial' => 1, - 'Class' => '11766191', - 'Destructor' => 1, - 'Header' => 'nameabbreviator.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '11771026' - } - }, - 'ShortName' => 'ClazzNameAbbreviator', - 'Virt' => 1 - }, - '11841766' => { - 'Artificial' => 1, - 'Class' => '11766191', - 'Destructor' => 1, - 'Header' => 'nameabbreviator.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD2Ev', + '1467250' => { + 'Artificial' => 1, + 'Class' => '1379867', + 'Destructor' => 1, + 'Header' => 'appenderskeleton.h', + 'InLine' => 1, + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391216' + } + }, + 'ShortName' => 'ClazzAppenderSkeleton', + 'Virt' => 1 + }, + '1467251' => { + 'Artificial' => 1, + 'Class' => '1379867', + 'Destructor' => 1, + 'Header' => 'appenderskeleton.h', + 'InLine' => 1, + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391216' + } + }, + 'ShortName' => 'ClazzAppenderSkeleton', + 'Virt' => 1 + }, + '1467397' => { + 'Artificial' => 1, + 'Class' => '1379867', + 'Destructor' => 1, + 'Header' => 'appenderskeleton.h', + 'InLine' => 1, + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391216' + } + }, + 'ShortName' => 'ClazzAppenderSkeleton', + 'Virt' => 1 + }, + '1467492' => { + 'Artificial' => 1, + 'Class' => '1379867', + 'Constructor' => 1, + 'Header' => 'appenderskeleton.h', + 'InLine' => 1, + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391216' + } + }, + 'ShortName' => 'ClazzAppenderSkeleton' + }, + '1467493' => { + 'Artificial' => 1, + 'Class' => '1379867', + 'Constructor' => 1, + 'Header' => 'appenderskeleton.h', + 'InLine' => 1, + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1391216' + } + }, + 'ShortName' => 'ClazzAppenderSkeleton' + }, + '14950446' => { + 'Class' => '14950334', + 'Const' => 1, + 'Header' => 'filerenameaction.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction21ClazzFileRenameAction7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11771026' + 'type' => '14962184' } }, - 'ShortName' => 'ClazzNameAbbreviator', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '11841856' => { - 'Artificial' => 1, - 'Class' => '11766191', - 'Constructor' => 1, - 'Header' => 'nameabbreviator.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorC2Ev', + '14950767' => { + 'Class' => '14950316', + 'Header' => 'filerenameaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'filerenameaction.cpp', + 'SourceLine' => '40', + 'Static' => 1 + }, + '14950783' => { + 'Class' => '14950316', + 'Header' => 'filerenameaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'filerenameaction.cpp', + 'SourceLine' => '40', + 'Static' => 1 + }, + '14950799' => { + 'Class' => '14950316', + 'Const' => 1, + 'Header' => 'filerenameaction.h', + 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11771026' + 'type' => '14962120' } }, - 'ShortName' => 'ClazzNameAbbreviator' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'filerenameaction.cpp', + 'SourceLine' => '40', + 'Virt' => 1, + 'VirtPos' => '2' }, - '11841857' => { - 'Artificial' => 1, - 'Class' => '11766191', - 'Constructor' => 1, - 'Header' => 'nameabbreviator.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorC1Ev', + '14950836' => { + 'Class' => '14950316', + 'Const' => 1, + 'Header' => 'filerenameaction.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11771026' + 'type' => '14962120' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzNameAbbreviator' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '11917566' => { - 'Class' => '11917445', + '14950878' => { + 'Class' => '14950316', 'Const' => 1, - 'Header' => 'namepatternconverter.h', + 'Header' => 'filerenameaction.h', 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverter7getNameB5cxx11Ev', + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11920587' + 'type' => '14962120' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '63706', - 'ShortName' => 'getName', + 'Return' => '174077', + 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '11917884' => { - 'Class' => '2271640', - 'Header' => 'namepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'namepatternconverter.cpp', - 'SourceLine' => '42', - 'Static' => 1 - }, - '11917901' => { - 'Class' => '2271640', + '14950971' => { + 'Class' => '14950316', 'Const' => 1, - 'Header' => 'namepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter8getClassEv', + 'Header' => 'filerenameaction.h', + 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction7executeERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2306359' + 'type' => '14962120' + }, + '1' => { + 'name' => 'pool1', + 'type' => '210607' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'namepatternconverter.cpp', - 'SourceLine' => '42', + 'Return' => '174077', + 'ShortName' => 'execute', + 'Source' => 'filerenameaction.cpp', + 'SourceLine' => '49', 'Virt' => 1, - 'VirtPos' => '2' + 'VirtPos' => '5' }, - '11918117' => { - 'Class' => '2271640', - 'Header' => 'namepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter14getAbbreviatorERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '14953520' => { + 'Data' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7classes28FileRenameActionRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'FileRenameActionRegistration', + 'Source' => 'filerenameaction.cpp' + }, + '14963515' => { + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '91', + 'MnglName' => '_ZN7log4cxx4FileC1ERKS0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304040' + 'type' => '10586409' }, '1' => { - 'name' => 'options', - 'type' => '2273842' + 'name' => 'src', + 'type' => '575822' } - }, - 'Private' => 1, - 'Return' => '11768513', - 'ShortName' => 'getAbbreviator', - 'Source' => 'namepatternconverter.cpp', - 'SourceLine' => '53' - }, - '11918345' => { - 'Data' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7classes32NamePatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'NamePatternConverterRegistration', - 'Source' => 'namepatternconverter.cpp' + } }, - '11927296' => { + '14964004' => { 'Artificial' => 1, - 'Class' => '11917608', + 'Class' => '14950316', 'Destructor' => 1, + 'Header' => 'filerenameaction.h', 'InLine' => 1, 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD0Ev', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11919937' + 'type' => '14962090' } }, - 'ShortName' => 'NamePatternConverterPrivate', - 'Source' => 'namepatternconverter.cpp', + 'ShortName' => 'FileRenameAction', 'Virt' => 1 }, - '11927297' => { + '14964005' => { 'Artificial' => 1, - 'Class' => '11917608', + 'Class' => '14950316', 'Destructor' => 1, + 'Header' => 'filerenameaction.h', 'InLine' => 1, 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD1Ev', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11919937' + 'type' => '14962090' } }, - 'ShortName' => 'NamePatternConverterPrivate', - 'Source' => 'namepatternconverter.cpp', + 'ShortName' => 'FileRenameAction', 'Virt' => 1 }, - '11929343' => { + '14964214' => { 'Artificial' => 1, - 'Class' => '11917608', + 'Class' => '14950316', 'Destructor' => 1, + 'Header' => 'filerenameaction.h', 'InLine' => 1, 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD2Ev', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11919937' + 'type' => '14962090' } }, - 'ShortName' => 'NamePatternConverterPrivate', - 'Source' => 'namepatternconverter.cpp', + 'ShortName' => 'FileRenameAction', + 'Virt' => 1 + }, + '14967241' => { + 'Artificial' => 1, + 'Class' => '14950485', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '14961555' + } + }, + 'ShortName' => 'FileRenameActionPrivate', + 'Source' => 'filerenameaction.cpp', + 'Virt' => 1 + }, + '14967242' => { + 'Artificial' => 1, + 'Class' => '14950485', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '14961555' + } + }, + 'ShortName' => 'FileRenameActionPrivate', + 'Source' => 'filerenameaction.cpp', + 'Virt' => 1 + }, + '14967485' => { + 'Artificial' => 1, + 'Class' => '14950485', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '14961555' + } + }, + 'ShortName' => 'FileRenameActionPrivate', + 'Source' => 'filerenameaction.cpp', 'Virt' => 1 }, - '11933171' => { + '14970884' => { 'Artificial' => 1, - 'Class' => '11916053', + 'Class' => '14948565', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11919812' + 'type' => '14961444' } }, 'ShortName' => 'WideLife' }, - '11933172' => { + '14970885' => { 'Artificial' => 1, - 'Class' => '11916053', + 'Class' => '14948565', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11919812' + 'type' => '14961444' } }, 'ShortName' => 'WideLife' }, - '11933313' => { + '14971027' => { 'Artificial' => 1, - 'Class' => '11916053', + 'Class' => '14948565', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11919812' + 'type' => '14961444' } }, 'ShortName' => 'WideLife' }, - '11933314' => { + '14971028' => { 'Artificial' => 1, - 'Class' => '11916053', + 'Class' => '14948565', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11919812' + 'type' => '14961444' } }, 'ShortName' => 'WideLife' }, - '11934509' => { - 'Class' => '2271640', + '14971642' => { + 'Class' => '14950316', 'Constructor' => 1, - 'Header' => 'namepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RKSt6vectorIS7_SaIS7_EE', + 'Header' => 'filerenameaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionC1ERKNS_4FileES4_b', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304040' + 'type' => '14962090' }, '1' => { - 'name' => 'name1', - 'type' => '263006' + 'name' => 'toRename', + 'type' => '575822' }, '2' => { - 'name' => 'style1', - 'type' => '263006' + 'name' => 'renameTo', + 'type' => '575822' }, '3' => { - 'name' => 'options', - 'type' => '2273842' + 'name' => 'renameEmptyFile1', + 'type' => '174077' } }, - 'Protected' => 1, - 'ShortName' => 'NamePatternConverter', - 'Source' => 'namepatternconverter.cpp', - 'SourceLine' => '44' + 'ShortName' => 'FileRenameAction', + 'Source' => 'filerenameaction.cpp', + 'SourceLine' => '42' }, - '11942719' => { - 'Class' => '2271640', + '14974545' => { + 'Class' => '14950316', 'Constructor' => 1, - 'Header' => 'namepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RKSt6vectorIS7_SaIS7_EE', + 'Header' => 'filerenameaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionC2ERKNS_4FileES4_b', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304040' + 'type' => '14962090' }, '2' => { - 'name' => 'name1', - 'type' => '263006' + 'name' => 'toRename', + 'type' => '575822' }, '3' => { - 'name' => 'style1', - 'type' => '263006' + 'name' => 'renameTo', + 'type' => '575822' }, '4' => { - 'name' => 'options', - 'type' => '2273842' + 'name' => 'renameEmptyFile1', + 'type' => '174077' } }, - 'Protected' => 1, - 'ShortName' => 'NamePatternConverter', - 'Source' => 'namepatternconverter.cpp', - 'SourceLine' => '44' + 'ShortName' => 'FileRenameAction', + 'Source' => 'filerenameaction.cpp', + 'SourceLine' => '42' }, - '11955892' => { + '14979656' => { 'Artificial' => 1, - 'Class' => '11917445', + 'Class' => '14950334', 'Destructor' => 1, - 'Header' => 'namepatternconverter.h', + 'Header' => 'filerenameaction.h', 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD0Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11920576' + 'type' => '14962174' } }, - 'ShortName' => 'ClazzNamePatternConverter', + 'ShortName' => 'ClazzFileRenameAction', 'Virt' => 1 }, - '11955893' => { + '14979657' => { 'Artificial' => 1, - 'Class' => '11917445', + 'Class' => '14950334', 'Destructor' => 1, - 'Header' => 'namepatternconverter.h', + 'Header' => 'filerenameaction.h', 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD1Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11920576' + 'type' => '14962174' } }, - 'ShortName' => 'ClazzNamePatternConverter', + 'ShortName' => 'ClazzFileRenameAction', 'Virt' => 1 }, - '11956034' => { + '14979802' => { 'Artificial' => 1, - 'Class' => '11917445', + 'Class' => '14950334', 'Destructor' => 1, - 'Header' => 'namepatternconverter.h', + 'Header' => 'filerenameaction.h', 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD2Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11920576' + 'type' => '14962174' } }, - 'ShortName' => 'ClazzNamePatternConverter', + 'ShortName' => 'ClazzFileRenameAction', 'Virt' => 1 }, - '11956124' => { + '14979897' => { 'Artificial' => 1, - 'Class' => '11917445', + 'Class' => '14950334', 'Constructor' => 1, - 'Header' => 'namepatternconverter.h', + 'Header' => 'filerenameaction.h', 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterC2Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11920576' + 'type' => '14962174' } }, - 'ShortName' => 'ClazzNamePatternConverter' + 'ShortName' => 'ClazzFileRenameAction' }, - '11956125' => { + '14979898' => { 'Artificial' => 1, - 'Class' => '11917445', + 'Class' => '14950334', 'Constructor' => 1, - 'Header' => 'namepatternconverter.h', + 'Header' => 'filerenameaction.h', 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterC1Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11920576' + 'type' => '14962174' } }, - 'ShortName' => 'ClazzNamePatternConverter' + 'ShortName' => 'ClazzFileRenameAction' }, - '12062419' => { - 'Class' => '649599', - 'Constructor' => 1, - 'Header' => 'ndc.h', - 'Line' => '215', - 'MnglName' => '_ZN7log4cxx3NDCC2ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12035700' - }, - '1' => { - 'name' => 'message', - 'type' => '646944' - } - }, - 'ShortName' => 'NDC', - 'Source' => 'ndc.cpp', - 'SourceLine' => '247' + '15410821' => { + 'Class' => '1909459', + 'Data' => 1, + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog13DEFAULT_DELAYE', + 'Return' => '190282', + 'ShortName' => 'DEFAULT_DELAY', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '31' }, - '12062420' => { - 'Class' => '649599', - 'Constructor' => 1, - 'Header' => 'ndc.h', - 'Line' => '215', - 'MnglName' => '_ZN7log4cxx3NDCC1ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '15410869' => { + 'Class' => '1909459', + 'Header' => 'filewatchdog.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog10doOnChangeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12035700' - }, - '1' => { - 'name' => 'message', - 'type' => '646944' + 'type' => '1924100' } }, - 'ShortName' => 'NDC', - 'Source' => 'ndc.cpp', - 'SourceLine' => '247' + 'Protected' => 1, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'doOnChange', + 'VirtPos' => '2' }, - '12088212' => { - 'Class' => '649599', - 'Destructor' => 1, - 'Header' => 'ndc.h', - 'Line' => '100', - 'MnglName' => '_ZN7log4cxx3NDCD2Ev', + '15410904' => { + 'Class' => '1909459', + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog17checkAndConfigureEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12035700' + 'type' => '1924105' } }, - 'ShortName' => 'NDC', - 'Source' => 'ndc.cpp', - 'SourceLine' => '30' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'checkAndConfigure', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '90' }, - '12088963' => { - 'Class' => '649599', - 'Constructor' => 1, - 'Header' => 'ndc.h', - 'Line' => '93', - 'MnglName' => '_ZN7log4cxx3NDCC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '15410931' => { + 'Class' => '1909459', + 'Header' => 'filewatchdog.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog4fileEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12035700' - }, - '1' => { - 'name' => 'message', - 'type' => '61535' + 'type' => '1924105' } }, - 'ShortName' => 'NDC', - 'Source' => 'ndc.cpp', - 'SourceLine' => '25' - }, - '12088964' => { - 'Class' => '649599', - 'Constructor' => 1, - 'Header' => 'ndc.h', - 'Line' => '93', - 'MnglName' => '_ZN7log4cxx3NDCC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Protected' => 1, + 'Return' => '575822', + 'ShortName' => 'file', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '85' + }, + '15410962' => { + 'Class' => '1909459', + 'Header' => 'filewatchdog.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog8setDelayEl', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12035700' + 'type' => '1924105' }, '1' => { - 'name' => 'message', - 'type' => '61535' + 'name' => 'delay1', + 'type' => '190282' } }, - 'ShortName' => 'NDC', - 'Source' => 'ndc.cpp', - 'SourceLine' => '25' + 'Return' => '1', + 'ShortName' => 'setDelay', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '159' }, - '12171520' => { - 'Class' => '12171399', - 'Const' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverter7getNameB5cxx11Ev', + '15410994' => { + 'Class' => '1909459', + 'Header' => 'filewatchdog.h', + 'Line' => '62', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog5startEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12175016' + 'type' => '1924105' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '12171649' => { - 'Class' => '12171365', - 'Header' => 'mdcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'mdcpatternconverter.cpp', - 'SourceLine' => '26', - 'Static' => 1 - }, - '12171666' => { - 'Class' => '12171365', - 'Header' => 'mdcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'mdcpatternconverter.cpp', - 'SourceLine' => '26', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'start', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '144' }, - '12171683' => { - 'Class' => '12171365', - 'Const' => 1, - 'Header' => 'mdcpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter8getClassEv', + '15411048' => { + 'Class' => '1909459', + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog9is_activeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174677' + 'type' => '1924105' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'mdcpatternconverter.cpp', - 'SourceLine' => '26', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '174077', + 'ShortName' => 'is_active', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '68' }, - '12171722' => { - 'Class' => '12171365', - 'Const' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 2, - 'Line' => '36', - 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter4castERKNS_7helpers5ClassE', + '15411079' => { + 'Class' => '1909459', + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog3runEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174677' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '1924105' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'run', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '121' }, - '12171766' => { - 'Class' => '12171365', - 'Const' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter10instanceofERKNS_7helpers5ClassE', + '15411106' => { + 'Class' => '1909459', + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog14is_interruptedEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174677' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '12171862' => { - 'Class' => '12171365', - 'Header' => 'mdcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'options', - 'type' => '2273842' + 'type' => '1924105' } }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'mdcpatternconverter.cpp', - 'SourceLine' => '37', - 'Static' => 1 + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'is_interrupted', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '154' }, - '12171890' => { - 'Class' => '12171365', - 'Const' => 1, - 'Header' => 'mdcpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '15412047' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility12createThreadIMNS0_12FileWatchdogEFvvEJPS3_EEESt6threadNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174677' + 'type' => '2520206' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'name', + 'type' => '209661' }, '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' + 'name' => 'f', + 'type' => '15429126' }, '3' => { 'name' => 'p3', - 'type' => '64643' + 'type' => '15429131' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'mdcpatternconverter.cpp', - 'SourceLine' => '48', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '12172327' => { - 'Data' => 1, - 'Line' => '26', - 'MnglName' => '_ZN7log4cxx7classes31MDCPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'MDCPatternConverterRegistration', - 'Source' => 'mdcpatternconverter.cpp' + 'Return' => '1797924', + 'ShortName' => 'createThread', + 'TParam' => { + '0' => { + 'key' => 'Function', + 'type' => '15426549' + }, + '1' => { + 'key' => undef, + 'type' => '1924100' + } + } }, - '12178022' => { - 'Artificial' => 1, - 'Class' => '12171365', + '15486864' => { + 'Class' => '1909459', 'Destructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterD0Ev', + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174434' + 'type' => '1924105' } }, - 'ShortName' => 'MDCPatternConverter', + 'ShortName' => 'FileWatchdog', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '61', 'Virt' => 1 }, - '12178023' => { - 'Artificial' => 1, - 'Class' => '12171365', + '15486865' => { + 'Class' => '1909459', 'Destructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterD2Ev', + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174434' + 'type' => '1924105' } }, - 'ShortName' => 'MDCPatternConverter', + 'ShortName' => 'FileWatchdog', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '61', 'Virt' => 1 }, - '12178290' => { - 'Artificial' => 1, - 'Class' => '12171365', + '15486960' => { + 'Class' => '1909459', 'Destructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterD1Ev', + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174434' + 'type' => '1924105' } }, - 'ShortName' => 'MDCPatternConverter', + 'ShortName' => 'FileWatchdog', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '61', 'Virt' => 1 }, - '12194767' => { - 'Artificial' => 1, - 'Class' => '2269898', + '15487944' => { + 'Class' => '1909459', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_19MDCPatternConverterEEJEEEOT_DpOT0_', + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogC2ERKNS_4FileE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '1924105' }, '1' => { - 'name' => 'arg0', - 'type' => '12174456' + 'name' => 'file1', + 'type' => '575822' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '12144802' - } - } + 'Protected' => 1, + 'ShortName' => 'FileWatchdog', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '56' }, - '12194768' => { - 'Artificial' => 1, - 'Class' => '2269898', + '15487945' => { + 'Class' => '1909459', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_19MDCPatternConverterEEJEEEOT_DpOT0_', + 'Header' => 'filewatchdog.h', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogC1ERKNS_4FileE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '1924105' }, '1' => { - 'name' => 'arg0', - 'type' => '12174456' + 'name' => 'file1', + 'type' => '575822' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '12144802' - } - } + 'Protected' => 1, + 'ShortName' => 'FileWatchdog', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '56' }, - '12195426' => { - 'Artificial' => 1, - 'Class' => '12169566', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEED2Ev', + '15813392' => { + 'Class' => '564875', + 'Header' => 'filter.h', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi6Filter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '45', + 'Static' => 1 + }, + '15813673' => { + 'Class' => '564875', + 'Const' => 1, + 'Header' => 'filter.h', + 'Line' => '130', + 'MnglName' => '_ZNK7log4cxx3spi6Filter6decideERKSt10shared_ptrINS0_12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174126' + 'type' => '577937' + }, + '1' => { + 'name' => 'p1', + 'type' => '576659' } }, - 'ShortName' => 'WideLife' + 'PureVirt' => 1, + 'Return' => '565023', + 'ShortName' => 'decide', + 'VirtPos' => '7' }, - '12195427' => { - 'Artificial' => 1, - 'Class' => '12169566', + '15828880' => { + 'Class' => '564875', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEED0Ev', + 'Header' => 'filter.h', + 'MnglName' => '_ZN7log4cxx3spi6FilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174126' + 'type' => '576334' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'Filter', + 'Source' => 'filter.cpp', + 'SourceLine' => '36', + 'Virt' => 1 }, - '12195568' => { - 'Artificial' => 1, - 'Class' => '12169566', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEEC2Ev', + '15828981' => { + 'Class' => '564875', + 'Destructor' => 1, + 'Header' => 'filter.h', + 'MnglName' => '_ZN7log4cxx3spi6FilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174126' + 'type' => '576334' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'Filter', + 'Source' => 'filter.cpp', + 'SourceLine' => '36', + 'Virt' => 1 }, - '12195569' => { - 'Artificial' => 1, - 'Class' => '12169566', + '15829740' => { + 'Class' => '564875', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEEC1Ev', + 'Header' => 'filter.h', + 'MnglName' => '_ZN7log4cxx3spi6FilterC1ESt10unique_ptrINS1_13FilterPrivateESt14default_deleteIS3_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174126' - } - }, - 'ShortName' => 'WideLife' + 'type' => '576334' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '496857' + } + }, + 'ShortName' => 'Filter', + 'Source' => 'filter.cpp', + 'SourceLine' => '30' }, - '12223669' => { - 'Class' => '12171365', + '15831081' => { + 'Class' => '564875', 'Constructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RKSt6vectorIS7_SaIS7_EE', + 'Header' => 'filter.h', + 'MnglName' => '_ZN7log4cxx3spi6FilterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174434' - }, - '1' => { - 'name' => 'name', - 'type' => '263006' - }, - '2' => { - 'name' => 'style', - 'type' => '263006' - }, - '3' => { - 'name' => 'options', - 'type' => '2273842' + 'type' => '576334' } }, - 'ShortName' => 'MDCPatternConverter', - 'Source' => 'mdcpatternconverter.cpp', - 'SourceLine' => '28' + 'ShortName' => 'Filter', + 'Source' => 'filter.cpp', + 'SourceLine' => '26' }, - '12227755' => { - 'Class' => '12171365', + '15831860' => { + 'Class' => '564875', 'Constructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RKSt6vectorIS7_SaIS7_EE', + 'Header' => 'filter.h', + 'MnglName' => '_ZN7log4cxx3spi6FilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12174434' - }, - '2' => { - 'name' => 'name', - 'type' => '263006' - }, - '3' => { - 'name' => 'style', - 'type' => '263006' - }, - '4' => { - 'name' => 'options', - 'type' => '2273842' + 'type' => '576334' } }, - 'ShortName' => 'MDCPatternConverter', - 'Source' => 'mdcpatternconverter.cpp', - 'SourceLine' => '28' + 'ShortName' => 'Filter', + 'Source' => 'filter.cpp', + 'SourceLine' => '26' }, - '12236558' => { + '16165440' => { 'Artificial' => 1, - 'Class' => '12171399', - 'Destructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD0Ev', + 'Class' => '5656720', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12175005' + 'type' => '16175008' } }, - 'ShortName' => 'ClazzMDCPatternConverter', - 'Virt' => 1 + 'Return' => '5679668', + 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv' }, - '12236559' => { - 'Artificial' => 1, - 'Class' => '12171399', - 'Destructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD1Ev', + '16165512' => { + 'Class' => '5656706', + 'Const' => 1, + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12175005' + 'type' => '16174968' } }, - 'ShortName' => 'ClazzMDCPatternConverter', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '26', + 'Virt' => 1, + 'VirtPos' => '2' }, - '12236700' => { - 'Artificial' => 1, - 'Class' => '12171399', - 'Destructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD2Ev', + '16165549' => { + 'Class' => '5656706', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '26', + 'Static' => 1 + }, + '16165581' => { + 'Class' => '5656706', + 'Const' => 1, + 'Header' => 'filterbasedtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '54', + 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12175005' + 'type' => '16174968' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzMDCPatternConverter', - 'Virt' => 1 + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '12236790' => { - 'Artificial' => 1, - 'Class' => '12171399', - 'Constructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterC2Ev', + '16165623' => { + 'Class' => '5656706', + 'Const' => 1, + 'Header' => 'filterbasedtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '57', + 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12175005' + 'type' => '16174968' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzMDCPatternConverter' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '12236791' => { - 'Artificial' => 1, - 'Class' => '12171399', - 'Constructor' => 1, - 'Header' => 'mdcpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterC1Ev', + '16165756' => { + 'Class' => '5656706', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12175005' + 'type' => '16174943' + }, + '1' => { + 'name' => 'p1', + 'type' => '955078' + }, + '2' => { + 'name' => 'event', + 'type' => '576659' + }, + '3' => { + 'name' => 'p3', + 'type' => '210597' + }, + '4' => { + 'name' => 'p4', + 'type' => '190816' } }, - 'ShortName' => 'ClazzMDCPatternConverter' + 'Return' => '174077', + 'ShortName' => 'isTriggeringEvent', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '52', + 'Virt' => 1, + 'VirtPos' => '7' }, - '12308214' => { - 'Class' => '12308093', - 'Const' => 1, - 'Header' => 'ndcpatternconverter.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverter7getNameB5cxx11Ev', + '16165813' => { + 'Class' => '5656706', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy9addFilterERKSt10shared_ptrINS_3spi6FilterEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310931' + 'type' => '16174943' + }, + '1' => { + 'name' => 'newFilter', + 'type' => '576654' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '12308343' => { - 'Class' => '12308059', - 'Header' => 'ndcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'ndcpatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'addFilter', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '85' }, - '12308360' => { - 'Class' => '12308059', - 'Header' => 'ndcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'ndcpatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 + '16165844' => { + 'Class' => '5656706', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy12clearFiltersEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16174943' + } + }, + 'Return' => '1', + 'ShortName' => 'clearFilters', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '99' }, - '12308377' => { - 'Class' => '12308059', - 'Const' => 1, - 'Header' => 'ndcpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter8getClassEv', + '16165870' => { + 'Class' => '5656706', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy9getFilterEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310603' + 'type' => '16174943' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'ndcpatternconverter.cpp', - 'SourceLine' => '28', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '16174988', + 'ShortName' => 'getFilter', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '106' }, - '12308416' => { - 'Class' => '12308059', - 'Const' => 1, - 'Header' => 'ndcpatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter4castERKNS_7helpers5ClassE', + '16165900' => { + 'Class' => '5656706', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310603' + 'type' => '16174943' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '114', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '5' }, - '12308460' => { - 'Class' => '12308059', - 'Const' => 1, - 'Header' => 'ndcpatternconverter.h', - 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter10instanceofERKNS_7helpers5ClassE', + '16165939' => { + 'Class' => '5656706', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310603' + 'type' => '16174943' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210597' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '122', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '6' }, - '12308541' => { - 'Class' => '12308059', - 'Header' => 'ndcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '16166117' => { + 'Class' => '5658455', + 'Const' => 1, + 'Header' => 'triggeringpolicy.h', + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx7rolling16TriggeringPolicy8getClassEv', 'Param' => { '0' => { - 'name' => 'p1', - 'type' => '410985' + 'name' => 'this', + 'type' => '16176266' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'ndcpatternconverter.cpp', - 'SourceLine' => '36', + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'triggeringpolicy.cpp', + 'SourceLine' => '24', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '16166154' => { + 'Class' => '5658455', + 'Header' => 'triggeringpolicy.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'triggeringpolicy.cpp', + 'SourceLine' => '24', 'Static' => 1 }, - '12308569' => { - 'Class' => '12308059', + '16166243' => { + 'Class' => '5658455', 'Const' => 1, - 'Header' => 'ndcpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Header' => 'triggeringpolicy.h', + 'InLine' => 2, + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx7rolling16TriggeringPolicy10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310603' + 'type' => '16176266' }, '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '16166285' => { + 'Class' => '5658455', + 'Const' => 1, + 'Header' => 'triggeringpolicy.h', + 'InLine' => 2, + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx7rolling16TriggeringPolicy4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16176266' }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'ndcpatternconverter.cpp', - 'SourceLine' => '43', + 'Return' => '195352', + 'ShortName' => 'cast', 'Virt' => 1, - 'VirtPos' => '7' + 'VirtPos' => '4' }, - '12308991' => { + '16166342' => { 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes31NDCPatternConverterRegistrationE', + 'Line' => '26', + 'MnglName' => '_ZN7log4cxx7classes39FilterBasedTriggeringPolicyRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'NDCPatternConverterRegistration', - 'Source' => 'ndcpatternconverter.cpp' + 'Return' => '210733', + 'ShortName' => 'FilterBasedTriggeringPolicyRegistration', + 'Source' => 'filterbasedtriggeringpolicy.cpp' }, - '12313932' => { - 'Artificial' => 1, - 'Class' => '12308059', + '16176286' => { + 'Class' => '5658455', 'Destructor' => 1, - 'Header' => 'ndcpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterD0Ev', + 'Header' => 'triggeringpolicy.h', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310404' + 'type' => '16176281' } }, - 'ShortName' => 'NDCPatternConverter', + 'ShortName' => 'TriggeringPolicy', + 'Source' => 'triggeringpolicy.cpp', + 'SourceLine' => '26', 'Virt' => 1 }, - '12313933' => { + '16181348' => { 'Artificial' => 1, - 'Class' => '12308059', + 'Class' => '16161261', 'Destructor' => 1, - 'Header' => 'ndcpatternconverter.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310404' + 'type' => '16174472' } }, - 'ShortName' => 'NDCPatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '12314197' => { + '16181349' => { 'Artificial' => 1, - 'Class' => '12308059', + 'Class' => '16161261', 'Destructor' => 1, - 'Header' => 'ndcpatternconverter.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310404' + 'type' => '16174472' } }, - 'ShortName' => 'NDCPatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '12323858' => { + '16181491' => { 'Artificial' => 1, - 'Class' => '2269898', + 'Class' => '16161261', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_19NDCPatternConverterEEJEEEOT_DpOT0_', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '12310426' + 'type' => '16174472' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '12285207' - } - } + 'ShortName' => 'WideLife' }, - '12323859' => { + '16181492' => { 'Artificial' => 1, - 'Class' => '2269898', + 'Class' => '16161261', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_19NDCPatternConverterEEJEEEOT_DpOT0_', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '12310426' + 'type' => '16174472' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '12285207' - } - } + 'ShortName' => 'WideLife' }, - '12324274' => { - 'Artificial' => 1, - 'Class' => '12306429', + '16197047' => { + 'Class' => '5656706', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEED2Ev', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310096' + 'type' => '16174943' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'FilterBasedTriggeringPolicy', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '47', + 'Virt' => 1 }, - '12324275' => { - 'Artificial' => 1, - 'Class' => '12306429', + '16197146' => { + 'Class' => '5656706', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEED0Ev', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310096' + 'type' => '16174943' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'FilterBasedTriggeringPolicy', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '47', + 'Virt' => 1 }, - '12324415' => { - 'Artificial' => 1, - 'Class' => '12306429', + '16198941' => { + 'Class' => '5656706', + 'Destructor' => 1, + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16174943' + } + }, + 'ShortName' => 'FilterBasedTriggeringPolicy', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '47', + 'Virt' => 1 + }, + '16200667' => { + 'Class' => '5656706', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEEC2Ev', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310096' + 'type' => '16174943' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'FilterBasedTriggeringPolicy', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '41' }, - '12324416' => { - 'Artificial' => 1, - 'Class' => '12306429', + '16201967' => { + 'Class' => '5656706', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEEC1Ev', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310096' + 'type' => '16174943' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'FilterBasedTriggeringPolicy', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '41' }, - '12329725' => { - 'Class' => '12308059', + '16203084' => { + 'Artificial' => 1, + 'Class' => '5658455', 'Constructor' => 1, - 'Header' => 'ndcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterC1Ev', + 'Header' => 'triggeringpolicy.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310404' + 'type' => '16176281' } }, - 'ShortName' => 'NDCPatternConverter', - 'Source' => 'ndcpatternconverter.cpp', - 'SourceLine' => '30' + 'ShortName' => 'TriggeringPolicy' }, - '12333842' => { - 'Class' => '12308059', + '16203085' => { + 'Artificial' => 1, + 'Class' => '5658455', 'Constructor' => 1, - 'Header' => 'ndcpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterC2Ev', + 'Header' => 'triggeringpolicy.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310404' + 'type' => '16176281' } }, - 'ShortName' => 'NDCPatternConverter', - 'Source' => 'ndcpatternconverter.cpp', - 'SourceLine' => '30' + 'ShortName' => 'TriggeringPolicy' }, - '12339877' => { + '16205147' => { 'Artificial' => 1, - 'Class' => '12308093', + 'Class' => '5656720', 'Destructor' => 1, - 'Header' => 'ndcpatternconverter.h', + 'Header' => 'filterbasedtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD0Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310920' + 'type' => '16174998' } }, - 'ShortName' => 'ClazzNDCPatternConverter', + 'ShortName' => 'ClazzFilterBasedTriggeringPolicy', 'Virt' => 1 }, - '12339878' => { + '16205148' => { 'Artificial' => 1, - 'Class' => '12308093', + 'Class' => '5656720', 'Destructor' => 1, - 'Header' => 'ndcpatternconverter.h', + 'Header' => 'filterbasedtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310920' + 'type' => '16174998' } }, - 'ShortName' => 'ClazzNDCPatternConverter', + 'ShortName' => 'ClazzFilterBasedTriggeringPolicy', 'Virt' => 1 }, - '12340018' => { + '16205294' => { 'Artificial' => 1, - 'Class' => '12308093', + 'Class' => '5656720', 'Destructor' => 1, - 'Header' => 'ndcpatternconverter.h', + 'Header' => 'filterbasedtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD2Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310920' + 'type' => '16174998' } }, - 'ShortName' => 'ClazzNDCPatternConverter', + 'ShortName' => 'ClazzFilterBasedTriggeringPolicy', 'Virt' => 1 }, - '12340108' => { + '16205389' => { 'Artificial' => 1, - 'Class' => '12308093', + 'Class' => '5656720', 'Constructor' => 1, - 'Header' => 'ndcpatternconverter.h', + 'Header' => 'filterbasedtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterC2Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310920' + 'type' => '16174998' } }, - 'ShortName' => 'ClazzNDCPatternConverter' + 'ShortName' => 'ClazzFilterBasedTriggeringPolicy' }, - '12340109' => { + '16205390' => { 'Artificial' => 1, - 'Class' => '12308093', + 'Class' => '5656720', 'Constructor' => 1, - 'Header' => 'ndcpatternconverter.h', + 'Header' => 'filterbasedtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterC1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12310920' + 'type' => '16174998' } }, - 'ShortName' => 'ClazzNDCPatternConverter' - }, - '12459296' => { - 'Class' => '3413936', - 'Header' => 'timezone.h', - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone10getDefaultEv', - 'Private' => 1, - 'Return' => '1576811', - 'ShortName' => 'getDefault', - 'Source' => 'timezone.cpp', - 'SourceLine' => '191', - 'Static' => 1 + 'ShortName' => 'ClazzFilterBasedTriggeringPolicy' }, - '12461896' => { - 'Class' => '12461775', + '16765944' => { + 'Class' => '16765860', 'Const' => 1, - 'Header' => 'odbcappender.h', + 'Header' => 'integer.h', 'InLine' => 2, - 'Line' => '145', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender17ClazzODBCAppender7getNameB5cxx11Ev', + 'Line' => '32', + 'MnglName' => '_ZNK7log4cxx7helpers7Integer12ClazzInteger7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468934' + 'type' => '20167699' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '12461935' => { - 'Class' => '12461775', + '16765981' => { + 'Class' => '16765860', 'Const' => 1, - 'Header' => 'odbcappender.h', + 'Header' => 'integer.h', 'InLine' => 2, - 'Line' => '145', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv', + 'Line' => '32', + 'MnglName' => '_ZNK7log4cxx7helpers7Integer12ClazzInteger11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468934' + 'type' => '20167699' } }, - 'Return' => '12468823', + 'Return' => '16787911', 'ShortName' => 'newInstance', 'Virt' => 1, - 'VirtPos' => '4' - }, - '12461974' => { - 'Artificial' => 1, - 'Class' => '12461775', - 'Header' => 'odbcappender.h', - 'InLine' => 2, - 'Line' => '145', - 'MnglName' => '_ZTch0_h0_NK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12468934' - } - }, - 'Return' => '12468823', - 'ShortName' => '_ZTch0_h0_NK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv' + 'VirtPos' => '2' }, - '12462008' => { - 'Class' => '12461290', + '16770259' => { + 'Class' => '5657215', 'Const' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender8getClassEv', + 'Header' => 'rollingpolicybase.h', + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' + 'type' => '16792983' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '117', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '35', 'Virt' => 1, 'VirtPos' => '2' }, - '12462047' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '117', - 'Static' => 1 - }, - '12462064' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '117', - 'Static' => 1 - }, - '12462081' => { - 'Class' => '12461290', + '16770296' => { + 'Class' => '5657215', 'Const' => 1, - 'Header' => 'odbcappender.h', - 'InLine' => 2, - 'Line' => '146', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender4castERKNS_7helpers5ClassE', + 'Header' => 'rollingpolicybase.h', + 'Line' => '101', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase32getCreateIntermediateDirectoriesEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '16792983' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '174077', + 'ShortName' => 'getCreateIntermediateDirectories', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '174' }, - '12462125' => { - 'Class' => '12461290', + '16770327' => { + 'Class' => '5657215', 'Const' => 1, - 'Header' => 'odbcappender.h', - 'InLine' => 2, - 'Line' => '149', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender10instanceofERKNS_7helpers5ClassE', + 'Header' => 'rollingpolicybase.h', + 'Line' => '120', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase14formatFileNameERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' + 'type' => '16792983' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'obj', + 'type' => '575817' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'pool', + 'type' => '210607' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'formatFileName', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '112' }, - '12462249' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '16770369' => { + 'Class' => '5657215', + 'Const' => 1, + 'Header' => 'rollingpolicybase.h', + 'Line' => '123', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase26getIntegerPatternConverterEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '16792983' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '174', - 'Virt' => 1, - 'VirtPos' => '6' + 'Protected' => 1, + 'Return' => '3121025', + 'ShortName' => 'getIntegerPatternConverter', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '132' }, - '12462295' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender15activateOptionsERNS_7helpers4PoolE', + '16770400' => { + 'Class' => '5657215', + 'Header' => 'rollingpolicybase.h', + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16793608' }, '1' => { 'name' => 'p1', - 'type' => '64643' + 'type' => '210607' } }, - 'Reg' => { - '1' => 'rsi' - }, 'Return' => '1', 'ShortName' => 'activateOptions', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '215', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '50', 'Virt' => 1, 'VirtPos' => '5' }, - '12462336' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '16770439' => { + 'Class' => '5657215', + 'Header' => 'rollingpolicybase.h', + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16793608' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'option', + 'type' => '210597' }, '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'value', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, 'Return' => '1', - 'ShortName' => 'append', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '257', + 'ShortName' => 'setOption', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '67', 'Virt' => 1, - 'VirtPos' => '17' + 'VirtPos' => '6' }, - '12462383' => { - 'Class' => '12461290', + '16770565' => { + 'Class' => '5657215', 'Const' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender15getLogStatementB5cxx11ERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Header' => 'rollingpolicybase.h', + 'InLine' => 2, + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' + 'type' => '16792983' }, '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rsi', - '2' => 'rcx' - }, - 'Return' => '63706', - 'ShortName' => 'getLogStatement', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '270' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '12462425' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender7executeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '16770607' => { + 'Class' => '5657215', + 'Const' => 1, + 'Header' => 'rollingpolicybase.h', + 'InLine' => 2, + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16792983' }, '1' => { - 'name' => 'sql', - 'type' => '263006' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'execute', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '275', + 'Return' => '195352', + 'ShortName' => 'cast', 'Virt' => 1, - 'VirtPos' => '18' + 'VirtPos' => '4' }, - '12462472' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender15closeConnectionEPv', + '16770878' => { + 'Artificial' => 1, + 'Class' => '5657385', + 'Header' => 'fixedwindowrollingpolicy.h', + 'InLine' => 2, + 'Line' => '73', + 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' - }, - '1' => { - 'name' => 'p1', - 'type' => '12462514' + 'type' => '16791384' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'closeConnection', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '281', + 'Return' => '5679598', + 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv' + }, + '16771146' => { + 'Class' => '5657354', + 'Const' => 1, + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16791165' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '53', 'Virt' => 1, - 'VirtPos' => '19' + 'VirtPos' => '2' }, - '12462527' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender13getConnectionERNS_7helpers4PoolE', + '16771183' => { + 'Class' => '5657354', + 'Header' => 'fixedwindowrollingpolicy.h', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '53', + 'Static' => 1 + }, + '16771217' => { + 'Class' => '5657354', + 'Const' => 1, + 'Header' => 'fixedwindowrollingpolicy.h', + 'InLine' => 2, + 'Line' => '74', + 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791165' }, '1' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '12462514', - 'ShortName' => 'getConnection', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '285', + 'Return' => '195352', + 'ShortName' => 'cast', 'Virt' => 1, - 'VirtPos' => '20' + 'VirtPos' => '4' }, - '12462573' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender5closeEv', + '16771259' => { + 'Class' => '5657354', + 'Const' => 1, + 'Header' => 'fixedwindowrollingpolicy.h', + 'InLine' => 2, + 'Line' => '77', + 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791165' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '375', + 'Return' => '174077', + 'ShortName' => 'instanceof', 'Virt' => 1, - 'VirtPos' => '10' + 'VirtPos' => '3' }, - '12462610' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender11flushBufferERNS_7helpers4PoolE', + '16771301' => { + 'Class' => '5657354', + 'Const' => 1, + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy5purgeEiiRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791165' }, '1' => { + 'name' => 'lowIndex', + 'type' => '190263' + }, + '2' => { + 'name' => 'highIndex', + 'type' => '190263' + }, + '3' => { 'name' => 'p', - 'type' => '64643' + 'type' => '210607' } }, - 'Return' => '1', - 'ShortName' => 'flushBuffer', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '584', - 'Virt' => 1, - 'VirtPos' => '21' + 'Return' => '174077', + 'ShortName' => 'purge', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '257' }, - '12462652' => { - 'Class' => '12461290', - 'Const' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender14requiresLayoutEv', + '16771425' => { + 'Class' => '5657354', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' + 'type' => '16791140' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'requiresLayout', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '210', + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '102', 'Virt' => 1, - 'VirtPos' => '16' + 'VirtPos' => '5' }, - '12462691' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6setSqlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '16771464' => { + 'Class' => '5657354', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791140' }, '1' => { - 'name' => 's', - 'type' => '263006' + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, 'Return' => '1', - 'ShortName' => 'setSql', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '614' + 'ShortName' => 'setOption', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '72', + 'Virt' => 1, + 'VirtPos' => '6' }, - '12462724' => { - 'Class' => '12461290', + '16771535' => { + 'Class' => '5657354', 'Const' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender6getSqlB5cxx11Ev', + 'Header' => 'fixedwindowrollingpolicy.h', + 'Line' => '117', + 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy11getMaxIndexEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' + 'type' => '16791165' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getSql', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '657' + 'Return' => '190263', + 'ShortName' => 'getMaxIndex', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '235' }, - '12462756' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender7setUserERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '16771566' => { + 'Class' => '5657354', + 'Const' => 1, + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy11getMinIndexEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16791165' + } + }, + 'Return' => '190263', + 'ShortName' => 'getMinIndex', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '244' + }, + '16771597' => { + 'Class' => '5657354', + 'Header' => 'fixedwindowrollingpolicy.h', + 'Line' => '121', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy11setMaxIndexEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791140' }, '1' => { - 'name' => 'user', - 'type' => '263006' + 'name' => 'maxIndex1', + 'type' => '190263' } }, 'Return' => '1', - 'ShortName' => 'setUser', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '662' + 'ShortName' => 'setMaxIndex', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '62' }, - '12462789' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6setURLERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '16771629' => { + 'Class' => '5657354', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy11setMinIndexEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791140' }, '1' => { - 'name' => 'url', - 'type' => '263006' + 'name' => 'minIndex1', + 'type' => '190263' } }, 'Return' => '1', - 'ShortName' => 'setURL', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '667' + 'ShortName' => 'setMinIndex', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '67' }, - '12462822' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender11setPasswordERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '16771661' => { + 'Class' => '5657354', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791140' }, '1' => { - 'name' => 'password', - 'type' => '263006' + 'name' => 'currentActiveFile', + 'type' => '210597' + }, + '2' => { + 'name' => 'append', + 'type' => '174084' + }, + '3' => { + 'name' => 'pool', + 'type' => '210607' } }, - 'Return' => '1', - 'ShortName' => 'setPassword', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '672' + 'Return' => '16772430', + 'ShortName' => 'initialize', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '130', + 'Virt' => 1, + 'VirtPos' => '7' }, - '12462855' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender13setBufferSizeEm', + '16771713' => { + 'Class' => '5657354', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791140' }, '1' => { - 'name' => 'newBufferSize', - 'type' => '50486' + 'name' => 'currentActiveFile', + 'type' => '210597' + }, + '2' => { + 'name' => 'append', + 'type' => '174084' + }, + '3' => { + 'name' => 'pool', + 'type' => '210607' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setBufferSize', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '677' + 'Return' => '16772430', + 'ShortName' => 'rollover', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '160', + 'Virt' => 1, + 'VirtPos' => '8' }, - '12462888' => { - 'Class' => '12461290', + '16771765' => { + 'Class' => '5657354', 'Const' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender7getUserB5cxx11Ev', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy19getFormatSpecifiersB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' + 'type' => '16791165' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getUser', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '682' + 'Protected' => 1, + 'Return' => '3121008', + 'ShortName' => 'getFormatSpecifiers', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '375', + 'Virt' => 1, + 'VirtPos' => '9' }, - '12462920' => { - 'Class' => '12461290', + '16771901' => { + 'Class' => '16771817', 'Const' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender6getURLB5cxx11Ev', + 'Header' => 'gzcompressaction.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction21ClazzGZCompressAction7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' + 'type' => '17931262' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getURL', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '687' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '16771992' => { + 'Class' => '16771808', + 'Header' => 'gzcompressaction.h', + 'Line' => '64', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction32setThrowIOExceptionOnForkFailureEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16788106' + }, + '1' => { + 'name' => 'throwIO', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setThrowIOExceptionOnForkFailure', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '176' }, - '12462952' => { - 'Class' => '12461290', + '16772119' => { + 'Class' => '16772035', 'Const' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender11getPasswordB5cxx11Ev', + 'Header' => 'zipcompressaction.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction22ClazzZipCompressAction7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' + 'type' => '51251411' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getPassword', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '692' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '16772210' => { + 'Class' => '16772026', + 'Header' => 'zipcompressaction.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction32setThrowIOExceptionOnForkFailureEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16788211' + }, + '1' => { + 'name' => 'throwIO', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setThrowIOExceptionOnForkFailure', + 'Source' => 'zipcompressaction.cpp', + 'SourceLine' => '152' }, - '12462984' => { - 'Class' => '12461290', + '16772598' => { + 'Class' => '5658321', 'Const' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender13getBufferSizeEv', + 'Header' => 'rollingpolicy.h', + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7rolling13RollingPolicy8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468818' + 'type' => '40777209' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50486', - 'ShortName' => 'getBufferSize', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '697' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'rollingpolicy.cpp', + 'SourceLine' => '23', + 'Virt' => 1, + 'VirtPos' => '2' }, - '12463094' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6encodeEPPwRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '16772635' => { + 'Class' => '5658321', + 'Header' => 'rollingpolicy.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'rollingpolicy.cpp', + 'SourceLine' => '23', + 'Static' => 1 + }, + '16774444' => { + 'Class' => '16774360', + 'Const' => 1, + 'Header' => 'integerpatternconverter.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { - 'name' => 'dest', - 'type' => '52528' + 'name' => 'this', + 'type' => '20379738' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '16774483' => { + 'Class' => '16774354', + 'Header' => 'integerpatternconverter.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'p1', + 'type' => '575797' + } + }, + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'integerpatternconverter.cpp', + 'SourceLine' => '35', + 'Static' => 1 + }, + '16775157' => { + 'Data' => 1, + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7classes36FixedWindowRollingPolicyRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'FixedWindowRollingPolicyRegistration', + 'Source' => 'fixedwindowrollingpolicy.cpp' + }, + '16793088' => { + 'Class' => '16772026', + 'Constructor' => 1, + 'Header' => 'zipcompressaction.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionC1ERKNS_4FileES4_b', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16788211' }, '1' => { 'name' => 'src', - 'type' => '263006' + 'type' => '575822' }, '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'dest', + 'type' => '575822' + }, + '3' => { + 'name' => 'del', + 'type' => '174077' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'encode', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '620', - 'Static' => 1 + 'ShortName' => 'ZipCompressAction', + 'Source' => 'zipcompressaction.cpp', + 'SourceLine' => '47' }, - '12463127' => { - 'Class' => '12461290', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6encodeEPPtRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '16793199' => { + 'Class' => '16771808', + 'Constructor' => 1, + 'Header' => 'gzcompressaction.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionC1ERKNS_4FileES4_b', 'Param' => { '0' => { - 'name' => 'dest', - 'type' => '12468857' + 'name' => 'this', + 'type' => '16788106' }, '1' => { 'name' => 'src', - 'type' => '263006' + 'type' => '575822' }, '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'dest', + 'type' => '575822' + }, + '3' => { + 'name' => 'del', + 'type' => '174077' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'encode', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '626', - 'Static' => 1 + 'ShortName' => 'GZCompressAction', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '47' }, - '12463315' => { - 'Class' => '12463179', - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12SQLException13formatMessageEsPvPKcRNS_7helpers4PoolE', + '16793360' => { + 'Constructor' => 1, + 'Header' => 'rolloverdescription.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRKSt10shared_ptrINS0_6ActionEESE_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' + 'type' => '16789583' }, '1' => { - 'name' => 'fHandleType', - 'type' => '50224' + 'name' => 'activeFileName', + 'type' => '210597' }, '2' => { - 'name' => 'hInput', - 'type' => '50560' + 'name' => 'append', + 'type' => '174084' }, '3' => { - 'name' => 'prolog', - 'type' => '51127' + 'name' => 'synchronous', + 'type' => '16793355' }, '4' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'asynchronous', + 'type' => '16793355' + } + } + }, + '16793435' => { + 'Constructor' => 1, + 'Header' => 'integer.h', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers7IntegerC1Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16787916' + }, + '1' => { + 'name' => 'i', + 'type' => '190263' + } + } + }, + '16793556' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '204', + 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11525417' + } + } + }, + '16793613' => { + 'Class' => '5657215', + 'Destructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'Line' => '58', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' } }, - 'Private' => 1, - 'Return' => '51127', - 'ShortName' => 'formatMessage', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '86' + 'ShortName' => 'RollingPolicyBase', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '46', + 'Virt' => 1 }, - '12463415' => { - 'Data' => 1, - 'Line' => '117', - 'MnglName' => '_ZN7log4cxx7classes24ODBCAppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ODBCAppenderRegistration', - 'Source' => 'odbcappender.cpp' + '16793671' => { + 'Class' => '5657215', + 'Constructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'Line' => '107', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseC2ESt10unique_ptrINS1_24RollingPolicyBasePrivateESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' + }, + '2' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '5539606' + } + }, + 'Protected' => 1, + 'ShortName' => 'RollingPolicyBase', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '42' }, - '12472060' => { + '16858206' => { 'Artificial' => 1, - 'Class' => '12463179', + 'Class' => '16770905', 'Destructor' => 1, - 'Header' => 'odbcappender.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx2db12SQLExceptionD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' + 'type' => '16787321' } }, - 'ShortName' => 'SQLException', + 'ShortName' => 'FixedWindowRollingPolicyPrivate', + 'Source' => 'fixedwindowrollingpolicy.cpp', 'Virt' => 1 }, - '12472061' => { + '16858207' => { 'Artificial' => 1, - 'Class' => '12463179', + 'Class' => '16770905', 'Destructor' => 1, - 'Header' => 'odbcappender.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx2db12SQLExceptionD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' + 'type' => '16787321' } }, - 'ShortName' => 'SQLException', + 'ShortName' => 'FixedWindowRollingPolicyPrivate', + 'Source' => 'fixedwindowrollingpolicy.cpp', 'Virt' => 1 }, - '12472251' => { + '16861970' => { 'Artificial' => 1, - 'Class' => '12463179', + 'Class' => '16770905', 'Destructor' => 1, - 'Header' => 'odbcappender.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx2db12SQLExceptionD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' + 'type' => '16787321' } }, - 'ShortName' => 'SQLException', + 'ShortName' => 'FixedWindowRollingPolicyPrivate', + 'Source' => 'fixedwindowrollingpolicy.cpp', 'Virt' => 1 }, - '12474832' => { + '16875037' => { 'Artificial' => 1, - 'Class' => '12461328', + 'Class' => '16764653', 'Destructor' => 1, - 'Header' => 'odbcappender_priv.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '118', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPriv11DataBindingD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12466896' + 'type' => '16787210' } }, - 'ShortName' => 'DataBinding' + 'ShortName' => 'WideLife' }, - '12474833' => { + '16875038' => { 'Artificial' => 1, - 'Class' => '12461328', + 'Class' => '16764653', 'Destructor' => 1, - 'Header' => 'odbcappender_priv.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '118', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPriv11DataBindingD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12466896' + 'type' => '16787210' } }, - 'ShortName' => 'DataBinding' + 'ShortName' => 'WideLife' }, - '1247742' => { - 'Class' => '1247622', - 'Const' => 1, - 'Header' => 'bufferedwriter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers14BufferedWriter19ClazzBufferedWriter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250219' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '1247804' => { - 'Class' => '1247491', - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '36', - 'Static' => 1 - }, - '1247821' => { - 'Class' => '1247491', - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '36', - 'Static' => 1 - }, - '1247838' => { - 'Class' => '1247491', - 'Const' => 1, - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZNK7log4cxx7helpers14BufferedWriter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250174' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '36', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '1247877' => { - 'Class' => '1247491', - 'Const' => 1, - 'Header' => 'bufferedwriter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7helpers14BufferedWriter4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250174' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '1247921' => { - 'Class' => '1247491', - 'Const' => 1, - 'Header' => 'bufferedwriter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7helpers14BufferedWriter10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250174' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '1248071' => { - 'Class' => '1247491', - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter5closeERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '52', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1248111' => { - 'Class' => '1247491', - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter5flushERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '58', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '1248151' => { - 'Class' => '1247491', - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - }, - '1' => { - 'name' => 'str', - 'type' => '263006' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '67', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '1248275' => { - 'Class' => '1248265', - 'Const' => 1, - 'Header' => 'writer.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx7helpers6Writer4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1271027' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '1248319' => { - 'Class' => '1248265', - 'Header' => 'writer.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Writer14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'writer.cpp', - 'SourceLine' => '25', - 'Static' => 1 - }, - '1249406' => { - 'Data' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7classes26BufferedWriterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'BufferedWriterRegistration', - 'Source' => 'bufferedwriter.cpp' - }, - '12494088' => { - 'Artificial' => 1, - 'Class' => '12461308', - 'Destructor' => 1, - 'Header' => 'odbcappender_priv.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12467750' - } - }, - 'ShortName' => 'ODBCAppenderPriv', - 'Virt' => 1 - }, - '12494089' => { - 'Artificial' => 1, - 'Class' => '12461308', - 'Destructor' => 1, - 'Header' => 'odbcappender_priv.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12467750' - } - }, - 'ShortName' => 'ODBCAppenderPriv', - 'Virt' => 1 - }, - '12504991' => { - 'Artificial' => 1, - 'Class' => '12461308', - 'Destructor' => 1, - 'Header' => 'odbcappender_priv.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12467750' - } - }, - 'ShortName' => 'ODBCAppenderPriv', - 'Virt' => 1 - }, - '12520015' => { - 'Artificial' => 1, - 'Class' => '12459309', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12467625' - } - }, - 'ShortName' => 'WideLife' - }, - '12520016' => { - 'Artificial' => 1, - 'Class' => '12459309', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12467625' - } - }, - 'ShortName' => 'WideLife' - }, - '12520157' => { + '16875179' => { 'Artificial' => 1, - 'Class' => '12459309', + 'Class' => '16764653', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12467625' + 'type' => '16787210' } }, 'ShortName' => 'WideLife' }, - '12520158' => { + '16875180' => { 'Artificial' => 1, - 'Class' => '12459309', + 'Class' => '16764653', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12467625' + 'type' => '16787210' } }, 'ShortName' => 'WideLife' }, - '12538812' => { - 'Class' => '12461290', + '16972019' => { + 'Class' => '5657354', 'Destructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderD0Ev', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791140' } }, - 'ShortName' => 'ODBCAppender', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '143', + 'ShortName' => 'FixedWindowRollingPolicy', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '60', 'Virt' => 1 }, - '12538910' => { - 'Class' => '12461290', + '16972117' => { + 'Class' => '5657354', 'Destructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderD1Ev', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791140' } }, - 'ShortName' => 'ODBCAppender', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '143', + 'ShortName' => 'FixedWindowRollingPolicy', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '60', 'Virt' => 1 }, - '12539194' => { - 'Class' => '12461290', + '16972381' => { + 'Class' => '5657354', 'Destructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderD2Ev', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791140' } }, - 'ShortName' => 'ODBCAppender', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '143', + 'ShortName' => 'FixedWindowRollingPolicy', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '60', 'Virt' => 1 }, - '12539344' => { - 'Class' => '12461290', - 'Constructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12468829' - } - }, - 'ShortName' => 'ODBCAppender', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '121' - }, - '12554265' => { - 'Class' => '12461290', + '16972515' => { + 'Class' => '5657354', 'Constructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderC2Ev', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468829' + 'type' => '16791140' } }, - 'ShortName' => 'ODBCAppender', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '121' + 'ShortName' => 'FixedWindowRollingPolicy', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '55' }, - '12573035' => { - 'Class' => '12463179', + '16976555' => { + 'Class' => '5657354', 'Constructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC2ERKS1_', + 'Header' => 'fixedwindowrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' - }, - '1' => { - 'name' => 'src', - 'type' => '12468950' + 'type' => '16791140' } }, - 'ShortName' => 'SQLException', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '81' + 'ShortName' => 'FixedWindowRollingPolicy', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '55' }, - '12573036' => { - 'Class' => '12463179', + '16980315' => { + 'Artificial' => 1, + 'Class' => '5658321', 'Constructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC1ERKS1_', + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' - }, - '1' => { - 'name' => 'src', - 'type' => '12468950' + 'type' => '16980265' } }, - 'ShortName' => 'SQLException', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '81' + 'ShortName' => 'RollingPolicy' }, - '12573156' => { - 'Class' => '12463179', + '16980316' => { + 'Artificial' => 1, + 'Class' => '5658321', 'Constructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC2EPKc', + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' - }, - '1' => { - 'name' => 'msg', - 'type' => '51127' + 'type' => '16980265' } }, - 'ShortName' => 'SQLException', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '76' + 'ShortName' => 'RollingPolicy' }, - '12573157' => { - 'Class' => '12463179', - 'Constructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC1EPKc', + '16981550' => { + 'Artificial' => 1, + 'Class' => '5657224', + 'Destructor' => 1, + 'Header' => 'rollingpolicybase_priv.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' - }, - '1' => { - 'name' => 'msg', - 'type' => '51127' + 'type' => '5677084' } }, - 'ShortName' => 'SQLException', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '76' + 'ShortName' => 'RollingPolicyBasePrivate', + 'Virt' => 1 }, - '12573311' => { - 'Class' => '12463179', - 'Constructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC2EsPvPKcRNS_7helpers4PoolE', + '16981551' => { + 'Artificial' => 1, + 'Class' => '5657224', + 'Destructor' => 1, + 'Header' => 'rollingpolicybase_priv.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' - }, - '1' => { - 'name' => 'fHandleType', - 'type' => '50224' - }, - '2' => { - 'name' => 'hInput', - 'type' => '50560' - }, - '3' => { - 'name' => 'prolog', - 'type' => '51127' - }, - '4' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '5677084' } }, - 'ShortName' => 'SQLException', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '68' + 'ShortName' => 'RollingPolicyBasePrivate', + 'Virt' => 1 }, - '12573312' => { - 'Class' => '12463179', - 'Constructor' => 1, - 'Header' => 'odbcappender.h', - 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC1EsPvPKcRNS_7helpers4PoolE', + '16985266' => { + 'Artificial' => 1, + 'Class' => '5657224', + 'Destructor' => 1, + 'Header' => 'rollingpolicybase_priv.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468945' - }, - '1' => { - 'name' => 'fHandleType', - 'type' => '50224' - }, - '2' => { - 'name' => 'hInput', - 'type' => '50560' - }, - '3' => { - 'name' => 'prolog', - 'type' => '51127' - }, - '4' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '5677084' } }, - 'ShortName' => 'SQLException', - 'Source' => 'odbcappender.cpp', - 'SourceLine' => '68' + 'ShortName' => 'RollingPolicyBasePrivate', + 'Virt' => 1 }, - '12573603' => { + '16988931' => { 'Artificial' => 1, - 'Class' => '12461308', + 'Class' => '5657224', 'Constructor' => 1, - 'Header' => 'odbcappender_priv.h', + 'Header' => 'rollingpolicybase_priv.h', 'InLine' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivC2Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12467750' + 'type' => '5677084' } }, - 'ShortName' => 'ODBCAppenderPriv' + 'ShortName' => 'RollingPolicyBasePrivate' }, - '12573604' => { + '16988932' => { 'Artificial' => 1, - 'Class' => '12461308', + 'Class' => '5657224', 'Constructor' => 1, - 'Header' => 'odbcappender_priv.h', + 'Header' => 'rollingpolicybase_priv.h', 'InLine' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivC1Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12467750' + 'type' => '5677084' } }, - 'ShortName' => 'ODBCAppenderPriv' + 'ShortName' => 'RollingPolicyBasePrivate' }, - '12583827' => { + '16990163' => { 'Artificial' => 1, - 'Class' => '12461775', + 'Class' => '5657385', 'Destructor' => 1, - 'Header' => 'odbcappender.h', + 'Header' => 'fixedwindowrollingpolicy.h', 'InLine' => 1, - 'Line' => '145', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD0Ev', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468923' + 'type' => '16791374' } }, - 'ShortName' => 'ClazzODBCAppender', + 'ShortName' => 'ClazzFixedWindowRollingPolicy', 'Virt' => 1 }, - '12583828' => { + '16990164' => { 'Artificial' => 1, - 'Class' => '12461775', + 'Class' => '5657385', 'Destructor' => 1, - 'Header' => 'odbcappender.h', + 'Header' => 'fixedwindowrollingpolicy.h', 'InLine' => 1, - 'Line' => '145', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD1Ev', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468923' + 'type' => '16791374' } }, - 'ShortName' => 'ClazzODBCAppender', + 'ShortName' => 'ClazzFixedWindowRollingPolicy', 'Virt' => 1 }, - '12583969' => { + '16990309' => { 'Artificial' => 1, - 'Class' => '12461775', + 'Class' => '5657385', 'Destructor' => 1, - 'Header' => 'odbcappender.h', + 'Header' => 'fixedwindowrollingpolicy.h', 'InLine' => 1, - 'Line' => '145', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD2Ev', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468923' + 'type' => '16791374' } }, - 'ShortName' => 'ClazzODBCAppender', + 'ShortName' => 'ClazzFixedWindowRollingPolicy', 'Virt' => 1 }, - '12584059' => { + '16990403' => { 'Artificial' => 1, - 'Class' => '12461775', + 'Class' => '5657385', 'Constructor' => 1, - 'Header' => 'odbcappender.h', + 'Header' => 'fixedwindowrollingpolicy.h', 'InLine' => 1, - 'Line' => '145', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderC2Ev', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12468923' + 'type' => '16791374' } }, - 'ShortName' => 'ClazzODBCAppender' + 'ShortName' => 'ClazzFixedWindowRollingPolicy' }, - '12584060' => { + '16990404' => { 'Artificial' => 1, - 'Class' => '12461775', + 'Class' => '5657385', 'Constructor' => 1, - 'Header' => 'odbcappender.h', + 'Header' => 'fixedwindowrollingpolicy.h', 'InLine' => 1, - 'Line' => '145', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12468923' - } - }, - 'ShortName' => 'ClazzODBCAppender' - }, - '1259365' => { - 'Artificial' => 1, - 'Class' => '1248349', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1249992' - } - }, - 'ShortName' => 'WideLife' - }, - '1259366' => { - 'Artificial' => 1, - 'Class' => '1248349', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1249992' - } - }, - 'ShortName' => 'WideLife' - }, - '1259506' => { - 'Artificial' => 1, - 'Class' => '1248349', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1249992' - } - }, - 'ShortName' => 'WideLife' - }, - '1259507' => { - 'Artificial' => 1, - 'Class' => '1248349', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1249992' - } - }, - 'ShortName' => 'WideLife' - }, - '1264750' => { - 'Class' => '1247491', - 'Destructor' => 1, - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - } - }, - 'ShortName' => 'BufferedWriter', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '48', - 'Virt' => 1 - }, - '1264751' => { - 'Class' => '1247491', - 'Destructor' => 1, - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - } - }, - 'ShortName' => 'BufferedWriter', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '48', - 'Virt' => 1 - }, - '1264844' => { - 'Class' => '1247491', - 'Destructor' => 1, - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - } - }, - 'ShortName' => 'BufferedWriter', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '48', - 'Virt' => 1 - }, - '12653337' => { - 'Class' => '12653217', - 'Const' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler7getNameB5cxx11Ev', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657972' + 'type' => '16791374' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzFixedWindowRollingPolicy' }, - '12653376' => { - 'Class' => '12653217', - 'Const' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv', + '16990557' => { + 'Artificial' => 1, + 'Class' => '5658321', + 'Destructor' => 1, + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657972' + 'type' => '16980265' } }, - 'Return' => '411377', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'RollingPolicy', + 'Virt' => 1 }, - '12653415' => { + '16990558' => { 'Artificial' => 1, - 'Class' => '12653217', - 'Header' => 'onlyonceerrorhandler.h', - 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZTch0_h0_NK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv', + 'Class' => '5658321', + 'Destructor' => 1, + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657972' + 'type' => '16980265' } }, - 'Return' => '411377', - 'ShortName' => '_ZTch0_h0_NK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv' + 'ShortName' => 'RollingPolicy', + 'Virt' => 1 + }, + '17166679' => { + 'Class' => '3120500', + 'Header' => 'formattinginfo.h', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '48', + 'Static' => 1 + }, + '17166695' => { + 'Class' => '3120500', + 'Header' => 'formattinginfo.h', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '48', + 'Static' => 1 }, - '12653527' => { - 'Class' => '405774', + '17166711' => { + 'Class' => '3120500', 'Const' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler8getClassEv', + 'Header' => 'formattinginfo.h', + 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657932' + 'type' => '17168215' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '27', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '48', 'Virt' => 1, 'VirtPos' => '2' }, - '12653566' => { - 'Class' => '405774', - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '12653583' => { - 'Class' => '405774', - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '12653600' => { - 'Class' => '405774', + '17166748' => { + 'Class' => '3120500', 'Const' => 1, - 'Header' => 'onlyonceerrorhandler.h', + 'Header' => 'formattinginfo.h', 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler4castERKNS0_5ClassE', + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657932' + 'type' => '17168215' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '12653644' => { - 'Class' => '405774', + '17166790' => { + 'Class' => '3120500', 'Const' => 1, - 'Header' => 'onlyonceerrorhandler.h', + 'Header' => 'formattinginfo.h', 'InLine' => 2, - 'Line' => '50', - 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler10instanceofERKNS0_5ClassE', + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657932' + 'type' => '17168215' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '12653767' => { - 'Class' => '405774', - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE', + '17166924' => { + 'Class' => '3120500', + 'Header' => 'formattinginfo.h', + 'Line' => '68', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo10getDefaultEv', + 'Return' => '3121037', + 'ShortName' => 'getDefault', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '68', + 'Static' => 1 + }, + '17166940' => { + 'Class' => '3120500', + 'Const' => 1, + 'Header' => 'formattinginfo.h', + 'Line' => '74', + 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo13isLeftAlignedEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' - }, - '1' => { - 'name' => 'p1', - 'type' => '4509554' + 'type' => '17168215' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setLogger', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '47', - 'Virt' => 1, - 'VirtPos' => '7' + 'Return' => '174077', + 'ShortName' => 'isLeftAligned', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '102' }, - '12653807' => { - 'Class' => '405774', - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler15activateOptionsERNS0_4PoolE', + '17166970' => { + 'Class' => '3120500', + 'Const' => 1, + 'Header' => 'formattinginfo.h', + 'Line' => '80', + 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo12getMinLengthEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' + 'type' => '17168215' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '51', - 'Virt' => 1, - 'VirtPos' => '5' + 'Return' => '190263', + 'ShortName' => 'getMinLength', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '107' }, - '12653847' => { - 'Class' => '405774', - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '17167000' => { + 'Class' => '3120500', + 'Const' => 1, + 'Header' => 'formattinginfo.h', + 'Line' => '86', + 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo12getMaxLengthEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '263006' + 'type' => '17168215' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '55', - 'Virt' => 1, - 'VirtPos' => '6' + 'Return' => '190263', + 'ShortName' => 'getMaxLength', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '112' }, - '12653892' => { - 'Class' => '405774', + '17167030' => { + 'Class' => '3120500', 'Const' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni', + 'Header' => 'formattinginfo.h', + 'Line' => '94', + 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo6formatEiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657932' + 'type' => '17168215' }, '1' => { - 'name' => 'message', - 'type' => '263006' + 'name' => 'fieldStart', + 'type' => '190271' }, '2' => { - 'name' => 'e', - 'type' => '66067' - }, - '3' => { - 'name' => 'p3', - 'type' => '50231' + 'name' => 'buffer', + 'type' => '210592' } }, - 'Reg' => { - '3' => 'rcx' - }, 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '59', - 'Virt' => 1, - 'VirtPos' => '8' + 'ShortName' => 'format', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '80' }, - '12653942' => { - 'Class' => '405774', - 'Const' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS_3spi12LoggingEventEE', + '17167091' => { + 'Data' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7classes26FormattingInfoRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'FormattingInfoRegistration', + 'Source' => 'formattinginfo.cpp' + }, + '17184143' => { + 'Artificial' => 1, + 'Class' => '17165516', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657932' - }, - '1' => { - 'name' => 'message', - 'type' => '263006' - }, - '2' => { - 'name' => 'e', - 'type' => '66067' - }, - '3' => { - 'name' => 'errorCode', - 'type' => '50231' - }, - '4' => { - 'name' => 'p4', - 'type' => '154261' + 'type' => '17167789' } }, - 'Reg' => { - '4' => 'r8' - }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '69', - 'Virt' => 1, - 'VirtPos' => '10' + 'ShortName' => 'WideLife' }, - '12653997' => { - 'Class' => '405774', - 'Const' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '17184144' => { + 'Artificial' => 1, + 'Class' => '17165516', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657932' - }, - '1' => { - 'name' => 'message', - 'type' => '263006' + 'type' => '17167789' } }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '76', - 'Virt' => 1, - 'VirtPos' => '9' + 'ShortName' => 'WideLife' }, - '12654037' => { - 'Class' => '405774', - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE', + '17184919' => { + 'Artificial' => 1, + 'Class' => '17165516', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEEC2IS5_JEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' + 'type' => '17167789' }, '1' => { - 'name' => 'p1', - 'type' => '1151508' + 'name' => 'arg0', + 'type' => '16789508' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setAppender', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '86', - 'Virt' => 1, - 'VirtPos' => '11' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '2974331' + } + } }, - '12654077' => { - 'Class' => '405774', - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE', + '17184920' => { + 'Artificial' => 1, + 'Class' => '17165516', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEEC1IS5_JEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' + 'type' => '17167789' }, '1' => { - 'name' => 'p1', - 'type' => '1151508' + 'name' => 'arg0', + 'type' => '16789508' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setBackupAppender', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '91', - 'Virt' => 1, - 'VirtPos' => '12' - }, - '12655978' => { - 'Data' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7classes32OnlyOnceErrorHandlerRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'OnlyOnceErrorHandlerRegistration', - 'Source' => 'onlyonceerrorhandler.cpp' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '2974331' + } + } }, - '12662877' => { + '17185767' => { 'Artificial' => 1, - 'Class' => '12654538', + 'Class' => '17164773', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657742' + 'type' => '17167568' } }, 'ShortName' => 'WideLife' }, - '12662878' => { + '17185768' => { 'Artificial' => 1, - 'Class' => '12654538', + 'Class' => '17164773', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657742' + 'type' => '17167568' } }, 'ShortName' => 'WideLife' }, - '12663018' => { + '17185909' => { 'Artificial' => 1, - 'Class' => '12654538', + 'Class' => '17164773', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657742' + 'type' => '17167568' } }, 'ShortName' => 'WideLife' }, - '12663019' => { + '17185910' => { 'Artificial' => 1, - 'Class' => '12654538', + 'Class' => '17164773', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657742' + 'type' => '17167568' } }, 'ShortName' => 'WideLife' }, - '12664642' => { - 'Class' => '405774', + '17194246' => { + 'Class' => '3120500', 'Destructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD0Ev', + 'Header' => 'formattinginfo.h', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' + 'type' => '17167819' } }, - 'ShortName' => 'OnlyOnceErrorHandler', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '45', + 'ShortName' => 'FormattingInfo', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '62', 'Virt' => 1 }, - '12664740' => { - 'Class' => '405774', + '17194344' => { + 'Class' => '3120500', 'Destructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD1Ev', + 'Header' => 'formattinginfo.h', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' + 'type' => '17167819' } }, - 'ShortName' => 'OnlyOnceErrorHandler', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '45', + 'ShortName' => 'FormattingInfo', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '62', 'Virt' => 1 }, - '1266530' => { - 'Class' => '1247491', - 'Constructor' => 1, - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterC2ERSt10shared_ptrINS0_6WriterEEm', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - }, - '1' => { - 'name' => 'out1', - 'type' => '1249980' - }, - '2' => { - 'name' => 'sz1', - 'type' => '50486' - } - }, - 'ShortName' => 'BufferedWriter', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '43' - }, - '1266531' => { - 'Class' => '1247491', - 'Constructor' => 1, - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterC1ERSt10shared_ptrINS0_6WriterEEm', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - }, - '1' => { - 'name' => 'out1', - 'type' => '1249980' - }, - '2' => { - 'name' => 'sz1', - 'type' => '50486' - } - }, - 'ShortName' => 'BufferedWriter', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '43' - }, - '12666570' => { - 'Class' => '405774', + '17194755' => { + 'Class' => '3120500', 'Destructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD2Ev', + 'Header' => 'formattinginfo.h', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' + 'type' => '17167819' } }, - 'ShortName' => 'OnlyOnceErrorHandler', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '45', + 'ShortName' => 'FormattingInfo', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '62', 'Virt' => 1 }, - '12668276' => { - 'Class' => '405774', + '17195206' => { + 'Class' => '3120500', 'Constructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerC1Ev', + 'Header' => 'formattinginfo.h', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoC1Ebii', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' + 'type' => '17167819' + }, + '1' => { + 'name' => 'leftAlign1', + 'type' => '174084' + }, + '2' => { + 'name' => 'minLength1', + 'type' => '190271' + }, + '3' => { + 'name' => 'maxLength1', + 'type' => '190271' } }, - 'ShortName' => 'OnlyOnceErrorHandler', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '40' + 'ShortName' => 'FormattingInfo', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '56' }, - '12671062' => { - 'Class' => '405774', + '17196076' => { + 'Class' => '3120500', 'Constructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerC2Ev', + 'Header' => 'formattinginfo.h', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoC2Ebii', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657904' + 'type' => '17167819' + }, + '2' => { + 'name' => 'leftAlign1', + 'type' => '174084' + }, + '3' => { + 'name' => 'minLength1', + 'type' => '190271' + }, + '4' => { + 'name' => 'maxLength1', + 'type' => '190271' } }, - 'ShortName' => 'OnlyOnceErrorHandler', - 'Source' => 'onlyonceerrorhandler.cpp', - 'SourceLine' => '40' + 'ShortName' => 'FormattingInfo', + 'Source' => 'formattinginfo.cpp', + 'SourceLine' => '56' }, - '12675948' => { + '17198697' => { 'Artificial' => 1, - 'Class' => '12653217', + 'Class' => '3120514', 'Destructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', + 'Header' => 'formattinginfo.h', 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD0Ev', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657961' + 'type' => '17168365' } }, - 'ShortName' => 'ClazzOnlyOnceErrorHandler', + 'ShortName' => 'ClazzFormattingInfo', 'Virt' => 1 }, - '12675949' => { + '17198698' => { 'Artificial' => 1, - 'Class' => '12653217', + 'Class' => '3120514', 'Destructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', + 'Header' => 'formattinginfo.h', 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD1Ev', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657961' + 'type' => '17168365' } }, - 'ShortName' => 'ClazzOnlyOnceErrorHandler', + 'ShortName' => 'ClazzFormattingInfo', 'Virt' => 1 }, - '12676089' => { + '17198842' => { 'Artificial' => 1, - 'Class' => '12653217', + 'Class' => '3120514', 'Destructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', + 'Header' => 'formattinginfo.h', 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD2Ev', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657961' + 'type' => '17168365' } }, - 'ShortName' => 'ClazzOnlyOnceErrorHandler', + 'ShortName' => 'ClazzFormattingInfo', 'Virt' => 1 }, - '12676179' => { + '17198936' => { 'Artificial' => 1, - 'Class' => '12653217', + 'Class' => '3120514', 'Constructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', + 'Header' => 'formattinginfo.h', 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerC2Ev', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657961' + 'type' => '17168365' } }, - 'ShortName' => 'ClazzOnlyOnceErrorHandler' + 'ShortName' => 'ClazzFormattingInfo' }, - '12676180' => { + '17198937' => { 'Artificial' => 1, - 'Class' => '12653217', + 'Class' => '3120514', 'Constructor' => 1, - 'Header' => 'onlyonceerrorhandler.h', + 'Header' => 'formattinginfo.h', 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerC1Ev', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12657961' + 'type' => '17168365' } }, - 'ShortName' => 'ClazzOnlyOnceErrorHandler' + 'ShortName' => 'ClazzFormattingInfo' }, - '1268308' => { - 'Class' => '1247491', - 'Constructor' => 1, - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterC2ERSt10shared_ptrINS0_6WriterEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - }, - '1' => { - 'name' => 'out1', - 'type' => '1249980' - } - }, - 'ShortName' => 'BufferedWriter', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '38' - }, - '1268309' => { - 'Class' => '1247491', - 'Constructor' => 1, - 'Header' => 'bufferedwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterC1ERSt10shared_ptrINS0_6WriterEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250185' - }, - '1' => { - 'name' => 'out1', - 'type' => '1249980' - } - }, - 'ShortName' => 'BufferedWriter', - 'Source' => 'bufferedwriter.cpp', - 'SourceLine' => '38' - }, - '1270767' => { - 'Artificial' => 1, - 'Class' => '1247622', - 'Destructor' => 1, - 'Header' => 'bufferedwriter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250208' - } - }, - 'ShortName' => 'ClazzBufferedWriter', - 'Virt' => 1 - }, - '1270768' => { - 'Artificial' => 1, - 'Class' => '1247622', - 'Destructor' => 1, - 'Header' => 'bufferedwriter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250208' - } - }, - 'ShortName' => 'ClazzBufferedWriter', - 'Virt' => 1 - }, - '1270908' => { - 'Artificial' => 1, - 'Class' => '1247622', - 'Destructor' => 1, - 'Header' => 'bufferedwriter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250208' - } - }, - 'ShortName' => 'ClazzBufferedWriter', - 'Virt' => 1 - }, - '1270998' => { - 'Artificial' => 1, - 'Class' => '1247622', - 'Constructor' => 1, - 'Header' => 'bufferedwriter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250208' - } - }, - 'ShortName' => 'ClazzBufferedWriter' - }, - '1270999' => { - 'Artificial' => 1, - 'Class' => '1247622', - 'Constructor' => 1, - 'Header' => 'bufferedwriter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1250208' - } - }, - 'ShortName' => 'ClazzBufferedWriter' - }, - '12812742' => { - 'Class' => '12812729', - 'Header' => 'system.h', - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers6System11getPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '17530566' => { + 'Class' => '9954559', + 'Header' => 'fulllocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'fulllocationpatternconverter.cpp', + 'SourceLine' => '29', + 'Static' => 1 + }, + '17530582' => { + 'Class' => '9954559', + 'Header' => 'fulllocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'fulllocationpatternconverter.cpp', + 'SourceLine' => '29', + 'Static' => 1 + }, + '17530598' => { + 'Class' => '9954559', + 'Const' => 1, + 'Header' => 'fulllocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter8getClassEv', 'Param' => { '0' => { - 'name' => 'lkey', - 'type' => '263006' + 'name' => 'this', + 'type' => '17542349' } }, - 'Return' => '63706', - 'ShortName' => 'getProperty', - 'Source' => 'system.cpp', - 'SourceLine' => '32', - 'Static' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'fulllocationpatternconverter.cpp', + 'SourceLine' => '29', + 'Virt' => 1, + 'VirtPos' => '2' }, - '12815844' => { - 'Class' => '12815709', + '17530635' => { + 'Class' => '9954559', + 'Const' => 1, + 'Header' => 'fulllocationpatternconverter.h', 'InLine' => 2, - 'Line' => '64', - 'MnglName' => '_ZN7log4cxx20ConfiguratorWatchdog10doOnChangeEv', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12820973' + 'type' => '17542349' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '1', - 'ShortName' => 'doOnChange', - 'Source' => 'optionconverter.cpp', + 'Return' => '195352', + 'ShortName' => 'cast', 'Virt' => 1, - 'VirtPos' => '2' + 'VirtPos' => '4' }, - '12815917' => { - 'Header' => 'object.h', + '17530677' => { + 'Class' => '9954559', + 'Const' => 1, + 'Header' => 'fulllocationpatternconverter.h', 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3spi12ConfiguratorENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'name' => 'this', + 'type' => '17542349' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '12784044', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '2699638' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '12824876' => { - 'Artificial' => 1, - 'Class' => '12815709', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx20ConfiguratorWatchdogD0Ev', + '17530781' => { + 'Class' => '9954559', + 'Const' => 1, + 'Header' => 'fulllocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12820973' + 'type' => '17542349' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ConfiguratorWatchdog', - 'Source' => 'optionconverter.cpp', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'fulllocationpatternconverter.cpp', + 'SourceLine' => '44', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '17533679' => { + 'Data' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7classes40FullLocationPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'FullLocationPatternConverterRegistration', + 'Source' => 'fulllocationpatternconverter.cpp' }, - '12824877' => { + '17546698' => { 'Artificial' => 1, - 'Class' => '12815709', + 'Class' => '9954559', 'Destructor' => 1, + 'Header' => 'fulllocationpatternconverter.h', 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx20ConfiguratorWatchdogD1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12820973' + 'type' => '17542008' } }, - 'ShortName' => 'ConfiguratorWatchdog', - 'Source' => 'optionconverter.cpp', + 'ShortName' => 'FullLocationPatternConverter', 'Virt' => 1 }, - '12825645' => { + '17546699' => { 'Artificial' => 1, - 'Class' => '12815709', + 'Class' => '9954559', 'Destructor' => 1, + 'Header' => 'fulllocationpatternconverter.h', 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx20ConfiguratorWatchdogD2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '12820973' + 'type' => '17542008' } }, - 'ShortName' => 'ConfiguratorWatchdog', - 'Source' => 'optionconverter.cpp', + 'ShortName' => 'FullLocationPatternConverter', 'Virt' => 1 }, - '13042026' => { - 'Class' => '13041906', - 'Const' => 1, - 'Header' => 'outputstream.h', - 'InLine' => 2, - 'Line' => '36', - 'MnglName' => '_ZNK7log4cxx7helpers12OutputStream17ClazzOutputStream7getNameB5cxx11Ev', + '17546968' => { + 'Artificial' => 1, + 'Class' => '9954559', + 'Destructor' => 1, + 'Header' => 'fulllocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043543' + 'type' => '17542008' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '13042092' => { - 'Class' => '1425696', - 'Header' => 'outputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'outputstream.cpp', - 'SourceLine' => '25', - 'Static' => 1 + 'ShortName' => 'FullLocationPatternConverter', + 'Virt' => 1 }, - '13042109' => { - 'Class' => '1425696', - 'Const' => 1, - 'Header' => 'outputstream.h', - 'MnglName' => '_ZNK7log4cxx7helpers12OutputStream8getClassEv', + '17557524' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_28FullLocationPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1444633' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '17541838' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'outputstream.cpp', - 'SourceLine' => '25', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '17469185' + } + } }, - '13042192' => { - 'Class' => '1425696', - 'Const' => 1, - 'Header' => 'outputstream.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers12OutputStream10instanceofERKNS0_5ClassE', + '17557525' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_28FullLocationPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1444633' + 'type' => '6085740' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'arg0', + 'type' => '17541838' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '17469185' + } + } }, - '13042300' => { - 'Class' => '1425696', - 'Header' => 'outputstream.h', - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream5closeERNS0_4PoolE', + '17557952' => { + 'Artificial' => 1, + 'Class' => '17528293', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4977370' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'close', - 'VirtPos' => '5' - }, - '13042340' => { - 'Class' => '1425696', - 'Header' => 'outputstream.h', - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream5flushERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4977370' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'flush', - 'VirtPos' => '6' - }, - '13042380' => { - 'Class' => '1425696', - 'Header' => 'outputstream.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream5writeERNS0_10ByteBufferERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4977370' - }, - '1' => { - 'name' => 'p1', - 'type' => '1340866' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'write', - 'VirtPos' => '7' - }, - '13043243' => { - 'Data' => 1, - 'Line' => '25', - 'MnglName' => '_ZN7log4cxx7classes24OutputStreamRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'OutputStreamRegistration', - 'Source' => 'outputstream.cpp' - }, - '13046734' => { - 'Artificial' => 1, - 'Class' => '13041530', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13043342' + 'type' => '17541562' } }, 'ShortName' => 'WideLife' }, - '13046735' => { + '17557953' => { 'Artificial' => 1, - 'Class' => '13041530', + 'Class' => '17528293', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043342' + 'type' => '17541562' } }, 'ShortName' => 'WideLife' }, - '13046875' => { + '17558095' => { 'Artificial' => 1, - 'Class' => '13041530', + 'Class' => '17528293', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043342' + 'type' => '17541562' } }, 'ShortName' => 'WideLife' }, - '13046876' => { + '17558096' => { 'Artificial' => 1, - 'Class' => '13041530', + 'Class' => '17528293', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043342' + 'type' => '17541562' } }, 'ShortName' => 'WideLife' }, - '13047224' => { - 'Class' => '1425696', - 'Destructor' => 1, - 'Header' => 'outputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13043509' - } - }, - 'Protected' => 1, - 'ShortName' => 'OutputStream', - 'Source' => 'outputstream.cpp', - 'SourceLine' => '31', - 'Virt' => 1 - }, - '13047225' => { - 'Class' => '1425696', - 'Destructor' => 1, - 'Header' => 'outputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13043509' - } - }, - 'Protected' => 1, - 'ShortName' => 'OutputStream', - 'Source' => 'outputstream.cpp', - 'SourceLine' => '31', - 'Virt' => 1 - }, - '13047319' => { - 'Class' => '1425696', - 'Destructor' => 1, - 'Header' => 'outputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13043509' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'OutputStream', - 'Source' => 'outputstream.cpp', - 'SourceLine' => '31', - 'Virt' => 1 - }, - '13047433' => { - 'Class' => '1425696', + '17565342' => { + 'Class' => '9954559', 'Constructor' => 1, - 'Header' => 'outputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamC2Ev', + 'Header' => 'fulllocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043509' + 'type' => '17542008' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'OutputStream', - 'Source' => 'outputstream.cpp', - 'SourceLine' => '27' + 'ShortName' => 'FullLocationPatternConverter', + 'Source' => 'fulllocationpatternconverter.cpp', + 'SourceLine' => '31' }, - '13047434' => { - 'Class' => '1425696', + '17568367' => { + 'Class' => '9954559', 'Constructor' => 1, - 'Header' => 'outputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamC1Ev', + 'Header' => 'fulllocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043509' + 'type' => '17542008' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'OutputStream', - 'Source' => 'outputstream.cpp', - 'SourceLine' => '27' + 'ShortName' => 'FullLocationPatternConverter', + 'Source' => 'fulllocationpatternconverter.cpp', + 'SourceLine' => '31' }, - '13049517' => { + '17573122' => { 'Artificial' => 1, - 'Class' => '13041906', + 'Class' => '9954584', 'Destructor' => 1, - 'Header' => 'outputstream.h', + 'Header' => 'fulllocationpatternconverter.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043532' + 'type' => '17542504' } }, - 'ShortName' => 'ClazzOutputStream', + 'ShortName' => 'ClazzFullLocationPatternConverter', 'Virt' => 1 }, - '13049518' => { + '17573123' => { 'Artificial' => 1, - 'Class' => '13041906', + 'Class' => '9954584', 'Destructor' => 1, - 'Header' => 'outputstream.h', + 'Header' => 'fulllocationpatternconverter.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043532' + 'type' => '17542504' } }, - 'ShortName' => 'ClazzOutputStream', + 'ShortName' => 'ClazzFullLocationPatternConverter', 'Virt' => 1 }, - '13049658' => { + '17573268' => { 'Artificial' => 1, - 'Class' => '13041906', + 'Class' => '9954584', 'Destructor' => 1, - 'Header' => 'outputstream.h', + 'Header' => 'fulllocationpatternconverter.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043532' + 'type' => '17542504' } }, - 'ShortName' => 'ClazzOutputStream', + 'ShortName' => 'ClazzFullLocationPatternConverter', 'Virt' => 1 }, - '13049748' => { + '17573363' => { 'Artificial' => 1, - 'Class' => '13041906', + 'Class' => '9954584', 'Constructor' => 1, - 'Header' => 'outputstream.h', + 'Header' => 'fulllocationpatternconverter.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043532' + 'type' => '17542504' } }, - 'ShortName' => 'ClazzOutputStream' + 'ShortName' => 'ClazzFullLocationPatternConverter' }, - '13049749' => { + '17573364' => { 'Artificial' => 1, - 'Class' => '13041906', + 'Class' => '9954584', 'Constructor' => 1, - 'Header' => 'outputstream.h', + 'Header' => 'fulllocationpatternconverter.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13043532' - } - }, - 'ShortName' => 'ClazzOutputStream' - }, - '13114200' => { - 'Class' => '13114080', - 'Const' => 1, - 'Header' => 'outputstreamwriter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriter7getNameB5cxx11Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117622' + 'type' => '17542504' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzFullLocationPatternConverter' }, - '13114262' => { - 'Class' => '13113931', - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter14getStaticClassEv', - 'Return' => '64678', + '17911609' => { + 'Class' => '16771808', + 'Header' => 'gzcompressaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '28', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '45', 'Static' => 1 }, - '13114279' => { - 'Class' => '13113931', - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter13registerClassEv', - 'Return' => '64684', + '17911625' => { + 'Class' => '16771808', + 'Header' => 'gzcompressaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '28', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '45', 'Static' => 1 }, - '13114296' => { - 'Class' => '13113931', + '17911641' => { + 'Class' => '16771808', 'Const' => 1, - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter8getClassEv', + 'Header' => 'gzcompressaction.h', + 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117577' + 'type' => '17931168' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '28', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '45', 'Virt' => 1, 'VirtPos' => '2' }, - '13114335' => { - 'Class' => '13113931', + '17911678' => { + 'Class' => '16771808', 'Const' => 1, - 'Header' => 'outputstreamwriter.h', + 'Header' => 'gzcompressaction.h', 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter4castERKNS0_5ClassE', + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117577' + 'type' => '17931168' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '13114379' => { - 'Class' => '13113931', + '17911720' => { + 'Class' => '16771808', 'Const' => 1, - 'Header' => 'outputstreamwriter.h', + 'Header' => 'gzcompressaction.h', 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter10instanceofERKNS0_5ClassE', + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117577' + 'type' => '17931168' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '13114529' => { - 'Class' => '13113931', - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter5closeERNS0_4PoolE', + '17911853' => { + 'Class' => '16771808', + 'Const' => 1, + 'Header' => 'gzcompressaction.h', + 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction7executeERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117588' + 'type' => '17931168' }, '1' => { 'name' => 'p', - 'type' => '64643' + 'type' => '210607' } }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '69', + 'Return' => '174077', + 'ShortName' => 'execute', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '57', 'Virt' => 1, 'VirtPos' => '5' }, - '13114569' => { - 'Class' => '13113931', - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter5flushERNS0_4PoolE', + '17914477' => { + 'Data' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7classes28GZCompressActionRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'GZCompressActionRegistration', + 'Source' => 'gzcompressaction.cpp' + }, + '17937210' => { + 'Artificial' => 1, + 'Class' => '17911392', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117588' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '17930633' } }, - 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '74', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'GZCompressActionPrivate', + 'Source' => 'gzcompressaction.cpp', + 'Virt' => 1 }, - '13114609' => { - 'Class' => '13113931', - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', + '17937211' => { + 'Artificial' => 1, + 'Class' => '17911392', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117588' - }, - '1' => { - 'name' => 'str', - 'type' => '263006' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '17930633' } }, - 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '79', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'GZCompressActionPrivate', + 'Source' => 'gzcompressaction.cpp', + 'Virt' => 1 }, - '13114685' => { - 'Class' => '13113931', - 'Const' => 1, - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter18getOutputStreamPtrEv', + '17937456' => { + 'Artificial' => 1, + 'Class' => '17911392', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117577' + 'type' => '17930633' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '4968631', - 'ShortName' => 'getOutputStreamPtr', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '122' - }, - '13116414' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes30OutputStreamWriterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'OutputStreamWriterRegistration', - 'Source' => 'outputstreamwriter.cpp' + 'ShortName' => 'GZCompressActionPrivate', + 'Source' => 'gzcompressaction.cpp', + 'Virt' => 1 }, - '13125462' => { + '17940925' => { 'Artificial' => 1, - 'Class' => '13114827', + 'Class' => '17909222', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117127' + 'type' => '17930522' } }, 'ShortName' => 'WideLife' }, - '13125463' => { + '17940926' => { 'Artificial' => 1, - 'Class' => '13114827', + 'Class' => '17909222', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117127' + 'type' => '17930522' } }, 'ShortName' => 'WideLife' }, - '13125603' => { + '17941069' => { 'Artificial' => 1, - 'Class' => '13114827', + 'Class' => '17909222', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117127' + 'type' => '17930522' } }, 'ShortName' => 'WideLife' }, - '13125604' => { + '17941070' => { 'Artificial' => 1, - 'Class' => '13114827', + 'Class' => '17909222', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117127' + 'type' => '17930522' } }, 'ShortName' => 'WideLife' }, - '13131173' => { - 'Class' => '13113931', + '17948212' => { + 'Class' => '16771808', 'Destructor' => 1, - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterD0Ev', + 'Header' => 'gzcompressaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117588' + 'type' => '16788106' } }, - 'ShortName' => 'OutputStreamWriter', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '65', + 'ShortName' => 'GZCompressAction', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '55', 'Virt' => 1 }, - '13131174' => { - 'Class' => '13113931', + '17948311' => { + 'Class' => '16771808', 'Destructor' => 1, - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterD1Ev', + 'Header' => 'gzcompressaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117588' + 'type' => '16788106' } }, - 'ShortName' => 'OutputStreamWriter', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '65', + 'ShortName' => 'GZCompressAction', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '55', 'Virt' => 1 }, - '13131267' => { - 'Class' => '13113931', + '17948446' => { + 'Class' => '16771808', 'Destructor' => 1, - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterD2Ev', + 'Header' => 'gzcompressaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117588' + 'type' => '16788106' } }, - 'ShortName' => 'OutputStreamWriter', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '65', + 'ShortName' => 'GZCompressAction', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '55', 'Virt' => 1 }, - '13132961' => { - 'Class' => '13113931', - 'Constructor' => 1, - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterC2ERSt10shared_ptrINS0_12OutputStreamEERS2_INS0_14CharsetEncoderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13117588' - }, - '1' => { - 'name' => 'out1', - 'type' => '13117495' - }, - '2' => { - 'name' => 'enc1', - 'type' => '1931108' - } - }, - 'ShortName' => 'OutputStreamWriter', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '50' - }, - '13132962' => { - 'Class' => '13113931', + '17951566' => { + 'Class' => '16771808', 'Constructor' => 1, - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterC1ERSt10shared_ptrINS0_12OutputStreamEERS2_INS0_14CharsetEncoderEE', + 'Header' => 'gzcompressaction.h', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionC2ERKNS_4FileES4_b', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117588' - }, - '1' => { - 'name' => 'out1', - 'type' => '13117495' + 'type' => '16788106' }, '2' => { - 'name' => 'enc1', - 'type' => '1931108' - } - }, - 'ShortName' => 'OutputStreamWriter', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '50' - }, - '13138101' => { - 'Class' => '13113931', - 'Constructor' => 1, - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterC2ERSt10shared_ptrINS0_12OutputStreamEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13117588' + 'name' => 'src', + 'type' => '575822' }, - '1' => { - 'name' => 'out1', - 'type' => '13117495' - } - }, - 'ShortName' => 'OutputStreamWriter', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '41' - }, - '13138102' => { - 'Class' => '13113931', - 'Constructor' => 1, - 'Header' => 'outputstreamwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterC1ERSt10shared_ptrINS0_12OutputStreamEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13117588' + '3' => { + 'name' => 'dest', + 'type' => '575822' }, - '1' => { - 'name' => 'out1', - 'type' => '13117495' + '4' => { + 'name' => 'del', + 'type' => '174077' } }, - 'ShortName' => 'OutputStreamWriter', - 'Source' => 'outputstreamwriter.cpp', - 'SourceLine' => '41' + 'ShortName' => 'GZCompressAction', + 'Source' => 'gzcompressaction.cpp', + 'SourceLine' => '47' }, - '13143845' => { + '17956739' => { 'Artificial' => 1, - 'Class' => '13114080', + 'Class' => '16771817', 'Destructor' => 1, - 'Header' => 'outputstreamwriter.h', + 'Header' => 'gzcompressaction.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD0Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117611' + 'type' => '17931252' } }, - 'ShortName' => 'ClazzOutputStreamWriter', + 'ShortName' => 'ClazzGZCompressAction', 'Virt' => 1 }, - '13143846' => { + '17956740' => { 'Artificial' => 1, - 'Class' => '13114080', + 'Class' => '16771817', 'Destructor' => 1, - 'Header' => 'outputstreamwriter.h', + 'Header' => 'gzcompressaction.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD1Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117611' + 'type' => '17931252' } }, - 'ShortName' => 'ClazzOutputStreamWriter', + 'ShortName' => 'ClazzGZCompressAction', 'Virt' => 1 }, - '13143986' => { + '17956886' => { 'Artificial' => 1, - 'Class' => '13114080', + 'Class' => '16771817', 'Destructor' => 1, - 'Header' => 'outputstreamwriter.h', + 'Header' => 'gzcompressaction.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD2Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117611' + 'type' => '17931252' } }, - 'ShortName' => 'ClazzOutputStreamWriter', + 'ShortName' => 'ClazzGZCompressAction', 'Virt' => 1 }, - '13144076' => { + '17956981' => { 'Artificial' => 1, - 'Class' => '13114080', + 'Class' => '16771817', 'Constructor' => 1, - 'Header' => 'outputstreamwriter.h', + 'Header' => 'gzcompressaction.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterC2Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117611' + 'type' => '17931252' } }, - 'ShortName' => 'ClazzOutputStreamWriter' + 'ShortName' => 'ClazzGZCompressAction' }, - '13144077' => { + '17956982' => { 'Artificial' => 1, - 'Class' => '13114080', + 'Class' => '16771817', 'Constructor' => 1, - 'Header' => 'outputstreamwriter.h', + 'Header' => 'gzcompressaction.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterC1Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117611' + 'type' => '17931252' } }, - 'ShortName' => 'ClazzOutputStreamWriter' + 'ShortName' => 'ClazzGZCompressAction' }, - '13214673' => { - 'Class' => '13214552', - 'Const' => 1, - 'Header' => 'patternconverter.h', - 'InLine' => 2, - 'Line' => '63', - 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter21ClazzPatternConverter7getNameB5cxx11Ev', + '18124663' => { + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7hexdumpB5cxx11EPKvjNS_12HexdumpFlagsE', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '13216002' + 'name' => 'bytes', + 'type' => '195352' + }, + '1' => { + 'name' => 'len', + 'type' => '194908' + }, + '2' => { + 'name' => 'flags', + 'type' => '18124620' + } + }, + 'Return' => '209661', + 'ShortName' => 'hexdump', + 'Source' => 'hexdump.cpp' + }, + '18600500' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '227', + 'MnglName' => '_ZN7log4cxx5Level8getDebugEv', + 'Return' => '567044', + 'ShortName' => 'getDebug', + 'Source' => 'level.cpp', + 'SourceLine' => '63', + 'Static' => 1 + }, + '18600534' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '189', + 'MnglName' => '_ZN7log4cxx5Level9toLevelLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrIS0_E', + 'Param' => { + '0' => { + 'name' => 'sArg', + 'type' => '210597' + }, + '1' => { + 'name' => 'defaultLevel', + 'type' => '575807' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '13214935' => { - 'Class' => '2270651', - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '26', + 'Return' => '567044', + 'ShortName' => 'toLevelLS', + 'Source' => 'level.cpp', + 'SourceLine' => '215', 'Static' => 1 }, - '13214952' => { - 'Class' => '2270651', + '18601715' => { + 'Class' => '565598', 'Const' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter8getClassEv', + 'Header' => 'loggerrepository.h', + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2306546' + 'type' => '24285481' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '26', + 'Source' => 'loader.cpp', + 'SourceLine' => '48', 'Virt' => 1, 'VirtPos' => '2' }, - '13215079' => { - 'Class' => '2270651', - 'Const' => 1, - 'Header' => 'patternconverter.h', - 'Line' => '74', - 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', + '18601752' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '48', + 'Static' => 1 + }, + '18601802' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'InLine' => 2, + 'Line' => '138', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository23fireRemoveAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2306540' + 'type' => '18618598' }, '1' => { - 'name' => 'p1', - 'type' => '652213' + 'name' => 'logger', + 'type' => '576768' }, '2' => { - 'name' => 'p2', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'name' => 'appender', + 'type' => '576773' } }, - 'PureVirt' => 1, 'Return' => '1', - 'ShortName' => 'format', - 'VirtPos' => '5' + 'ShortName' => 'fireRemoveAppenderEvent', + 'Virt' => 1, + 'VirtPos' => '19' }, - '13215130' => { - 'Class' => '2270651', - 'Const' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter7getNameB5cxx11Ev', + '18601846' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'InLine' => 2, + 'Line' => '136', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository20fireAddAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2306546' + 'type' => '18618598' + }, + '1' => { + 'name' => 'logger', + 'type' => '576768' + }, + '2' => { + 'name' => 'appender', + 'type' => '576773' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '45' + 'Return' => '1', + 'ShortName' => 'fireAddAppenderEvent', + 'Virt' => 1, + 'VirtPos' => '18' }, - '13215161' => { - 'Class' => '2270651', - 'Const' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE', + '18602373' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1677', + 'MnglName' => '_ZN7log4cxx6Logger15updateThresholdEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2306546' - }, - '1' => { - 'name' => 'p1', - 'type' => '652213' + 'type' => '10983089' } }, - 'Reg' => { - '1' => 'rdx' - }, - 'Return' => '63706', - 'ShortName' => 'getStyleClass', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '50', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '13215246' => { - 'Data' => 1, - 'Line' => '26', - 'MnglName' => '_ZN7log4cxx7classes28PatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'PatternConverterRegistration', - 'Source' => 'patternconverter.cpp' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'updateThreshold', + 'Source' => 'logger.cpp', + 'SourceLine' => '565' }, - '13225788' => { - 'Artificial' => 1, - 'Class' => '13213314', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEED2Ev', + '18602401' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '694', + 'MnglName' => '_ZNK7log4cxx6Logger9getParentEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215701' + 'type' => '25464604' } }, - 'ShortName' => 'WideLife' + 'Return' => '3121982', + 'ShortName' => 'getParent', + 'Source' => 'logger.cpp', + 'SourceLine' => '298' }, - '13225789' => { - 'Artificial' => 1, - 'Class' => '13213314', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEED0Ev', + '18602433' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1673', + 'MnglName' => '_ZN7log4cxx6Logger9setParentESt10shared_ptrIS0_E', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215701' + 'type' => '10983089' + }, + '1' => { + 'name' => 'parentLogger', + 'type' => '3121982' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'setParent', + 'Source' => 'logger.cpp', + 'SourceLine' => '548' }, - '13225929' => { - 'Artificial' => 1, - 'Class' => '13213314', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEEC2Ev', + '18602466' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '106', + 'MnglName' => '_ZN7log4cxx6Logger20closeNestedAppendersEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215701' + 'type' => '10983089' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'closeNestedAppenders', + 'Source' => 'logger.cpp', + 'SourceLine' => '151' }, - '13225930' => { - 'Artificial' => 1, - 'Class' => '13213314', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEEC1Ev', + '18602493' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1658', + 'MnglName' => '_ZN7log4cxx6Logger13setAdditivityEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215701' + 'type' => '10983089' + }, + '1' => { + 'name' => 'additive1', + 'type' => '174077' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setAdditivity', + 'Source' => 'logger.cpp', + 'SourceLine' => '538' }, - '13231058' => { - 'Class' => '2270651', - 'Destructor' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterD0Ev', + '18602526' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1694', + 'MnglName' => '_ZN7log4cxx6Logger17setResourceBundleERKSt10shared_ptrINS_7helpers14ResourceBundleEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215911' + 'type' => '10983089' + }, + '1' => { + 'name' => 'bundle', + 'type' => '18618532' } }, - 'Protected' => 1, - 'ShortName' => 'PatternConverter', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '41', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setResourceBundle', + 'Source' => 'logger.cpp', + 'SourceLine' => '586' }, - '13231156' => { - 'Class' => '2270651', - 'Destructor' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterD1Ev', + '18602559' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1669', + 'MnglName' => '_ZN7log4cxx6Logger12setHierarchyEPNS_3spi16LoggerRepositoryE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215911' + 'type' => '10983089' + }, + '1' => { + 'name' => 'repository1', + 'type' => '10588285' } }, 'Protected' => 1, - 'ShortName' => 'PatternConverter', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '41', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setHierarchy', + 'Source' => 'logger.cpp', + 'SourceLine' => '543' }, - '13231483' => { - 'Class' => '2270651', - 'Destructor' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterD2Ev', + '18602624' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1665', + 'MnglName' => '_ZN7log4cxx6Logger15removeHierarchyEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215911' + 'type' => '10983089' } }, 'Protected' => 1, - 'ShortName' => 'PatternConverter', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '41', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'removeHierarchy', + 'Source' => 'logger.cpp', + 'SourceLine' => '533' + }, + '18603084' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '73', + 'Static' => 1 }, - '13231889' => { - 'Class' => '2270651', - 'Constructor' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '18603101' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '73', + 'Static' => 1 + }, + '18603118' => { + 'Class' => '11930657', + 'Const' => 1, + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZNK7log4cxx9Hierarchy8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18617107' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '73', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '18603155' => { + 'Class' => '11930657', + 'Const' => 1, + 'Header' => 'hierarchy.h', + 'InLine' => 2, + 'Line' => '62', + 'MnglName' => '_ZNK7log4cxx9Hierarchy4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215911' + 'type' => '18617107' }, '1' => { - 'name' => 'name', - 'type' => '263006' - }, - '2' => { - 'name' => 'style', - 'type' => '263006' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'ShortName' => 'PatternConverter', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '34' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '13235154' => { - 'Class' => '2270651', - 'Constructor' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '18603197' => { + 'Class' => '11930657', + 'Const' => 1, + 'Header' => 'hierarchy.h', + 'InLine' => 2, + 'Line' => '64', + 'MnglName' => '_ZNK7log4cxx9Hierarchy10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215911' - }, - '2' => { - 'name' => 'name', - 'type' => '263006' + 'type' => '18617107' }, - '3' => { - 'name' => 'style', - 'type' => '263006' + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'ShortName' => 'PatternConverter', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '34' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '13238486' => { - 'Class' => '2270651', - 'Constructor' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterC1ESt10unique_ptrINS1_23PatternConverterPrivateESt14default_deleteIS3_EE', + '18603275' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx9Hierarchy6createEv', + 'Return' => '18605045', + 'ShortName' => 'create', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '475', + 'Static' => 1 + }, + '18603335' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy25addHierarchyEventListenerERKSt10shared_ptrINS_3spi22HierarchyEventListenerEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215911' + 'type' => '18615999' }, '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '2391088' + 'name' => 'listener', + 'type' => '18617122' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'PatternConverter', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '28' + 'Return' => '1', + 'ShortName' => 'addHierarchyEventListener', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '98', + 'Virt' => 1, + 'VirtPos' => '5' }, - '13239623' => { - 'Class' => '2270651', - 'Constructor' => 1, - 'Header' => 'patternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterC2ESt10unique_ptrINS1_23PatternConverterPrivateESt14default_deleteIS3_EE', + '18603374' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy28removeHierarchyEventListenerERKSt10shared_ptrINS_3spi22HierarchyEventListenerEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215911' + 'type' => '18615999' }, - '2' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '2391088' + '1' => { + 'name' => 'listener', + 'type' => '18617122' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'PatternConverter', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '28' + 'Return' => '1', + 'ShortName' => 'removeHierarchyEventListener', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '112' }, - '13245368' => { - 'Artificial' => 1, - 'Class' => '13214552', - 'Destructor' => 1, - 'Header' => 'patternconverter.h', - 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD0Ev', + '18603406' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy18ensureIsConfiguredESt8functionIFvvEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215991' + 'type' => '18615999' + }, + '1' => { + 'name' => 'configurator', + 'type' => '2331741' } }, - 'ShortName' => 'ClazzPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'ensureIsConfigured', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '310', + 'Virt' => 1, + 'VirtPos' => '6' }, - '13245369' => { - 'Artificial' => 1, - 'Class' => '13214552', - 'Destructor' => 1, - 'Header' => 'patternconverter.h', - 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD1Ev', + '18603446' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy5clearEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215991' + 'type' => '18615999' } }, - 'ShortName' => 'ClazzPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'clear', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '122' }, - '13245509' => { - 'Artificial' => 1, - 'Class' => '13214552', - 'Destructor' => 1, - 'Header' => 'patternconverter.h', - 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD2Ev', + '18603473' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy21emitNoAppenderWarningEPKNS_6LoggerE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215991' + 'type' => '18615999' + }, + '1' => { + 'name' => 'logger', + 'type' => '576768' } }, - 'ShortName' => 'ClazzPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'emitNoAppenderWarning', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '128', + 'Virt' => 1, + 'VirtPos' => '10' }, - '13245599' => { - 'Artificial' => 1, - 'Class' => '13214552', - 'Constructor' => 1, - 'Header' => 'patternconverter.h', - 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterC2Ev', + '18603512' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy6existsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215991' + 'type' => '18615999' + }, + '1' => { + 'name' => 'name', + 'type' => '210597' } }, - 'ShortName' => 'ClazzPatternConverter' + 'Return' => '3121982', + 'ShortName' => 'exists', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '147', + 'Virt' => 1, + 'VirtPos' => '15' }, - '13245600' => { - 'Artificial' => 1, - 'Class' => '13214552', - 'Constructor' => 1, - 'Header' => 'patternconverter.h', - 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterC1Ev', + '18603554' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy12setThresholdERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215991' + 'type' => '18615999' + }, + '1' => { + 'name' => 'levelStr', + 'type' => '210597' } }, - 'ShortName' => 'ClazzPatternConverter' + 'Return' => '1', + 'ShortName' => 'setThreshold', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '172', + 'Virt' => 1, + 'VirtPos' => '9' }, - '13380137' => { - 'Class' => '13380086', - 'Header' => 'patternparser.h', - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParser16extractConverterEcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRS7_SA_', + '18603593' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy12setThresholdERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { - 'name' => 'lastChar', - 'type' => '407306' + 'name' => 'this', + 'type' => '18615999' }, '1' => { - 'name' => 'pattern', - 'type' => '263006' - }, - '2' => { - 'name' => 'i', - 'type' => '281' - }, - '3' => { - 'name' => 'convBuf', - 'type' => '409210' - }, - '4' => { - 'name' => 'currentLiteral', - 'type' => '409210' + 'name' => 'l', + 'type' => '575807' } }, - 'Private' => 1, - 'Return' => '50486', - 'ShortName' => 'extractConverter', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '58', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'setThreshold', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '163', + 'Virt' => 1, + 'VirtPos' => '8' }, - '13380183' => { - 'Class' => '13380086', - 'Header' => 'patternparser.h', - 'Line' => '99', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParser14extractOptionsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRSt6vectorIS7_SaIS7_EE', + '18603632' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy20fireAddAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', 'Param' => { '0' => { - 'name' => 'pattern', - 'type' => '263006' + 'name' => 'this', + 'type' => '18615999' }, '1' => { - 'name' => 'i', - 'type' => '281' + 'name' => 'logger', + 'type' => '576768' }, '2' => { - 'name' => 'options', - 'type' => '2273854' + 'name' => 'appender', + 'type' => '576773' } }, - 'Private' => 1, - 'Return' => '50486', - 'ShortName' => 'extractOptions', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '95', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'fireAddAppenderEvent', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '198', + 'Virt' => 1, + 'VirtPos' => '18' }, - '13380219' => { - 'Class' => '13380086', - 'Header' => 'patternparser.h', - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParser5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERSt6vectorISt10shared_ptrINS0_16PatternConverterEESaISD_EERSA_ISB_INS0_14FormattingInfoEESaISI_EERKSt3mapIS7_St8functionIFSD_RKSA_IS7_SaIS7_EEEESt4lessIS7_ESaISt4pairIS8_ST_EEE', + '18603676' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy23fireRemoveAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', 'Param' => { '0' => { - 'name' => 'pattern', - 'type' => '263006' + 'name' => 'this', + 'type' => '18615999' }, '1' => { - 'name' => 'patternConverters', - 'type' => '6297156' + 'name' => 'logger', + 'type' => '576768' }, '2' => { - 'name' => 'formattingInfos', - 'type' => '6297162' - }, - '3' => { - 'name' => 'rules', - 'type' => '13383516' + 'name' => 'appender', + 'type' => '576773' } }, 'Return' => '1', - 'ShortName' => 'parse', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '115', - 'Static' => 1 + 'ShortName' => 'fireRemoveAppenderEvent', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '217', + 'Virt' => 1, + 'VirtPos' => '19' }, - '13380257' => { - 'Class' => '13380086', - 'Header' => 'patternparser.h', - 'Line' => '128', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParser15createConverterERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RKSt3mapIS7_St8functionIFSt10shared_ptrINS0_16PatternConverterEERKSt6vectorIS7_SaIS7_EEEESt4lessIS7_ESaISt4pairIS8_SM_EEERSI_', + '18603720' => { + 'Class' => '11930657', + 'Const' => 1, + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZNK7log4cxx9Hierarchy12getThresholdEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18617107' + } + }, + 'Return' => '567044', + 'ShortName' => 'getThreshold', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '235', + 'Virt' => 1, + 'VirtPos' => '11' + }, + '18603757' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'converterId', - 'type' => '263006' + 'name' => 'this', + 'type' => '18615999' }, '1' => { - 'name' => 'currentLiteral', - 'type' => '409210' - }, - '2' => { - 'name' => 'rules', - 'type' => '13383516' - }, - '3' => { - 'name' => 'options', - 'type' => '2273854' + 'name' => 'name', + 'type' => '210597' } }, - 'Private' => 1, - 'Return' => '2271807', - 'ShortName' => 'createConverter', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '307', - 'Static' => 1 + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '240', + 'Virt' => 1, + 'VirtPos' => '12' }, - '13380298' => { - 'Class' => '13380086', - 'Header' => 'patternparser.h', - 'Line' => '147', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParser17finalizeConverterEcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRS7_RKSt10shared_ptrINS0_14FormattingInfoEERKSt3mapIS7_St8functionIFSB_INS0_16PatternConverterEERKSt6vectorIS7_SaIS7_EEEESt4lessIS7_ESaISt4pairIS8_SQ_EEERSK_ISJ_SaISJ_EERSK_ISD_SaISD_EE', + '18603799' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', 'Param' => { '0' => { - 'name' => 'c', - 'type' => '407306' + 'name' => 'this', + 'type' => '18615999' }, '1' => { - 'name' => 'pattern', - 'type' => '263006' + 'name' => 'name', + 'type' => '210597' }, '2' => { - 'name' => 'i', - 'type' => '50486' - }, - '3' => { - 'name' => 'currentLiteral', - 'type' => '409210' - }, - '4' => { - 'name' => 'formattingInfo', - 'type' => '13383522' - }, - '5' => { - 'name' => 'rules', - 'type' => '13383516' - }, - '6' => { - 'name' => 'patternConverters', - 'offset' => '0', - 'type' => '6297156' - }, - '7' => { - 'name' => 'formattingInfos', - 'offset' => '8', - 'type' => '6297162' + 'name' => 'factory', + 'type' => '3132696' } }, - 'Private' => 1, - 'Return' => '50486', - 'ShortName' => 'finalizeConverter', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '334', - 'Static' => 1 + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '246', + 'Virt' => 1, + 'VirtPos' => '13' }, - '13380359' => { - 'Class' => '13380086', - 'Header' => 'patternparser.h', - 'Line' => '154', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParser24isUnicodeIdentifierStartEc', + '18603846' => { + 'Class' => '11930657', + 'Const' => 1, + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZNK7log4cxx9Hierarchy17getCurrentLoggersEv', 'Param' => { '0' => { - 'name' => 'ch', - 'type' => '407306' + 'name' => 'this', + 'type' => '18617107' } }, - 'Private' => 1, - 'Return' => '50284', - 'ShortName' => 'isUnicodeIdentifierStart', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '37', - 'Static' => 1 + 'Return' => '3121994', + 'ShortName' => 'getCurrentLoggers', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '280', + 'Virt' => 1, + 'VirtPos' => '17' }, - '13380385' => { - 'Class' => '13380086', - 'Header' => 'patternparser.h', - 'Line' => '155', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParser23isUnicodeIdentifierPartEc', + '18603885' => { + 'Class' => '11930657', + 'Const' => 1, + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZNK7log4cxx9Hierarchy13getRootLoggerEv', 'Param' => { '0' => { - 'name' => 'ch', - 'type' => '407306' + 'name' => 'this', + 'type' => '18617107' } }, - 'Private' => 1, - 'Return' => '50284', - 'ShortName' => 'isUnicodeIdentifierPart', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '48', - 'Static' => 1 + 'Return' => '3121982', + 'ShortName' => 'getRootLogger', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '293', + 'Virt' => 1, + 'VirtPos' => '14' }, - '13381075' => { - 'Class' => '13380951', + '18603924' => { + 'Class' => '11930657', 'Const' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 2, - 'Line' => '451', - 'MnglName' => '_ZNK7log4cxx13PatternLayout18ClazzPatternLayout7getNameB5cxx11Ev', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZNK7log4cxx9Hierarchy10isDisabledEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387857' + 'type' => '18617107' + }, + '1' => { + 'name' => 'level', + 'type' => '190263' } }, - 'Return' => '63706', - 'ShortName' => 'getName', + 'Return' => '174077', + 'ShortName' => 'isDisabled', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '305', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '7' }, - '13381116' => { - 'Class' => '13380951', - 'Const' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 2, - 'Line' => '451', - 'MnglName' => '_ZNK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv', + '18603968' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy18resetConfigurationEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387857' + 'type' => '18615999' } }, - 'Return' => '1153221', - 'ShortName' => 'newInstance', + 'Return' => '1', + 'ShortName' => 'resetConfiguration', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '320', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '20' }, - '13381157' => { - 'Artificial' => 1, - 'Class' => '13380951', - 'Header' => 'patternlayout.h', - 'InLine' => 2, - 'Line' => '451', - 'MnglName' => '_ZTch0_h0_NK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv', + '18604003' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy8shutdownEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387857' + 'type' => '18615999' } }, - 'Return' => '1153221', - 'ShortName' => '_ZTch0_h0_NK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv' + 'Return' => '1', + 'ShortName' => 'shutdown', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '348', + 'Virt' => 1, + 'VirtPos' => '16' }, - '13381245' => { - 'Class' => '1149933', - 'Const' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZNK7log4cxx13PatternLayout8getClassEv', + '18604038' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy12isConfiguredEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387835' + 'type' => '18615999' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '94', + 'Return' => '174077', + 'ShortName' => 'isConfigured', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '469', 'Virt' => 1, - 'VirtPos' => '2' - }, - '13381285' => { - 'Class' => '1149933', - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayout14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '94', - 'Static' => 1 - }, - '13381302' => { - 'Class' => '1149933', - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayout13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '94', - 'Static' => 1 + 'VirtPos' => '21' }, - '13381319' => { - 'Class' => '1149933', - 'Const' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 2, - 'Line' => '452', - 'MnglName' => '_ZNK7log4cxx13PatternLayout4castERKNS_7helpers5ClassE', + '18604077' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy13setConfiguredEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387835' + 'type' => '18615999' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'newValue', + 'type' => '174077' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '1', + 'ShortName' => 'setConfigured', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '462', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '22' }, - '13381365' => { - 'Class' => '1149933', - 'Const' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 2, - 'Line' => '455', - 'MnglName' => '_ZNK7log4cxx13PatternLayout10instanceofERKNS_7helpers5ClassE', + '18604117' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'Line' => '227', + 'MnglName' => '_ZN7log4cxx9Hierarchy14updateChildrenEPKNS_6LoggerE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387835' + 'type' => '18615999' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'parent', + 'type' => '576768' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '1', + 'ShortName' => 'updateChildren', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '447' }, - '13381533' => { - 'Class' => '1149933', - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayout20setConversionPatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '18604150' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy14clearAppendersEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' - }, - '1' => { - 'name' => 'pattern', - 'type' => '263006' + 'type' => '18615999' } }, 'Return' => '1', - 'ShortName' => 'setConversionPattern', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '114' + 'ShortName' => 'clearAppenders', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '481' }, - '13381565' => { - 'Class' => '1149933', - 'Const' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZNK7log4cxx13PatternLayout20getConversionPatternB5cxx11Ev', + '18604211' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'Line' => '245', + 'MnglName' => '_ZN7log4cxx9Hierarchy12removeLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387835' + 'type' => '18615999' + }, + '1' => { + 'name' => 'name', + 'type' => '210597' + }, + '2' => { + 'name' => 'ifNotUsed', + 'type' => '174077' } }, - 'Return' => '63706', - 'ShortName' => 'getConversionPattern', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '273' + 'Return' => '174077', + 'ShortName' => 'removeLogger', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '491' }, - '13381597' => { - 'Class' => '1149933', - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayout15activateOptionsERNS_7helpers4PoolE', + '18604253' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy20setThresholdInternalERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' + 'type' => '18615999' }, '1' => { - 'name' => 'p1', - 'type' => '64643' + 'name' => 'l', + 'type' => '575807' } }, - 'Reg' => { - '1' => 'rsi' - }, + 'Private' => 1, 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '177', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'setThresholdInternal', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '187' }, - '13381638' => { - 'Class' => '1149933', - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + '18604284' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy16shutdownInternalEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' + 'type' => '18615999' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'shutdownInternal', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '355' + }, + '18604311' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy13updateParentsERKSt10shared_ptrINS_6LoggerEES5_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615999' }, '1' => { - 'name' => 'option', - 'type' => '263006' + 'name' => 'logger', + 'type' => '11940831' }, '2' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'root', + 'type' => '11940831' } }, + 'Private' => 1, 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '141', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'updateParents', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '382' }, - '13381684' => { - 'Class' => '1149933', - 'Const' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 2, - 'Line' => '520', - 'MnglName' => '_ZNK7log4cxx13PatternLayout16ignoresThrowableEv', + '18604348' => { + 'Class' => '11930657', + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9Hierarchy14updateChildrenERSt6vectorISt10shared_ptrINS_6LoggerEESaIS4_EERKS4_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387835' + 'type' => '18615999' + }, + '1' => { + 'name' => 'pn', + 'type' => '18617152' + }, + '2' => { + 'name' => 'logger', + 'type' => '11940831' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'ignoresThrowable', - 'Virt' => 1, - 'VirtPos' => '11' + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'updateChildren', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '428' }, - '13381725' => { - 'Class' => '1149933', - 'Const' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZNK7log4cxx13PatternLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '18604513' => { + 'Data' => 1, + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7classes21HierarchyRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'HierarchyRegistration', + 'Source' => 'hierarchy.cpp' + }, + '18618537' => { + 'Class' => '18601523', + 'Constructor' => 1, + 'Header' => 'rootlogger.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx3spi10RootLoggerC1ERNS_7helpers4PoolESt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387835' + 'type' => '18615612' }, '1' => { - 'name' => 'output', - 'type' => '409210' + 'name' => 'pool', + 'type' => '210607' }, '2' => { - 'name' => 'event', - 'type' => '154261' - }, - '3' => { - 'name' => 'pool', - 'type' => '64643' + 'name' => 'level1', + 'type' => '567056' } }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '121', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'RootLogger', + 'Source' => 'rootlogger.cpp', + 'SourceLine' => '27' }, - '13381776' => { - 'Class' => '1149933', - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayout19getFormatSpecifiersB5cxx11Ev', + '18627370' => { + 'Artificial' => 1, + 'Class' => '10975114', + 'Constructor' => 1, + 'Header' => 'defaultloggerfactory.h', + 'InLine' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' + 'type' => '10983550' } }, - 'Protected' => 1, - 'Return' => '3708324', - 'ShortName' => 'getFormatSpecifiers', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '217', - 'Virt' => 1, - 'VirtPos' => '12' + 'ShortName' => 'DefaultLoggerFactory' }, - '13381816' => { - 'Class' => '1149933', - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayout32createColorStartPatternConverterERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EE', + '18627371' => { + 'Artificial' => 1, + 'Class' => '10975114', + 'Constructor' => 1, + 'Header' => 'defaultloggerfactory.h', + 'InLine' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' - }, - '1' => { - 'name' => 'options', - 'type' => '2273842' + 'type' => '10983550' } }, - 'Private' => 1, - 'Return' => '2271807', - 'ShortName' => 'createColorStartPatternConverter', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '278' + 'ShortName' => 'DefaultLoggerFactory' }, - '13381919' => { - 'Data' => 1, - 'Line' => '94', - 'MnglName' => '_ZN7log4cxx7classes25PatternLayoutRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'PatternLayoutRegistration', - 'Source' => 'patternlayout.cpp' + '18627448' => { + 'Artificial' => 1, + 'Class' => '565893', + 'Constructor' => 1, + 'Header' => 'loggerfactory.h', + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10999170' + } + }, + 'ShortName' => 'LoggerFactory' }, - '1338452' => { - 'Class' => '1338352', - 'Header' => 'bytebuffer.h', - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer5clearEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1502730' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '1', - 'ShortName' => 'clear', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '45' - }, - '1338479' => { - 'Class' => '1338352', - 'Header' => 'bytebuffer.h', - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer4flipEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1502730' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '1', - 'ShortName' => 'flip', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '51' - }, - '1338506' => { - 'Class' => '1338352', - 'Header' => 'bytebuffer.h', - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer4dataEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1502730' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '51958', - 'ShortName' => 'data', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '91' - }, - '1338537' => { - 'Class' => '1338352', - 'Const' => 1, - 'Header' => 'bytebuffer.h', - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer4dataEv', + '18627449' => { + 'Artificial' => 1, + 'Class' => '565893', + 'Constructor' => 1, + 'Header' => 'loggerfactory.h', + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10999170' + } + }, + 'ShortName' => 'LoggerFactory' + }, + '18714778' => { + 'Artificial' => 1, + 'Class' => '18599315', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614962' + } + }, + 'ShortName' => 'WideLife' + }, + '18714779' => { + 'Artificial' => 1, + 'Class' => '18599315', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614962' + } + }, + 'ShortName' => 'WideLife' + }, + '18715680' => { + 'Artificial' => 1, + 'Class' => '18599315', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEEC2IS2_INS_20DefaultLoggerFactoryEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614962' + }, + '1' => { + 'name' => 'arg0', + 'type' => '18615057' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '18473640' + } + } + }, + '18715681' => { + 'Artificial' => 1, + 'Class' => '18599315', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEEC1IS2_INS_20DefaultLoggerFactoryEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614962' + }, + '1' => { + 'name' => 'arg0', + 'type' => '18615057' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '18473640' + } + } + }, + '18728010' => { + 'Artificial' => 1, + 'Class' => '18598551', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614469' + } + }, + 'ShortName' => 'WideLife' + }, + '18728011' => { + 'Artificial' => 1, + 'Class' => '18598551', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614469' + } + }, + 'ShortName' => 'WideLife' + }, + '18728153' => { + 'Artificial' => 1, + 'Class' => '18598551', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614469' + } + }, + 'ShortName' => 'WideLife' + }, + '18728154' => { + 'Artificial' => 1, + 'Class' => '18598551', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614469' + } + }, + 'ShortName' => 'WideLife' + }, + '18853055' => { + 'Class' => '11930657', + 'Destructor' => 1, + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9HierarchyD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615999' + } + }, + 'ShortName' => 'Hierarchy', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '80', + 'Virt' => 1 + }, + '18853154' => { + 'Class' => '11930657', + 'Destructor' => 1, + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9HierarchyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615999' + } + }, + 'ShortName' => 'Hierarchy', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '80', + 'Virt' => 1 + }, + '18860851' => { + 'Class' => '11930657', + 'Destructor' => 1, + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9HierarchyD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615999' + } + }, + 'ShortName' => 'Hierarchy', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '80', + 'Virt' => 1 + }, + '18868551' => { + 'Class' => '11930657', + 'Constructor' => 1, + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9HierarchyC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615999' + } + }, + 'Private' => 1, + 'ShortName' => 'Hierarchy', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '75' + }, + '18871370' => { + 'Class' => '11930657', + 'Constructor' => 1, + 'Header' => 'hierarchy.h', + 'MnglName' => '_ZN7log4cxx9HierarchyC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615999' + } + }, + 'Private' => 1, + 'ShortName' => 'Hierarchy', + 'Source' => 'hierarchy.cpp', + 'SourceLine' => '75' + }, + '18874155' => { + 'Artificial' => 1, + 'Class' => '565598', + 'Constructor' => 1, + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18618598' + } + }, + 'ShortName' => 'LoggerRepository' + }, + '18874156' => { + 'Artificial' => 1, + 'Class' => '565598', + 'Constructor' => 1, + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18618598' + } + }, + 'ShortName' => 'LoggerRepository' + }, + '18877120' => { + 'Artificial' => 1, + 'Class' => '11930671', + 'Destructor' => 1, + 'Header' => 'hierarchy.h', + 'InLine' => 1, + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18617182' + } + }, + 'ShortName' => 'ClazzHierarchy', + 'Virt' => 1 + }, + '18877121' => { + 'Artificial' => 1, + 'Class' => '11930671', + 'Destructor' => 1, + 'Header' => 'hierarchy.h', + 'InLine' => 1, + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18617182' + } + }, + 'ShortName' => 'ClazzHierarchy', + 'Virt' => 1 + }, + '18877267' => { + 'Artificial' => 1, + 'Class' => '11930671', + 'Destructor' => 1, + 'Header' => 'hierarchy.h', + 'InLine' => 1, + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18617182' + } + }, + 'ShortName' => 'ClazzHierarchy', + 'Virt' => 1 + }, + '18877362' => { + 'Artificial' => 1, + 'Class' => '11930671', + 'Constructor' => 1, + 'Header' => 'hierarchy.h', + 'InLine' => 1, + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18617182' + } + }, + 'ShortName' => 'ClazzHierarchy' + }, + '18877363' => { + 'Artificial' => 1, + 'Class' => '11930671', + 'Constructor' => 1, + 'Header' => 'hierarchy.h', + 'InLine' => 1, + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18617182' + } + }, + 'ShortName' => 'ClazzHierarchy' + }, + '18877641' => { + 'Artificial' => 1, + 'Class' => '565598', + 'Destructor' => 1, + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18618598' + } + }, + 'ShortName' => 'LoggerRepository', + 'Virt' => 1 + }, + '18877642' => { + 'Artificial' => 1, + 'Class' => '565598', + 'Destructor' => 1, + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18618598' + } + }, + 'ShortName' => 'LoggerRepository', + 'Virt' => 1 + }, + '1909082' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer10initializeEv', + 'Return' => '1914488', + 'ShortName' => 'initialize', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '129', + 'Static' => 1 + }, + '1909098' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer11getRootPoolEv', + 'Return' => '210753', + 'ShortName' => 'getRootPool', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '134', + 'Static' => 1 + }, + '1909114' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer9getTlsKeyEv', + 'Return' => '1924095', + 'ShortName' => 'getTlsKey', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '139', + 'Static' => 1 + }, + '1909130' => { + 'Class' => '1908928', + 'Data' => 1, + 'Header' => 'aprinitializer.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer12isDestructedE', + 'Return' => '174077', + 'ShortName' => 'isDestructed', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '32' + }, + '1909146' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer15registerCleanupEPNS0_12FileWatchdogE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '1502741' + 'name' => 'watchdog', + 'type' => '1924100' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '51127', - 'ShortName' => 'data', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '96' + 'Return' => '1', + 'ShortName' => 'registerCleanup', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '144', + 'Static' => 1 }, - '1338568' => { - 'Class' => '1338352', - 'Header' => 'bytebuffer.h', - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer7currentEv', + '1909167' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '58', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer17unregisterCleanupEPNS0_12FileWatchdogE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '1502730' + 'name' => 'watchdog', + 'type' => '1924100' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '51958', - 'ShortName' => 'current', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '101' + 'Return' => '1', + 'ShortName' => 'unregisterCleanup', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '151', + 'Static' => 1 }, - '1338599' => { - 'Class' => '1338352', - 'Const' => 1, - 'Header' => 'bytebuffer.h', - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer7currentEv', + '1909188' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer13unregisterAllEv', + 'Return' => '1', + 'ShortName' => 'unregisterAll', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '116', + 'Static' => 1 + }, + '1909294' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer9addObjectEmRKSt10shared_ptrINS0_6ObjectEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1502741' + 'type' => '1924115' + }, + '1' => { + 'name' => 'key', + 'type' => '190816' + }, + '2' => { + 'name' => 'pObject', + 'type' => '575817' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '51127', - 'ShortName' => 'current', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '106' + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'addObject', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '168' }, - '1338630' => { - 'Class' => '1338352', - 'Const' => 1, - 'Header' => 'bytebuffer.h', - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer5limitEv', + '1909330' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '83', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer15findOrAddObjectEmSt8functionIFSt10shared_ptrINS0_6ObjectEEvEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1502741' + 'type' => '1924115' + }, + '1' => { + 'name' => 'key', + 'type' => '190816' + }, + '2' => { + 'name' => 'creator', + 'type' => '1702723' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50486', - 'ShortName' => 'limit', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '111' + 'Private' => 1, + 'Return' => '575817', + 'ShortName' => 'findOrAddObject', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '174' }, - '1338661' => { - 'Class' => '1338352', - 'Header' => 'bytebuffer.h', - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer5limitEm', + '1909370' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '84', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer13stopWatchDogsEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1502730' - }, - '1' => { - 'name' => 'newLimit', - 'type' => '50486' + 'type' => '1924115' } }, + 'Private' => 1, 'Return' => '1', - 'ShortName' => 'limit', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '69' + 'ShortName' => 'stopWatchDogs', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '104' }, - '1338693' => { - 'Class' => '1338352', - 'Const' => 1, - 'Header' => 'bytebuffer.h', - 'Line' => '51', - 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer8positionEv', + '1909409' => { + 'Class' => '1908928', + 'Header' => 'aprinitializer.h', + 'Line' => '88', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer11getInstanceEv', + 'Private' => 1, + 'Return' => '1924125', + 'ShortName' => 'getInstance', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '121', + 'Static' => 1 + }, + '1909473' => { + 'Class' => '1909459', + 'Header' => 'filewatchdog.h', + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog4stopEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1502741' + 'type' => '1924105' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50486', - 'ShortName' => 'position', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '116' + 'Return' => '1', + 'ShortName' => 'stop', + 'Source' => 'filewatchdog.cpp', + 'SourceLine' => '73' }, - '1338724' => { - 'Class' => '1338352', - 'Const' => 1, - 'Header' => 'bytebuffer.h', - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer9remainingEv', + '1909593' => { + 'Class' => '1909514', + 'Header' => 'threadspecificdata.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData14getCurrentDataEv', + 'Return' => '1930094', + 'ShortName' => 'getCurrentData', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '61', + 'Static' => 1 + }, + '1909609' => { + 'Class' => '1909514', + 'Header' => 'threadspecificdata.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData7recycleEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1502741' + 'type' => '1930099' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50486', - 'ShortName' => 'remaining', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '121' + 'Return' => '1', + 'ShortName' => 'recycle', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '75' }, - '1338755' => { - 'Class' => '1338352', - 'Header' => 'bytebuffer.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer8positionEm', + '1909636' => { + 'Class' => '1909514', + 'Header' => 'threadspecificdata.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData3putERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '1502730' + 'name' => 'key', + 'type' => '210597' }, '1' => { - 'name' => 'newPosition', - 'type' => '50486' + 'name' => 'val', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'position', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '57' + 'ShortName' => 'put', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '98', + 'Static' => 1 }, - '1338787' => { - 'Class' => '1338352', - 'Header' => 'bytebuffer.h', - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer3putEc', + '1909663' => { + 'Class' => '1909514', + 'Header' => 'threadspecificdata.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData4pushERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '1502730' - }, - '1' => { - 'name' => 'byte', - 'type' => '50671' + 'name' => 'val', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50284', - 'ShortName' => 'put', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '80' + 'Return' => '1', + 'ShortName' => 'push', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '116', + 'Static' => 1 }, - '1339263' => { - 'Class' => '1339142', - 'Const' => 1, - 'Header' => 'bytearrayinputstream.h', - 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStream7getNameB5cxx11Ev', + '1909684' => { + 'Class' => '1909514', + 'Header' => 'threadspecificdata.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData7inheritERKSt5stackISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ESt5dequeISA_SaISA_EEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '1342504' + 'name' => 'src', + 'type' => '1930104' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '1339325' => { - 'Class' => '1339029', - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '39', + 'Return' => '1', + 'ShortName' => 'inherit', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '143', 'Static' => 1 }, - '1339342' => { - 'Class' => '1339029', - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '39', - 'Static' => 1 + '1909705' => { + 'Class' => '1909514', + 'Header' => 'threadspecificdata.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData8getStackB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1930099' + } + }, + 'Return' => '1930109', + 'ShortName' => 'getStack', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '45' }, - '1339359' => { - 'Class' => '1339029', - 'Const' => 1, - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZNK7log4cxx7helpers20ByteArrayInputStream8getClassEv', + '1909736' => { + 'Class' => '1909514', + 'Header' => 'threadspecificdata.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData6getMapB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342459' + 'type' => '1930099' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '39', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '1930114', + 'ShortName' => 'getMap', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '50' + }, + '1909767' => { + 'Class' => '1909514', + 'Header' => 'threadspecificdata.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData16getDataNoThreadsEv', + 'Private' => 1, + 'Return' => '1930119', + 'ShortName' => 'getDataNoThreads', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '55', + 'Static' => 1 + }, + '1909783' => { + 'Class' => '1909514', + 'Header' => 'threadspecificdata.h', + 'Line' => '58', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData17createCurrentDataEv', + 'Private' => 1, + 'Return' => '1930094', + 'ShortName' => 'createCurrentData', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '160', + 'Static' => 1 }, - '1339398' => { - 'Class' => '1339029', + '1914364' => { + 'Class' => '1914278', 'Const' => 1, - 'Header' => 'bytearrayinputstream.h', + 'Header' => 'date.h', 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7helpers20ByteArrayInputStream4castERKNS0_5ClassE', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7helpers4Date9ClazzDate7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342459' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '8698043' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '3' }, - '1339442' => { - 'Class' => '1339029', + '1914402' => { + 'Class' => '1914278', 'Const' => 1, - 'Header' => 'bytearrayinputstream.h', + 'Header' => 'date.h', 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7helpers20ByteArrayInputStream10instanceofERKNS0_5ClassE', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7helpers4Date9ClazzDate11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342459' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '8698043' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', + 'Return' => '1938374', + 'ShortName' => 'newInstance', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '2' }, - '1339556' => { - 'Class' => '1339029', - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream5closeEv', + '1914441' => { + 'Class' => '1914272', + 'Header' => 'date.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7helpers4Date11currentTimeEv', + 'Return' => '1914488', + 'ShortName' => 'currentTime', + 'Source' => 'date.cpp', + 'SourceLine' => '67', + 'Static' => 1 + }, + '1914577' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '107', + 'MnglName' => '_ZN7log4cxx3NDC5clearEv', + 'Return' => '1', + 'ShortName' => 'clear', + 'Source' => 'ndc.cpp', + 'SourceLine' => '46', + 'Static' => 1 + }, + '1914607' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '120', + 'MnglName' => '_ZN7log4cxx3NDC10cloneStackB5cxx11Ev', + 'Return' => '1929829', + 'ShortName' => 'cloneStack', + 'Source' => 'ndc.cpp', + 'SourceLine' => '63', + 'Static' => 1 + }, + '1914623' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '134', + 'MnglName' => '_ZN7log4cxx3NDC7inheritEPSt5stackISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_ESt5dequeIS9_SaIS9_EEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '1342470' + 'name' => 'stack', + 'type' => '1929829' } }, - 'Reg' => { - '0' => 'rdi' - }, 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '53', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'inherit', + 'Source' => 'ndc.cpp', + 'SourceLine' => '80', + 'Static' => 1 }, - '1339592' => { - 'Class' => '1339029', - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream4readERNS0_10ByteBufferE', + '1914644' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '142', + 'MnglName' => '_ZN7log4cxx3NDC3getERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'dest', + 'type' => '210592' + } + }, + 'Return' => '174077', + 'ShortName' => 'get', + 'Source' => 'ndc.cpp', + 'SourceLine' => '90', + 'Static' => 1 + }, + '1914671' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '147', + 'MnglName' => '_ZN7log4cxx3NDC8getDepthEv', + 'Return' => '190263', + 'ShortName' => 'getDepth', + 'Source' => 'ndc.cpp', + 'SourceLine' => '110', + 'Static' => 1 + }, + '1914687' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '153', + 'MnglName' => '_ZN7log4cxx3NDC5emptyEv', + 'Return' => '174077', + 'ShortName' => 'empty', + 'Source' => 'ndc.cpp', + 'SourceLine' => '227', + 'Static' => 1 + }, + '1914703' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '162', + 'MnglName' => '_ZN7log4cxx3NDC3popB5cxx11Ev', + 'Return' => '209661', + 'ShortName' => 'pop', + 'Source' => 'ndc.cpp', + 'SourceLine' => '128', + 'Static' => 1 + }, + '1914720' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '168', + 'MnglName' => '_ZN7log4cxx3NDC3popERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'dst', + 'type' => '210602' + } + }, + 'Return' => '174077', + 'ShortName' => 'pop', + 'Source' => 'ndc.cpp', + 'SourceLine' => '150', + 'Static' => 1 + }, + '1914747' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '177', + 'MnglName' => '_ZN7log4cxx3NDC4peekB5cxx11Ev', + 'Return' => '209661', + 'ShortName' => 'peek', + 'Source' => 'ndc.cpp', + 'SourceLine' => '172', + 'Static' => 1 + }, + '1914763' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '183', + 'MnglName' => '_ZN7log4cxx3NDC4peekERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'dst', + 'type' => '210602' + } + }, + 'Return' => '174077', + 'ShortName' => 'peek', + 'Source' => 'ndc.cpp', + 'SourceLine' => '191', + 'Static' => 1 + }, + '1914790' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '191', + 'MnglName' => '_ZN7log4cxx3NDC4pushERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'message', + 'type' => '202831' + } + }, + 'Return' => '1', + 'ShortName' => 'push', + 'Source' => 'ndc.cpp', + 'SourceLine' => '216', + 'Static' => 1 + }, + '1914811' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '198', + 'MnglName' => '_ZN7log4cxx3NDC6pushLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'message', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'pushLS', + 'Source' => 'ndc.cpp', + 'SourceLine' => '211', + 'Static' => 1 + }, + '1914832' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '206', + 'MnglName' => '_ZN7log4cxx3NDC6removeEv', + 'Return' => '1', + 'ShortName' => 'remove', + 'Source' => 'ndc.cpp', + 'SourceLine' => '222', + 'Static' => 1 + }, + '1914876' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '220', + 'MnglName' => '_ZN7log4cxx3NDC4pushERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'message', + 'type' => '202841' + } + }, + 'Return' => '1', + 'ShortName' => 'push', + 'Source' => 'ndc.cpp', + 'SourceLine' => '252', + 'Static' => 1 + }, + '1914897' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '226', + 'MnglName' => '_ZN7log4cxx3NDC4peekERNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'dst', + 'type' => '210622' + } + }, + 'Return' => '174077', + 'ShortName' => 'peek', + 'Source' => 'ndc.cpp', + 'SourceLine' => '280', + 'Static' => 1 + }, + '1914924' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '232', + 'MnglName' => '_ZN7log4cxx3NDC3popERNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'dst', + 'type' => '210622' + } + }, + 'Return' => '174077', + 'ShortName' => 'pop', + 'Source' => 'ndc.cpp', + 'SourceLine' => '258', + 'Static' => 1 + }, + '1915020' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '292', + 'MnglName' => '_ZN7log4cxx3NDC10getMessageERSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_E', + 'Param' => { + '0' => { + 'name' => 'ctx', + 'type' => '1929844' + } + }, + 'Private' => 1, + 'Return' => '210592', + 'ShortName' => 'getMessage', + 'Source' => 'ndc.cpp', + 'SourceLine' => '36', + 'Static' => 1 + }, + '1915060' => { + 'Class' => '1914500', + 'Header' => 'ndc.h', + 'Line' => '293', + 'MnglName' => '_ZN7log4cxx3NDC14getFullMessageERSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_E', + 'Param' => { + '0' => { + 'name' => 'ctx', + 'type' => '1929844' + } + }, + 'Private' => 1, + 'Return' => '210592', + 'ShortName' => 'getFullMessage', + 'Source' => 'ndc.cpp', + 'SourceLine' => '41', + 'Static' => 1 + }, + '1917403' => { + 'Class' => '567061', + 'Header' => 'file.h', + 'Line' => '95', + 'MnglName' => '_ZN7log4cxx4FileaSERKS0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342470' + 'type' => '10586409' }, '1' => { - 'name' => 'dst', - 'type' => '1340866' + 'name' => 'src', + 'type' => '575822' } }, - 'Return' => '50231', - 'ShortName' => 'read', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '58', - 'Virt' => 1, - 'VirtPos' => '5' + 'Return' => '1934231', + 'ShortName' => 'operator=', + 'Source' => 'file.cpp', + 'SourceLine' => '122' }, - '1340494' => { - 'Class' => '1340484', + '1917471' => { + 'Class' => '567061', 'Const' => 1, - 'Header' => 'inputstream.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7helpers11InputStream4castERKNS0_5ClassE', + 'Header' => 'file.h', + 'Line' => '106', + 'MnglName' => '_ZNK7log4cxx4File6existsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1356763' + 'type' => '12407698' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '1340538' => { - 'Class' => '1340484', - 'Header' => 'inputstream.h', - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers11InputStream14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'inputstream.cpp', - 'SourceLine' => '24', - 'Static' => 1 - }, - '1340847' => { - 'Data' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7classes32ByteArrayInputStreamRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ByteArrayInputStreamRegistration', - 'Source' => 'bytearrayinputstream.cpp' + 'Return' => '174077', + 'ShortName' => 'exists', + 'Source' => 'file.cpp', + 'SourceLine' => '195' }, - '13454868' => { - 'Artificial' => 1, - 'Class' => '13378749', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13384924' - } - }, - 'ShortName' => 'WideLife' - }, - '13454869' => { - 'Artificial' => 1, - 'Class' => '13378749', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13384924' - } - }, - 'ShortName' => 'WideLife' - }, - '13455010' => { - 'Artificial' => 1, - 'Class' => '13378749', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13384924' - } - }, - 'ShortName' => 'WideLife' - }, - '13455011' => { - 'Artificial' => 1, - 'Class' => '13378749', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13384924' - } - }, - 'ShortName' => 'WideLife' - }, - '1349052' => { - 'Artificial' => 1, - 'Class' => '1339722', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEED2Ev', + '1917507' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '112', + 'MnglName' => '_ZNK7log4cxx4File6lengthERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342269' + 'type' => '12407698' + }, + '1' => { + 'name' => 'pool', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Return' => '190816', + 'ShortName' => 'length', + 'Source' => 'file.cpp', + 'SourceLine' => '232' }, - '1349053' => { - 'Artificial' => 1, - 'Class' => '1339722', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEED0Ev', + '1917543' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '118', + 'MnglName' => '_ZNK7log4cxx4File12lastModifiedERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342269' + 'type' => '12407698' + }, + '1' => { + 'name' => 'pool', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Return' => '1914488', + 'ShortName' => 'lastModified', + 'Source' => 'file.cpp', + 'SourceLine' => '247' }, - '1349193' => { - 'Artificial' => 1, - 'Class' => '1339722', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEEC2Ev', + '1917579' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '123', + 'MnglName' => '_ZNK7log4cxx4File7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342269' + 'type' => '12407698' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Source' => 'file.cpp', + 'SourceLine' => '156' }, - '1349194' => { - 'Artificial' => 1, - 'Class' => '1339722', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEEC1Ev', + '1917610' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '128', + 'MnglName' => '_ZNK7log4cxx4File7getPathB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342269' + 'type' => '12407698' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getPath', + 'Source' => 'file.cpp', + 'SourceLine' => '145' }, - '1350625' => { - 'Class' => '1339029', - 'Destructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamD0Ev', + '1917641' => { + 'Class' => '567061', + 'Header' => 'file.h', + 'Line' => '132', + 'MnglName' => '_ZN7log4cxx4File7setPathERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342470' + 'type' => '10586409' + }, + '1' => { + 'name' => 'newName', + 'type' => '210597' } }, - 'ShortName' => 'ByteArrayInputStream', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '48', - 'Virt' => 1 + 'Return' => '1934231', + 'ShortName' => 'setPath', + 'Source' => 'file.cpp', + 'SourceLine' => '150' }, - '1350626' => { - 'Class' => '1339029', - 'Destructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamD1Ev', + '1917677' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '142', + 'MnglName' => '_ZNK7log4cxx4File4openEPP10apr_file_tiiRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342470' + 'type' => '12407698' + }, + '1' => { + 'name' => 'file', + 'type' => '1934241' + }, + '2' => { + 'name' => 'flags', + 'type' => '190263' + }, + '3' => { + 'name' => 'perm', + 'type' => '190263' + }, + '4' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ByteArrayInputStream', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '48', - 'Virt' => 1 + 'Return' => '1918053', + 'ShortName' => 'open', + 'Source' => 'file.cpp', + 'SourceLine' => '187' }, - '1350720' => { - 'Class' => '1339029', - 'Destructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamD2Ev', + '1917728' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '150', + 'MnglName' => '_ZNK7log4cxx4File4listB5cxx11ERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342470' + 'type' => '12407698' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ByteArrayInputStream', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '48', - 'Virt' => 1 + 'Return' => '6007393', + 'ShortName' => 'list', + 'Source' => 'file.cpp', + 'SourceLine' => '262' }, - '1351808' => { - 'Class' => '1339029', - 'Constructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamC2ERKSt6vectorIhSaIhEE', + '1917764' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '157', + 'MnglName' => '_ZNK7log4cxx4File10deleteFileERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342470' + 'type' => '12407698' }, '1' => { - 'name' => 'bytes', - 'type' => '1342204' + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ByteArrayInputStream', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '41' + 'Return' => '174077', + 'ShortName' => 'deleteFile', + 'Source' => 'file.cpp', + 'SourceLine' => '216' }, - '1351809' => { - 'Class' => '1339029', - 'Constructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamC1ERKSt6vectorIhSaIhEE', + '1917800' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '164', + 'MnglName' => '_ZNK7log4cxx4File8renameToERKS0_RNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342470' + 'type' => '12407698' }, '1' => { - 'name' => 'bytes', - 'type' => '1342204' + 'name' => 'dest', + 'type' => '575822' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ByteArrayInputStream', - 'Source' => 'bytearrayinputstream.cpp', - 'SourceLine' => '41' + 'Return' => '174077', + 'ShortName' => 'renameTo', + 'Source' => 'file.cpp', + 'SourceLine' => '223' }, - '1356503' => { - 'Artificial' => 1, - 'Class' => '1339142', - 'Destructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD0Ev', + '1917841' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '171', + 'MnglName' => '_ZNK7log4cxx4File9getParentB5cxx11ERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342493' + 'type' => '12407698' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'ClazzByteArrayInputStream', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getParent', + 'Source' => 'file.cpp', + 'SourceLine' => '305' }, - '1356504' => { - 'Artificial' => 1, - 'Class' => '1339142', - 'Destructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD1Ev', + '1917877' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '177', + 'MnglName' => '_ZNK7log4cxx4File6mkdirsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342493' + 'type' => '12407698' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ClazzByteArrayInputStream', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'mkdirs', + 'Source' => 'file.cpp', + 'SourceLine' => '332' }, - '1356644' => { - 'Artificial' => 1, - 'Class' => '1339142', - 'Destructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD2Ev', + '1917913' => { + 'Class' => '567061', + 'Header' => 'file.h', + 'Line' => '183', + 'MnglName' => '_ZN7log4cxx4File13setAutoDeleteEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342493' + 'type' => '10586409' + }, + '1' => { + 'name' => 'autoDelete', + 'type' => '174077' } }, - 'ShortName' => 'ClazzByteArrayInputStream', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setAutoDelete', + 'Source' => 'file.cpp', + 'SourceLine' => '339' }, - '1356734' => { - 'Artificial' => 1, - 'Class' => '1339142', - 'Constructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamC2Ev', + '1917945' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '191', + 'MnglName' => '_ZNK7log4cxx4File13getAutoDeleteEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342493' + 'type' => '12407698' } }, - 'ShortName' => 'ClazzByteArrayInputStream' + 'Return' => '174077', + 'ShortName' => 'getAutoDelete', + 'Source' => 'file.cpp', + 'SourceLine' => '343' }, - '1356735' => { - 'Artificial' => 1, - 'Class' => '1339142', - 'Constructor' => 1, - 'Header' => 'bytearrayinputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamC1Ev', + '1917989' => { + 'Class' => '567061', + 'Header' => 'file.h', + 'Line' => '195', + 'MnglName' => '_ZN7log4cxx4File18convertBackSlashesEPc', + 'Param' => { + '0' => { + 'name' => 'src', + 'type' => '192483' + } + }, + 'Private' => 1, + 'Return' => '192483', + 'ShortName' => 'convertBackSlashes', + 'Source' => 'file.cpp', + 'SourceLine' => '203', + 'Static' => 1 + }, + '1918015' => { + 'Class' => '567061', + 'Const' => 1, + 'Header' => 'file.h', + 'Line' => '196', + 'MnglName' => '_ZNK7log4cxx4File7getPathERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342493' + 'type' => '12407698' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ClazzByteArrayInputStream' + 'Private' => 1, + 'Return' => '192483', + 'ShortName' => 'getPath', + 'Source' => 'file.cpp', + 'SourceLine' => '169' }, - '13632070' => { - 'Class' => '1149933', - 'Destructor' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayoutD0Ev', + '19213440' => { + 'Class' => '19213427', + 'Header' => 'transform.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers9Transform18appendEscapingTagsERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '13386823' + 'name' => 'buf', + 'type' => '210592' + }, + '1' => { + 'name' => 'input', + 'type' => '210597' } }, - 'ShortName' => 'PatternLayout', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '112', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'appendEscapingTags', + 'Source' => 'transform.cpp', + 'SourceLine' => '27', + 'Static' => 1 }, - '13632168' => { - 'Class' => '1149933', - 'Destructor' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayoutD1Ev', + '19213466' => { + 'Class' => '19213427', + 'Header' => 'transform.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx7helpers9Transform19appendEscapingCDATAERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '13386823' + 'name' => 'buf', + 'type' => '210592' + }, + '1' => { + 'name' => 'input', + 'type' => '210597' } }, - 'ShortName' => 'PatternLayout', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '112', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'appendEscapingCDATA', + 'Source' => 'transform.cpp', + 'SourceLine' => '90', + 'Static' => 1 }, - '13639566' => { - 'Class' => '1149933', - 'Destructor' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayoutD2Ev', + '19215867' => { + 'Class' => '4208199', + 'Header' => 'timezone.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone6getGMTEv', + 'Return' => '4213117', + 'ShortName' => 'getGMT', + 'Source' => 'timezone.cpp', + 'SourceLine' => '196', + 'Static' => 1 + }, + '19216230' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '225', + 'MnglName' => '_ZN7log4cxx5Level7getWarnEv', + 'Return' => '567044', + 'ShortName' => 'getWarn', + 'Source' => 'level.cpp', + 'SourceLine' => '51', + 'Static' => 1 + }, + '19216246' => { + 'Class' => '563933', + 'Const' => 1, + 'Header' => 'level.h', + 'Line' => '195', + 'MnglName' => '_ZNK7log4cxx5Level8toStringB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' + 'type' => '2696821' } }, - 'ShortName' => 'PatternLayout', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '112', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'toString', + 'Source' => 'level.cpp', + 'SourceLine' => '97' }, - '13646921' => { - 'Class' => '1149933', - 'Constructor' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayoutC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '19216989' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '109', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent18getRenderedMessageB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' - }, - '1' => { - 'name' => 'pattern', - 'type' => '263006' + 'type' => '26822716' } }, - 'ShortName' => 'PatternLayout', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '105' + 'Return' => '210597', + 'ShortName' => 'getRenderedMessage', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '464' }, - '13657567' => { - 'Class' => '1149933', - 'Constructor' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayoutC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '19217113' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '117', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent13getThreadNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' - }, - '2' => { - 'name' => 'pattern', - 'type' => '263006' + 'type' => '26822716' } }, - 'ShortName' => 'PatternLayout', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '105' + 'Return' => '210597', + 'ShortName' => 'getThreadName', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '469' }, - '13668148' => { - 'Class' => '1149933', - 'Constructor' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayoutC1Ev', + '19219002' => { + 'Artificial' => 1, + 'Class' => '5656119', + 'Header' => 'htmllayout.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZTch0_h0_NK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' + 'type' => '19229032' } }, - 'ShortName' => 'PatternLayout', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '97' + 'Return' => '5679783', + 'ShortName' => '_ZTch0_h0_NK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv' }, - '13678232' => { - 'Class' => '1149933', - 'Constructor' => 1, - 'Header' => 'patternlayout.h', - 'MnglName' => '_ZN7log4cxx13PatternLayoutC2Ev', + '19219087' => { + 'Class' => '5656105', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13386823' + 'type' => '19228992' } }, - 'ShortName' => 'PatternLayout', - 'Source' => 'patternlayout.cpp', - 'SourceLine' => '97' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '53', + 'Virt' => 1, + 'VirtPos' => '2' }, - '13690926' => { - 'Artificial' => 1, - 'Class' => '13380951', - 'Destructor' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 1, - 'Line' => '451', - 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD0Ev', + '19219125' => { + 'Class' => '5656105', + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayout14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '53', + 'Static' => 1 + }, + '19219157' => { + 'Class' => '5656105', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387846' + 'type' => '19228992' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzPatternLayout', - 'Virt' => 1 + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '13690927' => { - 'Artificial' => 1, - 'Class' => '13380951', - 'Destructor' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 1, - 'Line' => '451', - 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD1Ev', + '19219200' => { + 'Class' => '5656105', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'InLine' => 2, + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387846' + 'type' => '19228992' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzPatternLayout', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '13691069' => { - 'Artificial' => 1, - 'Class' => '13380951', - 'Destructor' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 1, - 'Line' => '451', - 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD2Ev', + '19219320' => { + 'Class' => '5656105', + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayout15setLocationInfoEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387846' + 'type' => '19228967' + }, + '1' => { + 'name' => 'locationInfoFlag', + 'type' => '174077' } }, - 'ShortName' => 'ClazzPatternLayout', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setLocationInfo', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '249' }, - '13691159' => { - 'Artificial' => 1, - 'Class' => '13380951', - 'Constructor' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 1, - 'Line' => '451', - 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutC2Ev', + '19219351' => { + 'Class' => '5656105', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout15getLocationInfoEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387846' + 'type' => '19228992' } }, - 'ShortName' => 'ClazzPatternLayout' + 'Return' => '174077', + 'ShortName' => 'getLocationInfo', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '254' }, - '13691160' => { - 'Artificial' => 1, - 'Class' => '13380951', - 'Constructor' => 1, - 'Header' => 'patternlayout.h', - 'InLine' => 1, - 'Line' => '451', - 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutC1Ev', + '19219382' => { + 'Class' => '5656105', + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayout8setTitleERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13387846' + 'type' => '19228967' + }, + '1' => { + 'name' => 'title1', + 'type' => '210597' } }, - 'ShortName' => 'ClazzPatternLayout' - }, - '13797837' => { - 'Class' => '13380086', - 'Data' => 1, - 'Header' => 'patternparser.h', - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParser11ESCAPE_CHARE', - 'Return' => '407318', - 'ShortName' => 'ESCAPE_CHAR', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '27' + 'Return' => '1', + 'ShortName' => 'setTitle', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '259' }, - '13944074' => { - 'Class' => '13380086', - 'Constructor' => 1, - 'Header' => 'patternparser.h', - 'Line' => '69', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParserC2Ev', + '19219415' => { + 'Class' => '5656105', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout8getTitleB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13796572' + 'type' => '19228992' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'PatternParser', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '33' + 'Return' => '210597', + 'ShortName' => 'getTitle', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '264' }, - '13944075' => { - 'Class' => '13380086', - 'Constructor' => 1, - 'Header' => 'patternparser.h', - 'Line' => '69', - 'MnglName' => '_ZN7log4cxx7pattern13PatternParserC1Ev', + '19219447' => { + 'Class' => '5656105', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout14getContentTypeB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13796572' + 'type' => '19228992' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'PatternParser', - 'Source' => 'patternparser.cpp', - 'SourceLine' => '33' + 'Return' => '209661', + 'ShortName' => 'getContentType', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '269', + 'Virt' => 1, + 'VirtPos' => '8' }, - '14009733' => { - 'Class' => '62082', - 'Destructor' => 1, - 'Header' => 'pool.h', - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers4PoolD2Ev', + '19219486' => { + 'Class' => '5656105', + 'Header' => 'htmllayout.h', + 'InLine' => 2, + 'Line' => '86', + 'MnglName' => '_ZN7log4cxx10HTMLLayout15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14006506' + 'type' => '19228967' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'Pool', - 'Source' => 'pool.cpp', - 'SourceLine' => '48' + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Virt' => 1, + 'VirtPos' => '5' }, - '14009877' => { - 'Class' => '62082', - 'Constructor' => 1, - 'Header' => 'pool.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers4PoolC2EP10apr_pool_tb', + '19219525' => { + 'Class' => '5656105', + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14006506' + 'type' => '19228967' }, '1' => { - 'name' => 'p', - 'type' => '652756' + 'name' => 'option', + 'type' => '210597' }, '2' => { - 'name' => 'release1', - 'type' => '50284' + 'name' => 'value', + 'type' => '210597' } }, - 'ShortName' => 'Pool', - 'Source' => 'pool.cpp', - 'SourceLine' => '43' + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '66', + 'Virt' => 1, + 'VirtPos' => '6' }, - '14009878' => { - 'Class' => '62082', - 'Constructor' => 1, - 'Header' => 'pool.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers4PoolC1EP10apr_pool_tb', + '19219569' => { + 'Class' => '5656105', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14006506' + 'type' => '19228992' }, '1' => { - 'name' => 'p', - 'type' => '652756' + 'name' => 'output', + 'type' => '210592' }, '2' => { - 'name' => 'release1', - 'type' => '50284' + 'name' => 'event', + 'type' => '576659' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'Pool', - 'Source' => 'pool.cpp', - 'SourceLine' => '43' + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '83', + 'Virt' => 1, + 'VirtPos' => '7' }, - '14010067' => { - 'Class' => '62082', - 'Constructor' => 1, - 'Header' => 'pool.h', - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers4PoolC2Ev', + '19219618' => { + 'Class' => '5656105', + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14006506' + 'type' => '19228967' + }, + '1' => { + 'name' => 'output', + 'type' => '210592' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'Pool', - 'Source' => 'pool.cpp', - 'SourceLine' => '33' + 'Return' => '1', + 'ShortName' => 'appendHeader', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '175', + 'Virt' => 1, + 'VirtPos' => '9' }, - '14010068' => { - 'Class' => '62082', - 'Constructor' => 1, - 'Header' => 'pool.h', - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers4PoolC1Ev', + '19219662' => { + 'Class' => '5656105', + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14006506' + 'type' => '19228967' + }, + '1' => { + 'name' => 'output', + 'type' => '210592' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' } }, - 'ShortName' => 'Pool', - 'Source' => 'pool.cpp', - 'SourceLine' => '33' + 'Return' => '1', + 'ShortName' => 'appendFooter', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '240', + 'Virt' => 1, + 'VirtPos' => '10' }, - '14094403' => { - 'Class' => '14094301', - 'InLine' => 2, - 'Line' => '30', - 'MnglName' => '_ZN14PropertyParser5parseERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN7log4cxx7helpers10PropertiesE', + '19219706' => { + 'Class' => '5656105', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout16ignoresThrowableEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14094495' - }, - '1' => { - 'name' => 'in', - 'type' => '409210' - }, - '2' => { - 'name' => 'properties', - 'type' => '840063' + 'type' => '19228992' } }, - 'Return' => '1', - 'ShortName' => 'parse', - 'Source' => 'properties.cpp' + 'Return' => '174077', + 'ShortName' => 'ignoresThrowable', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '274', + 'Virt' => 1, + 'VirtPos' => '11' }, - '14166237' => { - 'Class' => '832974', - 'Destructor' => 1, - 'Header' => 'properties.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7helpers10PropertiesD2Ev', + '19219788' => { + 'Data' => 1, + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7classes22HTMLLayoutRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'HTMLLayoutRegistration', + 'Source' => 'htmllayout.cpp' + }, + '19219937' => { + 'Class' => '1381112', + 'Header' => 'layout.h', + 'Line' => '66', + 'MnglName' => '_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14094232' + 'type' => '19230614' + }, + '1' => { + 'name' => 'p1', + 'type' => '210592' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' } }, - 'ShortName' => 'Properties', - 'Source' => 'properties.cpp', - 'SourceLine' => '402' + 'Return' => '1', + 'ShortName' => 'appendFooter', + 'Source' => 'layout.cpp', + 'SourceLine' => '35', + 'Virt' => 1, + 'VirtPos' => '10' }, - '14166723' => { - 'Class' => '832974', - 'Constructor' => 1, - 'Header' => 'properties.h', - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers10PropertiesC2Ev', + '19219981' => { + 'Class' => '1381112', + 'Header' => 'layout.h', + 'Line' => '60', + 'MnglName' => '_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14094232' + 'type' => '19230614' + }, + '1' => { + 'name' => 'p1', + 'type' => '210592' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' } }, - 'ShortName' => 'Properties', - 'Source' => 'properties.cpp', - 'SourceLine' => '398' + 'Return' => '1', + 'ShortName' => 'appendHeader', + 'Source' => 'layout.cpp', + 'SourceLine' => '33', + 'Virt' => 1, + 'VirtPos' => '9' }, - '14166724' => { - 'Class' => '832974', - 'Constructor' => 1, - 'Header' => 'properties.h', - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers10PropertiesC1Ev', + '19220025' => { + 'Class' => '1381112', + 'Const' => 1, + 'Header' => 'layout.h', + 'Line' => '54', + 'MnglName' => '_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14094232' + 'type' => '19230624' } }, - 'ShortName' => 'Properties', - 'Source' => 'properties.cpp', - 'SourceLine' => '398' + 'Return' => '209661', + 'ShortName' => 'getContentType', + 'Source' => 'layout.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '8' }, - '1424406' => { - 'Class' => '1424285', - 'Const' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStream7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427253' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '1424468' => { - 'Class' => '1424215', - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '32', - 'Static' => 1 - }, - '1424485' => { - 'Class' => '1424215', - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '32', - 'Static' => 1 - }, - '1424502' => { - 'Class' => '1424215', - 'Const' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427208' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '32', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '1424541' => { - 'Class' => '1424215', - 'Const' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427208' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '1424585' => { - 'Class' => '1424215', - 'Const' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427208' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '1424694' => { - 'Class' => '1424215', - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream5closeERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427219' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '42', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1424735' => { - 'Class' => '1424215', - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream5flushERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427219' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '46', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '1424776' => { - 'Class' => '1424215', - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427219' - }, - '1' => { - 'name' => 'buf', - 'type' => '1340866' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' - } - }, - 'Reg' => { - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '50', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '1424822' => { - 'Class' => '1424215', - 'Const' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream11toByteArrayEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427208' - } - }, - 'Return' => '1316939', - 'ShortName' => 'toByteArray', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '58' - }, - '1425706' => { - 'Class' => '1425696', - 'Const' => 1, - 'Header' => 'outputstream.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx7helpers12OutputStream4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1444633' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '1425750' => { - 'Class' => '1425696', - 'Header' => 'outputstream.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers12OutputStream14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'outputstream.cpp', - 'SourceLine' => '25', - 'Static' => 1 - }, - '1426059' => { - 'Data' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7classes33ByteArrayOutputStreamRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ByteArrayOutputStreamRegistration', - 'Source' => 'bytearrayoutputstream.cpp' - }, - '14279986' => { - 'Class' => '14279865', + '19220063' => { + 'Class' => '1381112', 'Const' => 1, - 'Header' => 'propertiespatternconverter.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverter7getNameB5cxx11Ev', + 'Header' => 'layout.h', + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx6Layout8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283909' + 'type' => '19230624' } }, - 'Return' => '63706', - 'ShortName' => 'getName', + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'layout.cpp', + 'SourceLine' => '23', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '2' }, - '14280287' => { - 'Class' => '14279831', - 'Header' => 'propertiespatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter14getStaticClassEv', - 'Return' => '64678', + '19220101' => { + 'Class' => '1381112', + 'Header' => 'layout.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx6Layout14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'propertiespatternconverter.cpp', - 'SourceLine' => '45', - 'Static' => 1 - }, - '14280304' => { - 'Class' => '14279831', - 'Header' => 'propertiespatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'propertiespatternconverter.cpp', - 'SourceLine' => '45', + 'Source' => 'layout.cpp', + 'SourceLine' => '23', 'Static' => 1 }, - '14280321' => { - 'Class' => '14279831', + '19220158' => { + 'Class' => '1381112', 'Const' => 1, - 'Header' => 'propertiespatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter8getClassEv', + 'Header' => 'layout.h', + 'Line' => '83', + 'MnglName' => '_ZNK7log4cxx6Layout31getFormattedEventCharacterCountEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283526' + 'type' => '19230624' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'propertiespatternconverter.cpp', - 'SourceLine' => '45', - 'Virt' => 1, - 'VirtPos' => '2' + 'Protected' => 1, + 'Return' => '190816', + 'ShortName' => 'getFormattedEventCharacterCount', + 'Source' => 'layout.cpp', + 'SourceLine' => '40' }, - '14280360' => { - 'Class' => '14279831', + '19220222' => { + 'Class' => '1381112', 'Const' => 1, - 'Header' => 'propertiespatternconverter.h', + 'Header' => 'layout.h', 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter4castERKNS_7helpers5ClassE', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx6Layout10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283526' + 'type' => '19230624' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '174077', + 'ShortName' => 'instanceof', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '3' }, - '14280404' => { - 'Class' => '14279831', + '19220265' => { + 'Class' => '1381112', 'Const' => 1, - 'Header' => 'propertiespatternconverter.h', + 'Header' => 'layout.h', 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter10instanceofERKNS_7helpers5ClassE', + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx6Layout4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283526' + 'type' => '19230624' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', + 'Return' => '195352', + 'ShortName' => 'cast', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '4' }, - '14280495' => { - 'Class' => '14279831', - 'Header' => 'propertiespatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '19230802' => { + 'Class' => '1381112', + 'Destructor' => 1, + 'Header' => 'layout.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx6LayoutD2Ev', 'Param' => { '0' => { - 'name' => 'options', - 'type' => '2273842' + 'name' => 'this', + 'type' => '19230614' } }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'propertiespatternconverter.cpp', - 'SourceLine' => '54', - 'Static' => 1 + 'ShortName' => 'Layout', + 'Source' => 'layout.cpp', + 'SourceLine' => '26', + 'Virt' => 1 }, - '14280523' => { - 'Class' => '14279831', - 'Const' => 1, - 'Header' => 'propertiespatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '19246330' => { + 'Artificial' => 1, + 'Class' => '19214033', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283526' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '19228551' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'propertiespatternconverter.cpp', - 'SourceLine' => '70', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '14280985' => { - 'Data' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7classes38PropertiesPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'PropertiesPatternConverterRegistration', - 'Source' => 'propertiespatternconverter.cpp' + 'ShortName' => 'WideLife' }, - '14286916' => { + '19246331' => { 'Artificial' => 1, - 'Class' => '14279831', + 'Class' => '19214033', 'Destructor' => 1, - 'Header' => 'propertiespatternconverter.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283243' + 'type' => '19228551' } }, - 'ShortName' => 'PropertiesPatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '14286917' => { + '19246474' => { 'Artificial' => 1, - 'Class' => '14279831', - 'Destructor' => 1, - 'Header' => 'propertiespatternconverter.h', + 'Class' => '19214033', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterD2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283243' + 'type' => '19228551' } }, - 'ShortName' => 'PropertiesPatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '14287184' => { + '19246475' => { 'Artificial' => 1, - 'Class' => '14279831', - 'Destructor' => 1, - 'Header' => 'propertiespatternconverter.h', + 'Class' => '19214033', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterD1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283243' + 'type' => '19228551' } }, - 'ShortName' => 'PropertiesPatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '14302467' => { - 'Artificial' => 1, - 'Class' => '14280028', + '19290650' => { + 'Class' => '5656105', 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD0Ev', + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayoutD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14282531' + 'type' => '19228967' } }, - 'ShortName' => 'PropertiesPatternConverterPrivate', - 'Source' => 'propertiespatternconverter.cpp', + 'ShortName' => 'HTMLLayout', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '63', 'Virt' => 1 }, - '14302468' => { - 'Artificial' => 1, - 'Class' => '14280028', + '19290749' => { + 'Class' => '5656105', 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD1Ev', + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayoutD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14282531' + 'type' => '19228967' } }, - 'ShortName' => 'PropertiesPatternConverterPrivate', - 'Source' => 'propertiespatternconverter.cpp', + 'ShortName' => 'HTMLLayout', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '63', 'Virt' => 1 }, - '14304513' => { - 'Artificial' => 1, - 'Class' => '14280028', + '19292047' => { + 'Class' => '5656105', 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD2Ev', + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayoutD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14282531' + 'type' => '19228967' } }, - 'ShortName' => 'PropertiesPatternConverterPrivate', - 'Source' => 'propertiespatternconverter.cpp', + 'ShortName' => 'HTMLLayout', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '63', 'Virt' => 1 }, - '14309038' => { + '19293276' => { + 'Class' => '5656105', + 'Constructor' => 1, + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayoutC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19228967' + } + }, + 'ShortName' => 'HTMLLayout', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '56' + }, + '19296864' => { + 'Class' => '5656105', + 'Constructor' => 1, + 'Header' => 'htmllayout.h', + 'MnglName' => '_ZN7log4cxx10HTMLLayoutC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19228967' + } + }, + 'ShortName' => 'HTMLLayout', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '56' + }, + '19300269' => { 'Artificial' => 1, - 'Class' => '2269898', + 'Class' => '1381112', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'layout.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_26PropertiesPatternConverterEEJEEEOT_DpOT0_', + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx6LayoutC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '14283265' + 'type' => '19230614' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14252201' - } - } + 'ShortName' => 'Layout' }, - '14309039' => { + '19300270' => { 'Artificial' => 1, - 'Class' => '2269898', + 'Class' => '1381112', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'layout.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_26PropertiesPatternConverterEEJEEEOT_DpOT0_', + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx6LayoutC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '14283265' + 'type' => '19230614' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14252201' - } - } + 'ShortName' => 'Layout' }, - '14310076' => { + '19302407' => { 'Artificial' => 1, - 'Class' => '14278020', + 'Class' => '5656119', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'htmllayout.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEED2Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14282406' + 'type' => '19229022' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzHTMLLayout', + 'Virt' => 1 }, - '14310077' => { + '19302408' => { 'Artificial' => 1, - 'Class' => '14278020', + 'Class' => '5656119', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'htmllayout.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEED0Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14282406' + 'type' => '19229022' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzHTMLLayout', + 'Virt' => 1 }, - '14310218' => { + '19302554' => { 'Artificial' => 1, - 'Class' => '14278020', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '5656119', + 'Destructor' => 1, + 'Header' => 'htmllayout.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEEC2Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14282406' + 'type' => '19229022' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzHTMLLayout', + 'Virt' => 1 }, - '14310219' => { + '19302649' => { 'Artificial' => 1, - 'Class' => '14278020', + 'Class' => '5656119', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'htmllayout.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEEC1Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14282406' + 'type' => '19229022' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzHTMLLayout' }, - '14330900' => { - 'Class' => '14279831', + '19302650' => { + 'Artificial' => 1, + 'Class' => '5656119', 'Constructor' => 1, - 'Header' => 'propertiespatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Header' => 'htmllayout.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19229022' + } + }, + 'ShortName' => 'ClazzHTMLLayout' + }, + '1939906' => { + 'Destructor' => 1, + 'Header' => 'threadspecificdata.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificDataD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1930099' + } + } + }, + '19569017' => { + 'Class' => '5647406', + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '29', + 'Static' => 1 + }, + '19569033' => { + 'Class' => '5647406', + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '29', + 'Static' => 1 + }, + '19569049' => { + 'Class' => '5647406', + 'Const' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19585626' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '29', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '19569086' => { + 'Class' => '5647406', + 'Const' => 1, + 'Header' => 'inetaddress.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283243' + 'type' => '19585626' }, '1' => { - 'name' => 'name1', - 'type' => '263006' - }, - '2' => { - 'name' => 'propertyName', - 'type' => '263006' + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'PropertiesPatternConverter', - 'Source' => 'propertiespatternconverter.cpp', - 'SourceLine' => '47' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '14339827' => { - 'Class' => '14279831', - 'Constructor' => 1, - 'Header' => 'propertiespatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '19569128' => { + 'Class' => '5647406', + 'Const' => 1, + 'Header' => 'inetaddress.h', + 'InLine' => 2, + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283243' - }, - '2' => { - 'name' => 'name1', - 'type' => '263006' + 'type' => '19585626' }, - '3' => { - 'name' => 'propertyName', - 'type' => '263006' + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'PropertiesPatternConverter', - 'Source' => 'propertiespatternconverter.cpp', - 'SourceLine' => '47' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '14353569' => { - 'Artificial' => 1, - 'Class' => '14279865', - 'Destructor' => 1, - 'Header' => 'propertiespatternconverter.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD0Ev', + '19569242' => { + 'Class' => '5647406', + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress12getAllByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'host', + 'type' => '210597' + } + }, + 'Return' => '19502218', + 'ShortName' => 'getAllByName', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '65', + 'Static' => 1 + }, + '19569269' => { + 'Class' => '5647406', + 'Header' => 'inetaddress.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress9getByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'host', + 'type' => '210597' + } + }, + 'Return' => '19570996', + 'ShortName' => 'getByName', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '122', + 'Static' => 1 + }, + '19569296' => { + 'Class' => '5647406', + 'Const' => 1, + 'Header' => 'inetaddress.h', + 'Line' => '65', + 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress14getHostAddressB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283898' + 'type' => '19585626' } }, - 'ShortName' => 'ClazzPropertiesPatternConverter', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getHostAddress', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '133' }, - '14353570' => { - 'Artificial' => 1, - 'Class' => '14279865', - 'Destructor' => 1, - 'Header' => 'propertiespatternconverter.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD1Ev', + '19569327' => { + 'Class' => '5647406', + 'Const' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress11getHostNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283898' + 'type' => '19585626' } }, - 'ShortName' => 'ClazzPropertiesPatternConverter', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getHostName', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '140' + }, + '19569358' => { + 'Class' => '5647406', + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress12getLocalHostEv', + 'Return' => '19570996', + 'ShortName' => 'getLocalHost', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '147', + 'Static' => 1 + }, + '19569374' => { + 'Class' => '5647406', + 'Header' => 'inetaddress.h', + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress10anyAddressEv', + 'Return' => '19570996', + 'ShortName' => 'anyAddress', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '153', + 'Static' => 1 + }, + '19569390' => { + 'Class' => '5647406', + 'Const' => 1, + 'Header' => 'inetaddress.h', + 'Line' => '83', + 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress8toStringB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19585626' + } + }, + 'Return' => '209661', + 'ShortName' => 'toString', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '162' + }, + '19571094' => { + 'Class' => '19571008', + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionaSERKS1_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19585786' + }, + '1' => { + 'name' => 'src', + 'type' => '19585791' + } + }, + 'Return' => '19585796', + 'ShortName' => 'operator=', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '47' + }, + '19571204' => { + 'Data' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7classes23InetAddressRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'InetAddressRegistration', + 'Source' => 'inetaddress.cpp' }, - '14353711' => { + '19590014' => { 'Artificial' => 1, - 'Class' => '14279865', + 'Class' => '19571008', 'Destructor' => 1, - 'Header' => 'propertiespatternconverter.h', + 'Header' => 'inetaddress.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD2Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283898' + 'type' => '19585786' } }, - 'ShortName' => 'ClazzPropertiesPatternConverter', + 'ShortName' => 'UnknownHostException', 'Virt' => 1 }, - '14353801' => { + '19590015' => { 'Artificial' => 1, - 'Class' => '14279865', - 'Constructor' => 1, - 'Header' => 'propertiespatternconverter.h', + 'Class' => '19571008', + 'Destructor' => 1, + 'Header' => 'inetaddress.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterC2Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283898' + 'type' => '19585786' } }, - 'ShortName' => 'ClazzPropertiesPatternConverter' + 'ShortName' => 'UnknownHostException', + 'Virt' => 1 }, - '14353802' => { + '19590209' => { 'Artificial' => 1, - 'Class' => '14279865', - 'Constructor' => 1, - 'Header' => 'propertiespatternconverter.h', + 'Class' => '19571008', + 'Destructor' => 1, + 'Header' => 'inetaddress.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterC1Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14283898' + 'type' => '19585786' } }, - 'ShortName' => 'ClazzPropertiesPatternConverter' + 'ShortName' => 'UnknownHostException', + 'Virt' => 1 }, - '1437159' => { + '1960439' => { 'Artificial' => 1, - 'Class' => '1424934', + 'Class' => '1913472', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1427006' + 'type' => '1937227' } }, 'ShortName' => 'WideLife' }, - '1437160' => { + '1960440' => { 'Artificial' => 1, - 'Class' => '1424934', + 'Class' => '1913472', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1427006' + 'type' => '1937227' } }, 'ShortName' => 'WideLife' }, - '1437300' => { + '1960582' => { 'Artificial' => 1, - 'Class' => '1424934', + 'Class' => '1913472', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1427006' + 'type' => '1937227' } }, 'ShortName' => 'WideLife' }, - '1437301' => { + '1960583' => { 'Artificial' => 1, - 'Class' => '1424934', + 'Class' => '1913472', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1427006' + 'type' => '1937227' } }, 'ShortName' => 'WideLife' }, - '1440689' => { - 'Class' => '1424215', - 'Destructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427219' - } - }, - 'ShortName' => 'ByteArrayOutputStream', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '38', - 'Virt' => 1 - }, - '1440690' => { - 'Class' => '1424215', - 'Destructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427219' - } - }, - 'ShortName' => 'ByteArrayOutputStream', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '38', - 'Virt' => 1 - }, - '1440784' => { - 'Class' => '1424215', - 'Destructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427219' - } - }, - 'ShortName' => 'ByteArrayOutputStream', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '38', - 'Virt' => 1 - }, - '1441859' => { - 'Class' => '1424215', - 'Constructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427219' - } - }, - 'ShortName' => 'ByteArrayOutputStream', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '34' - }, - '1441860' => { - 'Class' => '1424215', - 'Constructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427219' - } - }, - 'ShortName' => 'ByteArrayOutputStream', - 'Source' => 'bytearrayoutputstream.cpp', - 'SourceLine' => '34' - }, - '1444373' => { - 'Artificial' => 1, - 'Class' => '1424285', - 'Destructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427242' - } - }, - 'ShortName' => 'ClazzByteArrayOutputStream', - 'Virt' => 1 - }, - '1444374' => { - 'Artificial' => 1, - 'Class' => '1424285', - 'Destructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427242' - } - }, - 'ShortName' => 'ClazzByteArrayOutputStream', - 'Virt' => 1 - }, - '1444514' => { - 'Artificial' => 1, - 'Class' => '1424285', - 'Destructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427242' - } - }, - 'ShortName' => 'ClazzByteArrayOutputStream', - 'Virt' => 1 - }, - '1444604' => { - 'Artificial' => 1, - 'Class' => '1424285', - 'Constructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427242' - } - }, - 'ShortName' => 'ClazzByteArrayOutputStream' - }, - '1444605' => { - 'Artificial' => 1, - 'Class' => '1424285', - 'Constructor' => 1, - 'Header' => 'bytearrayoutputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1427242' - } - }, - 'ShortName' => 'ClazzByteArrayOutputStream' - }, - '14540954' => { - 'Class' => '14540867', - 'Const' => 1, - 'Header' => 'stringtokenizer.h', - 'Line' => '33', - 'MnglName' => '_ZNK7log4cxx7helpers15StringTokenizer13hasMoreTokensEv', + '19614659' => { + 'Artificial' => 1, + 'Class' => '19569840', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17672669' + 'type' => '19584707' } }, - 'Return' => '50284', - 'ShortName' => 'hasMoreTokens', - 'Source' => 'stringtokenizer.cpp', - 'SourceLine' => '46' + 'ShortName' => 'WideLife' }, - '14540985' => { - 'Class' => '14540867', - 'Header' => 'stringtokenizer.h', - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizer9nextTokenB5cxx11Ev', + '19614660' => { + 'Artificial' => 1, + 'Class' => '19569840', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17672658' + 'type' => '19584707' } }, - 'Return' => '63706', - 'ShortName' => 'nextToken', - 'Source' => 'stringtokenizer.cpp', - 'SourceLine' => '52' + 'ShortName' => 'WideLife' }, - '14545408' => { - 'Class' => '14545351', - 'Header' => 'propertysetter.h', - 'Line' => '86', - 'MnglName' => '_ZN7log4cxx6config14PropertySetter13setPropertiesERKSt10shared_ptrINS_7helpers6ObjectEERNS3_10PropertiesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', + '19614802' => { + 'Artificial' => 1, + 'Class' => '19569840', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEEC2Ev', 'Param' => { '0' => { - 'name' => 'obj', - 'type' => '652213' - }, - '1' => { - 'name' => 'properties', - 'type' => '840063' - }, - '2' => { - 'name' => 'prefix', - 'type' => '263006' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'this', + 'type' => '19584707' } }, - 'Return' => '1', - 'ShortName' => 'setProperties', - 'Source' => 'propertysetter.cpp', - 'SourceLine' => '38', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '14545446' => { - 'Class' => '14545351', - 'Header' => 'propertysetter.h', - 'Line' => '95', - 'MnglName' => '_ZN7log4cxx6config14PropertySetter13setPropertiesERNS_7helpers10PropertiesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS2_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15132089' + '19614803' => { + 'Artificial' => 1, + 'Class' => '19569840', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19584707' + } + }, + 'ShortName' => 'WideLife' + }, + '19638671' => { + 'Class' => '5647406', + 'Destructor' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddressD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19585200' + } + }, + 'ShortName' => 'InetAddress', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '61', + 'Virt' => 1 + }, + '19638672' => { + 'Class' => '5647406', + 'Destructor' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddressD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19585200' + } + }, + 'ShortName' => 'InetAddress', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '61', + 'Virt' => 1 + }, + '19638766' => { + 'Class' => '5647406', + 'Destructor' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddressD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19585200' + } + }, + 'ShortName' => 'InetAddress', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '61', + 'Virt' => 1 + }, + '19640588' => { + 'Class' => '5647406', + 'Constructor' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddressC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19585200' }, '1' => { - 'name' => 'properties', - 'type' => '840063' + 'name' => 'hostName', + 'type' => '210597' }, '2' => { - 'name' => 'prefix', - 'type' => '263006' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'hostAddr', + 'type' => '210597' } }, - 'Return' => '1', - 'ShortName' => 'setProperties', - 'Source' => 'propertysetter.cpp', - 'SourceLine' => '47' + 'ShortName' => 'InetAddress', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '54' }, - '14545488' => { - 'Class' => '14545351', - 'Header' => 'propertysetter.h', - 'Line' => '108', - 'MnglName' => '_ZN7log4cxx6config14PropertySetter11setPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RNS_7helpers4PoolE', + '19644147' => { + 'Class' => '19571008', + 'Constructor' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15132089' + 'type' => '19585786' }, '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'name' => 'src', + 'type' => '19585791' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'setProperty', - 'Source' => 'propertysetter.cpp', - 'SourceLine' => '86' + 'ShortName' => 'UnknownHostException', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '42' }, - '14545530' => { - 'Class' => '14545351', - 'Header' => 'propertysetter.h', - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx6config14PropertySetter8activateERNS_7helpers4PoolE', + '19644148' => { + 'Class' => '19571008', + 'Constructor' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionC1ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15132089' + 'type' => '19585786' }, '1' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'src', + 'type' => '19585791' } }, - 'Return' => '1', - 'ShortName' => 'activate', - 'Source' => 'propertysetter.cpp', - 'SourceLine' => '104' - }, - '14545584' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'Line' => '81', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '66', - 'Static' => 1 + 'ShortName' => 'UnknownHostException', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '42' }, - '14545596' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'Line' => '202', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender16setRollingPolicyERKSt10shared_ptrINS0_13RollingPolicyEE', + '19644272' => { + 'Class' => '19571008', + 'Constructor' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '19585786' }, '1' => { - 'name' => 'policy', - 'type' => '15780257' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'setRollingPolicy', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '503' + 'ShortName' => 'UnknownHostException', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '37' }, - '14545608' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'Line' => '207', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender19setTriggeringPolicyERKSt10shared_ptrINS0_16TriggeringPolicyEE', + '19644273' => { + 'Class' => '19571008', + 'Constructor' => 1, + 'Header' => 'inetaddress.h', + 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '19585786' }, '1' => { - 'name' => 'policy', - 'type' => '15780263' + 'name' => 'msg1', + 'type' => '210597' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'setTriggeringPolicy', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '511' + 'ShortName' => 'UnknownHostException', + 'Source' => 'inetaddress.cpp', + 'SourceLine' => '37' }, - '14545826' => { - 'Class' => '14545709', - 'InLine' => 2, - 'Line' => '65', - 'MnglName' => '_ZN7log4cxx16PropertyWatchdog10doOnChangeEv', + '19646293' => { + 'Artificial' => 1, + 'Class' => '5647420', + 'Destructor' => 1, + 'Header' => 'inetaddress.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14552800' + 'type' => '19585766' } }, - 'Return' => '1', - 'ShortName' => 'doOnChange', - 'Source' => 'propertyconfigurator.cpp', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'ClazzInetAddress', + 'Virt' => 1 }, - '14546038' => { - 'Class' => '14545917', - 'Const' => 1, - 'Header' => 'propertyconfigurator.h', - 'InLine' => 2, - 'Line' => '102', - 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator7getNameB5cxx11Ev', + '19646294' => { + 'Artificial' => 1, + 'Class' => '5647420', + 'Destructor' => 1, + 'Header' => 'inetaddress.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14556018' + 'type' => '19585766' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzInetAddress', + 'Virt' => 1 }, - '14546078' => { - 'Class' => '14545917', - 'Const' => 1, - 'Header' => 'propertyconfigurator.h', - 'InLine' => 2, - 'Line' => '102', - 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv', + '19646439' => { + 'Artificial' => 1, + 'Class' => '5647420', + 'Destructor' => 1, + 'Header' => 'inetaddress.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14556018' + 'type' => '19585766' } }, - 'Return' => '12820483', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzInetAddress', + 'Virt' => 1 }, - '14546118' => { + '19646533' => { 'Artificial' => 1, - 'Class' => '14545917', - 'Header' => 'propertyconfigurator.h', - 'InLine' => 2, - 'Line' => '102', - 'MnglName' => '_ZTch0_h0_NK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv', + 'Class' => '5647420', + 'Constructor' => 1, + 'Header' => 'inetaddress.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14556018' + 'type' => '19585766' } }, - 'Return' => '12820483', - 'ShortName' => '_ZTch0_h0_NK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv' + 'ShortName' => 'ClazzInetAddress' }, - '14546207' => { - 'Class' => '12815699', - 'Const' => 1, - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator8getClassEv', + '19646534' => { + 'Artificial' => 1, + 'Class' => '5647420', + 'Constructor' => 1, + 'Header' => 'inetaddress.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555932' + 'type' => '19585766' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '75', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '14546247' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '75', - 'Static' => 1 + 'ShortName' => 'ClazzInetAddress' }, - '14546264' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator13registerClassEv', - 'Return' => '64684', + '1974992' => { + 'Class' => '1908928', + 'Destructor' => 1, + 'Header' => 'aprinitializer.h', + 'Line' => '91', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializerD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1924115' + } + }, + 'ShortName' => 'APRInitializer', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '94' + }, + '1976938' => { + 'Class' => '1908928', + 'Constructor' => 1, + 'Header' => 'aprinitializer.h', + 'Line' => '78', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializerC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1924115' + } + }, + 'Private' => 1, + 'ShortName' => 'APRInitializer', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '83' + }, + '1976939' => { + 'Class' => '1908928', + 'Constructor' => 1, + 'Header' => 'aprinitializer.h', + 'Line' => '78', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializerC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1924115' + } + }, + 'Private' => 1, + 'ShortName' => 'APRInitializer', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '83' + }, + '1980108' => { + 'Line' => '59', + 'Param' => { + '0' => { + 'name' => 'ptr', + 'type' => '190924' + } + }, + 'Return' => '1', + 'ShortName' => 'tlsDestruct', + 'Source' => 'aprinitializer.cpp' + }, + '19802190' => { + 'Class' => '3605480', + 'Header' => 'inputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers11InputStream13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '75', + 'Source' => 'inputstream.cpp', + 'SourceLine' => '24', 'Static' => 1 }, - '14546281' => { - 'Class' => '12815699', + '19802206' => { + 'Class' => '3605480', 'Const' => 1, - 'Header' => 'propertyconfigurator.h', - 'InLine' => 2, - 'Line' => '103', - 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator4castERKNS_7helpers5ClassE', + 'Header' => 'inputstream.h', + 'MnglName' => '_ZNK7log4cxx7helpers11InputStream8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555932' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '3625386' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'inputstream.cpp', + 'SourceLine' => '24', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '2' }, - '14546326' => { - 'Class' => '12815699', + '19802285' => { + 'Class' => '3605480', 'Const' => 1, - 'Header' => 'propertyconfigurator.h', + 'Header' => 'inputstream.h', 'InLine' => 2, - 'Line' => '105', - 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator10instanceofERKNS_7helpers5ClassE', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7helpers11InputStream10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555932' + 'type' => '3625386' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '14546451' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11doConfigureERKNS_4FileESt10shared_ptrINS_3spi16LoggerRepositoryEE', + '19802391' => { + 'Class' => '3605480', + 'Header' => 'inputstream.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx7helpers11InputStream4readERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' + 'type' => '3610658' }, '1' => { - 'name' => 'configFileName', - 'type' => '840075' - }, - '2' => { - 'name' => 'hierarchy', - 'type' => '835664' + 'name' => 'p1', + 'type' => '210612' } }, - 'Return' => '2699607', - 'ShortName' => 'doConfigure', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '87', - 'Virt' => 1, + 'PureVirt' => 1, + 'Return' => '190263', + 'ShortName' => 'read', 'VirtPos' => '5' }, - '14546501' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator9configureERKNS_4FileE', + '19802433' => { + 'Class' => '3605480', + 'Header' => 'inputstream.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx7helpers11InputStream5closeEv', 'Param' => { '0' => { - 'name' => 'configFilename', - 'type' => '840075' + 'name' => 'this', + 'type' => '3610658' } }, - 'Return' => '2699607', - 'ShortName' => 'configure', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '123', - 'Static' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'close', + 'VirtPos' => '6' }, - '14546528' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator17configureAndWatchERKNS_4FileE', + '19803406' => { + 'Data' => 1, + 'Line' => '24', + 'MnglName' => '_ZN7log4cxx7classes23InputStreamRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'InputStreamRegistration', + 'Source' => 'inputstream.cpp' + }, + '19807667' => { + 'Artificial' => 1, + 'Class' => '19801645', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEED2Ev', 'Param' => { '0' => { - 'name' => 'configFilename', - 'type' => '840075' + 'name' => 'this', + 'type' => '19803598' } }, - 'Return' => '2699607', - 'ShortName' => 'configureAndWatch', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '133', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '14546555' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator17configureAndWatchERKNS_4FileEl', + '19807668' => { + 'Artificial' => 1, + 'Class' => '19801645', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEED0Ev', 'Param' => { '0' => { - 'name' => 'configFilename', - 'type' => '840075' - }, - '1' => { - 'name' => 'delay', - 'type' => '50244' + 'name' => 'this', + 'type' => '19803598' } }, - 'Return' => '2699607', - 'ShortName' => 'configureAndWatch', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '140', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '14546587' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator9configureERNS_7helpers10PropertiesE', + '19807809' => { + 'Artificial' => 1, + 'Class' => '19801645', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEEC2Ev', 'Param' => { '0' => { - 'name' => 'properties', - 'type' => '840063' + 'name' => 'this', + 'type' => '19803598' } }, - 'Return' => '2699607', - 'ShortName' => 'configure', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '128', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '14546614' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11doConfigureERNS_7helpers10PropertiesESt10shared_ptrINS_3spi16LoggerRepositoryEE', + '19807810' => { + 'Artificial' => 1, + 'Class' => '19801645', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' - }, - '1' => { - 'name' => 'properties', - 'type' => '840063' - }, - '2' => { - 'name' => 'hierarchy', - 'type' => '835664' + 'type' => '19803598' } }, - 'Return' => '2699607', - 'ShortName' => 'doConfigure', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '159' + 'ShortName' => 'WideLife' }, - '14546655' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator22configureLoggerFactoryERNS_7helpers10PropertiesE', + '19808187' => { + 'Class' => '3605480', + 'Destructor' => 1, + 'Header' => 'inputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers11InputStreamD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' - }, - '1' => { - 'name' => 'props', - 'type' => '840063' + 'type' => '3610663' } }, 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'configureLoggerFactory', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '216' + 'ShortName' => 'InputStream', + 'Source' => 'inputstream.cpp', + 'SourceLine' => '30', + 'Virt' => 1 }, - '14546687' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator19configureRootLoggerERNS_7helpers10PropertiesERSt10shared_ptrINS_3spi16LoggerRepositoryEE', + '19810370' => { + 'Artificial' => 1, + 'Class' => '3605490', + 'Destructor' => 1, + 'Header' => 'inputstream.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' - }, - '1' => { - 'name' => 'props', - 'type' => '840063' - }, - '2' => { - 'name' => 'hierarchy', - 'type' => '14555959' + 'type' => '19803999' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'configureRootLogger', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '239' + 'ShortName' => 'ClazzInputStream', + 'Virt' => 1 }, - '14546724' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator21parseCatsAndRenderersERNS_7helpers10PropertiesERSt10shared_ptrINS_3spi16LoggerRepositoryEE', + '19810371' => { + 'Artificial' => 1, + 'Class' => '3605490', + 'Destructor' => 1, + 'Header' => 'inputstream.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' - }, - '1' => { - 'name' => 'props', - 'type' => '840063' - }, - '2' => { - 'name' => 'hierarchy', - 'type' => '14555959' + 'type' => '19803999' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'parseCatsAndRenderers', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '269' + 'ShortName' => 'ClazzInputStream', + 'Virt' => 1 }, - '14546762' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator24parseAdditivityForLoggerERNS_7helpers10PropertiesERSt10shared_ptrINS_6LoggerEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '19810515' => { + 'Artificial' => 1, + 'Class' => '3605490', + 'Destructor' => 1, + 'Header' => 'inputstream.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' - }, - '1' => { - 'name' => 'props', - 'type' => '840063' - }, - '2' => { - 'name' => 'cat', - 'type' => '7201841' - }, - '3' => { - 'name' => 'loggerName', - 'type' => '263006' + 'type' => '19803999' } }, - 'Protected' => 1, - 'Return' => '50284', - 'ShortName' => 'parseAdditivityForLogger', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '307' + 'ShortName' => 'ClazzInputStream', + 'Virt' => 1 }, - '14546809' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11parseLoggerERNS_7helpers10PropertiesERSt10shared_ptrINS_6LoggerEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESF_SF_b', + '19810609' => { + 'Artificial' => 1, + 'Class' => '3605490', + 'Constructor' => 1, + 'Header' => 'inputstream.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' - }, - '1' => { - 'name' => 'props', - 'type' => '840063' - }, - '2' => { - 'name' => 'logger', - 'type' => '7201841' - }, - '3' => { - 'name' => 'p3', - 'type' => '263006' - }, - '4' => { - 'name' => 'loggerName', - 'type' => '263006' - }, - '5' => { - 'name' => 'value', - 'type' => '263006' - }, - '6' => { - 'name' => 'additivity', - 'offset' => '0', - 'type' => '50284' + 'type' => '19803999' } }, - 'Protected' => 1, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'parseLogger', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '337' + 'ShortName' => 'ClazzInputStream' }, - '14546867' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator13parseAppenderERNS_7helpers10PropertiesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '19810610' => { + 'Artificial' => 1, + 'Class' => '3605490', + 'Constructor' => 1, + 'Header' => 'inputstream.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' - }, - '1' => { - 'name' => 'props', - 'type' => '840063' - }, - '2' => { - 'name' => 'appenderName', - 'type' => '263006' + 'type' => '19803999' } }, - 'Protected' => 1, - 'Return' => '262988', - 'ShortName' => 'parseAppender', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '420' + 'ShortName' => 'ClazzInputStream' }, - '14546909' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11registryPutERKSt10shared_ptrINS_8AppenderEE', + '19983037' => { + 'Class' => '19982924', + 'Const' => 1, + 'Header' => 'inputstreamreader.h', + 'InLine' => 2, + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7helpers17InputStreamReader22ClazzInputStreamReader7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' - }, - '1' => { - 'name' => 'appender', - 'type' => '1151508' + 'type' => '19987810' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'registryPut', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '537' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '14546942' => { - 'Class' => '12815699', - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11registryGetERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '19983095' => { + 'Class' => '19982774', + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '30', + 'Static' => 1 + }, + '19983111' => { + 'Class' => '19982774', + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '30', + 'Static' => 1 + }, + '19983127' => { + 'Class' => '19982774', + 'Const' => 1, + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZNK7log4cxx7helpers17InputStreamReader8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' - }, - '1' => { - 'name' => 'name', - 'type' => '263006' + 'type' => '19987770' } }, - 'Protected' => 1, - 'Return' => '262988', - 'ShortName' => 'registryGet', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '542' - }, - '14547088' => { - 'Data' => 1, - 'Line' => '75', - 'MnglName' => '_ZN7log4cxx7classes32PropertyConfiguratorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'PropertyConfiguratorRegistration', - 'Source' => 'propertyconfigurator.cpp' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '30', + 'Virt' => 1, + 'VirtPos' => '2' }, - '14547345' => { - 'Header' => 'object.h', + '19983164' => { + 'Class' => '19982774', + 'Const' => 1, + 'Header' => 'inputstreamreader.h', 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7rolling16TriggeringPolicyENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx7helpers17InputStreamReader4castERKNS0_5ClassE', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'name' => 'this', + 'type' => '19987770' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '14502554', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '6059004' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '14547389' => { - 'Header' => 'object.h', + '19983206' => { + 'Class' => '19982774', + 'Const' => 1, + 'Header' => 'inputstreamreader.h', 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7rolling13RollingPolicyENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', + 'Line' => '50', + 'MnglName' => '_ZNK7log4cxx7helpers17InputStreamReader10instanceofERKNS0_5ClassE', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' - } + 'name' => 'this', + 'type' => '19987770' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } }, - 'Return' => '14500654', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '6294384' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '14547433' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7rolling19RollingFileAppenderENS_8AppenderELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + '19983350' => { + 'Class' => '19982774', + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader5closeERNS0_4PoolE', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '264581' + 'name' => 'this', + 'type' => '19987780' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'Return' => '14496808', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '14545574' - }, - '1' => { - 'key' => 'Type', - 'type' => '262983' - } - } + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '70', + 'Virt' => 1, + 'VirtPos' => '5' }, - '14547477' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_6LayoutENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + '19983389' => { + 'Class' => '19982774', + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader4readB5cxx11ERNS0_4PoolE', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'name' => 'this', + 'type' => '19987780' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '378391', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '409118' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'Return' => '209661', + 'ShortName' => 'read', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '75', + 'Virt' => 1, + 'VirtPos' => '6' }, - '14547521' => { - 'Header' => 'object.h', + '19984779' => { + 'Class' => '19984696', + 'Const' => 1, + 'Header' => 'reader.h', 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_8AppenderENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx7helpers6Reader11ClazzReader7getNameB5cxx11Ev', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'name' => 'this', + 'type' => '38613098' } }, - 'Return' => '232317', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '262983' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '14547565' => { - 'Header' => 'object.h', + '19984818' => { + 'Class' => '19984687', + 'Header' => 'reader.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Reader14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'reader.cpp', + 'SourceLine' => '23', + 'Static' => 1 + }, + '19984897' => { + 'Class' => '19984687', + 'Const' => 1, + 'Header' => 'reader.h', 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3spi13LoggerFactoryENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx7helpers6Reader4castERKNS0_5ClassE', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'name' => 'this', + 'type' => '20011083' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '1118582', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '4199656' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '14552805' => { - 'Class' => '12815699', + '19985964' => { 'Data' => 1, - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator4pdogE', - 'Return' => '14552794', - 'ShortName' => 'pdog', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '73' + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7classes29InputStreamReaderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'InputStreamReaderRegistration', + 'Source' => 'inputstreamreader.cpp' }, - '14560045' => { - 'Artificial' => 1, - 'Class' => '14545709', + '19988768' => { + 'Class' => '19984687', 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx16PropertyWatchdogD0Ev', + 'Header' => 'reader.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers6ReaderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14552800' + 'type' => '19988763' } }, - 'ShortName' => 'PropertyWatchdog', - 'Source' => 'propertyconfigurator.cpp', + 'Protected' => 1, + 'ShortName' => 'Reader', + 'Source' => 'reader.cpp', + 'SourceLine' => '29', 'Virt' => 1 }, - '14560046' => { - 'Artificial' => 1, - 'Class' => '14545709', + '19988769' => { + 'Class' => '19984687', 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx16PropertyWatchdogD1Ev', + 'Header' => 'reader.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers6ReaderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14552800' + 'type' => '19988763' } }, - 'ShortName' => 'PropertyWatchdog', - 'Source' => 'propertyconfigurator.cpp', + 'Protected' => 1, + 'ShortName' => 'Reader', + 'Source' => 'reader.cpp', + 'SourceLine' => '29', 'Virt' => 1 }, - '14560187' => { - 'Artificial' => 1, - 'Class' => '14545709', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx16PropertyWatchdogD2Ev', + '19988837' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '70', + 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14552800' + 'type' => '11525657' + }, + '1' => { + 'name' => 'msg', + 'type' => '210597' } - }, - 'ShortName' => 'PropertyWatchdog', - 'Source' => 'propertyconfigurator.cpp', - 'Virt' => 1 + } }, - '14631405' => { - 'Artificial' => 1, - 'Class' => '1149270', + '19988896' => { + 'Class' => '19984687', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA18_KcJEEEOT_DpOT0_', + 'Header' => 'reader.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers6ReaderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '14554861' + 'type' => '19988763' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14554861' - } - } + 'Protected' => 1, + 'ShortName' => 'Reader', + 'Source' => 'reader.cpp', + 'SourceLine' => '25' }, - '14631406' => { - 'Artificial' => 1, - 'Class' => '1149270', + '19988897' => { + 'Class' => '19984687', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA18_KcJEEEOT_DpOT0_', + 'Header' => 'reader.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers6ReaderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '14554861' + 'type' => '19988763' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14554861' - } - } + 'Protected' => 1, + 'ShortName' => 'Reader', + 'Source' => 'reader.cpp', + 'SourceLine' => '25' }, - '14631885' => { + '19997554' => { 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, + 'Class' => '19983630', + 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA14_KcJEEEOT_DpOT0_', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '14553742' + 'type' => '19987159' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14553742' - } - } + 'ShortName' => 'WideLife' }, - '14631886' => { + '19997555' => { 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, + 'Class' => '19983630', + 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA14_KcJEEEOT_DpOT0_', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '14553742' + 'type' => '19987159' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14553742' - } - } + 'ShortName' => 'WideLife' }, - '14632023' => { + '19997696' => { 'Artificial' => 1, - 'Class' => '1149270', + 'Class' => '19983630', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA5_KcJEEEOT_DpOT0_', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8378131' + 'type' => '19987159' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '8378131' - } - } + 'ShortName' => 'WideLife' }, - '14632024' => { + '19997697' => { 'Artificial' => 1, - 'Class' => '1149270', + 'Class' => '19983630', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA5_KcJEEEOT_DpOT0_', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8378131' + 'type' => '19987159' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '8378131' - } - } + 'ShortName' => 'WideLife' }, - '14632371' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA17_KcJEEEOT_DpOT0_', + '20001025' => { + 'Class' => '19982774', + 'Destructor' => 1, + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '14553764' + 'type' => '19987780' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14553764' - } - } + 'ShortName' => 'InputStreamReader', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '66', + 'Virt' => 1 }, - '14632372' => { - 'Artificial' => 1, - 'Class' => '1149270', + '20001026' => { + 'Class' => '19982774', + 'Destructor' => 1, + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19987780' + } + }, + 'ShortName' => 'InputStreamReader', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '66', + 'Virt' => 1 + }, + '20001119' => { + 'Class' => '19982774', + 'Destructor' => 1, + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19987780' + } + }, + 'ShortName' => 'InputStreamReader', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '66', + 'Virt' => 1 + }, + '20002803' => { + 'Class' => '19982774', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA17_KcJEEEOT_DpOT0_', + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderC2ERKSt10shared_ptrINS0_11InputStreamEERKS2_INS0_14CharsetDecoderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '19987780' }, '1' => { - 'name' => 'arg0', - 'type' => '14553764' + 'name' => 'in1', + 'type' => '19987480' + }, + '2' => { + 'name' => 'dec1', + 'type' => '19987485' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14553764' - } - } + 'ShortName' => 'InputStreamReader', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '52' }, - '14632509' => { - 'Artificial' => 1, - 'Class' => '1149270', + '20006058' => { + 'Class' => '19982774', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA19_KcJEEEOT_DpOT0_', + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderC2ERKSt10shared_ptrINS0_11InputStreamEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '19987780' }, '1' => { - 'name' => 'arg0', - 'type' => '14554817' + 'name' => 'in1', + 'type' => '19987480' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14554817' - } - } + 'ShortName' => 'InputStreamReader', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '43' }, - '14632510' => { - 'Artificial' => 1, - 'Class' => '1149270', + '20006059' => { + 'Class' => '19982774', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA19_KcJEEEOT_DpOT0_', + 'Header' => 'inputstreamreader.h', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderC1ERKSt10shared_ptrINS0_11InputStreamEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '19987780' }, '1' => { - 'name' => 'arg0', - 'type' => '14554817' + 'name' => 'in1', + 'type' => '19987480' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14554817' - } - } + 'ShortName' => 'InputStreamReader', + 'Source' => 'inputstreamreader.cpp', + 'SourceLine' => '43' }, - '14632729' => { + '20010816' => { 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '19982924', + 'Destructor' => 1, + 'Header' => 'inputstreamreader.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA15_KcJEEEOT_DpOT0_', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8263693' + 'type' => '19987800' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '8263693' - } - } + 'ShortName' => 'ClazzInputStreamReader', + 'Virt' => 1 }, - '14632730' => { + '20010817' => { 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '19982924', + 'Destructor' => 1, + 'Header' => 'inputstreamreader.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA15_KcJEEEOT_DpOT0_', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8263693' + 'type' => '19987800' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '8263693' - } - } + 'ShortName' => 'ClazzInputStreamReader', + 'Virt' => 1 }, - '14634242' => { + '20010961' => { 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '19982924', + 'Destructor' => 1, + 'Header' => 'inputstreamreader.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA16_KcJEEEOT_DpOT0_', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '14554673' + 'type' => '19987800' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14554673' - } - } + 'ShortName' => 'ClazzInputStreamReader', + 'Virt' => 1 }, - '14634243' => { + '20011055' => { 'Artificial' => 1, - 'Class' => '1149270', + 'Class' => '19982924', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'inputstreamreader.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA16_KcJEEEOT_DpOT0_', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '14554673' + 'type' => '19987800' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '14554673' - } - } + 'ShortName' => 'ClazzInputStreamReader' }, - '14635159' => { + '20011056' => { 'Artificial' => 1, - 'Class' => '1149270', + 'Class' => '19982924', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'inputstreamreader.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA12_KcJEEEOT_DpOT0_', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19987800' + } + }, + 'ShortName' => 'ClazzInputStreamReader' + }, + '20165993' => { + 'Class' => '16765851', + 'Const' => 1, + 'Header' => 'integer.h', + 'MnglName' => '_ZNK7log4cxx7helpers7Integer8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '20167679' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'integer.cpp', + 'SourceLine' => '24', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '20166030' => { + 'Class' => '16765851', + 'Header' => 'integer.h', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers7Integer14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'integer.cpp', + 'SourceLine' => '24', + 'Static' => 1 + }, + '20166046' => { + 'Class' => '16765851', + 'Header' => 'integer.h', + 'MnglName' => '_ZN7log4cxx7helpers7Integer13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'integer.cpp', + 'SourceLine' => '24', + 'Static' => 1 + }, + '20166062' => { + 'Class' => '16765851', + 'Const' => 1, + 'Header' => 'integer.h', + 'InLine' => 2, + 'Line' => '33', + 'MnglName' => '_ZNK7log4cxx7helpers7Integer4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '20167679' }, '1' => { - 'name' => 'arg0', - 'type' => '2461118' + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '2461118' - } - } + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '14635160' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA12_KcJEEEOT_DpOT0_', + '20166104' => { + 'Class' => '16765851', + 'Const' => 1, + 'Header' => 'integer.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7helpers7Integer10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '20167679' }, '1' => { - 'name' => 'arg0', - 'type' => '2461118' + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '2461118' - } - } + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '20167101' => { + 'Data' => 1, + 'Line' => '24', + 'MnglName' => '_ZN7log4cxx7classes19IntegerRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'IntegerRegistration', + 'Source' => 'integer.cpp' }, - '14636226' => { + '20171347' => { 'Artificial' => 1, - 'Class' => '14542055', + 'Class' => '20165389', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14552831' + 'type' => '20167293' } }, 'ShortName' => 'WideLife' }, - '14636227' => { + '20171348' => { 'Artificial' => 1, - 'Class' => '14542055', + 'Class' => '20165389', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14552831' + 'type' => '20167293' } }, 'ShortName' => 'WideLife' }, - '14636368' => { + '20171489' => { 'Artificial' => 1, - 'Class' => '14542055', + 'Class' => '20165389', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14552831' + 'type' => '20167293' } }, 'ShortName' => 'WideLife' }, - '14636369' => { + '20171490' => { 'Artificial' => 1, - 'Class' => '14542055', + 'Class' => '20165389', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14552831' + 'type' => '20167293' } }, 'ShortName' => 'WideLife' }, - '14962062' => { - 'Class' => '12815699', + '20171867' => { + 'Class' => '16765851', 'Destructor' => 1, - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorD0Ev', + 'Header' => 'integer.h', + 'MnglName' => '_ZN7log4cxx7helpers7IntegerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' + 'type' => '16787916' } }, - 'ShortName' => 'PropertyConfigurator', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '82', + 'ShortName' => 'Integer', + 'Source' => 'integer.cpp', + 'SourceLine' => '35', 'Virt' => 1 }, - '14962161' => { - 'Class' => '12815699', + '20171868' => { + 'Class' => '16765851', 'Destructor' => 1, - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorD1Ev', + 'Header' => 'integer.h', + 'MnglName' => '_ZN7log4cxx7helpers7IntegerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' + 'type' => '16787916' } }, - 'ShortName' => 'PropertyConfigurator', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '82', + 'ShortName' => 'Integer', + 'Source' => 'integer.cpp', + 'SourceLine' => '35', 'Virt' => 1 }, - '14963315' => { - 'Class' => '12815699', + '20171962' => { + 'Class' => '16765851', 'Destructor' => 1, - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorD2Ev', + 'Header' => 'integer.h', + 'MnglName' => '_ZN7log4cxx7helpers7IntegerD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' + 'type' => '16787916' } }, - 'ShortName' => 'PropertyConfigurator', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '82', + 'ShortName' => 'Integer', + 'Source' => 'integer.cpp', + 'SourceLine' => '35', 'Virt' => 1 }, - '14964463' => { - 'Class' => '12815699', + '20172089' => { + 'Class' => '16765851', 'Constructor' => 1, - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorC1Ev', + 'Header' => 'integer.h', + 'MnglName' => '_ZN7log4cxx7helpers7IntegerC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' + 'type' => '16787916' + }, + '1' => { + 'name' => 'val1', + 'type' => '190263' } }, - 'ShortName' => 'PropertyConfigurator', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '77' + 'ShortName' => 'Integer', + 'Source' => 'integer.cpp', + 'SourceLine' => '31' }, - '14965627' => { - 'Class' => '12815699', + '20172212' => { + 'Class' => '16765851', 'Constructor' => 1, - 'Header' => 'propertyconfigurator.h', - 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorC2Ev', + 'Header' => 'integer.h', + 'MnglName' => '_ZN7log4cxx7helpers7IntegerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14555943' + 'type' => '16787916' } }, - 'ShortName' => 'PropertyConfigurator', - 'Source' => 'propertyconfigurator.cpp', - 'SourceLine' => '77' + 'ShortName' => 'Integer', + 'Source' => 'integer.cpp', + 'SourceLine' => '27' }, - '14966890' => { - 'Artificial' => 1, - 'Class' => '2699638', - 'Destructor' => 1, - 'Header' => 'configurator.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorD2Ev', + '20172213' => { + 'Class' => '16765851', + 'Constructor' => 1, + 'Header' => 'integer.h', + 'MnglName' => '_ZN7log4cxx7helpers7IntegerC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2701296' + 'type' => '16787916' } }, - 'ShortName' => 'Configurator', - 'Virt' => 1 - }, - '14966891' => { - 'Artificial' => 1, - 'Class' => '2699638', - 'Destructor' => 1, - 'Header' => 'configurator.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701296' - } - }, - 'ShortName' => 'Configurator', - 'Virt' => 1 + 'ShortName' => 'Integer', + 'Source' => 'integer.cpp', + 'SourceLine' => '27' }, - '14970598' => { + '20174328' => { 'Artificial' => 1, - 'Class' => '14545917', + 'Class' => '16765860', 'Destructor' => 1, - 'Header' => 'propertyconfigurator.h', + 'Header' => 'integer.h', 'InLine' => 1, - 'Line' => '102', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD0Ev', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14556007' + 'type' => '20167689' } }, - 'ShortName' => 'ClazzPropertyConfigurator', + 'ShortName' => 'ClazzInteger', 'Virt' => 1 }, - '14970599' => { + '20174329' => { 'Artificial' => 1, - 'Class' => '14545917', + 'Class' => '16765860', 'Destructor' => 1, - 'Header' => 'propertyconfigurator.h', + 'Header' => 'integer.h', 'InLine' => 1, - 'Line' => '102', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD1Ev', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14556007' + 'type' => '20167689' } }, - 'ShortName' => 'ClazzPropertyConfigurator', + 'ShortName' => 'ClazzInteger', 'Virt' => 1 }, - '14970740' => { + '20174473' => { 'Artificial' => 1, - 'Class' => '14545917', + 'Class' => '16765860', 'Destructor' => 1, - 'Header' => 'propertyconfigurator.h', + 'Header' => 'integer.h', 'InLine' => 1, - 'Line' => '102', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD2Ev', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14556007' + 'type' => '20167689' } }, - 'ShortName' => 'ClazzPropertyConfigurator', + 'ShortName' => 'ClazzInteger', 'Virt' => 1 }, - '14970830' => { + '20174567' => { 'Artificial' => 1, - 'Class' => '14545917', + 'Class' => '16765860', 'Constructor' => 1, - 'Header' => 'propertyconfigurator.h', + 'Header' => 'integer.h', 'InLine' => 1, - 'Line' => '102', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorC2Ev', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14556007' + 'type' => '20167689' } }, - 'ShortName' => 'ClazzPropertyConfigurator' + 'ShortName' => 'ClazzInteger' }, - '14970831' => { + '20174568' => { 'Artificial' => 1, - 'Class' => '14545917', + 'Class' => '16765860', 'Constructor' => 1, - 'Header' => 'propertyconfigurator.h', + 'Header' => 'integer.h', 'InLine' => 1, - 'Line' => '102', - 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14556007' - } - }, - 'ShortName' => 'ClazzPropertyConfigurator' - }, - '15035991' => { - 'Class' => '7062496', - 'Const' => 1, - 'Header' => 'resourcebundle.h', - 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15054834' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '15036035' => { - 'Class' => '7062496', - 'Const' => 1, - 'Header' => 'resourcebundle.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15054834' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '15036079' => { - 'Class' => '7062496', - 'Header' => 'resourcebundle.h', - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'resourcebundle.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '15037028' => { - 'Class' => '15036908', - 'Const' => 1, - 'Header' => 'propertyresourcebundle.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundle7getNameB5cxx11Ev', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039121' + 'type' => '20167689' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzInteger' }, - '15037137' => { - 'Class' => '15036891', - 'Header' => 'propertyresourcebundle.h', + '20377560' => { + 'Class' => '16774354', + 'Header' => 'integerpatternconverter.h', 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle14getStaticClassEv', - 'Return' => '64678', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'propertyresourcebundle.cpp', - 'SourceLine' => '28', + 'Source' => 'integerpatternconverter.cpp', + 'SourceLine' => '27', 'Static' => 1 }, - '15037154' => { - 'Class' => '15036891', - 'Header' => 'propertyresourcebundle.h', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle13registerClassEv', - 'Return' => '64684', + '20377576' => { + 'Class' => '16774354', + 'Header' => 'integerpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'propertyresourcebundle.cpp', - 'SourceLine' => '28', + 'Source' => 'integerpatternconverter.cpp', + 'SourceLine' => '27', 'Static' => 1 }, - '15037171' => { - 'Class' => '15036891', + '20377592' => { + 'Class' => '16774354', 'Const' => 1, - 'Header' => 'propertyresourcebundle.h', - 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle8getClassEv', + 'Header' => 'integerpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039099' + 'type' => '20379558' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'propertyresourcebundle.cpp', - 'SourceLine' => '28', + 'Source' => 'integerpatternconverter.cpp', + 'SourceLine' => '27', 'Virt' => 1, 'VirtPos' => '2' }, - '15037210' => { - 'Class' => '15036891', + '20377629' => { + 'Class' => '16774354', 'Const' => 1, - 'Header' => 'propertyresourcebundle.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 2, 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle4castERKNS0_5ClassE', + 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039099' + 'type' => '20379558' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '15037254' => { - 'Class' => '15036891', + '20377671' => { + 'Class' => '16774354', 'Const' => 1, - 'Header' => 'propertyresourcebundle.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 2, 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle10instanceofERKNS0_5ClassE', + 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039099' + 'type' => '20379558' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '15037330' => { - 'Class' => '15036891', + '20377775' => { + 'Class' => '16774354', 'Const' => 1, - 'Header' => 'propertyresourcebundle.h', - 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle9getStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'integerpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039099' + 'type' => '20379558' }, '1' => { - 'name' => 'key', - 'type' => '263006' + 'name' => 'obj', + 'type' => '575817' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '63706', - 'ShortName' => 'getString', - 'Source' => 'propertyresourcebundle.cpp', - 'SourceLine' => '36', + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'integerpatternconverter.cpp', + 'SourceLine' => '42', 'Virt' => 1, 'VirtPos' => '5' }, - '15038370' => { + '20377889' => { 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes34PropertyResourceBundleRegistrationE', + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7classes35IntegerPatternConverterRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'PropertyResourceBundleRegistration', - 'Source' => 'propertyresourcebundle.cpp' + 'Return' => '210733', + 'ShortName' => 'IntegerPatternConverterRegistration', + 'Source' => 'integerpatternconverter.cpp' }, - '15040193' => { - 'Artificial' => 1, - 'Class' => '15036891', - 'Destructor' => 1, - 'Header' => 'propertyresourcebundle.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleD0Ev', + '20377906' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7helpers7IntegerENS1_6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '15039076' + 'name' => 'incoming', + 'type' => '1937382' } }, - 'ShortName' => 'PropertyResourceBundle', - 'Virt' => 1 + 'Return' => '16604736', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '16765851' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '15040194' => { - 'Artificial' => 1, - 'Class' => '15036891', - 'Destructor' => 1, - 'Header' => 'propertyresourcebundle.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleD1Ev', + '20380863' => { + 'Class' => '3120362', + 'Constructor' => 1, + 'Header' => 'patternconverter.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039076' + 'type' => '6085855' + }, + '2' => { + 'name' => 'name', + 'type' => '210597' + }, + '3' => { + 'name' => 'style', + 'type' => '210597' } }, - 'ShortName' => 'PropertyResourceBundle', - 'Virt' => 1 + 'Protected' => 1, + 'ShortName' => 'PatternConverter', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '34' }, - '15041035' => { + '20383651' => { 'Artificial' => 1, - 'Class' => '15036891', + 'Class' => '16774354', 'Destructor' => 1, - 'Header' => 'propertyresourcebundle.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 1, 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleD2Ev', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039076' + 'type' => '20379072' } }, - 'ShortName' => 'PropertyResourceBundle', + 'ShortName' => 'IntegerPatternConverter', 'Virt' => 1 }, - '15045484' => { + '20383652' => { 'Artificial' => 1, - 'Class' => '15036533', + 'Class' => '16774354', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEED2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15038814' + 'type' => '20379072' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'IntegerPatternConverter', + 'Virt' => 1 }, - '15045485' => { + '20383860' => { 'Artificial' => 1, - 'Class' => '15036533', + 'Class' => '16774354', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEED0Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15038814' + 'type' => '20379072' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'IntegerPatternConverter', + 'Virt' => 1 }, - '15045625' => { + '20392004' => { 'Artificial' => 1, - 'Class' => '15036533', + 'Class' => '6072360', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEEC2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_23IntegerPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15038814' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '20378892' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '20318578' + } + } }, - '15045626' => { + '20392005' => { 'Artificial' => 1, - 'Class' => '15036533', + 'Class' => '6072360', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15038814' - } - }, - 'ShortName' => 'WideLife' - }, - '15050054' => { - 'Class' => '15036891', - 'Constructor' => 1, - 'Header' => 'propertyresourcebundle.h', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleC2ESt10shared_ptrINS0_11InputStreamEE', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_23IntegerPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039076' + 'type' => '6085740' }, '1' => { - 'name' => 'inStream', - 'type' => '4044621' + 'name' => 'arg0', + 'type' => '20378892' } }, - 'ShortName' => 'PropertyResourceBundle', - 'Source' => 'propertyresourcebundle.cpp', - 'SourceLine' => '31' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '20318578' + } + } }, - '15050055' => { - 'Class' => '15036891', - 'Constructor' => 1, - 'Header' => 'propertyresourcebundle.h', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleC1ESt10shared_ptrINS0_11InputStreamEE', + '20392486' => { + 'Artificial' => 1, + 'Class' => '20375061', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039076' - }, - '1' => { - 'name' => 'inStream', - 'type' => '4044621' + 'type' => '20378576' } }, - 'ShortName' => 'PropertyResourceBundle', - 'Source' => 'propertyresourcebundle.cpp', - 'SourceLine' => '31' + 'ShortName' => 'WideLife' }, - '15052164' => { + '20392487' => { 'Artificial' => 1, - 'Class' => '7062496', + 'Class' => '20375061', 'Destructor' => 1, - 'Header' => 'resourcebundle.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15038564' + 'type' => '20378576' } }, - 'ShortName' => 'ResourceBundle', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '15052165' => { + '20392627' => { 'Artificial' => 1, - 'Class' => '7062496', - 'Destructor' => 1, - 'Header' => 'resourcebundle.h', + 'Class' => '20375061', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15038564' + 'type' => '20378576' } }, - 'ShortName' => 'ResourceBundle', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '15052187' => { + '20392628' => { 'Artificial' => 1, - 'Class' => '7062496', - 'Destructor' => 1, - 'Header' => 'resourcebundle.h', + 'Class' => '20375061', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15038564' + 'type' => '20378576' } }, - 'ShortName' => 'ResourceBundle', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '15052237' => { - 'Artificial' => 1, - 'Class' => '7062496', + '20398726' => { + 'Class' => '16774354', 'Constructor' => 1, - 'Header' => 'resourcebundle.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleC2Ev', + 'Header' => 'integerpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15038564' + 'type' => '20379072' } }, - 'ShortName' => 'ResourceBundle' + 'ShortName' => 'IntegerPatternConverter', + 'Source' => 'integerpatternconverter.cpp', + 'SourceLine' => '29' }, - '15052238' => { - 'Artificial' => 1, - 'Class' => '7062496', + '20401748' => { + 'Class' => '16774354', 'Constructor' => 1, - 'Header' => 'resourcebundle.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleC1Ev', + 'Header' => 'integerpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15038564' + 'type' => '20379072' } }, - 'ShortName' => 'ResourceBundle' + 'ShortName' => 'IntegerPatternConverter', + 'Source' => 'integerpatternconverter.cpp', + 'SourceLine' => '29' }, - '15054574' => { + '20406461' => { 'Artificial' => 1, - 'Class' => '15036908', + 'Class' => '16774360', 'Destructor' => 1, - 'Header' => 'propertyresourcebundle.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 1, 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD0Ev', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039110' + 'type' => '20379728' } }, - 'ShortName' => 'ClazzPropertyResourceBundle', + 'ShortName' => 'ClazzIntegerPatternConverter', 'Virt' => 1 }, - '15054575' => { + '20406462' => { 'Artificial' => 1, - 'Class' => '15036908', + 'Class' => '16774360', 'Destructor' => 1, - 'Header' => 'propertyresourcebundle.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 1, 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD1Ev', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039110' + 'type' => '20379728' } }, - 'ShortName' => 'ClazzPropertyResourceBundle', + 'ShortName' => 'ClazzIntegerPatternConverter', 'Virt' => 1 }, - '15054715' => { + '20406606' => { 'Artificial' => 1, - 'Class' => '15036908', + 'Class' => '16774360', 'Destructor' => 1, - 'Header' => 'propertyresourcebundle.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 1, 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD2Ev', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039110' + 'type' => '20379728' } }, - 'ShortName' => 'ClazzPropertyResourceBundle', + 'ShortName' => 'ClazzIntegerPatternConverter', 'Virt' => 1 }, - '15054805' => { + '20406700' => { 'Artificial' => 1, - 'Class' => '15036908', + 'Class' => '16774360', 'Constructor' => 1, - 'Header' => 'propertyresourcebundle.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 1, 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleC2Ev', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039110' + 'type' => '20379728' } }, - 'ShortName' => 'ClazzPropertyResourceBundle' + 'ShortName' => 'ClazzIntegerPatternConverter' }, - '15054806' => { + '20406701' => { 'Artificial' => 1, - 'Class' => '15036908', + 'Class' => '16774360', 'Constructor' => 1, - 'Header' => 'propertyresourcebundle.h', + 'Header' => 'integerpatternconverter.h', 'InLine' => 1, 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleC1Ev', + 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15039110' + 'type' => '20379728' } }, - 'ShortName' => 'ClazzPropertyResourceBundle' + 'ShortName' => 'ClazzIntegerPatternConverter' }, - '151141' => { - 'Class' => '150952', - 'Const' => 1, - 'Header' => 'filter.h', - 'InLine' => 2, - 'Line' => '81', - 'MnglName' => '_ZNK7log4cxx3spi6Filter10instanceofERKNS_7helpers5ClassE', + '207134' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10decodeUTF8ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '184092' + 'name' => 'src', + 'type' => '202831' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'dst', + 'type' => '210592' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '1', + 'ShortName' => 'decodeUTF8', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '43', + 'Static' => 1 }, - '151185' => { - 'Class' => '150952', - 'Const' => 1, - 'Header' => 'filter.h', - 'InLine' => 2, - 'Line' => '78', - 'MnglName' => '_ZNK7log4cxx3spi6Filter4castERKNS_7helpers5ClassE', + '207159' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10encodeUTF8ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '184092' + 'name' => 'src', + 'type' => '210597' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'dst', + 'type' => '210602' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '1', + 'ShortName' => 'encodeUTF8', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '63', + 'Static' => 1 }, - '151229' => { - 'Class' => '150952', - 'Const' => 1, - 'Header' => 'filter.h', - 'Line' => '83', - 'MnglName' => '_ZNK7log4cxx3spi6Filter7getNextEv', + '207184' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10encodeUTF8ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '184092' + 'name' => 'src', + 'type' => '210597' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '151271', - 'ShortName' => 'getNext', - 'Source' => 'filter.cpp', - 'SourceLine' => '38' + 'Return' => '192483', + 'ShortName' => 'encodeUTF8', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '88', + 'Static' => 1 }, - '151241' => { - 'Class' => '150952', - 'Header' => 'filter.h', - 'Line' => '84', - 'MnglName' => '_ZN7log4cxx3spi6Filter7setNextERKSt10shared_ptrIS1_E', + '207215' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10encodeUTF8EjRNS0_10ByteBufferE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '5980620' + 'name' => 'sv', + 'type' => '174065' }, '1' => { - 'name' => 'newNext', - 'type' => '154255' + 'name' => 'dst', + 'type' => '210612' } }, - 'Private' => 1, 'Return' => '1', - 'ShortName' => 'setNext', - 'Source' => 'filter.cpp', - 'SourceLine' => '43' + 'ShortName' => 'encodeUTF8', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '100', + 'Static' => 1 }, - '151253' => { - 'Class' => '150952', - 'Header' => 'filter.h', - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi6Filter14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '45', + '207240' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '60', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder13encodeUTF16LEEjRNS0_10ByteBufferE', + 'Param' => { + '0' => { + 'name' => 'sv', + 'type' => '174065' + }, + '1' => { + 'name' => 'dst', + 'type' => '210612' + } + }, + 'Return' => '1', + 'ShortName' => 'encodeUTF16LE', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '177', 'Static' => 1 }, - '1512930' => { - 'Class' => '1338352', - 'Destructor' => 1, - 'Header' => 'bytebuffer.h', - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBufferD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1502730' - } - }, - 'ShortName' => 'ByteBuffer', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '41' - }, - '15131820' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3spi13OptionHandlerENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', - 'Param' => { - '0' => { - 'name' => 'incoming', - 'type' => '655477' - } - }, - 'Return' => '15110559', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '151305' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } - }, - '1513328' => { - 'Class' => '1338352', - 'Constructor' => 1, - 'Header' => 'bytebuffer.h', - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBufferC2EPcm', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1502730' - }, - '1' => { - 'name' => 'data1', - 'type' => '51958' - }, - '2' => { - 'name' => 'capacity', - 'type' => '50486' - } - }, - 'ShortName' => 'ByteBuffer', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '36' - }, - '1513329' => { - 'Class' => '1338352', - 'Constructor' => 1, - 'Header' => 'bytebuffer.h', - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBufferC1EPcm', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1502730' - }, - '1' => { - 'name' => 'data1', - 'type' => '51958' - }, - '2' => { - 'name' => 'capacity', - 'type' => '50486' - } - }, - 'ShortName' => 'ByteBuffer', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '36' - }, - '151388' => { - 'Class' => '151305', - 'Header' => 'optionhandler.h', - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandler14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '42', + '207265' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '64', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder13encodeUTF16BEEjRNS0_10ByteBufferE', + 'Param' => { + '0' => { + 'name' => 'sv', + 'type' => '174065' + }, + '1' => { + 'name' => 'dst', + 'type' => '210612' + } + }, + 'Return' => '1', + 'ShortName' => 'encodeUTF16BE', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '147', 'Static' => 1 }, - '151552' => { - 'Class' => '151432', - 'Const' => 1, - 'Header' => 'andfilter.h', - 'InLine' => 2, - 'Line' => '82', - 'MnglName' => '_ZNK7log4cxx6filter9AndFilter14ClazzAndFilter7getNameB5cxx11Ev', + '207290' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '154331' + 'name' => 'src', + 'type' => '202831' + }, + '1' => { + 'name' => 'iter', + 'type' => '210617' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '174065', + 'ShortName' => 'decode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '207', + 'Static' => 1 }, - '151591' => { - 'Class' => '151432', - 'Const' => 1, - 'Header' => 'andfilter.h', - 'InLine' => 2, + '207321' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', 'Line' => '82', - 'MnglName' => '_ZNK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeEjRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '154331' + 'name' => 'sv', + 'type' => '174065' + }, + '1' => { + 'name' => 'dst', + 'type' => '210602' } }, - 'Return' => '154210', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '1', + 'ShortName' => 'encode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '306', + 'Static' => 1 }, - '151630' => { - 'Artificial' => 1, - 'Class' => '151432', - 'Header' => 'andfilter.h', - 'InLine' => 2, - 'Line' => '82', - 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv', + '207346' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '88', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '154331' + 'name' => 'src', + 'type' => '202831' + }, + '1' => { + 'name' => 'dst', + 'type' => '210592' } }, - 'Return' => '154210', - 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv' + 'Return' => '1', + 'ShortName' => 'decode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '314', + 'Static' => 1 }, - '15176824' => { - 'Artificial' => 1, - 'Class' => '14545351', - 'Destructor' => 1, - 'Header' => 'propertysetter.h', - 'InLine' => 1, - 'Line' => '62', - 'MnglName' => '_ZN7log4cxx6config14PropertySetterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15132089' - } - }, - 'ShortName' => 'PropertySetter' - }, - '15176825' => { - 'Artificial' => 1, - 'Class' => '14545351', - 'Destructor' => 1, - 'Header' => 'propertysetter.h', - 'InLine' => 1, - 'Line' => '62', - 'MnglName' => '_ZN7log4cxx6config14PropertySetterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15132089' - } - }, - 'ShortName' => 'PropertySetter' - }, - '15176886' => { - 'Class' => '14545351', - 'Constructor' => 1, - 'Header' => 'propertysetter.h', - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx6config14PropertySetterC2ERKSt10shared_ptrINS_7helpers6ObjectEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15132089' - }, - '1' => { - 'name' => 'obj1', - 'type' => '652213' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'PropertySetter', - 'Source' => 'propertysetter.cpp', - 'SourceLine' => '34' - }, - '15176887' => { - 'Class' => '14545351', - 'Constructor' => 1, - 'Header' => 'propertysetter.h', - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx6config14PropertySetterC1ERKSt10shared_ptrINS_7helpers6ObjectEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15132089' - }, - '1' => { - 'name' => 'obj1', - 'type' => '652213' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'PropertySetter', - 'Source' => 'propertysetter.cpp', - 'SourceLine' => '34' - }, - '151923' => { - 'Class' => '151414', - 'Const' => 1, - 'Header' => 'andfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter9AndFilter8getClassEv', + '207371' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '95', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '154250' + 'name' => 'src', + 'type' => '210597' + }, + '1' => { + 'name' => 'dst', + 'type' => '210602' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '151962' => { - 'Class' => '151414', - 'Header' => 'andfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '43', - 'Static' => 1 - }, - '151979' => { - 'Class' => '151414', - 'Header' => 'andfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '43', + 'Return' => '1', + 'ShortName' => 'encode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '368', 'Static' => 1 }, - '151996' => { - 'Class' => '151414', - 'Const' => 1, - 'Header' => 'andfilter.h', - 'InLine' => 2, - 'Line' => '83', - 'MnglName' => '_ZNK7log4cxx6filter9AndFilter4castERKNS_7helpers5ClassE', + '207396' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '104', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '154250' + 'name' => 'src', + 'type' => '210597' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '192483', + 'ShortName' => 'encode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '355', + 'Static' => 1 }, - '152040' => { - 'Class' => '151414', - 'Const' => 1, - 'Header' => 'andfilter.h', - 'InLine' => 2, - 'Line' => '85', - 'MnglName' => '_ZNK7log4cxx6filter9AndFilter10instanceofERKNS_7helpers5ClassE', + '207427' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '109', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERNS3_IcS4_IcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '154250' + 'name' => 'src', + 'type' => '202841' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'dst', + 'type' => '210592' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '1', + 'ShortName' => 'decode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '482', + 'Static' => 1 }, - '152163' => { - 'Class' => '151414', - 'Header' => 'andfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter9addFilterERKSt10shared_ptrINS_3spi6FilterEE', + '207452' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_IwS4_IwESaIwEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '154216' + 'name' => 'src', + 'type' => '210597' }, '1' => { - 'name' => 'filter', - 'type' => '154255' + 'name' => 'dst', + 'type' => '210622' } }, 'Return' => '1', - 'ShortName' => 'addFilter', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '52' + 'ShortName' => 'encode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '507', + 'Static' => 1 }, - '152195' => { - 'Class' => '151414', - 'Header' => 'andfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter16setAcceptOnMatchEb', + '207477' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '111', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder7wencodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '154216' + 'name' => 'src', + 'type' => '210597' }, '1' => { - 'name' => 'newValue', - 'type' => '50284' + 'name' => 'p', + 'type' => '210607' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setAcceptOnMatch', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '66' + 'Return' => '191741', + 'ShortName' => 'wencode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '531', + 'Static' => 1 }, - '152227' => { - 'Class' => '151414', - 'Const' => 1, - 'Header' => 'andfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter9AndFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', + '207508' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '120', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERN9__gnu_cxx17__normal_iteratorIPKwS7_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '154250' + 'name' => 'in', + 'type' => '202841' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'iter', + 'type' => '210627' } }, - 'Return' => '151101', - 'ShortName' => 'decide', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '71', - 'Virt' => 1, - 'VirtPos' => '7' + 'Return' => '174065', + 'ShortName' => 'decode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '546', + 'Static' => 1 }, - '152284' => { - 'Data' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7classes21AndFilterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'AndFilterRegistration', - 'Source' => 'andfilter.cpp' + '207539' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '128', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeEjRNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'sv', + 'type' => '174065' + }, + '1' => { + 'name' => 'dst', + 'type' => '210622' + } + }, + 'Return' => '1', + 'ShortName' => 'encode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '557', + 'Static' => 1 }, - '15232366' => { - 'Class' => '15232246', + '20754393' => { + 'Class' => '563933', 'Const' => 1, - 'Header' => 'reader.h', - 'InLine' => 2, - 'Line' => '36', - 'MnglName' => '_ZNK7log4cxx7helpers6Reader11ClazzReader7getNameB5cxx11Ev', + 'Header' => 'level.h', + 'Line' => '104', + 'MnglName' => '_ZNK7log4cxx5Level8toStringERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233829' + 'type' => '2696821' + }, + '1' => { + 'name' => 'dst', + 'type' => '210602' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '15232432' => { - 'Class' => '7789107', - 'Header' => 'reader.h', - 'MnglName' => '_ZN7log4cxx7helpers6Reader13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'reader.cpp', - 'SourceLine' => '23', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'toString', + 'Source' => 'level.cpp', + 'SourceLine' => '152' }, - '15232449' => { - 'Class' => '7789107', + '20755155' => { + 'Class' => '564699', 'Const' => 1, - 'Header' => 'reader.h', - 'MnglName' => '_ZNK7log4cxx7helpers6Reader8getClassEv', + 'Header' => 'loggingevent.h', + 'Line' => '161', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent6getMDCERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7816825' + 'type' => '26822716' + }, + '1' => { + 'name' => 'key', + 'type' => '210597' + }, + '2' => { + 'name' => 'dest', + 'type' => '210592' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'reader.cpp', - 'SourceLine' => '23', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '174077', + 'ShortName' => 'getMDC', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '231' }, - '15232532' => { - 'Class' => '7789107', + '20755209' => { + 'Class' => '564699', 'Const' => 1, - 'Header' => 'reader.h', + 'Header' => 'loggingevent.h', + 'Line' => '170', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent12getMDCKeySetB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822716' + } + }, + 'Return' => '20755196', + 'ShortName' => 'getMDCKeySet', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '253' + }, + '207564' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '167', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeEc', + 'Param' => { + '0' => { + 'name' => 'val', + 'type' => '191030' + } + }, + 'Return' => '209678', + 'ShortName' => 'decode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '659', + 'Static' => 1 + }, + '20757264' => { + 'Artificial' => 1, + 'Class' => '5655926', + 'Header' => 'jsonlayout.h', 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers6Reader10instanceofERKNS0_5ClassE', + 'Line' => '47', + 'MnglName' => '_ZTch0_h0_NK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '20767723' + } + }, + 'Return' => '5679798', + 'ShortName' => '_ZTch0_h0_NK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv' + }, + '20757349' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout25appendQuotedEscapedStringERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS6_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7816825' + 'type' => '20767698' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'buf', + 'type' => '210592' + }, + '2' => { + 'name' => 'input', + 'type' => '210597' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'appendQuotedEscapedString', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '210' }, - '15232640' => { - 'Class' => '7789107', - 'Header' => 'reader.h', - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx7helpers6Reader5closeERNS0_4PoolE', + '20757386' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout19appendSerializedMDCERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233789' + 'type' => '20767698' }, '1' => { - 'name' => 'p1', - 'type' => '64643' + 'name' => 'buf', + 'type' => '210592' + }, + '2' => { + 'name' => 'event', + 'type' => '576659' } }, - 'PureVirt' => 1, + 'Protected' => 1, 'Return' => '1', - 'ShortName' => 'close', - 'VirtPos' => '5' + 'ShortName' => 'appendSerializedMDC', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '313' }, - '15232681' => { - 'Class' => '7789107', - 'Header' => 'reader.h', - 'Line' => '60', - 'MnglName' => '_ZN7log4cxx7helpers6Reader4readB5cxx11ERNS0_4PoolE', + '20757424' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout19appendSerializedNDCERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233789' + 'type' => '20767698' }, '1' => { - 'name' => 'p1', - 'type' => '64643' + 'name' => 'buf', + 'type' => '210592' + }, + '2' => { + 'name' => 'event', + 'type' => '576659' } }, - 'PureVirt' => 1, - 'Return' => '63706', - 'ShortName' => 'read', - 'VirtPos' => '6' - }, - '15233543' => { - 'Data' => 1, - 'Line' => '23', - 'MnglName' => '_ZN7log4cxx7classes18ReaderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ReaderRegistration', - 'Source' => 'reader.cpp' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'appendSerializedNDC', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '369' }, - '15237020' => { - 'Artificial' => 1, - 'Class' => '15231870', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEED2Ev', + '20757462' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout28appendSerializedLocationInfoERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233628' + 'type' => '20767698' + }, + '1' => { + 'name' => 'buf', + 'type' => '210592' + }, + '2' => { + 'name' => 'event', + 'type' => '576659' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'appendSerializedLocationInfo', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '407' }, - '15237021' => { - 'Artificial' => 1, - 'Class' => '15231870', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEED0Ev', + '20757505' => { + 'Class' => '5655912', + 'Header' => 'jsonlayout.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx10JSONLayout10appendItemERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS6_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '15233628' + 'name' => 'input', + 'type' => '210597' + }, + '1' => { + 'name' => 'buf', + 'type' => '210592' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'appendItem', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '216', + 'Static' => 1 }, - '15237161' => { - 'Artificial' => 1, - 'Class' => '15231870', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEEC2Ev', + '20757532' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233628' + 'type' => '20767698' } }, - 'ShortName' => 'WideLife' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '33', + 'Virt' => 1, + 'VirtPos' => '2' }, - '15237162' => { - 'Artificial' => 1, - 'Class' => '15231870', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEEC1Ev', + '20757570' => { + 'Class' => '5655912', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayout14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '33', + 'Static' => 1 + }, + '20757602' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx10JSONLayout4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233628' + 'type' => '20767698' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '15237510' => { - 'Class' => '7789107', - 'Destructor' => 1, - 'Header' => 'reader.h', - 'MnglName' => '_ZN7log4cxx7helpers6ReaderD0Ev', + '20757645' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'InLine' => 2, + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx10JSONLayout10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233795' + 'type' => '20767698' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'ShortName' => 'Reader', - 'Source' => 'reader.cpp', - 'SourceLine' => '29', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '15237511' => { - 'Class' => '7789107', - 'Destructor' => 1, - 'Header' => 'reader.h', - 'MnglName' => '_ZN7log4cxx7helpers6ReaderD1Ev', + '20757766' => { + 'Class' => '5655912', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayout15setLocationInfoEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233795' + 'type' => '20767673' + }, + '1' => { + 'name' => 'locationInfoFlag', + 'type' => '174077' } }, - 'Protected' => 1, - 'ShortName' => 'Reader', - 'Source' => 'reader.cpp', - 'SourceLine' => '29', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setLocationInfo', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '69' }, - '15237605' => { - 'Class' => '7789107', - 'Destructor' => 1, - 'Header' => 'reader.h', - 'MnglName' => '_ZN7log4cxx7helpers6ReaderD2Ev', + '20757798' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout15getLocationInfoEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233795' + 'type' => '20767698' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Reader', - 'Source' => 'reader.cpp', - 'SourceLine' => '29', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'getLocationInfo', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '74' }, - '15237719' => { - 'Class' => '7789107', - 'Constructor' => 1, - 'Header' => 'reader.h', - 'MnglName' => '_ZN7log4cxx7helpers6ReaderC2Ev', + '20757829' => { + 'Class' => '5655912', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayout14setPrettyPrintEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233795' + 'type' => '20767673' + }, + '1' => { + 'name' => 'prettyPrintFlag', + 'type' => '174077' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Reader', - 'Source' => 'reader.cpp', - 'SourceLine' => '25' + 'Return' => '1', + 'ShortName' => 'setPrettyPrint', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '79' }, - '15237720' => { - 'Class' => '7789107', - 'Constructor' => 1, - 'Header' => 'reader.h', - 'MnglName' => '_ZN7log4cxx7helpers6ReaderC1Ev', + '20757861' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout14getPrettyPrintEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233795' + 'type' => '20767698' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Reader', - 'Source' => 'reader.cpp', - 'SourceLine' => '25' + 'Return' => '174077', + 'ShortName' => 'getPrettyPrint', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '84' }, - '15239803' => { - 'Artificial' => 1, - 'Class' => '15232246', - 'Destructor' => 1, - 'Header' => 'reader.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderD0Ev', + '20757892' => { + 'Class' => '5655912', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayout13setThreadInfoEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233818' + 'type' => '20767673' + }, + '1' => { + 'name' => 'newValue', + 'type' => '174077' } }, - 'ShortName' => 'ClazzReader', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setThreadInfo', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '89' }, - '15239804' => { - 'Artificial' => 1, - 'Class' => '15232246', - 'Destructor' => 1, - 'Header' => 'reader.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderD1Ev', + '20757924' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout13getThreadInfoEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233818' + 'type' => '20767698' } }, - 'ShortName' => 'ClazzReader', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'getThreadInfo', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '94' }, - '15239944' => { - 'Artificial' => 1, - 'Class' => '15232246', - 'Destructor' => 1, - 'Header' => 'reader.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderD2Ev', + '20757955' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout14getContentTypeB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233818' + 'type' => '20767698' } }, - 'ShortName' => 'ClazzReader', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getContentType', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '99', + 'Virt' => 1, + 'VirtPos' => '8' }, - '15240034' => { - 'Artificial' => 1, - 'Class' => '15232246', - 'Constructor' => 1, - 'Header' => 'reader.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderC2Ev', + '20757993' => { + 'Class' => '5655912', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayout15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233818' + 'type' => '20767673' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'ClazzReader' + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '104', + 'Virt' => 1, + 'VirtPos' => '5' }, - '15240035' => { - 'Artificial' => 1, - 'Class' => '15232246', - 'Constructor' => 1, - 'Header' => 'reader.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderC1Ev', + '20758032' => { + 'Class' => '5655912', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15233818' + 'type' => '20767673' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'ShortName' => 'ClazzReader' + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '109', + 'Virt' => 1, + 'VirtPos' => '6' }, - '15298025' => { - 'Class' => '15297913', + '20758076' => { + 'Class' => '5655912', 'Const' => 1, - 'Header' => 'relativetimedateformat.h', - 'MnglName' => '_ZNK7log4cxx7helpers22RelativeTimeDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZNK7log4cxx10JSONLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15299632' + 'type' => '20767698' }, '1' => { - 'name' => 's', - 'type' => '409210' + 'name' => 'output', + 'type' => '210592' }, '2' => { - 'name' => 'date', - 'type' => '649587' + 'name' => 'event', + 'type' => '576659' }, '3' => { 'name' => 'p', - 'type' => '64643' + 'type' => '210607' } }, 'Return' => '1', 'ShortName' => 'format', - 'Source' => 'relativetimedateformat.cpp', - 'SourceLine' => '29', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '128', 'Virt' => 1, - 'VirtPos' => '5' + 'VirtPos' => '7' }, - '15300081' => { - 'Artificial' => 1, - 'Class' => '15297913', - 'Destructor' => 1, - 'Header' => 'relativetimedateformat.h', - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatD0Ev', + '20758125' => { + 'Class' => '5655912', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZNK7log4cxx10JSONLayout16ignoresThrowableEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15299609' + 'type' => '20767698' } }, - 'ShortName' => 'RelativeTimeDateFormat', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'ignoresThrowable', + 'Virt' => 1, + 'VirtPos' => '11' }, - '15300082' => { - 'Artificial' => 1, - 'Class' => '15297913', - 'Destructor' => 1, - 'Header' => 'relativetimedateformat.h', - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15299609' - } - }, - 'ShortName' => 'RelativeTimeDateFormat', - 'Virt' => 1 + '20758204' => { + 'Data' => 1, + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx7classes22JSONLayoutRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'JSONLayoutRegistration', + 'Source' => 'jsonlayout.cpp' }, - '15300223' => { - 'Artificial' => 1, - 'Class' => '15297913', - 'Destructor' => 1, - 'Header' => 'relativetimedateformat.h', - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15299609' - } - }, - 'ShortName' => 'RelativeTimeDateFormat', - 'Virt' => 1 - }, - '15300471' => { - 'Class' => '15297913', - 'Constructor' => 1, - 'Header' => 'relativetimedateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15299609' - } - }, - 'ShortName' => 'RelativeTimeDateFormat', - 'Source' => 'relativetimedateformat.cpp', - 'SourceLine' => '24' - }, - '15300472' => { - 'Class' => '15297913', - 'Constructor' => 1, - 'Header' => 'relativetimedateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15299609' - } - }, - 'ShortName' => 'RelativeTimeDateFormat', - 'Source' => 'relativetimedateformat.cpp', - 'SourceLine' => '24' - }, - '15370402' => { - 'Class' => '15370281', - 'Const' => 1, - 'Header' => 'relativetimepatternconverter.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15373157' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '15370531' => { - 'Class' => '15370247', - 'Header' => 'relativetimepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'relativetimepatternconverter.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '15370548' => { - 'Class' => '15370247', - 'Header' => 'relativetimepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'relativetimepatternconverter.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '15370565' => { - 'Class' => '15370247', - 'Const' => 1, - 'Header' => 'relativetimepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15372835' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'relativetimepatternconverter.cpp', - 'SourceLine' => '29', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '15370604' => { - 'Class' => '15370247', - 'Const' => 1, - 'Header' => 'relativetimepatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15372835' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '15370648' => { - 'Class' => '15370247', - 'Const' => 1, - 'Header' => 'relativetimepatternconverter.h', - 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15372835' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '15370729' => { - 'Class' => '15370247', - 'Header' => 'relativetimepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' - } - }, - 'Reg' => { - '0' => 'rsi' + '207590' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '172', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeB5cxx11EPKc', + 'Param' => { + '0' => { + 'name' => 'val', + 'type' => '191618' + } }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'relativetimepatternconverter.cpp', - 'SourceLine' => '37', - 'Static' => 1 - }, - '15370756' => { - 'Class' => '15370247', - 'Const' => 1, - 'Header' => 'relativetimepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15372835' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'relativetimepatternconverter.cpp', - 'SourceLine' => '44', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '15371193' => { - 'Data' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7classes40RelativeTimePatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'RelativeTimePatternConverterRegistration', - 'Source' => 'relativetimepatternconverter.cpp' - }, - '15376158' => { - 'Artificial' => 1, - 'Class' => '15370247', - 'Destructor' => 1, - 'Header' => 'relativetimepatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15372636' - } - }, - 'ShortName' => 'RelativeTimePatternConverter', - 'Virt' => 1 - }, - '15376159' => { + 'Return' => '209661', + 'ShortName' => 'decode', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '670', + 'Static' => 1 + }, + '207616' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '178', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder17encodeCharsetNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'val', + 'type' => '210597' + } + }, + 'Return' => '89533', + 'ShortName' => 'encodeCharsetName', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '682', + 'Static' => 1 + }, + '207734' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '187', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10encodeUTF8EjPc', + 'Param' => { + '0' => { + 'name' => 'ch', + 'type' => '174065' + }, + '1' => { + 'name' => 'dst', + 'type' => '192483' + } + }, + 'Private' => 1, + 'Return' => '190816', + 'ShortName' => 'encodeUTF8', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '107', + 'Static' => 1 + }, + '207765' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '188', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder13encodeUTF16BEEjPc', + 'Param' => { + '0' => { + 'name' => 'ch', + 'type' => '174065' + }, + '1' => { + 'name' => 'dst', + 'type' => '192483' + } + }, + 'Private' => 1, + 'Return' => '190816', + 'ShortName' => 'encodeUTF16BE', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '154', + 'Static' => 1 + }, + '207796' => { + 'Class' => '207079', + 'Header' => 'transcoder.h', + 'Line' => '189', + 'MnglName' => '_ZN7log4cxx7helpers10Transcoder13encodeUTF16LEEjPc', + 'Param' => { + '0' => { + 'name' => 'ch', + 'type' => '174065' + }, + '1' => { + 'name' => 'dst', + 'type' => '192483' + } + }, + 'Private' => 1, + 'Return' => '190816', + 'ShortName' => 'encodeUTF16LE', + 'Source' => 'transcoder.cpp', + 'SourceLine' => '183', + 'Static' => 1 + }, + '20780795' => { 'Artificial' => 1, - 'Class' => '15370247', + 'Class' => '20752236', 'Destructor' => 1, - 'Header' => 'relativetimepatternconverter.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15372636' + 'type' => '20766929' } }, - 'ShortName' => 'RelativeTimePatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '15376423' => { + '20780796' => { 'Artificial' => 1, - 'Class' => '15370247', + 'Class' => '20752236', 'Destructor' => 1, - 'Header' => 'relativetimepatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15372636' - } - }, - 'ShortName' => 'RelativeTimePatternConverter', - 'Virt' => 1 - }, - '15383271' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_28RelativeTimePatternConverterEEJEEEOT_DpOT0_', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '15372658' + 'type' => '20766929' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '15346977' - } - } + 'ShortName' => 'WideLife' }, - '15383272' => { + '20780939' => { 'Artificial' => 1, - 'Class' => '2269898', + 'Class' => '20752236', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_28RelativeTimePatternConverterEEJEEEOT_DpOT0_', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '15372658' + 'type' => '20766929' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '15346977' - } - } + 'ShortName' => 'WideLife' }, - '15383687' => { + '20780940' => { 'Artificial' => 1, - 'Class' => '15368595', - 'Destructor' => 1, + 'Class' => '20752236', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEED2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15372328' + 'type' => '20766929' } }, 'ShortName' => 'WideLife' }, - '15383688' => { - 'Artificial' => 1, - 'Class' => '15368595', + '207937' => { + 'Class' => '207830', + 'Header' => 'pool.h', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers4Pool10getAPRPoolEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + } + }, + 'Return' => '210753', + 'ShortName' => 'getAPRPool', + 'Source' => 'pool.cpp', + 'SourceLine' => '57' + }, + '207967' => { + 'Class' => '207830', + 'Header' => 'pool.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers4Pool6createEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + } + }, + 'Return' => '210753', + 'ShortName' => 'create', + 'Source' => 'pool.cpp', + 'SourceLine' => '62' + }, + '207997' => { + 'Class' => '207830', + 'Header' => 'pool.h', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers4Pool6pallocEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + }, + '1' => { + 'name' => 'size', + 'type' => '190816' + } + }, + 'Return' => '190924', + 'ShortName' => 'palloc', + 'Source' => 'pool.cpp', + 'SourceLine' => '75' + }, + '208032' => { + 'Class' => '207830', + 'Header' => 'pool.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers4Pool9pstrallocEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + }, + '1' => { + 'name' => 'size', + 'type' => '190816' + } + }, + 'Return' => '192483', + 'ShortName' => 'pstralloc', + 'Source' => 'pool.cpp', + 'SourceLine' => '80' + }, + '208067' => { + 'Class' => '207830', + 'Header' => 'pool.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers4Pool4itoaEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + }, + '1' => { + 'name' => 'n', + 'type' => '190263' + } + }, + 'Return' => '192483', + 'ShortName' => 'itoa', + 'Source' => 'pool.cpp', + 'SourceLine' => '85' + }, + '208102' => { + 'Class' => '207830', + 'Header' => 'pool.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers4Pool8pstrndupEPKcm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + }, + '1' => { + 'name' => 's', + 'type' => '191618' + }, + '2' => { + 'name' => 'len', + 'type' => '190816' + } + }, + 'Return' => '192483', + 'ShortName' => 'pstrndup', + 'Source' => 'pool.cpp', + 'SourceLine' => '90' + }, + '208142' => { + 'Class' => '207830', + 'Header' => 'pool.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers4Pool7pstrdupEPKc', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + }, + '1' => { + 'name' => 's', + 'type' => '191618' + } + }, + 'Return' => '192483', + 'ShortName' => 'pstrdup', + 'Source' => 'pool.cpp', + 'SourceLine' => '95' + }, + '208177' => { + 'Class' => '207830', + 'Header' => 'pool.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers4Pool7pstrdupERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + }, + '1' => { + 'name' => 's', + 'type' => '202831' + } + }, + 'Return' => '192483', + 'ShortName' => 'pstrdup', + 'Source' => 'pool.cpp', + 'SourceLine' => '100' + }, + '208491' => { + 'Class' => '208442', + 'Const' => 1, + 'Header' => 'class.h', + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7helpers5Class11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5678548' + } + }, + 'Return' => '215794', + 'ShortName' => 'newInstance', + 'Source' => 'class.cpp', + 'SourceLine' => '106', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '20861279' => { + 'Class' => '5655912', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEED0Ev', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayoutD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15372328' + 'type' => '20767673' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'JSONLayout', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '67', + 'Virt' => 1 }, - '15383828' => { - 'Artificial' => 1, - 'Class' => '15368595', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEEC2Ev', + '20861378' => { + 'Class' => '5655912', + 'Destructor' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayoutD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15372328' + 'type' => '20767673' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'JSONLayout', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '67', + 'Virt' => 1 }, - '15383829' => { - 'Artificial' => 1, - 'Class' => '15368595', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEEC1Ev', + '20863326' => { + 'Class' => '5655912', + 'Destructor' => 1, + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayoutD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15372328' + 'type' => '20767673' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'JSONLayout', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '67', + 'Virt' => 1 }, - '15388962' => { - 'Class' => '15370247', + '20865205' => { + 'Class' => '5655912', 'Constructor' => 1, - 'Header' => 'relativetimepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterC1Ev', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayoutC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15372636' + 'type' => '20767673' } }, - 'ShortName' => 'RelativeTimePatternConverter', - 'Source' => 'relativetimepatternconverter.cpp', - 'SourceLine' => '31' + 'ShortName' => 'JSONLayout', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '62' }, - '15393079' => { - 'Class' => '15370247', + '20869054' => { + 'Class' => '5655912', 'Constructor' => 1, - 'Header' => 'relativetimepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterC2Ev', + 'Header' => 'jsonlayout.h', + 'MnglName' => '_ZN7log4cxx10JSONLayoutC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15372636' + 'type' => '20767673' } }, - 'ShortName' => 'RelativeTimePatternConverter', - 'Source' => 'relativetimepatternconverter.cpp', - 'SourceLine' => '31' + 'ShortName' => 'JSONLayout', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '62' }, - '15399114' => { + '20874870' => { 'Artificial' => 1, - 'Class' => '15370281', + 'Class' => '5655926', 'Destructor' => 1, - 'Header' => 'relativetimepatternconverter.h', + 'Header' => 'jsonlayout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD0Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15373146' + 'type' => '20767713' } }, - 'ShortName' => 'ClazzRelativeTimePatternConverter', + 'ShortName' => 'ClazzJSONLayout', 'Virt' => 1 }, - '15399115' => { + '20874871' => { 'Artificial' => 1, - 'Class' => '15370281', + 'Class' => '5655926', 'Destructor' => 1, - 'Header' => 'relativetimepatternconverter.h', + 'Header' => 'jsonlayout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15373146' + 'type' => '20767713' } }, - 'ShortName' => 'ClazzRelativeTimePatternConverter', + 'ShortName' => 'ClazzJSONLayout', 'Virt' => 1 }, - '15399255' => { + '20875017' => { 'Artificial' => 1, - 'Class' => '15370281', + 'Class' => '5655926', 'Destructor' => 1, - 'Header' => 'relativetimepatternconverter.h', + 'Header' => 'jsonlayout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15373146' + 'type' => '20767713' } }, - 'ShortName' => 'ClazzRelativeTimePatternConverter', + 'ShortName' => 'ClazzJSONLayout', 'Virt' => 1 }, - '15399345' => { + '20875112' => { 'Artificial' => 1, - 'Class' => '15370281', + 'Class' => '5655926', 'Constructor' => 1, - 'Header' => 'relativetimepatternconverter.h', + 'Header' => 'jsonlayout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterC2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15373146' + 'type' => '20767713' } }, - 'ShortName' => 'ClazzRelativeTimePatternConverter' + 'ShortName' => 'ClazzJSONLayout' }, - '15399346' => { + '20875113' => { 'Artificial' => 1, - 'Class' => '15370281', + 'Class' => '5655926', 'Constructor' => 1, - 'Header' => 'relativetimepatternconverter.h', + 'Header' => 'jsonlayout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15373146' - } - }, - 'ShortName' => 'ClazzRelativeTimePatternConverter' - }, - '15476832' => { - 'Class' => '15476711', - 'Const' => 1, - 'Header' => 'resourcebundle.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle19ClazzResourceBundle7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15481037' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '15476980' => { - 'Class' => '7062496', - 'Header' => 'resourcebundle.h', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'resourcebundle.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '15476997' => { - 'Class' => '7062496', - 'Const' => 1, - 'Header' => 'resourcebundle.h', - 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15054834' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'resourcebundle.cpp', - 'SourceLine' => '28', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '15477124' => { - 'Class' => '7062496', - 'Const' => 1, - 'Header' => 'resourcebundle.h', - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle9getStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15054828' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - } - }, - 'PureVirt' => 1, - 'Return' => '63706', - 'ShortName' => 'getString', - 'VirtPos' => '5' - }, - '15477168' => { - 'Class' => '7062496', - 'Header' => 'resourcebundle.h', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle9getBundleERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS0_6LocaleE', - 'Param' => { - '0' => { - 'name' => 'baseName', - 'type' => '263006' - }, - '1' => { - 'name' => 'locale', - 'type' => '9351646' - } - }, - 'Return' => '9677043', - 'ShortName' => 'getBundle', - 'Source' => 'resourcebundle.cpp', - 'SourceLine' => '30', - 'Static' => 1 - }, - '15479129' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes26ResourceBundleRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ResourceBundleRegistration', - 'Source' => 'resourcebundle.cpp' - }, - '15479147' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7helpers22PropertyResourceBundleENS1_6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', - 'Param' => { - '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'type' => '20767713' } }, - 'Return' => '15449709', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '15036891' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'ShortName' => 'ClazzJSONLayout' }, - '15518328' => { - 'Artificial' => 1, - 'Class' => '15477748', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEED2Ev', - 'Param' => { + '209376' => { + 'Class' => '209311', + 'Const' => 1, + 'Header' => 'object.h', + 'Line' => '109', + 'MnglName' => '_ZNK7log4cxx7helpers6Object8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286335' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '41', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '209413' => { + 'Class' => '209311', + 'Const' => 1, + 'Header' => 'object.h', + 'Line' => '110', + 'MnglName' => '_ZNK7log4cxx7helpers6Object10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215799' + }, + '1' => { + 'name' => 'p1', + 'type' => '210728' + } + }, + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'VirtPos' => '3' + }, + '209455' => { + 'Class' => '209311', + 'Const' => 1, + 'Header' => 'object.h', + 'Line' => '111', + 'MnglName' => '_ZNK7log4cxx7helpers6Object4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215799' + }, + '1' => { + 'name' => 'p1', + 'type' => '210728' + } + }, + 'PureVirt' => 1, + 'Return' => '195352', + 'ShortName' => 'cast', + 'VirtPos' => '4' + }, + '209497' => { + 'Class' => '209311', + 'Header' => 'object.h', + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx7helpers6Object14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '41', + 'Static' => 1 + }, + '209513' => { + 'Class' => '209311', + 'Header' => 'object.h', + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx7helpers6Object13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '41', + 'Static' => 1 + }, + '209615' => { + 'Class' => '209529', + 'Const' => 1, + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '112', + 'MnglName' => '_ZNK7log4cxx7helpers6Object11ClazzObject7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286355' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '210015' => { + 'Class' => '209900', + 'Const' => 1, + 'Header' => 'action.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx7rolling6Action11ClazzAction7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215789' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '210109' => { + 'Class' => '209702', + 'Header' => 'action.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7rolling6Action14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'action.cpp', + 'SourceLine' => '27', + 'Static' => 1 + }, + '210125' => { + 'Class' => '209702', + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6Action13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'action.cpp', + 'SourceLine' => '27', + 'Static' => 1 + }, + '210141' => { + 'Class' => '209702', + 'Const' => 1, + 'Header' => 'action.h', + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx7rolling6Action8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215730' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'action.cpp', + 'SourceLine' => '27', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '210178' => { + 'Class' => '209702', + 'Const' => 1, + 'Header' => 'action.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7rolling6Action4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215730' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '210220' => { + 'Class' => '209702', + 'Const' => 1, + 'Header' => 'action.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7rolling6Action10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215730' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '210398' => { + 'Class' => '209702', + 'Const' => 1, + 'Header' => 'action.h', + 'Line' => '58', + 'MnglName' => '_ZNK7log4cxx7rolling6Action7executeERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215725' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'execute', + 'VirtPos' => '5' + }, + '210440' => { + 'Class' => '209702', + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6Action3runERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + }, + '1' => { + 'name' => 'pool1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'run', + 'Source' => 'action.cpp', + 'SourceLine' => '44' + }, + '210473' => { + 'Class' => '209702', + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6Action5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'action.cpp', + 'SourceLine' => '67' + }, + '210500' => { + 'Class' => '209702', + 'Const' => 1, + 'Header' => 'action.h', + 'MnglName' => '_ZNK7log4cxx7rolling6Action10isCompleteEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215730' + } + }, + 'Return' => '174077', + 'ShortName' => 'isComplete', + 'Source' => 'action.cpp', + 'SourceLine' => '77' + }, + '210530' => { + 'Class' => '209702', + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6Action15reportExceptionERKSt9exception', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + }, + '1' => { + 'name' => 'p1', + 'type' => '215735' + } + }, + 'Return' => '1', + 'ShortName' => 'reportException', + 'Source' => 'action.cpp', + 'SourceLine' => '87' + }, + '210574' => { + 'Data' => 1, + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7classes18ActionRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ActionRegistration', + 'Source' => 'action.cpp' + }, + '21199402' => { + 'Class' => '1381112', + 'Header' => 'layout.h', + 'MnglName' => '_ZN7log4cxx6Layout13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'layout.cpp', + 'SourceLine' => '23', + 'Static' => 1 + }, + '21199579' => { + 'Class' => '1381112', + 'Const' => 1, + 'Header' => 'layout.h', + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx6Layout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19230619' + }, + '1' => { + 'name' => 'p1', + 'type' => '210592' + }, + '2' => { + 'name' => 'p2', + 'type' => '576659' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'format', + 'VirtPos' => '7' + }, + '21199753' => { + 'Class' => '1381112', + 'Const' => 1, + 'Header' => 'layout.h', + 'Line' => '77', + 'MnglName' => '_ZNK7log4cxx6Layout16ignoresThrowableEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19230619' + } + }, + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'ignoresThrowable', + 'VirtPos' => '11' + }, + '21199836' => { + 'Data' => 1, + 'Line' => '23', + 'MnglName' => '_ZN7log4cxx7classes18LayoutRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LayoutRegistration', + 'Source' => 'layout.cpp' + }, + '21209475' => { + 'Class' => '564699', + 'Constructor' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEERKNS0_12LocationInfoEOS7_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523493' + }, + '1' => { + 'name' => 'logger', + 'type' => '210597' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' + }, + '4' => { + 'name' => 'message', + 'type' => '21209470' + } + }, + 'ShortName' => 'LoggingEvent', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '184' + }, + '21209604' => { + 'Constructor' => 1, + 'Header' => 'locationinfo.h', + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC1EPKcS3_S3_i', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21204963' + }, + '1' => { + 'name' => 'fileName', + 'type' => '191623' + }, + '2' => { + 'name' => 'shortFileName', + 'type' => '191623' + }, + '3' => { + 'name' => 'functionName', + 'type' => '191623' + }, + '4' => { + 'name' => 'lineNumber', + 'type' => '190263' + } + } + }, + '21219284' => { + 'Artificial' => 1, + 'Class' => '21195631', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEED2Ev', + 'Param' => { '0' => { 'name' => 'this', - 'type' => '15479856' + 'type' => '21207467' } }, 'ShortName' => 'WideLife' }, - '15518329' => { + '21219285' => { 'Artificial' => 1, - 'Class' => '15477748', + 'Class' => '21195631', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15479856' + 'type' => '21207467' } }, 'ShortName' => 'WideLife' }, - '15518470' => { + '21219428' => { 'Artificial' => 1, - 'Class' => '15477748', + 'Class' => '21195631', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15479856' + 'type' => '21207467' } }, 'ShortName' => 'WideLife' }, - '15518471' => { + '21219429' => { 'Artificial' => 1, - 'Class' => '15477748', + 'Class' => '21195631', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15479856' + 'type' => '21207467' } }, 'ShortName' => 'WideLife' }, - '15592399' => { + '21230737' => { + 'Class' => '1381112', + 'Destructor' => 1, + 'Header' => 'layout.h', + 'MnglName' => '_ZN7log4cxx6LayoutD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19230614' + } + }, + 'ShortName' => 'Layout', + 'Source' => 'layout.cpp', + 'SourceLine' => '26', + 'Virt' => 1 + }, + '21230836' => { + 'Class' => '1381112', + 'Destructor' => 1, + 'Header' => 'layout.h', + 'MnglName' => '_ZN7log4cxx6LayoutD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19230614' + } + }, + 'ShortName' => 'Layout', + 'Source' => 'layout.cpp', + 'SourceLine' => '26', + 'Virt' => 1 + }, + '21232665' => { 'Artificial' => 1, - 'Class' => '15476711', + 'Class' => '1381121', 'Destructor' => 1, - 'Header' => 'resourcebundle.h', + 'Header' => 'layout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD0Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15481026' + 'type' => '21208205' } }, - 'ShortName' => 'ClazzResourceBundle', + 'ShortName' => 'ClazzLayout', 'Virt' => 1 }, - '15592400' => { + '21232666' => { 'Artificial' => 1, - 'Class' => '15476711', + 'Class' => '1381121', 'Destructor' => 1, - 'Header' => 'resourcebundle.h', + 'Header' => 'layout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD1Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15481026' + 'type' => '21208205' } }, - 'ShortName' => 'ClazzResourceBundle', + 'ShortName' => 'ClazzLayout', 'Virt' => 1 }, - '15592541' => { + '21232812' => { 'Artificial' => 1, - 'Class' => '15476711', + 'Class' => '1381121', 'Destructor' => 1, - 'Header' => 'resourcebundle.h', + 'Header' => 'layout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD2Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15481026' + 'type' => '21208205' } }, - 'ShortName' => 'ClazzResourceBundle', + 'ShortName' => 'ClazzLayout', 'Virt' => 1 }, - '15592631' => { + '21232907' => { 'Artificial' => 1, - 'Class' => '15476711', + 'Class' => '1381121', 'Constructor' => 1, - 'Header' => 'resourcebundle.h', + 'Header' => 'layout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleC2Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15481026' + 'type' => '21208205' } }, - 'ShortName' => 'ClazzResourceBundle' + 'ShortName' => 'ClazzLayout' }, - '15592632' => { + '21232908' => { 'Artificial' => 1, - 'Class' => '15476711', + 'Class' => '1381121', 'Constructor' => 1, - 'Header' => 'resourcebundle.h', + 'Header' => 'layout.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleC1Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15481026' + 'type' => '21208205' } }, - 'ShortName' => 'ClazzResourceBundle' + 'ShortName' => 'ClazzLayout' }, - '1574398' => { - 'Class' => '1574388', - 'Const' => 1, - 'Header' => 'dateformat.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1622208' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '1574442' => { - 'Class' => '1574388', - 'Const' => 1, - 'Header' => 'dateformat.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1622208' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '1574486' => { - 'Class' => '1574388', - 'Header' => 'dateformat.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormat14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '26', - 'Static' => 1 - }, - '1575640' => { - 'Class' => '1575233', - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat20findMillisecondStartElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_7helpers10DateFormatEERNSB_4PoolE', - 'Param' => { - '0' => { - 'name' => 'time', - 'type' => '649587' - }, - '1' => { - 'name' => 'formatted', - 'type' => '263006' - }, - '2' => { - 'name' => 'formatter', - 'type' => '1576794' - }, - '3' => { - 'name' => 'pool', - 'type' => '64643' - } - }, - 'Return' => '50231', - 'ShortName' => 'findMillisecondStart', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '152', - 'Static' => 1 - }, - '1575683' => { - 'Class' => '1575233', - 'Const' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZNK7log4cxx7pattern16CachedDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1576806' - }, - '1' => { - 'name' => 'buf', - 'type' => '409210' - }, - '2' => { - 'name' => 'now', - 'type' => '649587' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '243', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1575734' => { - 'Class' => '1575233', - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat17millisecondFormatEiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', - 'Param' => { - '0' => { - 'name' => 'millis', - 'type' => '50231' - }, - '1' => { - 'name' => 'buf', - 'type' => '409210' - }, - '2' => { - 'name' => 'offset', - 'type' => '50231' - } - }, - 'Private' => 1, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'millisecondFormat', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '318', - 'Static' => 1 - }, - '1575767' => { - 'Class' => '1575233', - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat11setTimeZoneERKSt10shared_ptrINS_7helpers8TimeZoneEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1576789' - }, - '1' => { - 'name' => 'timeZone', - 'type' => '1576811' - } - }, - 'Return' => '1', - 'ShortName' => 'setTimeZone', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '334', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '1575809' => { - 'Class' => '1575233', - 'Const' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZNK7log4cxx7pattern16CachedDateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1576806' - }, - '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'n', - 'type' => '50231' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'numberFormat', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '343', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '1575861' => { - 'Class' => '1575233', - 'Header' => 'cacheddateformat.h', - 'Line' => '165', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat23getMaximumCacheValidityERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'pattern', - 'type' => '263006' - } - }, - 'Return' => '50231', - 'ShortName' => 'getMaximumCacheValidity', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '356', - 'Static' => 1 - }, - '1575956' => { - 'Class' => '1575233', - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat13regionMatchesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmS9_mm', - 'Param' => { - '0' => { - 'name' => 'target', - 'type' => '263006' - }, - '1' => { - 'name' => 'toffset', - 'type' => '50486' - }, - '2' => { - 'name' => 'other', - 'type' => '263006' - }, - '3' => { - 'name' => 'ooffset', - 'type' => '50486' - }, - '4' => { - 'name' => 'len', - 'type' => '50486' - } - }, - 'Private' => 1, - 'Return' => '50284', - 'ShortName' => 'regionMatches', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '393', - 'Static' => 1 - }, - '1576623' => { - 'Class' => '1575233', - 'Data' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat6digitsE', - 'Return' => '1576618', - 'ShortName' => 'digits', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '83', - 'Value' => '30 31 32 33 34 35 36 37 38 39 00' - }, - '1576632' => { - 'Class' => '1575233', - 'Data' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat6magic1E', - 'Return' => '50239', - 'ShortName' => 'magic1', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '90', - 'Value' => '654000' - }, - '1576662' => { - 'Class' => '1575233', - 'Data' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat12magicString1E', - 'Return' => '1576657', - 'ShortName' => 'magicString1', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '96', - 'Value' => '36 35 34 00' - }, - '1576671' => { - 'Class' => '1575233', - 'Data' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat6magic2E', - 'Return' => '50239', - 'ShortName' => 'magic2', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '103', - 'Value' => '987000' - }, - '1576680' => { - 'Class' => '1575233', - 'Data' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat12magicString2E', - 'Return' => '1576657', - 'ShortName' => 'magicString2', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '109', - 'Value' => '39 38 37 00' - }, - '1576689' => { - 'Class' => '1575233', - 'Data' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat10zeroStringE', - 'Return' => '1576657', - 'ShortName' => 'zeroString', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '115', - 'Value' => '30 30 30 00' - }, - '15769133' => { - 'Class' => '6292730', - 'Const' => 1, - 'Header' => 'rolloverdescription.h', - 'Line' => '62', - 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription9getAppendEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16421607' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAppend', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '86' - }, - '15769145' => { - 'Class' => '6292730', - 'Const' => 1, - 'Header' => 'rolloverdescription.h', - 'Line' => '78', - 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription15getAsynchronousEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16421607' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '6294484', - 'ShortName' => 'getAsynchronous', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '102' - }, - '15769157' => { - 'Class' => '6292730', - 'Const' => 1, - 'Header' => 'rolloverdescription.h', - 'Line' => '60', - 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription17getActiveFileNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16421607' - } - }, - 'Private' => 1, - 'Return' => '63706', - 'ShortName' => 'getActiveFileName', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '81' - }, - '15769169' => { - 'Class' => '6292730', - 'Const' => 1, - 'Header' => 'rolloverdescription.h', - 'Line' => '70', - 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription14getSynchronousEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16421607' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '6294484', - 'ShortName' => 'getSynchronous', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '91' - }, - '15769242' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'Line' => '143', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '40', - 'Static' => 1 - }, - '15769426' => { - 'Class' => '15769305', - 'Const' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 2, - 'Line' => '81', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15780381' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '15769465' => { - 'Class' => '15769305', - 'Const' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 2, - 'Line' => '81', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15780381' - } - }, - 'Return' => '14554226', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '15769504' => { - 'Artificial' => 1, - 'Class' => '15769305', - 'Header' => 'rollingfileappender.h', - 'InLine' => 2, - 'Line' => '81', - 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15780381' - } - }, - 'Return' => '14554226', - 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv' - }, - '15769825' => { - 'Class' => '14545574', + '21521100' => { + 'Class' => '563933', 'Const' => 1, - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender8getClassEv', + 'Header' => 'level.h', + 'MnglName' => '_ZNK7log4cxx5Level8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780246' + 'type' => '2696821' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '66', + 'Source' => 'level.cpp', + 'SourceLine' => '31', 'Virt' => 1, 'VirtPos' => '2' }, - '15769881' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender13registerClassEv', - 'Return' => '64684', + '21521137' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5Level14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'level.cpp', + 'SourceLine' => '31', + 'Static' => 1 + }, + '21521153' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5Level13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '66', + 'Source' => 'level.cpp', + 'SourceLine' => '31', 'Static' => 1 }, - '15769898' => { - 'Class' => '14545574', + '21521169' => { + 'Class' => '563933', 'Const' => 1, - 'Header' => 'rollingfileappender.h', + 'Header' => 'level.h', 'InLine' => 2, - 'Line' => '82', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender4castERKNS_7helpers5ClassE', + 'Line' => '73', + 'MnglName' => '_ZNK7log4cxx5Level4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780246' + 'type' => '2696821' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '15769942' => { - 'Class' => '14545574', + '21521211' => { + 'Class' => '563933', 'Const' => 1, - 'Header' => 'rollingfileappender.h', + 'Header' => 'level.h', 'InLine' => 2, - 'Line' => '85', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender10instanceofERKNS_7helpers5ClassE', + 'Line' => '75', + 'MnglName' => '_ZNK7log4cxx5Level10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780246' + 'type' => '2696821' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '15770023' => { - 'Class' => '14545574', - 'Const' => 1, - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender17getMaxBackupIndexEv', + '21521294' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5Level7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '15780246' + 'name' => 'sArg', + 'type' => '202831' } }, - 'Return' => '50231', - 'ShortName' => 'getMaxBackupIndex', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '104' + 'Return' => '567044', + 'ShortName' => 'toLevel', + 'Source' => 'level.cpp', + 'SourceLine' => '141', + 'Static' => 1 }, - '15770054' => { - 'Class' => '14545574', - 'Const' => 1, - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender18getMaximumFileSizeEv', + '21521320' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5Level7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrIS0_E', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '15780246' + 'name' => 'sArg', + 'type' => '202831' + }, + '1' => { + 'name' => 'defaultLevel', + 'type' => '575807' } }, - 'Return' => '50486', - 'ShortName' => 'getMaximumFileSize', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '124' + 'Return' => '567044', + 'ShortName' => 'toLevel', + 'Source' => 'level.cpp', + 'SourceLine' => '146', + 'Static' => 1 }, - '15770085' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender17setMaxBackupIndexEi', + '21521382' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5Level7toLevelERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '15779138' - }, - '1' => { - 'name' => 'maxBackups', - 'type' => '50231' + 'name' => 'sArg', + 'type' => '202841' } }, - 'Return' => '1', - 'ShortName' => 'setMaxBackupIndex', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '112' + 'Return' => '567044', + 'ShortName' => 'toLevel', + 'Source' => 'level.cpp', + 'SourceLine' => '158', + 'Static' => 1 }, - '15770117' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender14setMaxFileSizeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '21521408' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5Level7toLevelERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKSt10shared_ptrIS0_E', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '15779138' + 'name' => 'sArg', + 'type' => '202841' }, '1' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'defaultLevel', + 'type' => '575807' } }, - 'Return' => '1', - 'ShortName' => 'setMaxFileSize', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '143' + 'Return' => '567044', + 'ShortName' => 'toLevel', + 'Source' => 'level.cpp', + 'SourceLine' => '163', + 'Static' => 1 }, - '15770149' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender18setMaximumFileSizeEm', + '21521439' => { + 'Class' => '563933', + 'Const' => 1, + 'Header' => 'level.h', + 'MnglName' => '_ZNK7log4cxx5Level8toStringERNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '2696821' }, '1' => { - 'name' => 'maxFileSize', - 'type' => '50486' + 'name' => 'dst', + 'type' => '210622' } }, 'Return' => '1', - 'ShortName' => 'setMaximumFileSize', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '132' + 'ShortName' => 'toString', + 'Source' => 'level.cpp', + 'SourceLine' => '169' }, - '15770181' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender14setDatePatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '21521557' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5Level7toLevelEi', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '15779138' - }, - '1' => { - 'name' => 'newPattern', - 'type' => '263006' + 'name' => 'val', + 'type' => '190263' } }, - 'Return' => '1', - 'ShortName' => 'setDatePattern', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '186' + 'Return' => '567044', + 'ShortName' => 'toLevel', + 'Source' => 'level.cpp', + 'SourceLine' => '103', + 'Static' => 1 }, - '15770213' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender19makeFileNamePatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '21521583' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5Level7toLevelEiRKSt10shared_ptrIS0_E', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '15779138' + 'name' => 'val', + 'type' => '190263' }, '1' => { - 'name' => 'datePattern', - 'type' => '263006' + 'name' => 'defaultLevel', + 'type' => '575807' } }, - 'Return' => '63706', - 'ShortName' => 'makeFileNamePattern', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '148' + 'Return' => '567044', + 'ShortName' => 'toLevel', + 'Source' => 'level.cpp', + 'SourceLine' => '108', + 'Static' => 1 }, - '15770249' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '21521630' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '223', + 'MnglName' => '_ZN7log4cxx5Level8getFatalEv', + 'Return' => '567044', + 'ShortName' => 'getFatal', + 'Source' => 'level.cpp', + 'SourceLine' => '39', + 'Static' => 1 + }, + '21521678' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '226', + 'MnglName' => '_ZN7log4cxx5Level7getInfoEv', + 'Return' => '567044', + 'ShortName' => 'getInfo', + 'Source' => 'level.cpp', + 'SourceLine' => '57', + 'Static' => 1 + }, + '21521710' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '228', + 'MnglName' => '_ZN7log4cxx5Level8getTraceEv', + 'Return' => '567044', + 'ShortName' => 'getTrace', + 'Source' => 'level.cpp', + 'SourceLine' => '69', + 'Static' => 1 + }, + '21521726' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '229', + 'MnglName' => '_ZN7log4cxx5Level6getOffEv', + 'Return' => '567044', + 'ShortName' => 'getOff', + 'Source' => 'level.cpp', + 'SourceLine' => '33', + 'Static' => 1 + }, + '21521742' => { + 'Class' => '563933', + 'Const' => 1, + 'Header' => 'level.h', + 'MnglName' => '_ZNK7log4cxx5Level6equalsERKSt10shared_ptrIS0_E', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '2696821' }, '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'level1', + 'type' => '575807' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '77', + 'Return' => '174077', + 'ShortName' => 'equals', + 'Source' => 'level.cpp', + 'SourceLine' => '277', 'Virt' => 1, - 'VirtPos' => '6' + 'VirtPos' => '5' }, - '15770295' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender15activateOptionsERNS_7helpers4PoolE', + '21521884' => { + 'Class' => '563933', + 'Const' => 1, + 'Header' => 'level.h', + 'MnglName' => '_ZNK7log4cxx5Level16isGreaterOrEqualERKSt10shared_ptrIS0_E', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '2696821' }, '1' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'level1', + 'type' => '575807' } }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '200', + 'Return' => '174077', + 'ShortName' => 'isGreaterOrEqual', + 'Source' => 'level.cpp', + 'SourceLine' => '282', 'Virt' => 1, - 'VirtPos' => '5' + 'VirtPos' => '6' }, - '15770336' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender8rolloverERNS_7helpers4PoolE', + '21522127' => { + 'Data' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7classes17LevelRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LevelRegistration', + 'Source' => 'level.cpp' + }, + '21532779' => { + 'Artificial' => 1, + 'Class' => '563933', + 'Destructor' => 1, + 'Header' => 'level.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx5LevelD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '21528334' } }, - 'Return' => '50284', - 'ShortName' => 'rollover', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '302' + 'ShortName' => 'Level', + 'Virt' => 1 }, - '15770373' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '21532780' => { + 'Artificial' => 1, + 'Class' => '563933', + 'Destructor' => 1, + 'Header' => 'level.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx5LevelD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '21528334' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'subAppend', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '453', - 'Virt' => 1, - 'VirtPos' => '20' + 'ShortName' => 'Level', + 'Virt' => 1 }, - '15770419' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender16rolloverInternalERNS_7helpers4PoolE', + '21533606' => { + 'Artificial' => 1, + 'Class' => '563933', + 'Destructor' => 1, + 'Header' => 'level.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx5LevelD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '21528334' } }, - 'Protected' => 1, - 'Return' => '50284', - 'ShortName' => 'rolloverInternal', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '308' + 'ShortName' => 'Level', + 'Virt' => 1 }, - '15770456' => { - 'Class' => '14545574', - 'Const' => 1, - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender16getRollingPolicyEv', + '21545004' => { + 'Artificial' => 1, + 'Class' => '21519700', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780246' + 'type' => '21528304' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '14545684', - 'ShortName' => 'getRollingPolicy', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '487' + 'ShortName' => 'WideLife' }, - '15770488' => { - 'Class' => '14545574', - 'Const' => 1, - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender19getTriggeringPolicyEv', + '21545005' => { + 'Artificial' => 1, + 'Class' => '21519700', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780246' + 'type' => '21528304' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '14545696', - 'ShortName' => 'getTriggeringPolicy', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '495' + 'ShortName' => 'WideLife' }, - '15770586' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender5closeEv', + '21545788' => { + 'Artificial' => 1, + 'Class' => '21519700', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEEC2IS4_JEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '21528304' + }, + '1' => { + 'name' => 'arg0', + 'type' => '573001' } }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '519', - 'Virt' => 1, - 'VirtPos' => '10' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '429750' + } + } }, - '15770622' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE', + '21545789' => { + 'Artificial' => 1, + 'Class' => '21519700', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEEC1IS4_JEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '21528304' }, '1' => { - 'name' => 'os', - 'type' => '13117495' + 'name' => 'arg0', + 'type' => '573001' } }, - 'Protected' => 1, - 'Return' => '1248337', - 'ShortName' => 'createWriter', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '599', - 'Virt' => 1, - 'VirtPos' => '19' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '429750' + } + } }, - '15770668' => { - 'Class' => '14545574', - 'Const' => 1, - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender13getFileLengthEv', + '21546319' => { + 'Artificial' => 1, + 'Class' => '21518949', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780246' + 'type' => '21528208' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50486', - 'ShortName' => 'getFileLength', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '609' + 'ShortName' => 'WideLife' }, - '15770700' => { - 'Class' => '14545574', - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender19incrementFileLengthEm', + '21546320' => { + 'Artificial' => 1, + 'Class' => '21518949', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' - }, - '1' => { - 'name' => 'increment', - 'type' => '50486' + 'type' => '21528208' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'incrementFileLength', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '618' + 'ShortName' => 'WideLife' }, - '15770784' => { - 'Class' => '15770775', - 'Header' => 'sizebasedtriggeringpolicy.h', - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '26', - 'Static' => 1 + '21546474' => { + 'Artificial' => 1, + 'Class' => '564020', + 'Destructor' => 1, + 'Header' => 'level.h', + 'InLine' => 1, + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx5Level10LevelClassD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21528923' + } + }, + 'ShortName' => 'LevelClass', + 'Virt' => 1 }, - '15770796' => { - 'Class' => '15770775', - 'Header' => 'sizebasedtriggeringpolicy.h', - 'Line' => '75', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy14setMaxFileSizeEm', + '21546475' => { + 'Artificial' => 1, + 'Class' => '564020', + 'Destructor' => 1, + 'Header' => 'level.h', + 'InLine' => 1, + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx5Level10LevelClassD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' - }, - '1' => { - 'name' => 'l', - 'type' => '50486' + 'type' => '21528923' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setMaxFileSize', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '46' + 'ShortName' => 'LevelClass', + 'Virt' => 1 }, - '15770808' => { - 'Class' => '15770775', - 'Header' => 'sizebasedtriggeringpolicy.h', - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy14getMaxFileSizeEv', + '21546621' => { + 'Artificial' => 1, + 'Class' => '564020', + 'Destructor' => 1, + 'Header' => 'level.h', + 'InLine' => 1, + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx5Level10LevelClassD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' + 'type' => '21528923' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50486', - 'ShortName' => 'getMaxFileSize', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '41' + 'ShortName' => 'LevelClass', + 'Virt' => 1 }, - '15770979' => { - 'Class' => '15770826', - 'InLine' => 2, - 'Line' => '560', - 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStream5closeERNS_7helpers4PoolE', + '21546716' => { + 'Artificial' => 1, + 'Class' => '21518949', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15778502' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '21528208' } }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'rollingfileappender.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'WideLife' }, - '15771020' => { - 'Class' => '15770826', - 'InLine' => 2, - 'Line' => '569', - 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStream5flushERNS_7helpers4PoolE', + '21546717' => { + 'Artificial' => 1, + 'Class' => '21518949', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15778502' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '21528208' } }, - 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'rollingfileappender.cpp', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'WideLife' }, - '15771061' => { - 'Class' => '15770826', - 'InLine' => 2, - 'Line' => '577', - 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStream5writeERNS_7helpers10ByteBufferERNS2_4PoolE', + '21558407' => { + 'Class' => '563933', + 'Constructor' => 1, + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5LevelC2EiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15778502' + 'type' => '21528334' }, '1' => { - 'name' => 'buf', - 'type' => '1340866' + 'name' => 'level1', + 'type' => '190263' }, '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'name1', + 'type' => '210597' + }, + '3' => { + 'name' => 'syslogEquivalent1', + 'type' => '190263' } }, - 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'rollingfileappender.cpp', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '15771247' => { - 'Data' => 1, - 'Line' => '66', - 'MnglName' => '_ZN7log4cxx7classes31RollingFileAppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'RollingFileAppenderRegistration', - 'Source' => 'rollingfileappender.cpp' + 'ShortName' => 'Level', + 'Source' => 'level.cpp', + 'SourceLine' => '84' }, - '15772031' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '131', - 'MnglName' => '_ZN7log4cxx14WriterAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE', + '21558408' => { + 'Class' => '563933', + 'Constructor' => 1, + 'Header' => 'level.h', + 'MnglName' => '_ZN7log4cxx5LevelC1EiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '21528334' }, '1' => { - 'name' => 'os', - 'type' => '13117495' + 'name' => 'level1', + 'type' => '190263' + }, + '2' => { + 'name' => 'name1', + 'type' => '210597' + }, + '3' => { + 'name' => 'syslogEquivalent1', + 'type' => '190263' } }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '1248337', - 'ShortName' => 'createWriter', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '209', - 'Virt' => 1, - 'VirtPos' => '19' + 'ShortName' => 'Level', + 'Source' => 'level.cpp', + 'SourceLine' => '84' }, - '15772043' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '117', - 'MnglName' => '_ZN7log4cxx14WriterAppender5closeEv', + '21609291' => { + 'Artificial' => 1, + 'Class' => '564020', + 'Constructor' => 1, + 'Header' => 'level.h', + 'InLine' => 1, + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx5Level10LevelClassC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '21528923' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '164', - 'Virt' => 1, - 'VirtPos' => '10' + 'ShortName' => 'LevelClass' }, - '15772055' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '178', - 'MnglName' => '_ZN7log4cxx14WriterAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '21609292' => { + 'Artificial' => 1, + 'Class' => '564020', + 'Constructor' => 1, + 'Header' => 'level.h', + 'InLine' => 1, + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx5Level10LevelClassC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '21528923' } }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'subAppend', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '253', - 'Virt' => 1, - 'VirtPos' => '20' + 'ShortName' => 'LevelClass' }, - '15772225' => { - 'Header' => 'object.h', + '216490' => { + 'Destructor' => 1, + 'Header' => 'pool.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers4PoolD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + } + } + }, + '216517' => { + 'Constructor' => 1, + 'Header' => 'pool.h', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers4PoolC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + } + } + }, + '216544' => { + 'Constructor' => 1, + 'Header' => 'classregistration.h', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers17ClassRegistrationC1EPFRKNS0_5ClassEvE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210712' + }, + '1' => { + 'name' => 'classAccessor', + 'type' => '208360' + } + } + }, + '216593' => { + 'Class' => '208442', + 'Destructor' => 1, + 'Header' => 'class.h', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers5ClassD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '216588' + } + }, + 'ShortName' => 'Class', + 'Source' => 'class.cpp', + 'SourceLine' => '97', + 'Virt' => 1 + }, + '216594' => { + 'Class' => '208442', + 'Destructor' => 1, + 'Header' => 'class.h', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers5ClassD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '216588' + } + }, + 'ShortName' => 'Class', + 'Source' => 'class.cpp', + 'SourceLine' => '97', + 'Virt' => 1 + }, + '216678' => { + 'Class' => '208442', + 'Constructor' => 1, + 'Header' => 'class.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers5ClassC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '216588' + } + }, + 'Protected' => 1, + 'ShortName' => 'Class', + 'Source' => 'class.cpp', + 'SourceLine' => '93' + }, + '216679' => { + 'Class' => '208442', + 'Constructor' => 1, + 'Header' => 'class.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers5ClassC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '216588' + } + }, + 'Protected' => 1, + 'ShortName' => 'Class', + 'Source' => 'class.cpp', + 'SourceLine' => '93' + }, + '21947445' => { + 'Artificial' => 1, + 'Class' => '5660800', + 'Header' => 'levelmatchfilter.h', 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7rolling16TriggeringPolicyENS1_13RollingPolicyELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + 'Line' => '49', + 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '14554465' + 'name' => 'this', + 'type' => '21957026' } }, - 'Return' => '14502554', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '6059004' - }, - '1' => { - 'key' => 'Type', - 'type' => '6294384' - } - } + 'Return' => '5679738', + 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv' }, - '15772269' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7rolling22TimeBasedRollingPolicyENS1_13RollingPolicyELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + '21947685' => { + 'Class' => '5660794', + 'Const' => 1, + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter8getClassEv', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '14554465' + 'name' => 'this', + 'type' => '21956957' } }, - 'Return' => '15719368', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '15769233' - }, - '1' => { - 'key' => 'Type', - 'type' => '6294384' - } - } + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '39', + 'Virt' => 1, + 'VirtPos' => '2' }, - '15772313' => { - 'Header' => 'object.h', + '21947722' => { + 'Class' => '5660794', + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '39', + 'Static' => 1 + }, + '21947754' => { + 'Class' => '5660794', + 'Const' => 1, + 'Header' => 'levelmatchfilter.h', 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7rolling25SizeBasedTriggeringPolicyENS1_16TriggeringPolicyELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + 'Line' => '50', + 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '14554576' + 'name' => 'this', + 'type' => '21956957' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '15717288', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '15770775' - }, - '1' => { - 'key' => 'Type', - 'type' => '6059004' - } - } + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '15772357' => { - 'Header' => 'object.h', + '21947796' => { + 'Class' => '5660794', + 'Const' => 1, + 'Header' => 'levelmatchfilter.h', 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7rolling24FixedWindowRollingPolicyENS1_13RollingPolicyELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '14554465' + 'name' => 'this', + 'type' => '21956957' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '15715208', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '6293085' - }, - '1' => { - 'key' => 'Type', - 'type' => '6294384' - } - } + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '15793354' => { - 'Artificial' => 1, - 'Class' => '14545574', - 'Destructor' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 1, - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderD0Ev', + '21947914' => { + 'Class' => '5660794', + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '21956932' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'ShortName' => 'RollingFileAppender', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '49', + 'Virt' => 1, + 'VirtPos' => '6' }, - '15793355' => { - 'Artificial' => 1, - 'Class' => '14545574', - 'Destructor' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 1, - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderD2Ev', + '21947958' => { + 'Class' => '5660794', + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter15setLevelToMatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '21956932' + }, + '1' => { + 'name' => 'levelToMatch1', + 'type' => '210597' } }, - 'ShortName' => 'RollingFileAppender', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setLevelToMatch', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '66' }, - '15793691' => { - 'Artificial' => 1, - 'Class' => '14545574', - 'Destructor' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 1, - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderD1Ev', + '21947989' => { + 'Class' => '5660794', + 'Const' => 1, + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter15getLevelToMatchB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15779138' + 'type' => '21956957' } }, - 'ShortName' => 'RollingFileAppender', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getLevelToMatch', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '71' }, - '15793990' => { - 'Artificial' => 1, - 'Class' => '15770826', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '532', - 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStreamD0Ev', + '21948019' => { + 'Class' => '5660794', + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter16setAcceptOnMatchEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15778502' + 'type' => '21956932' + }, + '1' => { + 'name' => 'acceptOnMatch1', + 'type' => '174077' } }, - 'ShortName' => 'CountingOutputStream', - 'Source' => 'rollingfileappender.cpp', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setAcceptOnMatch', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '96' }, - '15793991' => { - 'Artificial' => 1, - 'Class' => '15770826', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '532', - 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStreamD1Ev', + '21948050' => { + 'Class' => '5660794', + 'Const' => 1, + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter16getAcceptOnMatchEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15778502' + 'type' => '21956957' } }, - 'ShortName' => 'CountingOutputStream', - 'Source' => 'rollingfileappender.cpp', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'getAcceptOnMatch', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '101' }, - '15794761' => { - 'Artificial' => 1, - 'Class' => '15770826', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '532', - 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStreamD2Ev', + '21948080' => { + 'Class' => '5660794', + 'Const' => 1, + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15778502' + 'type' => '21956957' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' } }, - 'ShortName' => 'CountingOutputStream', - 'Source' => 'rollingfileappender.cpp', - 'Virt' => 1 + 'Return' => '565023', + 'ShortName' => 'decide', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '76', + 'Virt' => 1, + 'VirtPos' => '7' }, - '15827017' => { + '21948154' => { + 'Data' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7classes28LevelMatchFilterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LevelMatchFilterRegistration', + 'Source' => 'levelmatchfilter.cpp' + }, + '21962033' => { 'Artificial' => 1, - 'Class' => '15769531', + 'Class' => '21947472', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD0Ev', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15777144' + 'type' => '21956307' } }, - 'ShortName' => 'RollingFileAppenderPriv', - 'Source' => 'rollingfileappender.cpp', + 'ShortName' => 'LevelMatchFilterPrivate', + 'Source' => 'levelmatchfilter.cpp', 'Virt' => 1 }, - '15827018' => { + '21962034' => { 'Artificial' => 1, - 'Class' => '15769531', + 'Class' => '21947472', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD1Ev', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15777144' + 'type' => '21956307' } }, - 'ShortName' => 'RollingFileAppenderPriv', - 'Source' => 'rollingfileappender.cpp', + 'ShortName' => 'LevelMatchFilterPrivate', + 'Source' => 'levelmatchfilter.cpp', 'Virt' => 1 }, - '15834875' => { + '21963427' => { 'Artificial' => 1, - 'Class' => '15769531', + 'Class' => '21947472', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD2Ev', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15777144' + 'type' => '21956307' } }, - 'ShortName' => 'RollingFileAppenderPriv', - 'Source' => 'rollingfileappender.cpp', + 'ShortName' => 'LevelMatchFilterPrivate', + 'Source' => 'levelmatchfilter.cpp', 'Virt' => 1 }, - '15852184' => { + '21968393' => { 'Artificial' => 1, - 'Class' => '15766329', + 'Class' => '21942884', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15777019' + 'type' => '21956196' } }, 'ShortName' => 'WideLife' }, - '15852185' => { + '21968394' => { 'Artificial' => 1, - 'Class' => '15766329', + 'Class' => '21942884', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15777019' + 'type' => '21956196' } }, 'ShortName' => 'WideLife' }, - '15852326' => { + '21968536' => { 'Artificial' => 1, - 'Class' => '15766329', + 'Class' => '21942884', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15777019' + 'type' => '21956196' } }, 'ShortName' => 'WideLife' }, - '15852327' => { + '21968537' => { 'Artificial' => 1, - 'Class' => '15766329', + 'Class' => '21942884', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15777019' + 'type' => '21956196' } }, 'ShortName' => 'WideLife' }, - '159688' => { - 'Artificial' => 1, - 'Class' => '151657', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '153878' - } - }, - 'ShortName' => 'AndFilterPrivate', - 'Source' => 'andfilter.cpp', - 'Virt' => 1 - }, - '159689' => { - 'Artificial' => 1, - 'Class' => '151657', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '153878' - } - }, - 'ShortName' => 'AndFilterPrivate', - 'Source' => 'andfilter.cpp', - 'Virt' => 1 - }, - '15984802' => { - 'Class' => '14545574', - 'Constructor' => 1, - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15779138' - } - }, - 'ShortName' => 'RollingFileAppender', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '72' - }, - '16000109' => { - 'Class' => '14545574', - 'Constructor' => 1, - 'Header' => 'rollingfileappender.h', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15779138' - } - }, - 'ShortName' => 'RollingFileAppender', - 'Source' => 'rollingfileappender.cpp', - 'SourceLine' => '72' - }, - '16049019' => { - 'Artificial' => 1, - 'Class' => '15769305', + '21972609' => { + 'Class' => '5660794', 'Destructor' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 1, - 'Line' => '81', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD0Ev', + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780370' + 'type' => '21956932' } }, - 'ShortName' => 'ClazzRollingFileAppender', + 'ShortName' => 'LevelMatchFilter', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '47', 'Virt' => 1 }, - '16049020' => { - 'Artificial' => 1, - 'Class' => '15769305', + '21972708' => { + 'Class' => '5660794', 'Destructor' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 1, - 'Line' => '81', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD1Ev', + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780370' + 'type' => '21956932' } }, - 'ShortName' => 'ClazzRollingFileAppender', + 'ShortName' => 'LevelMatchFilter', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '47', 'Virt' => 1 }, - '16049161' => { - 'Artificial' => 1, - 'Class' => '15769305', + '21972906' => { + 'Class' => '5660794', 'Destructor' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 1, - 'Line' => '81', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD2Ev', + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780370' + 'type' => '21956932' } }, - 'ShortName' => 'ClazzRollingFileAppender', + 'ShortName' => 'LevelMatchFilter', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '47', 'Virt' => 1 }, - '16049251' => { - 'Artificial' => 1, - 'Class' => '15769305', + '21973041' => { + 'Class' => '5660794', 'Constructor' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 1, - 'Line' => '81', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderC2Ev', + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15780370' + 'type' => '21956932' } }, - 'ShortName' => 'ClazzRollingFileAppender' + 'ShortName' => 'LevelMatchFilter', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '41' }, - '16049252' => { - 'Artificial' => 1, - 'Class' => '15769305', + '21976067' => { + 'Class' => '5660794', 'Constructor' => 1, - 'Header' => 'rollingfileappender.h', - 'InLine' => 1, - 'Line' => '81', - 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15780370' - } - }, - 'ShortName' => 'ClazzRollingFileAppender' - }, - '16113281' => { - 'Class' => '16113160', - 'Const' => 1, - 'Header' => 'rollingpolicy.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx7rolling13RollingPolicy18ClazzRollingPolicy7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16114804' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '16113356' => { - 'Class' => '6294384', - 'Header' => 'rollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'rollingpolicy.cpp', - 'SourceLine' => '23', - 'Static' => 1 - }, - '16113373' => { - 'Class' => '6294384', - 'Const' => 1, - 'Header' => 'rollingpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling13RollingPolicy8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16114770' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'rollingpolicy.cpp', - 'SourceLine' => '23', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '16113454' => { - 'Class' => '6294384', - 'Header' => 'rollingpolicy.h', - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6498573' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '50284' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' - } - }, - 'PureVirt' => 1, - 'Return' => '6294348', - 'ShortName' => 'initialize', - 'VirtPos' => '7' - }, - '16113508' => { - 'Class' => '6294384', - 'Header' => 'rollingpolicy.h', - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', + 'Header' => 'levelmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6498573' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '50284' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '21956932' } }, - 'PureVirt' => 1, - 'Return' => '6294348', - 'ShortName' => 'rollover', - 'VirtPos' => '8' - }, - '16113606' => { - 'Data' => 1, - 'Line' => '23', - 'MnglName' => '_ZN7log4cxx7classes25RollingPolicyRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'RollingPolicyRegistration', - 'Source' => 'rollingpolicy.cpp' + 'ShortName' => 'LevelMatchFilter', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '41' }, - '16118100' => { + '21982464' => { 'Artificial' => 1, - 'Class' => '16112027', + 'Class' => '5660800', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'levelmatchfilter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEED2Ev', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16114614' + 'type' => '21957016' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzLevelMatchFilter', + 'Virt' => 1 }, - '16118101' => { + '21982465' => { 'Artificial' => 1, - 'Class' => '16112027', + 'Class' => '5660800', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'levelmatchfilter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEED0Ev', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16114614' + 'type' => '21957016' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzLevelMatchFilter', + 'Virt' => 1 }, - '16118241' => { + '21982610' => { 'Artificial' => 1, - 'Class' => '16112027', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '5660800', + 'Destructor' => 1, + 'Header' => 'levelmatchfilter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEEC2Ev', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16114614' + 'type' => '21957016' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzLevelMatchFilter', + 'Virt' => 1 }, - '16118242' => { + '21982705' => { 'Artificial' => 1, - 'Class' => '16112027', + 'Class' => '5660800', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16114614' - } - }, - 'ShortName' => 'WideLife' - }, - '16120299' => { - 'Artificial' => 1, - 'Class' => '16113160', - 'Destructor' => 1, - 'Header' => 'rollingpolicy.h', + 'Header' => 'levelmatchfilter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD0Ev', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16114793' + 'type' => '21957016' } }, - 'ShortName' => 'ClazzRollingPolicy', - 'Virt' => 1 + 'ShortName' => 'ClazzLevelMatchFilter' }, - '16120300' => { + '21982706' => { 'Artificial' => 1, - 'Class' => '16113160', - 'Destructor' => 1, - 'Header' => 'rollingpolicy.h', + 'Class' => '5660800', + 'Constructor' => 1, + 'Header' => 'levelmatchfilter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD1Ev', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16114793' + 'type' => '21957016' } }, - 'ShortName' => 'ClazzRollingPolicy', - 'Virt' => 1 + 'ShortName' => 'ClazzLevelMatchFilter' }, - '16120440' => { - 'Artificial' => 1, - 'Class' => '16113160', - 'Destructor' => 1, - 'Header' => 'rollingpolicy.h', - 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16114793' - } - }, - 'ShortName' => 'ClazzRollingPolicy', - 'Virt' => 1 - }, - '16120530' => { - 'Artificial' => 1, - 'Class' => '16113160', - 'Constructor' => 1, - 'Header' => 'rollingpolicy.h', - 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16114793' - } - }, - 'ShortName' => 'ClazzRollingPolicy' - }, - '16120531' => { - 'Artificial' => 1, - 'Class' => '16113160', - 'Constructor' => 1, - 'Header' => 'rollingpolicy.h', - 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16114793' - } - }, - 'ShortName' => 'ClazzRollingPolicy' - }, - '1612587' => { - 'Class' => '1575233', - 'Destructor' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1576789' - } - }, - 'ShortName' => 'CachedDateFormat', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '140', - 'Virt' => 1 - }, - '1612588' => { - 'Class' => '1575233', - 'Destructor' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1576789' - } - }, - 'ShortName' => 'CachedDateFormat', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '140', - 'Virt' => 1 - }, - '1612681' => { - 'Class' => '1575233', - 'Destructor' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1576789' - } - }, - 'ShortName' => 'CachedDateFormat', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '140', - 'Virt' => 1 - }, - '1614392' => { - 'Class' => '1575233', - 'Constructor' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatC2ERKSt10shared_ptrINS_7helpers10DateFormatEEi', - 'Param' => { + '221045' => { + 'Artificial' => 1, + 'Class' => '208912', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215344' + } + }, + 'ShortName' => 'WideLife' + }, + '221046' => { + 'Artificial' => 1, + 'Class' => '208912', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215344' + } + }, + 'ShortName' => 'WideLife' + }, + '221146' => { + 'Artificial' => 1, + 'Class' => '208912', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEEC2IRFRKNS0_5ClassEvEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215344' + }, + '1' => { + 'name' => 'arg0', + 'type' => '221089' + } + }, + 'ShortName' => 'WideLife', + 'TParam' => { '0' => { - 'name' => 'this', - 'type' => '1576789' - }, - '1' => { - 'name' => 'dateFormat', - 'type' => '1576794' - }, - '2' => { - 'name' => 'expiration1', - 'type' => '50231' + 'key' => 'Arg0', + 'type' => '221089' } - }, - 'ShortName' => 'CachedDateFormat', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '125' - }, - '1614393' => { - 'Class' => '1575233', - 'Constructor' => 1, - 'Header' => 'cacheddateformat.h', - 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatC1ERKSt10shared_ptrINS_7helpers10DateFormatEEi', - 'Param' => { + } + }, + '221147' => { + 'Artificial' => 1, + 'Class' => '208912', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEEC1IRFRKNS0_5ClassEvEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215344' + }, + '1' => { + 'name' => 'arg0', + 'type' => '221089' + } + }, + 'ShortName' => 'WideLife', + 'TParam' => { '0' => { - 'name' => 'this', - 'type' => '1576789' - }, - '1' => { - 'name' => 'dateFormat', - 'type' => '1576794' - }, - '2' => { - 'name' => 'expiration1', - 'type' => '50231' + 'key' => 'Arg0', + 'type' => '221089' } - }, - 'ShortName' => 'CachedDateFormat', - 'Source' => 'cacheddateformat.cpp', - 'SourceLine' => '125' - }, - '161749' => { + } + }, + '221283' => { 'Artificial' => 1, - 'Class' => '151657', + 'Class' => '208559', 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '153878' + 'type' => '215294' } }, - 'ShortName' => 'AndFilterPrivate', - 'Source' => 'andfilter.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16277774' => { - 'Class' => '16277653', - 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBase7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16285820' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '16277888' => { - 'Class' => '6292740', - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase14getStaticClassEv', - 'Return' => '64678', + '221284' => { + 'Artificial' => 1, + 'Class' => '208559', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215294' + } + }, + 'ShortName' => 'WideLife' + }, + '221425' => { + 'Artificial' => 1, + 'Class' => '208559', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215294' + } + }, + 'ShortName' => 'WideLife' + }, + '221426' => { + 'Artificial' => 1, + 'Class' => '208559', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215294' + } + }, + 'ShortName' => 'WideLife' + }, + '22317828' => { + 'Class' => '9955419', + 'Header' => 'levelpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '35', + 'Source' => 'levelpatternconverter.cpp', + 'SourceLine' => '30', 'Static' => 1 }, - '16277905' => { - 'Class' => '6292740', - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase13registerClassEv', - 'Return' => '64684', + '22317844' => { + 'Class' => '9955419', + 'Header' => 'levelpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '35', + 'Source' => 'levelpatternconverter.cpp', + 'SourceLine' => '30', 'Static' => 1 }, - '16277922' => { - 'Class' => '6292740', + '22317860' => { + 'Class' => '9955419', 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase8getClassEv', + 'Header' => 'levelpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6507898' + 'type' => '22329969' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '35', + 'Source' => 'levelpatternconverter.cpp', + 'SourceLine' => '30', 'Virt' => 1, 'VirtPos' => '2' }, - '16278188' => { - 'Class' => '6292740', + '22317897' => { + 'Class' => '9955419', 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'Line' => '72', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase19getFormatSpecifiersB5cxx11Ev', + 'Header' => 'levelpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6507892' + 'type' => '22329969' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'PureVirt' => 1, - 'Return' => '3708324', - 'ShortName' => 'getFormatSpecifiers', - 'VirtPos' => '9' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '16278274' => { - 'Class' => '6292740', - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase18setFileNamePatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '22317939' => { + 'Class' => '9955419', + 'Const' => 1, + 'Header' => 'levelpatternconverter.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285734' + 'type' => '22329969' }, '1' => { - 'name' => 'fnp', - 'type' => '263006' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '1', - 'ShortName' => 'setFileNamePattern', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '82' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '16278306' => { - 'Class' => '6292740', + '22318044' => { + 'Class' => '9955419', 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'Line' => '99', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase18getFileNamePatternB5cxx11Ev', + 'Header' => 'levelpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6507898' + 'type' => '22329969' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'Return' => '63706', - 'ShortName' => 'getFileNamePattern', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '88' + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'levelpatternconverter.cpp', + 'SourceLine' => '45', + 'Virt' => 1, + 'VirtPos' => '7' }, - '16278368' => { - 'Class' => '6292740', - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase32setCreateIntermediateDirectoriesEb', + '22318093' => { + 'Class' => '9955419', + 'Const' => 1, + 'Header' => 'levelpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285734' + 'type' => '22329969' }, '1' => { - 'name' => 'createIntermediate', - 'type' => '50284' + 'name' => 'obj', + 'type' => '575817' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setCreateIntermediateDirectories', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '178' + 'Return' => '209661', + 'ShortName' => 'getStyleClass', + 'Source' => 'levelpatternconverter.cpp', + 'SourceLine' => '57', + 'Virt' => 1, + 'VirtPos' => '6' }, - '16278400' => { - 'Class' => '6292740', - 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase23getPatternConverterListEv', + '22321067' => { + 'Data' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7classes33LevelPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LevelPatternConverterRegistration', + 'Source' => 'levelpatternconverter.cpp' + }, + '22334355' => { + 'Artificial' => 1, + 'Class' => '9955419', + 'Destructor' => 1, + 'Header' => 'levelpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6507898' + 'type' => '22329478' } }, - 'Return' => '6294360', - 'ShortName' => 'getPatternConverterList', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '182' + 'ShortName' => 'LevelPatternConverter', + 'Virt' => 1 }, - '16278473' => { - 'Class' => '6292740', - 'Header' => 'rollingpolicybase.h', - 'Line' => '111', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase20parseFileNamePatternEv', + '22334356' => { + 'Artificial' => 1, + 'Class' => '9955419', + 'Destructor' => 1, + 'Header' => 'levelpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285734' + 'type' => '22329478' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'parseFileNamePattern', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '96' + 'ShortName' => 'LevelPatternConverter', + 'Virt' => 1 }, - '16278573' => { - 'Class' => '6292740', - 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'Line' => '124', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase23getDatePatternConverterEv', + '22334628' => { + 'Artificial' => 1, + 'Class' => '9955419', + 'Destructor' => 1, + 'Header' => 'levelpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6507898' + 'type' => '22329478' } }, - 'Protected' => 1, - 'Return' => '2271807', - 'ShortName' => 'getDatePatternConverter', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '153' - }, - '16280043' => { - 'Data' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7classes29RollingPolicyBaseRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'RollingPolicyBaseRegistration', - 'Source' => 'rollingpolicybase.cpp' + 'ShortName' => 'LevelPatternConverter', + 'Virt' => 1 }, - '16280061' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7pattern20DatePatternConverterENS1_16PatternConverterELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + '22349675' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_21LevelPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '2273656' + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '22329272' } }, - 'Return' => '3363489', - 'ShortName' => 'cast', + 'ShortName' => 'WideLife >', 'TParam' => { '0' => { - 'key' => 'Ret', - 'type' => '3414755' - }, - '1' => { - 'key' => 'Type', - 'type' => '2270651' + 'key' => 'Arg0', + 'type' => '22253500' } } }, - '16280105' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7pattern23IntegerPatternConverterENS1_16PatternConverterELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + '22349676' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_21LevelPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '2273656' + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '22329272' } }, - 'Return' => '7921121', - 'ShortName' => 'cast', + 'ShortName' => 'WideLife >', 'TParam' => { '0' => { - 'key' => 'Ret', - 'type' => '7945801' - }, - '1' => { - 'key' => 'Type', - 'type' => '2270651' + 'key' => 'Arg0', + 'type' => '22253500' } } }, - '16319348' => { + '22350103' => { 'Artificial' => 1, - 'Class' => '16276108', + 'Class' => '22315587', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16284333' + 'type' => '22328996' } }, 'ShortName' => 'WideLife' }, - '16319349' => { + '22350104' => { 'Artificial' => 1, - 'Class' => '16276108', + 'Class' => '22315587', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16284333' + 'type' => '22328996' } }, 'ShortName' => 'WideLife' }, - '16319490' => { + '22350247' => { 'Artificial' => 1, - 'Class' => '16276108', + 'Class' => '22315587', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16284333' + 'type' => '22328996' } }, 'ShortName' => 'WideLife' }, - '16319491' => { + '22350248' => { 'Artificial' => 1, - 'Class' => '16276108', + 'Class' => '22315587', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16284333' + 'type' => '22328996' } }, 'ShortName' => 'WideLife' }, - '16344786' => { - 'Class' => '6292740', - 'Destructor' => 1, - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16285734' - } - }, - 'ShortName' => 'RollingPolicyBase', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '46', - 'Virt' => 1 - }, - '16344884' => { - 'Class' => '6292740', - 'Destructor' => 1, - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16285734' - } - }, - 'ShortName' => 'RollingPolicyBase', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '46', - 'Virt' => 1 - }, - '16345215' => { - 'Class' => '6292740', - 'Destructor' => 1, - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16285734' - } - }, - 'ShortName' => 'RollingPolicyBase', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '46', - 'Virt' => 1 - }, - '16345613' => { - 'Class' => '6292740', - 'Constructor' => 1, - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseC1ESt10unique_ptrINS1_24RollingPolicyBasePrivateESt14default_deleteIS3_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16285734' - }, - '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '6165013' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'RollingPolicyBase', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '42' - }, - '16346771' => { - 'Class' => '6292740', - 'Constructor' => 1, - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseC2ESt10unique_ptrINS1_24RollingPolicyBasePrivateESt14default_deleteIS3_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16285734' - }, - '2' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '6165013' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'RollingPolicyBase', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '42' - }, - '16348017' => { - 'Class' => '6292740', + '22368202' => { + 'Class' => '9955419', 'Constructor' => 1, - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseC1Ev', + 'Header' => 'levelpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285734' + 'type' => '22329478' } }, - 'ShortName' => 'RollingPolicyBase', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '37' + 'ShortName' => 'LevelPatternConverter', + 'Source' => 'levelpatternconverter.cpp', + 'SourceLine' => '32' }, - '16349866' => { - 'Class' => '6292740', + '22371275' => { + 'Class' => '9955419', 'Constructor' => 1, - 'Header' => 'rollingpolicybase.h', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseC2Ev', + 'Header' => 'levelpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285734' + 'type' => '22329478' } }, - 'ShortName' => 'RollingPolicyBase', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '37' + 'ShortName' => 'LevelPatternConverter', + 'Source' => 'levelpatternconverter.cpp', + 'SourceLine' => '32' }, - '16353575' => { + '22376094' => { 'Artificial' => 1, - 'Class' => '16277653', + 'Class' => '9955444', 'Destructor' => 1, - 'Header' => 'rollingpolicybase.h', + 'Header' => 'levelpatternconverter.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD0Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285809' + 'type' => '22330129' } }, - 'ShortName' => 'ClazzRollingPolicyBase', + 'ShortName' => 'ClazzLevelPatternConverter', 'Virt' => 1 }, - '16353576' => { + '22376095' => { 'Artificial' => 1, - 'Class' => '16277653', + 'Class' => '9955444', 'Destructor' => 1, - 'Header' => 'rollingpolicybase.h', + 'Header' => 'levelpatternconverter.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD1Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285809' + 'type' => '22330129' } }, - 'ShortName' => 'ClazzRollingPolicyBase', + 'ShortName' => 'ClazzLevelPatternConverter', 'Virt' => 1 }, - '16353717' => { + '22376241' => { 'Artificial' => 1, - 'Class' => '16277653', + 'Class' => '9955444', 'Destructor' => 1, - 'Header' => 'rollingpolicybase.h', + 'Header' => 'levelpatternconverter.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD2Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285809' + 'type' => '22330129' } }, - 'ShortName' => 'ClazzRollingPolicyBase', + 'ShortName' => 'ClazzLevelPatternConverter', 'Virt' => 1 }, - '16353807' => { + '22376336' => { 'Artificial' => 1, - 'Class' => '16277653', + 'Class' => '9955444', 'Constructor' => 1, - 'Header' => 'rollingpolicybase.h', + 'Header' => 'levelpatternconverter.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseC2Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285809' + 'type' => '22330129' } }, - 'ShortName' => 'ClazzRollingPolicyBase' + 'ShortName' => 'ClazzLevelPatternConverter' }, - '16353808' => { + '22376337' => { 'Artificial' => 1, - 'Class' => '16277653', + 'Class' => '9955444', 'Constructor' => 1, - 'Header' => 'rollingpolicybase.h', + 'Header' => 'levelpatternconverter.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseC1Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16285809' + 'type' => '22330129' } }, - 'ShortName' => 'ClazzRollingPolicyBase' + 'ShortName' => 'ClazzLevelPatternConverter' }, - '16419591' => { - 'Class' => '16419471', - 'Const' => 1, - 'Header' => 'rolloverdescription.h', - 'InLine' => 2, - 'Line' => '31', - 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription24ClazzRolloverDescription7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16421629' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '16419630' => { - 'Class' => '16419471', - 'Const' => 1, - 'Header' => 'rolloverdescription.h', + '224389' => { + 'Class' => '209702', + 'Destructor' => 1, + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6ActionD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + } + }, + 'Protected' => 1, + 'ShortName' => 'Action', + 'Source' => 'action.cpp', + 'SourceLine' => '37', + 'Virt' => 1 + }, + '224487' => { + 'Class' => '209702', + 'Destructor' => 1, + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6ActionD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + } + }, + 'Protected' => 1, + 'ShortName' => 'Action', + 'Source' => 'action.cpp', + 'SourceLine' => '37', + 'Virt' => 1 + }, + '224830' => { + 'Class' => '209702', + 'Destructor' => 1, + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6ActionD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + } + }, + 'Protected' => 1, + 'ShortName' => 'Action', + 'Source' => 'action.cpp', + 'SourceLine' => '37', + 'Virt' => 1 + }, + '225240' => { + 'Class' => '209702', + 'Constructor' => 1, + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6ActionC1ESt10unique_ptrINS1_13ActionPrivateESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '161848' + } + }, + 'Protected' => 1, + 'ShortName' => 'Action', + 'Source' => 'action.cpp', + 'SourceLine' => '34' + }, + '225809' => { + 'Class' => '209702', + 'Constructor' => 1, + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6ActionC2ESt10unique_ptrINS1_13ActionPrivateESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + }, + '2' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '161848' + } + }, + 'Protected' => 1, + 'ShortName' => 'Action', + 'Source' => 'action.cpp', + 'SourceLine' => '34' + }, + '226578' => { + 'Class' => '209702', + 'Constructor' => 1, + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6ActionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + } + }, + 'Protected' => 1, + 'ShortName' => 'Action', + 'Source' => 'action.cpp', + 'SourceLine' => '29' + }, + '22715824' => { + 'Artificial' => 1, + 'Class' => '5660615', + 'Header' => 'levelrangefilter.h', 'InLine' => 2, - 'Line' => '31', - 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription24ClazzRolloverDescription11newInstanceEv', + 'Line' => '63', + 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421629' + 'type' => '22725481' } }, - 'Return' => '6300235', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '5679723', + 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv' }, - '16419709' => { - 'Class' => '6292730', + '22716079' => { + 'Class' => '5660606', 'Const' => 1, - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription8getClassEv', + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421607' + 'type' => '22725412' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '25', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '46', 'Virt' => 1, 'VirtPos' => '2' }, - '16419748' => { - 'Class' => '6292730', - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription14getStaticClassEv', - 'Return' => '64678', + '22716116' => { + 'Class' => '5660606', + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '25', - 'Static' => 1 - }, - '16419765' => { - 'Class' => '6292730', - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '25', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '46', 'Static' => 1 }, - '16419782' => { - 'Class' => '6292730', + '22716148' => { + 'Class' => '5660606', 'Const' => 1, - 'Header' => 'rolloverdescription.h', + 'Header' => 'levelrangefilter.h', 'InLine' => 2, - 'Line' => '32', - 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription4castERKNS_7helpers5ClassE', + 'Line' => '64', + 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421607' + 'type' => '22725412' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '16419826' => { - 'Class' => '6292730', + '22716190' => { + 'Class' => '5660606', 'Const' => 1, - 'Header' => 'rolloverdescription.h', + 'Header' => 'levelrangefilter.h', 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription10instanceofERKNS_7helpers5ClassE', + 'Line' => '67', + 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421607' + 'type' => '22725412' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '16420150' => { - 'Data' => 1, - 'Line' => '25', - 'MnglName' => '_ZN7log4cxx7classes31RolloverDescriptionRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'RolloverDescriptionRegistration', - 'Source' => 'rolloverdescription.cpp' - }, - '16428527' => { - 'Artificial' => 1, - 'Class' => '16418202', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEED2Ev', + '22716308' => { + 'Class' => '5660606', + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421276' + 'type' => '22725387' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '56', + 'Virt' => 1, + 'VirtPos' => '6' }, - '16428528' => { - 'Artificial' => 1, - 'Class' => '16418202', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEED0Ev', + '22716352' => { + 'Class' => '5660606', + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter11setLevelMinERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421276' + 'type' => '22725387' + }, + '1' => { + 'name' => 'levelMin1', + 'type' => '575807' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setLevelMin', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '108' }, - '16428668' => { - 'Artificial' => 1, - 'Class' => '16418202', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEEC2Ev', + '22716383' => { + 'Class' => '5660606', + 'Const' => 1, + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter11getLevelMinEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421276' + 'type' => '22725412' } }, - 'ShortName' => 'WideLife' + 'Return' => '575807', + 'ShortName' => 'getLevelMin', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '113' }, - '16428669' => { - 'Artificial' => 1, - 'Class' => '16418202', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEEC1Ev', + '22716413' => { + 'Class' => '5660606', + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter11setLevelMaxERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421276' + 'type' => '22725387' + }, + '1' => { + 'name' => 'levelMax1', + 'type' => '575807' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setLevelMax', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '118' }, - '16431631' => { - 'Class' => '6292730', - 'Destructor' => 1, - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionD0Ev', + '22716444' => { + 'Class' => '5660606', + 'Const' => 1, + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter11getLevelMaxEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421590' + 'type' => '22725412' } }, - 'ShortName' => 'RolloverDescription', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '79', - 'Virt' => 1 + 'Return' => '575807', + 'ShortName' => 'getLevelMax', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '123' }, - '16431632' => { - 'Class' => '6292730', - 'Destructor' => 1, - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionD1Ev', + '22716474' => { + 'Class' => '5660606', + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter16setAcceptOnMatchEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421590' + 'type' => '22725387' + }, + '1' => { + 'name' => 'acceptOnMatch1', + 'type' => '174077' } }, - 'ShortName' => 'RolloverDescription', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '79', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setAcceptOnMatch', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '128' }, - '16431726' => { - 'Class' => '6292730', - 'Destructor' => 1, - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionD2Ev', + '22716505' => { + 'Class' => '5660606', + 'Const' => 1, + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter16getAcceptOnMatchEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421590' + 'type' => '22725412' } }, - 'ShortName' => 'RolloverDescription', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '79', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'getAcceptOnMatch', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '133' }, - '16434091' => { - 'Class' => '6292730', - 'Constructor' => 1, - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRKSt10shared_ptrINS0_6ActionEESE_', + '22716535' => { + 'Class' => '5660606', + 'Const' => 1, + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421590' + 'type' => '22725412' }, '1' => { - 'name' => 'activeFileName1', - 'type' => '263006' - }, - '2' => { - 'name' => 'append1', - 'type' => '50291' - }, - '3' => { - 'name' => 'synchronous1', - 'type' => '16421524' - }, - '4' => { - 'name' => 'asynchronous1', - 'type' => '16421524' + 'name' => 'event', + 'type' => '576659' } }, - 'ShortName' => 'RolloverDescription', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '70' + 'Return' => '565023', + 'ShortName' => 'decide', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '77', + 'Virt' => 1, + 'VirtPos' => '7' }, - '16434092' => { - 'Class' => '6292730', - 'Constructor' => 1, - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRKSt10shared_ptrINS0_6ActionEESE_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16421590' - }, - '1' => { - 'name' => 'activeFileName1', - 'type' => '263006' - }, - '2' => { - 'name' => 'append1', - 'type' => '50291' - }, - '3' => { - 'name' => 'synchronous1', - 'type' => '16421524' - }, - '4' => { - 'name' => 'asynchronous1', - 'type' => '16421524' - } - }, - 'ShortName' => 'RolloverDescription', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '70' + '22716609' => { + 'Data' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7classes28LevelRangeFilterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LevelRangeFilterRegistration', + 'Source' => 'levelrangefilter.cpp' }, - '16436702' => { - 'Class' => '6292730', - 'Constructor' => 1, - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionC2Ev', + '22730484' => { + 'Artificial' => 1, + 'Class' => '22715851', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421590' + 'type' => '22724762' } }, - 'ShortName' => 'RolloverDescription', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '65' + 'ShortName' => 'LevelRangeFilterPrivate', + 'Source' => 'levelrangefilter.cpp', + 'Virt' => 1 }, - '16436703' => { - 'Class' => '6292730', - 'Constructor' => 1, - 'Header' => 'rolloverdescription.h', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionC1Ev', + '22730485' => { + 'Artificial' => 1, + 'Class' => '22715851', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421590' + 'type' => '22724762' } }, - 'ShortName' => 'RolloverDescription', - 'Source' => 'rolloverdescription.cpp', - 'SourceLine' => '65' + 'ShortName' => 'LevelRangeFilterPrivate', + 'Source' => 'levelrangefilter.cpp', + 'Virt' => 1 }, - '16440805' => { + '22732534' => { 'Artificial' => 1, - 'Class' => '16419471', + 'Class' => '22715851', 'Destructor' => 1, - 'Header' => 'rolloverdescription.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD0Ev', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421618' + 'type' => '22724762' } }, - 'ShortName' => 'ClazzRolloverDescription', + 'ShortName' => 'LevelRangeFilterPrivate', + 'Source' => 'levelrangefilter.cpp', 'Virt' => 1 }, - '16440806' => { + '227373' => { + 'Class' => '209702', + 'Constructor' => 1, + 'Header' => 'action.h', + 'MnglName' => '_ZN7log4cxx7rolling6ActionC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215705' + } + }, + 'Protected' => 1, + 'ShortName' => 'Action', + 'Source' => 'action.cpp', + 'SourceLine' => '29' + }, + '22737865' => { 'Artificial' => 1, - 'Class' => '16419471', + 'Class' => '22711229', 'Destructor' => 1, - 'Header' => 'rolloverdescription.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421618' + 'type' => '22724651' } }, - 'ShortName' => 'ClazzRolloverDescription', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16440946' => { + '22737866' => { 'Artificial' => 1, - 'Class' => '16419471', + 'Class' => '22711229', 'Destructor' => 1, - 'Header' => 'rolloverdescription.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421618' + 'type' => '22724651' } }, - 'ShortName' => 'ClazzRolloverDescription', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16441036' => { + '22738008' => { 'Artificial' => 1, - 'Class' => '16419471', + 'Class' => '22711229', 'Constructor' => 1, - 'Header' => 'rolloverdescription.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421618' + 'type' => '22724651' } }, - 'ShortName' => 'ClazzRolloverDescription' + 'ShortName' => 'WideLife' }, - '16441037' => { + '22738009' => { 'Artificial' => 1, - 'Class' => '16419471', + 'Class' => '22711229', 'Constructor' => 1, - 'Header' => 'rolloverdescription.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionC1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421618' + 'type' => '22724651' } }, - 'ShortName' => 'ClazzRolloverDescription' + 'ShortName' => 'WideLife' }, - '16506132' => { - 'Class' => '7065331', - 'Const' => 1, - 'Header' => 'rootlogger.h', - 'MnglName' => '_ZNK7log4cxx3spi10RootLogger17getEffectiveLevelEv', + '22747467' => { + 'Class' => '5660606', + 'Destructor' => 1, + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16507993' + 'type' => '22725387' } }, - 'Return' => '412081', - 'ShortName' => 'getEffectiveLevel', - 'Source' => 'rootlogger.cpp', - 'SourceLine' => '33', - 'Virt' => 1, - 'VirtPos' => '12' + 'ShortName' => 'LevelRangeFilter', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '54', + 'Virt' => 1 }, - '16506171' => { - 'Class' => '7065331', - 'Header' => 'rootlogger.h', - 'MnglName' => '_ZN7log4cxx3spi10RootLogger8setLevelESt10shared_ptrINS_5LevelEE', + '22747566' => { + 'Class' => '5660606', + 'Destructor' => 1, + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16507959' - }, - '1' => { - 'name' => 'level1', - 'type' => '409204' + 'type' => '22725387' } }, - 'Return' => '1', - 'ShortName' => 'setLevel', - 'Source' => 'rootlogger.cpp', - 'SourceLine' => '38', - 'Virt' => 1, - 'VirtPos' => '13' + 'ShortName' => 'LevelRangeFilter', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '54', + 'Virt' => 1 + }, + '22747766' => { + 'Class' => '5660606', + 'Destructor' => 1, + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '22725387' + } + }, + 'ShortName' => 'LevelRangeFilter', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '54', + 'Virt' => 1 }, - '16515195' => { - 'Class' => '7065331', + '22747901' => { + 'Class' => '5660606', 'Constructor' => 1, - 'Header' => 'rootlogger.h', - 'MnglName' => '_ZN7log4cxx3spi10RootLoggerC1ERNS_7helpers4PoolESt10shared_ptrINS_5LevelEE', + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16507959' - }, - '1' => { - 'name' => 'pool', - 'type' => '64643' - }, - '2' => { - 'name' => 'level1', - 'type' => '409204' + 'type' => '22725387' } }, - 'ShortName' => 'RootLogger', - 'Source' => 'rootlogger.cpp', - 'SourceLine' => '27' + 'ShortName' => 'LevelRangeFilter', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '49' }, - '16518655' => { - 'Class' => '7065331', + '22751118' => { + 'Class' => '5660606', 'Constructor' => 1, - 'Header' => 'rootlogger.h', - 'MnglName' => '_ZN7log4cxx3spi10RootLoggerC2ERNS_7helpers4PoolESt10shared_ptrINS_5LevelEE', + 'Header' => 'levelrangefilter.h', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16507959' - }, - '2' => { - 'name' => 'pool', - 'type' => '64643' - }, - '3' => { - 'name' => 'level1', - 'type' => '409204' + 'type' => '22725387' } }, - 'ShortName' => 'RootLogger', - 'Source' => 'rootlogger.cpp', - 'SourceLine' => '27' + 'ShortName' => 'LevelRangeFilter', + 'Source' => 'levelrangefilter.cpp', + 'SourceLine' => '49' }, - '16522289' => { + '22757965' => { 'Artificial' => 1, - 'Class' => '7065331', + 'Class' => '5660615', 'Destructor' => 1, - 'Header' => 'rootlogger.h', + 'Header' => 'levelrangefilter.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi10RootLoggerD0Ev', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16507959' + 'type' => '22725471' } }, - 'ShortName' => 'RootLogger', + 'ShortName' => 'ClazzLevelRangeFilter', 'Virt' => 1 }, - '16522290' => { + '22757966' => { 'Artificial' => 1, - 'Class' => '7065331', + 'Class' => '5660615', 'Destructor' => 1, - 'Header' => 'rootlogger.h', + 'Header' => 'levelrangefilter.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi10RootLoggerD2Ev', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16507959' + 'type' => '22725471' } }, - 'ShortName' => 'RootLogger', + 'ShortName' => 'ClazzLevelRangeFilter', 'Virt' => 1 }, - '16522558' => { + '22758112' => { 'Artificial' => 1, - 'Class' => '7065331', + 'Class' => '5660615', 'Destructor' => 1, - 'Header' => 'rootlogger.h', + 'Header' => 'levelrangefilter.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi10RootLoggerD1Ev', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16507959' + 'type' => '22725471' } }, - 'ShortName' => 'RootLogger', + 'ShortName' => 'ClazzLevelRangeFilter', 'Virt' => 1 }, - '165283' => { + '22758207' => { + 'Artificial' => 1, + 'Class' => '5660615', + 'Constructor' => 1, + 'Header' => 'levelrangefilter.h', + 'InLine' => 1, + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '22725471' + } + }, + 'ShortName' => 'ClazzLevelRangeFilter' + }, + '22758208' => { + 'Artificial' => 1, + 'Class' => '5660615', + 'Constructor' => 1, + 'Header' => 'levelrangefilter.h', + 'InLine' => 1, + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '22725471' + } + }, + 'ShortName' => 'ClazzLevelRangeFilter' + }, + '229204' => { 'Artificial' => 1, - 'Class' => '149841', + 'Class' => '209720', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'action_priv.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEED2Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '153753' + 'type' => '214997' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ActionPrivate', + 'Virt' => 1 }, - '165284' => { + '229205' => { 'Artificial' => 1, - 'Class' => '149841', + 'Class' => '209720', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'action_priv.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEED0Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '153753' + 'type' => '214997' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ActionPrivate', + 'Virt' => 1 + }, + '229350' => { + 'Artificial' => 1, + 'Class' => '209720', + 'Destructor' => 1, + 'Header' => 'action_priv.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '214997' + } + }, + 'ShortName' => 'ActionPrivate', + 'Virt' => 1 }, - '165425' => { + '229446' => { 'Artificial' => 1, - 'Class' => '149841', + 'Class' => '209720', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'action_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEEC2Ev', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '153753' + 'type' => '214997' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ActionPrivate' }, - '165426' => { + '229447' => { 'Artificial' => 1, - 'Class' => '149841', + 'Class' => '209720', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'action_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEEC1Ev', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '153753' + 'type' => '214997' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ActionPrivate' }, - '16589194' => { - 'Class' => '16589073', - 'Const' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16592070' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '16589359' => { - 'Class' => '16589039', - 'Header' => 'shortfilelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter14getStaticClassEv', - 'Return' => '64678', + '230288' => { + 'Artificial' => 1, + 'Class' => '209900', + 'Destructor' => 1, + 'Header' => 'action.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215779' + } + }, + 'ShortName' => 'ClazzAction', + 'Virt' => 1 + }, + '230289' => { + 'Artificial' => 1, + 'Class' => '209900', + 'Destructor' => 1, + 'Header' => 'action.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215779' + } + }, + 'ShortName' => 'ClazzAction', + 'Virt' => 1 + }, + '230433' => { + 'Artificial' => 1, + 'Class' => '209900', + 'Destructor' => 1, + 'Header' => 'action.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215779' + } + }, + 'ShortName' => 'ClazzAction', + 'Virt' => 1 + }, + '230527' => { + 'Artificial' => 1, + 'Class' => '209900', + 'Constructor' => 1, + 'Header' => 'action.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215779' + } + }, + 'ShortName' => 'ClazzAction' + }, + '230528' => { + 'Artificial' => 1, + 'Class' => '209900', + 'Constructor' => 1, + 'Header' => 'action.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215779' + } + }, + 'ShortName' => 'ClazzAction' + }, + '23090399' => { + 'Class' => '9954903', + 'Header' => 'linelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'shortfilelocationpatternconverter.cpp', - 'SourceLine' => '28', + 'Source' => 'linelocationpatternconverter.cpp', + 'SourceLine' => '29', 'Static' => 1 }, - '16589376' => { - 'Class' => '16589039', - 'Header' => 'shortfilelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter13registerClassEv', - 'Return' => '64684', + '23090415' => { + 'Class' => '9954903', + 'Header' => 'linelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'shortfilelocationpatternconverter.cpp', - 'SourceLine' => '28', + 'Source' => 'linelocationpatternconverter.cpp', + 'SourceLine' => '29', 'Static' => 1 }, - '16589393' => { - 'Class' => '16589039', + '23090431' => { + 'Class' => '9954903', 'Const' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter8getClassEv', + 'Header' => 'linelocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16592042' + 'type' => '23102181' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'shortfilelocationpatternconverter.cpp', - 'SourceLine' => '28', + 'Source' => 'linelocationpatternconverter.cpp', + 'SourceLine' => '29', 'Virt' => 1, 'VirtPos' => '2' }, - '16589432' => { - 'Class' => '16589039', + '23090468' => { + 'Class' => '9954903', 'Const' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter4castERKNS_7helpers5ClassE', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16592042' + 'type' => '23102181' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '16589476' => { - 'Class' => '16589039', + '23090510' => { + 'Class' => '9954903', 'Const' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter10instanceofERKNS_7helpers5ClassE', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16592042' + 'type' => '23102181' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '16589520' => { - 'Class' => '16589039', - 'Header' => 'shortfilelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'shortfilelocationpatternconverter.cpp', - 'SourceLine' => '35', - 'Static' => 1 - }, - '16589548' => { - 'Class' => '16589039', - 'Const' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '23090614' => { + 'Class' => '9954903', + 'Const' => 1, + 'Header' => 'linelocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16592042' + 'type' => '23102181' }, '1' => { 'name' => 'event', - 'type' => '154261' + 'type' => '576659' }, '2' => { 'name' => 'toAppendTo', - 'type' => '409210' + 'type' => '210592' }, '3' => { - 'name' => 'p3', - 'type' => '64643' + 'name' => 'p', + 'type' => '210607' } }, - 'Reg' => { - '3' => 'rcx' - }, 'Return' => '1', 'ShortName' => 'format', - 'Source' => 'shortfilelocationpatternconverter.cpp', - 'SourceLine' => '41', + 'Source' => 'linelocationpatternconverter.cpp', + 'SourceLine' => '44', 'Virt' => 1, 'VirtPos' => '7' }, - '16590437' => { + '23093511' => { 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes45ShortFileLocationPatternConverterRegistrationE', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7classes40LineLocationPatternConverterRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ShortFileLocationPatternConverterRegistration', - 'Source' => 'shortfilelocationpatternconverter.cpp' + 'Return' => '210733', + 'ShortName' => 'LineLocationPatternConverterRegistration', + 'Source' => 'linelocationpatternconverter.cpp' }, - '16593641' => { + '23106482' => { 'Artificial' => 1, - 'Class' => '16589039', + 'Class' => '9954903', 'Destructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 1, 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD0Ev', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591931' + 'type' => '23101840' } }, - 'ShortName' => 'ShortFileLocationPatternConverter', + 'ShortName' => 'LineLocationPatternConverter', 'Virt' => 1 }, - '16593642' => { + '23106483' => { 'Artificial' => 1, - 'Class' => '16589039', + 'Class' => '9954903', 'Destructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 1, 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD2Ev', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591931' + 'type' => '23101840' } }, - 'ShortName' => 'ShortFileLocationPatternConverter', + 'ShortName' => 'LineLocationPatternConverter', 'Virt' => 1 }, - '16593906' => { + '23106752' => { 'Artificial' => 1, - 'Class' => '16589039', + 'Class' => '9954903', 'Destructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 1, 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD1Ev', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591931' + 'type' => '23101840' } }, - 'ShortName' => 'ShortFileLocationPatternConverter', + 'ShortName' => 'LineLocationPatternConverter', 'Virt' => 1 }, - '16598162' => { + '23113644' => { 'Artificial' => 1, - 'Class' => '2269898', + 'Class' => '6072360', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IPNS3_33ShortFileLocationPatternConverterEJEEEOT_DpOT0_', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_28LineLocationPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '6085740' }, '1' => { 'name' => 'arg0', - 'type' => '16598101' + 'type' => '23101670' } }, - 'ShortName' => 'WideLife', + 'ShortName' => 'WideLife >', 'TParam' => { '0' => { 'key' => 'Arg0', - 'type' => '16591925' + 'type' => '23029313' } } }, - '16598163' => { + '23113645' => { 'Artificial' => 1, - 'Class' => '2269898', + 'Class' => '6072360', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IPNS3_33ShortFileLocationPatternConverterEJEEEOT_DpOT0_', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_28LineLocationPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '6085740' }, '1' => { 'name' => 'arg0', - 'type' => '16598101' + 'type' => '23101670' } }, - 'ShortName' => 'WideLife', + 'ShortName' => 'WideLife >', 'TParam' => { '0' => { 'key' => 'Arg0', - 'type' => '16591925' + 'type' => '23029313' } } }, - '16598551' => { + '23114072' => { 'Artificial' => 1, - 'Class' => '16587397', + 'Class' => '23088153', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591564' + 'type' => '23101394' } }, 'ShortName' => 'WideLife' }, - '16598552' => { + '23114073' => { 'Artificial' => 1, - 'Class' => '16587397', + 'Class' => '23088153', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591564' + 'type' => '23101394' } }, 'ShortName' => 'WideLife' }, - '16598692' => { + '23114215' => { 'Artificial' => 1, - 'Class' => '16587397', + 'Class' => '23088153', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591564' + 'type' => '23101394' } }, 'ShortName' => 'WideLife' }, - '16598693' => { + '23114216' => { 'Artificial' => 1, - 'Class' => '16587397', + 'Class' => '23088153', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591564' + 'type' => '23101394' } }, 'ShortName' => 'WideLife' }, - '16602879' => { - 'Class' => '16589039', + '23119432' => { + 'Class' => '9954903', 'Constructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterC1Ev', + 'Header' => 'linelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591931' + 'type' => '23101840' } }, - 'Private' => 1, - 'ShortName' => 'ShortFileLocationPatternConverter', - 'Source' => 'shortfilelocationpatternconverter.cpp', - 'SourceLine' => '30' + 'ShortName' => 'LineLocationPatternConverter', + 'Source' => 'linelocationpatternconverter.cpp', + 'SourceLine' => '31' }, - '16606996' => { - 'Class' => '16589039', + '23122457' => { + 'Class' => '9954903', 'Constructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterC2Ev', + 'Header' => 'linelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591931' + 'type' => '23101840' } }, - 'Private' => 1, - 'ShortName' => 'ShortFileLocationPatternConverter', - 'Source' => 'shortfilelocationpatternconverter.cpp', - 'SourceLine' => '30' + 'ShortName' => 'LineLocationPatternConverter', + 'Source' => 'linelocationpatternconverter.cpp', + 'SourceLine' => '31' }, - '16613031' => { + '23127212' => { 'Artificial' => 1, - 'Class' => '16589073', + 'Class' => '9954928', 'Destructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16592059' + 'type' => '23102336' } }, - 'ShortName' => 'ClazzShortFileLocationPatternConverter', + 'ShortName' => 'ClazzLineLocationPatternConverter', 'Virt' => 1 }, - '16613032' => { + '23127213' => { 'Artificial' => 1, - 'Class' => '16589073', + 'Class' => '9954928', 'Destructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16592059' + 'type' => '23102336' } }, - 'ShortName' => 'ClazzShortFileLocationPatternConverter', + 'ShortName' => 'ClazzLineLocationPatternConverter', 'Virt' => 1 }, - '16613172' => { + '23127358' => { 'Artificial' => 1, - 'Class' => '16589073', + 'Class' => '9954928', 'Destructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16592059' + 'type' => '23102336' } }, - 'ShortName' => 'ClazzShortFileLocationPatternConverter', + 'ShortName' => 'ClazzLineLocationPatternConverter', 'Virt' => 1 }, - '16613262' => { + '23127453' => { 'Artificial' => 1, - 'Class' => '16589073', + 'Class' => '9954928', 'Constructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16592059' + 'type' => '23102336' } }, - 'ShortName' => 'ClazzShortFileLocationPatternConverter' + 'ShortName' => 'ClazzLineLocationPatternConverter' }, - '16613263' => { + '23127454' => { 'Artificial' => 1, - 'Class' => '16589073', + 'Class' => '9954928', 'Constructor' => 1, - 'Header' => 'shortfilelocationpatternconverter.h', + 'Header' => 'linelocationpatternconverter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterC1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16592059' + 'type' => '23102336' } }, - 'ShortName' => 'ClazzShortFileLocationPatternConverter' + 'ShortName' => 'ClazzLineLocationPatternConverter' }, - '16706714' => { - 'Class' => '3411716', - 'Header' => 'simpledateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormat8addTokenEciPKSt6localeRSt6vectorIPNS0_20SimpleDateFormatImpl12PatternTokenESaIS8_EE', + '23458071' => { + 'Class' => '23457959', + 'Const' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { - 'name' => 'spec', - 'type' => '407318' - }, - '1' => { - 'name' => 'repeat', - 'type' => '50239' - }, - '2' => { - 'name' => 'locale', - 'type' => '2139269' - }, - '3' => { - 'name' => 'pattern', - 'type' => '16715217' + 'name' => 'this', + 'type' => '23470069' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'addToken', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '648', + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '23458194' => { + 'Class' => '23457925', + 'Header' => 'lineseparatorpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'lineseparatorpatternconverter.cpp', + 'SourceLine' => '28', 'Static' => 1 }, - '16706752' => { - 'Class' => '3411716', - 'Header' => 'simpledateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormat12parsePatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKSt6localeRSt6vectorIPNS0_20SimpleDateFormatImpl12PatternTokenESaISG_EE', - 'Param' => { - '0' => { - 'name' => 'fmt', - 'type' => '263006' - }, - '1' => { - 'name' => 'locale', - 'type' => '2139269' - }, - '2' => { - 'name' => 'pattern', - 'type' => '16715217' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'parsePattern', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '771', + '23458210' => { + 'Class' => '23457925', + 'Header' => 'lineseparatorpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'lineseparatorpatternconverter.cpp', + 'SourceLine' => '28', 'Static' => 1 }, - '16707370' => { - 'Class' => '16707275', - 'InLine' => 2, - 'Line' => '83', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', + '23458226' => { + 'Class' => '23457925', + 'Const' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16714992' - }, - '1' => { - 'name' => 'zone', - 'type' => '1576811' + 'type' => '23469899' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setTimeZone', - 'Source' => 'simpledateformat.cpp', + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'lineseparatorpatternconverter.cpp', + 'SourceLine' => '28', 'Virt' => 1, 'VirtPos' => '2' }, - '16707462' => { - 'Class' => '16707275', - 'InLine' => 2, - 'Line' => '99', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken14incrementMonthER2tmR14apr_time_exp_t', - 'Param' => { - '0' => { - 'name' => 'time', - 'type' => '16716280' - }, - '1' => { - 'name' => 'aprtime', - 'type' => '16716286' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'incrementMonth', - 'Source' => 'simpledateformat.cpp', - 'Static' => 1 - }, - '16707490' => { - 'Class' => '16707275', + '23458263' => { + 'Class' => '23457925', + 'Const' => 1, + 'Header' => 'lineseparatorpatternconverter.h', 'InLine' => 2, - 'Line' => '105', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken12incrementDayER2tmR14apr_time_exp_t', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { - 'name' => 'time', - 'type' => '16716280' + 'name' => 'this', + 'type' => '23469899' }, '1' => { - 'name' => 'aprtime', - 'type' => '16716286' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'incrementDay', - 'Source' => 'simpledateformat.cpp', - 'Static' => 1 + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '16707518' => { - 'Class' => '16707275', + '23458305' => { + 'Class' => '23457925', + 'Const' => 1, + 'Header' => 'lineseparatorpatternconverter.h', 'InLine' => 2, - 'Line' => '111', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken16incrementHalfDayER2tmR14apr_time_exp_t', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { - 'name' => 'time', - 'type' => '16716280' + 'name' => 'this', + 'type' => '23469899' }, '1' => { - 'name' => 'aprtime', - 'type' => '16716286' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'incrementHalfDay', - 'Source' => 'simpledateformat.cpp', - 'Static' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '16707546' => { - 'Class' => '16707275', - 'InLine' => 2, - 'Line' => '117', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11renderFacetEPKSt6localePFvR2tmR14apr_time_exp_tEcjPKcRSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISK_EE', + '23458383' => { + 'Class' => '23457925', + 'Header' => 'lineseparatorpatternconverter.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'locale', - 'type' => '2139269' - }, - '1' => { - 'name' => 'inc', - 'type' => '16712534' - }, - '2' => { - 'name' => 'spec', - 'type' => '50671' - }, - '3' => { - 'name' => 'wspec', - 'type' => '50167' - }, - '4' => { - 'name' => 'aprspec', - 'type' => '51127' - }, - '5' => { - 'name' => 'values', - 'type' => '2273854' + 'name' => 'p1', + 'type' => '575797' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'renderFacet', - 'Source' => 'simpledateformat.cpp', + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'lineseparatorpatternconverter.cpp', + 'SourceLine' => '36', 'Static' => 1 }, - '16707779' => { - 'Class' => '16707663', + '23458409' => { + 'Class' => '23457925', 'Const' => 1, - 'InLine' => 2, - 'Line' => '593', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Header' => 'lineseparatorpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715485' + 'type' => '23469899' }, '1' => { - 'name' => 's', - 'type' => '409210' + 'name' => 'p1', + 'type' => '576659' }, '2' => { - 'name' => 'tm', - 'type' => '16715490' + 'name' => 'toAppendTo', + 'type' => '210592' }, '3' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'p3', + 'type' => '210607' } }, 'Return' => '1', 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', + 'Source' => 'lineseparatorpatternconverter.cpp', + 'SourceLine' => '43', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '7' }, - '16707982' => { - 'Class' => '16707866', + '23458458' => { + 'Class' => '23457925', 'Const' => 1, - 'InLine' => 2, - 'Line' => '570', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Header' => 'lineseparatorpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715525' + 'type' => '23469899' }, '1' => { - 'name' => 's', - 'type' => '409210' + 'name' => 'p1', + 'type' => '575817' }, '2' => { - 'name' => 'p2', - 'type' => '16715490' + 'name' => 'toAppendTo', + 'type' => '210592' }, '3' => { 'name' => 'p3', - 'type' => '64643' + 'type' => '210607' } }, - 'Reg' => { - '2' => 'rdx', - '3' => 'rcx' - }, 'Return' => '1', 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', + 'Source' => 'lineseparatorpatternconverter.cpp', + 'SourceLine' => '51', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '5' }, - '16708033' => { - 'Class' => '16707866', - 'InLine' => 2, - 'Line' => '575', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', + '23461324' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes41LineSeparatorPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LineSeparatorPatternConverterRegistration', + 'Source' => 'lineseparatorpatternconverter.cpp' + }, + '23474200' => { + 'Artificial' => 1, + 'Class' => '23457925', + 'Destructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715502' - }, - '1' => { - 'name' => 'zone', - 'type' => '1576811' + 'type' => '23469558' } }, - 'Return' => '1', - 'ShortName' => 'setTimeZone', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'LineSeparatorPatternConverter', + 'Virt' => 1 }, - '16708245' => { - 'Class' => '16708124', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '552', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl9AMPMToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + '23474201' => { + 'Artificial' => 1, + 'Class' => '23457925', + 'Destructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715559' - }, - '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'tm', - 'type' => '16715490' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '23469558' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'LineSeparatorPatternConverter', + 'Virt' => 1 }, - '16708462' => { - 'Class' => '16708346', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '536', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondToken8getFieldERK14apr_time_exp_t', + '23474470' => { + 'Artificial' => 1, + 'Class' => '23457925', + 'Destructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715593' - }, - '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'type' => '23469558' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'LineSeparatorPatternConverter', + 'Virt' => 1 }, - '16708703' => { - 'Class' => '16708543', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '246', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + '23484246' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_29LineSeparatorPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716171' + 'type' => '6085740' }, '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'tm', - 'type' => '16715490' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'arg0', + 'type' => '23469473' } }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '23398387' + } + } }, - '16708920' => { - 'Class' => '16708804', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '521', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl16MillisecondToken8getFieldERK14apr_time_exp_t', + '23484247' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_29LineSeparatorPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715627' + 'type' => '6085740' }, '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'name' => 'arg0', + 'type' => '23469473' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '23398387' + } + } }, - '16709117' => { - 'Class' => '16709001', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '506', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl11SecondToken8getFieldERK14apr_time_exp_t', + '23484674' => { + 'Artificial' => 1, + 'Class' => '23455953', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715661' - }, - '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'type' => '23469197' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '16709314' => { - 'Class' => '16709198', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '491', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl11MinuteToken8getFieldERK14apr_time_exp_t', + '23484675' => { + 'Artificial' => 1, + 'Class' => '23455953', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715695' - }, - '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'type' => '23469197' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '16709516' => { - 'Class' => '16709395', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '473', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl9HourToken8getFieldERK14apr_time_exp_t', + '23484817' => { + 'Artificial' => 1, + 'Class' => '23455953', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715729' - }, - '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'type' => '23469197' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '16709732' => { - 'Class' => '16709611', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '455', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourToken8getFieldERK14apr_time_exp_t', + '23484818' => { + 'Artificial' => 1, + 'Class' => '23455953', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715763' - }, - '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'type' => '23469197' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '16709948' => { - 'Class' => '16709827', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '436', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + '23490469' => { + 'Class' => '23457925', + 'Constructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715797' - }, - '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'tm', - 'type' => '16715490' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '23469558' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'LineSeparatorPatternConverter', + 'Source' => 'lineseparatorpatternconverter.cpp', + 'SourceLine' => '30' }, - '16710170' => { - 'Class' => '16710049', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '416', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + '23493494' => { + 'Class' => '23457925', + 'Constructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715831' - }, - '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'tm', - 'type' => '16715490' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '23469558' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'LineSeparatorPatternConverter', + 'Source' => 'lineseparatorpatternconverter.cpp', + 'SourceLine' => '30' }, - '16710387' => { - 'Class' => '16710271', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '400', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthToken8getFieldERK14apr_time_exp_t', + '23498249' => { + 'Artificial' => 1, + 'Class' => '23457959', + 'Destructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715865' - }, - '1' => { - 'name' => 'p1', - 'type' => '16715490' + 'type' => '23470059' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzLineSeparatorPatternConverter', + 'Virt' => 1 }, - '16710584' => { - 'Class' => '16710468', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '385', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl14DayInYearToken8getFieldERK14apr_time_exp_t', + '23498250' => { + 'Artificial' => 1, + 'Class' => '23457959', + 'Destructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715899' - }, - '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'type' => '23470059' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzLineSeparatorPatternConverter', + 'Virt' => 1 }, - '16710781' => { - 'Class' => '16710665', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '370', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthToken8getFieldERK14apr_time_exp_t', + '23498395' => { + 'Artificial' => 1, + 'Class' => '23457959', + 'Destructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715933' - }, - '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'type' => '23470059' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzLineSeparatorPatternConverter', + 'Virt' => 1 }, - '16710978' => { - 'Class' => '16710862', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '355', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthToken8getFieldERK14apr_time_exp_t', + '23498490' => { + 'Artificial' => 1, + 'Class' => '23457959', + 'Constructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715967' - }, - '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'type' => '23470059' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzLineSeparatorPatternConverter' }, - '16711175' => { - 'Class' => '16711059', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '340', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearToken8getFieldERK14apr_time_exp_t', + '23498491' => { + 'Artificial' => 1, + 'Class' => '23457959', + 'Constructor' => 1, + 'Header' => 'lineseparatorpatternconverter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716001' - }, - '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'type' => '23470059' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzLineSeparatorPatternConverter' }, - '16711377' => { - 'Class' => '16711256', + '23841275' => { + 'Class' => '23841163', 'Const' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 2, - 'Line' => '322', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716035' - }, - '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'tm', - 'type' => '16715490' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '23853885' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '16711599' => { - 'Class' => '16711478', + '23841570' => { + 'Class' => '23841129', + 'Header' => 'literalpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'literalpatternconverter.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '23841586' => { + 'Class' => '23841129', + 'Header' => 'literalpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'literalpatternconverter.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '23841602' => { + 'Class' => '23841129', 'Const' => 1, - 'InLine' => 2, - 'Line' => '303', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Header' => 'literalpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716069' - }, - '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'tm', - 'type' => '16715490' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '23853676' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'literalpatternconverter.cpp', + 'SourceLine' => '43', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '2' }, - '16711816' => { - 'Class' => '16711700', + '23841639' => { + 'Class' => '23841129', 'Const' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 2, - 'Line' => '287', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl10MonthToken8getFieldERK14apr_time_exp_t', + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716103' + 'type' => '23853676' }, '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', + 'Return' => '195352', + 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '16712013' => { - 'Class' => '16711897', + '23841681' => { + 'Class' => '23841129', 'Const' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 2, - 'Line' => '272', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl9YearToken8getFieldERK14apr_time_exp_t', + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716137' + 'type' => '23853676' }, '1' => { - 'name' => 'tm', - 'type' => '16715490' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'getField', - 'Source' => 'simpledateformat.cpp', + 'Return' => '174077', + 'ShortName' => 'instanceof', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '3' + }, + '23841764' => { + 'Class' => '23841129', + 'Header' => 'literalpatternconverter.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter11newInstanceERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'literal', + 'type' => '210597' + } + }, + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'literalpatternconverter.cpp', + 'SourceLine' => '51', + 'Static' => 1 }, - '16712214' => { - 'Class' => '16712094', + '23841791' => { + 'Class' => '23841129', 'Const' => 1, - 'InLine' => 2, - 'Line' => '228', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl8EraToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Header' => 'literalpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716205' + 'type' => '23853676' }, '1' => { - 'name' => 's', - 'type' => '409210' + 'name' => 'p1', + 'type' => '576659' }, '2' => { - 'name' => 'p2', - 'type' => '16715490' + 'name' => 'toAppendTo', + 'type' => '210592' }, '3' => { 'name' => 'p3', - 'type' => '64643' + 'type' => '210607' } }, - 'Reg' => { - '2' => 'rdx', - '3' => 'rcx' - }, 'Return' => '1', 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', + 'Source' => 'literalpatternconverter.cpp', + 'SourceLine' => '63', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '7' }, - '16712421' => { - 'Class' => '16712301', + '23841840' => { + 'Class' => '23841129', 'Const' => 1, - 'InLine' => 2, - 'Line' => '209', - 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl12LiteralToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Header' => 'literalpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716239' + 'type' => '23853676' }, '1' => { - 'name' => 's', - 'type' => '409210' + 'name' => 'p1', + 'type' => '575817' }, '2' => { - 'name' => 'p2', - 'type' => '16715490' + 'name' => 'toAppendTo', + 'type' => '210592' }, '3' => { 'name' => 'p3', - 'type' => '64643' + 'type' => '210607' } }, - 'Reg' => { - '2' => 'rdx', - '3' => 'rcx' - }, 'Return' => '1', 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', + 'Source' => 'literalpatternconverter.cpp', + 'SourceLine' => '71', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '5' }, - '16716787' => { + '23844705' => { + 'Data' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7classes35LiteralPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LiteralPatternConverterRegistration', + 'Source' => 'literalpatternconverter.cpp' + }, + '23858006' => { 'Artificial' => 1, - 'Class' => '16712301', + 'Class' => '23841129', 'Destructor' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 1, - 'Line' => '202', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD0Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716216' + 'type' => '23853219' } }, - 'ShortName' => 'LiteralToken', - 'Source' => 'simpledateformat.cpp', + 'ShortName' => 'LiteralPatternConverter', 'Virt' => 1 }, - '16716788' => { + '23858007' => { 'Artificial' => 1, - 'Class' => '16712301', + 'Class' => '23841129', 'Destructor' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 1, - 'Line' => '202', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716216' + 'type' => '23853219' } }, - 'ShortName' => 'LiteralToken', - 'Source' => 'simpledateformat.cpp', + 'ShortName' => 'LiteralPatternConverter', 'Virt' => 1 }, - '16716962' => { + '23858278' => { 'Artificial' => 1, - 'Class' => '16712301', + 'Class' => '23841129', 'Destructor' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 1, - 'Line' => '202', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716216' + 'type' => '23853219' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'LiteralToken', - 'Source' => 'simpledateformat.cpp', + 'ShortName' => 'LiteralPatternConverter', 'Virt' => 1 }, - '16717089' => { + '23869138' => { 'Artificial' => 1, - 'Class' => '16712094', + 'Class' => '23841314', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '221', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD0Ev', + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716182' + 'type' => '23852749' } }, - 'ShortName' => 'EraToken', - 'Source' => 'simpledateformat.cpp', + 'ShortName' => 'LiteralPatternConverterPrivate', + 'Source' => 'literalpatternconverter.cpp', 'Virt' => 1 }, - '16717090' => { + '23869139' => { 'Artificial' => 1, - 'Class' => '16712094', + 'Class' => '23841314', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '221', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD1Ev', + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716182' + 'type' => '23852749' } }, - 'ShortName' => 'EraToken', - 'Source' => 'simpledateformat.cpp', + 'ShortName' => 'LiteralPatternConverterPrivate', + 'Source' => 'literalpatternconverter.cpp', 'Virt' => 1 }, - '16717264' => { + '23871262' => { 'Artificial' => 1, - 'Class' => '16712094', + 'Class' => '23841314', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '221', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD2Ev', + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716182' + 'type' => '23852749' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'EraToken', - 'Source' => 'simpledateformat.cpp', + 'ShortName' => 'LiteralPatternConverterPrivate', + 'Source' => 'literalpatternconverter.cpp', 'Virt' => 1 }, - '16717392' => { + '23876558' => { 'Artificial' => 1, - 'Class' => '16711897', - 'Destructor' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '265', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD0Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_23LiteralPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716114' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '23853189' } }, - 'ShortName' => 'YearToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '23776856' + } + } }, - '16717393' => { + '23876559' => { 'Artificial' => 1, - 'Class' => '16711897', - 'Destructor' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '265', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_23LiteralPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716114' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '23853189' } }, - 'ShortName' => 'YearToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '23776856' + } + } }, - '16717617' => { + '23884839' => { 'Artificial' => 1, - 'Class' => '16711897', + 'Class' => '23838998', 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '265', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716114' + 'type' => '23852638' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'YearToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16717794' => { + '23884840' => { 'Artificial' => 1, - 'Class' => '16711700', + 'Class' => '23838998', 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '280', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716080' + 'type' => '23852638' } }, - 'ShortName' => 'MonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16717795' => { + '23884982' => { 'Artificial' => 1, - 'Class' => '16711700', - 'Destructor' => 1, + 'Class' => '23838998', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '280', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716080' + 'type' => '23852638' } }, - 'ShortName' => 'MonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16718019' => { + '23884983' => { 'Artificial' => 1, - 'Class' => '16711700', - 'Destructor' => 1, + 'Class' => '23838998', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '280', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716080' + 'type' => '23852638' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'MonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16718196' => { - 'Artificial' => 1, - 'Class' => '16711478', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '295', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD0Ev', + '23893907' => { + 'Class' => '23841129', + 'Constructor' => 1, + 'Header' => 'literalpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716046' + 'type' => '23853219' + }, + '1' => { + 'name' => 'literal1', + 'type' => '210597' } }, - 'ShortName' => 'AbbreviatedMonthNameToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'LiteralPatternConverter', + 'Source' => 'literalpatternconverter.cpp', + 'SourceLine' => '45' }, - '16718197' => { - 'Artificial' => 1, - 'Class' => '16711478', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '295', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD1Ev', + '23895895' => { + 'Class' => '23841129', + 'Constructor' => 1, + 'Header' => 'literalpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716046' + 'type' => '23853219' + }, + '2' => { + 'name' => 'literal1', + 'type' => '210597' } }, - 'ShortName' => 'AbbreviatedMonthNameToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'LiteralPatternConverter', + 'Source' => 'literalpatternconverter.cpp', + 'SourceLine' => '45' }, - '16719625' => { + '23902633' => { 'Artificial' => 1, - 'Class' => '16711478', + 'Class' => '23841163', 'Destructor' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 1, - 'Line' => '295', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD2Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716046' + 'type' => '23853875' } }, - 'ShortName' => 'AbbreviatedMonthNameToken', - 'Source' => 'simpledateformat.cpp', + 'ShortName' => 'ClazzLiteralPatternConverter', 'Virt' => 1 }, - '16721012' => { + '23902634' => { 'Artificial' => 1, - 'Class' => '16711256', + 'Class' => '23841163', 'Destructor' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 1, - 'Line' => '314', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD0Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716012' + 'type' => '23853875' } }, - 'ShortName' => 'FullMonthNameToken', - 'Source' => 'simpledateformat.cpp', + 'ShortName' => 'ClazzLiteralPatternConverter', 'Virt' => 1 }, - '16721013' => { + '23902779' => { 'Artificial' => 1, - 'Class' => '16711256', + 'Class' => '23841163', 'Destructor' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 1, - 'Line' => '314', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD1Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716012' + 'type' => '23853875' } }, - 'ShortName' => 'FullMonthNameToken', - 'Source' => 'simpledateformat.cpp', + 'ShortName' => 'ClazzLiteralPatternConverter', 'Virt' => 1 }, - '16722441' => { + '23902873' => { 'Artificial' => 1, - 'Class' => '16711256', - 'Destructor' => 1, + 'Class' => '23841163', + 'Constructor' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 1, - 'Line' => '314', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD2Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16716012' + 'type' => '23853875' } }, - 'ShortName' => 'FullMonthNameToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'ClazzLiteralPatternConverter' }, - '16723828' => { + '23902874' => { 'Artificial' => 1, - 'Class' => '16711059', - 'Destructor' => 1, + 'Class' => '23841163', + 'Constructor' => 1, + 'Header' => 'literalpatternconverter.h', 'InLine' => 1, - 'Line' => '333', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD0Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715978' + 'type' => '23853875' } }, - 'ShortName' => 'WeekInYearToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'ShortName' => 'ClazzLiteralPatternConverter' }, - '16723829' => { - 'Artificial' => 1, - 'Class' => '16711059', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '333', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD1Ev', + '24254545' => { + 'Class' => '24254532', + 'Header' => 'loader.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Loader9loadClassERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '16715978' + 'name' => 'clazz', + 'type' => '210597' } }, - 'ShortName' => 'WeekInYearToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'loadClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '57', + 'Static' => 1 }, - '16724053' => { - 'Artificial' => 1, - 'Class' => '16711059', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '333', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD2Ev', + '24254572' => { + 'Class' => '24254532', + 'Header' => 'loader.h', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers6Loader19getResourceAsStreamERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '16715978' + 'name' => 'name', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'WeekInYearToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '5648504', + 'ShortName' => 'getResourceAsStream', + 'Source' => 'loader.cpp', + 'SourceLine' => '63', + 'Static' => 1 }, - '16724230' => { - 'Artificial' => 1, - 'Class' => '16710862', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '348', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD0Ev', + '24258503' => { + 'Class' => '24258391', + 'Const' => 1, + 'Header' => 'xml.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNode7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715944' + 'type' => '24286006' } }, - 'ShortName' => 'WeekInMonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '16724231' => { - 'Artificial' => 1, - 'Class' => '16710862', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '348', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD1Ev', + '24258556' => { + 'Class' => '24258338', + 'Header' => 'xml.h', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '51', + 'Static' => 1 + }, + '24258572' => { + 'Class' => '24258338', + 'Header' => 'xml.h', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '51', + 'Static' => 1 + }, + '24258588' => { + 'Class' => '24258338', + 'Const' => 1, + 'Header' => 'xml.h', + 'MnglName' => '_ZNK7log4cxx7helpers10XMLDOMNode8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715944' + 'type' => '24285421' } }, - 'ShortName' => 'WeekInMonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '51', + 'Virt' => 1, + 'VirtPos' => '2' }, - '16724455' => { - 'Artificial' => 1, - 'Class' => '16710862', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '348', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD2Ev', + '24258626' => { + 'Class' => '24258338', + 'Header' => 'xml.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode13getChildNodesEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715944' + 'type' => '24285426' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'WeekInMonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '24266345', + 'ShortName' => 'getChildNodes', + 'VirtPos' => '5' }, - '16724632' => { - 'Artificial' => 1, - 'Class' => '16710665', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '363', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD0Ev', + '24258664' => { + 'Class' => '24258338', + 'Header' => 'xml.h', + 'Line' => '62', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode11getNodeTypeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715910' + 'type' => '24285426' } }, - 'ShortName' => 'DayInMonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '24258355', + 'ShortName' => 'getNodeType', + 'VirtPos' => '6' }, - '16724633' => { - 'Artificial' => 1, - 'Class' => '16710665', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '363', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD1Ev', + '24258702' => { + 'Class' => '24258338', + 'Header' => 'xml.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode16getOwnerDocumentEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715910' + 'type' => '24285426' } }, - 'ShortName' => 'DayInMonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '24266357', + 'ShortName' => 'getOwnerDocument', + 'VirtPos' => '7' }, - '16724857' => { - 'Artificial' => 1, - 'Class' => '16710665', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '363', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD2Ev', + '24264111' => { + 'Class' => '24263999', + 'Const' => 1, + 'Header' => 'xml.h', + 'InLine' => 2, + 'Line' => '89', + 'MnglName' => '_ZNK7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocument7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715910' + 'type' => '24285966' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DayInMonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '16725034' => { - 'Artificial' => 1, - 'Class' => '16710468', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '378', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD0Ev', + '24264164' => { + 'Class' => '24263982', + 'Header' => 'xml.h', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '52', + 'Static' => 1 + }, + '24264180' => { + 'Class' => '24263982', + 'Header' => 'xml.h', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '52', + 'Static' => 1 + }, + '24264196' => { + 'Class' => '24263982', + 'Const' => 1, + 'Header' => 'xml.h', + 'MnglName' => '_ZNK7log4cxx7helpers14XMLDOMDocument8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715876' + 'type' => '24285406' } }, - 'ShortName' => 'DayInYearToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '52', + 'Virt' => 1, + 'VirtPos' => '2' }, - '16725035' => { - 'Artificial' => 1, - 'Class' => '16710468', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '378', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD1Ev', + '24264234' => { + 'Class' => '24263982', + 'Header' => 'xml.h', + 'Line' => '90', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument4loadERKNS_4FileE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715876' + 'type' => '24285411' + }, + '1' => { + 'name' => 'p1', + 'type' => '575822' } }, - 'ShortName' => 'DayInYearToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'load', + 'VirtPos' => '8' }, - '16725259' => { - 'Artificial' => 1, - 'Class' => '16710468', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '378', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD2Ev', + '24264272' => { + 'Class' => '24263982', + 'Header' => 'xml.h', + 'Line' => '91', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument18getDocumentElementEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715876' + 'type' => '24285411' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DayInYearToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '24266333', + 'ShortName' => 'getDocumentElement', + 'VirtPos' => '9' }, - '16725436' => { - 'Artificial' => 1, - 'Class' => '16710271', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '393', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD0Ev', + '24264310' => { + 'Class' => '24263982', + 'Header' => 'xml.h', + 'Line' => '92', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument14getElementByIdERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715842' + 'type' => '24285411' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210597' } }, - 'ShortName' => 'DayOfWeekInMonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '24266333', + 'ShortName' => 'getElementById', + 'VirtPos' => '10' }, - '16725437' => { - 'Artificial' => 1, - 'Class' => '16710271', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '393', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD1Ev', + '24264875' => { + 'Class' => '24264763', + 'Const' => 1, + 'Header' => 'xml.h', + 'InLine' => 2, + 'Line' => '74', + 'MnglName' => '_ZNK7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElement7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715842' + 'type' => '24285986' } }, - 'ShortName' => 'DayOfWeekInMonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '16725661' => { - 'Artificial' => 1, - 'Class' => '16710271', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '393', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD2Ev', + '24264928' => { + 'Class' => '24264746', + 'Header' => 'xml.h', + 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '53', + 'Static' => 1 + }, + '24264944' => { + 'Class' => '24264746', + 'Header' => 'xml.h', + 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '53', + 'Static' => 1 + }, + '24264960' => { + 'Class' => '24264746', + 'Const' => 1, + 'Header' => 'xml.h', + 'MnglName' => '_ZNK7log4cxx7helpers13XMLDOMElement8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715842' + 'type' => '24285391' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DayOfWeekInMonthToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '53', + 'Virt' => 1, + 'VirtPos' => '2' }, - '16725838' => { - 'Artificial' => 1, - 'Class' => '16710049', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '408', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD0Ev', + '24264998' => { + 'Class' => '24264746', + 'Header' => 'xml.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement10getTagNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715808' + 'type' => '24285396' } }, - 'ShortName' => 'AbbreviatedDayNameToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '209661', + 'ShortName' => 'getTagName', + 'VirtPos' => '8' }, - '16725839' => { - 'Artificial' => 1, - 'Class' => '16710049', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '408', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD1Ev', + '24265036' => { + 'Class' => '24264746', + 'Header' => 'xml.h', + 'Line' => '76', + 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement12getAttributeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715808' + 'type' => '24285396' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' } }, - 'ShortName' => 'AbbreviatedDayNameToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '209661', + 'ShortName' => 'getAttribute', + 'VirtPos' => '9' }, - '16727267' => { - 'Artificial' => 1, - 'Class' => '16710049', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '408', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD2Ev', + '24265596' => { + 'Class' => '24265484', + 'Const' => 1, + 'Header' => 'xml.h', + 'InLine' => 2, + 'Line' => '110', + 'MnglName' => '_ZNK7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeList7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715808' + 'type' => '24285946' } }, - 'ShortName' => 'AbbreviatedDayNameToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '16728654' => { - 'Artificial' => 1, - 'Class' => '16709827', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '428', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD0Ev', + '24265649' => { + 'Class' => '24265467', + 'Header' => 'xml.h', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '54', + 'Static' => 1 + }, + '24265665' => { + 'Class' => '24265467', + 'Header' => 'xml.h', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '54', + 'Static' => 1 + }, + '24265681' => { + 'Class' => '24265467', + 'Const' => 1, + 'Header' => 'xml.h', + 'MnglName' => '_ZNK7log4cxx7helpers14XMLDOMNodeList8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715774' + 'type' => '24285376' } }, - 'ShortName' => 'FullDayNameToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '54', + 'Virt' => 1, + 'VirtPos' => '2' }, - '16728655' => { - 'Artificial' => 1, - 'Class' => '16709827', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '428', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD1Ev', + '24265719' => { + 'Class' => '24265467', + 'Header' => 'xml.h', + 'Line' => '111', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList9getLengthEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715774' + 'type' => '24285381' } }, - 'ShortName' => 'FullDayNameToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '190263', + 'ShortName' => 'getLength', + 'VirtPos' => '5' }, - '16730083' => { - 'Artificial' => 1, - 'Class' => '16709827', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '428', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD2Ev', + '24265757' => { + 'Class' => '24265467', + 'Header' => 'xml.h', + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList4itemEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715774' + 'type' => '24285381' + }, + '1' => { + 'name' => 'p1', + 'type' => '190263' } }, - 'ShortName' => 'FullDayNameToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '24266321', + 'ShortName' => 'item', + 'VirtPos' => '6' }, - '16731470' => { - 'Artificial' => 1, - 'Class' => '16709611', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '448', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD0Ev', + '24268502' => { + 'Class' => '566161', + 'Header' => 'optionhandler.h', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandler13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '42', + 'Static' => 1 + }, + '24268597' => { + 'Class' => '566161', + 'Header' => 'optionhandler.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandler15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715740' + 'type' => '602616' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'MilitaryHourToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'VirtPos' => '5' }, - '16731471' => { - 'Artificial' => 1, - 'Class' => '16709611', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '448', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD1Ev', + '24268635' => { + 'Class' => '566161', + 'Header' => 'optionhandler.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715740' + 'type' => '602616' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210597' } }, - 'ShortName' => 'MilitaryHourToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setOption', + 'VirtPos' => '6' }, - '16731695' => { - 'Artificial' => 1, - 'Class' => '16709611', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '448', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD2Ev', + '24268878' => { + 'Class' => '1378014', + 'Header' => 'errorhandler.h', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '24269059' => { + 'Class' => '1378014', + 'Header' => 'errorhandler.h', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715740' + 'type' => '1390591' + }, + '1' => { + 'name' => 'p1', + 'type' => '11940831' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'MilitaryHourToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setLogger', + 'VirtPos' => '7' }, - '16731872' => { - 'Artificial' => 1, - 'Class' => '16709395', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '466', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD0Ev', + '24269097' => { + 'Class' => '1378014', + 'Const' => 1, + 'Header' => 'errorhandler.h', + 'Line' => '85', + 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715706' + 'type' => '11942139' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '215735' + }, + '3' => { + 'name' => 'p3', + 'type' => '190263' } }, - 'ShortName' => 'HourToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'error', + 'VirtPos' => '8' }, - '16731873' => { - 'Artificial' => 1, - 'Class' => '16709395', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '466', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD1Ev', + '24269145' => { + 'Class' => '1378014', + 'Const' => 1, + 'Header' => 'errorhandler.h', + 'Line' => '92', + 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715706' + 'type' => '11942139' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' } }, - 'ShortName' => 'HourToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'error', + 'VirtPos' => '9' }, - '16732097' => { - 'Artificial' => 1, - 'Class' => '16709395', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '466', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD2Ev', + '24269183' => { + 'Class' => '1378014', + 'Const' => 1, + 'Header' => 'errorhandler.h', + 'Line' => '103', + 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS0_12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715706' + 'type' => '11942139' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '215735' + }, + '3' => { + 'name' => 'p3', + 'type' => '190263' + }, + '4' => { + 'name' => 'p4', + 'type' => '576659' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'HourToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'error', + 'VirtPos' => '10' }, - '16732274' => { - 'Artificial' => 1, - 'Class' => '16709198', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '484', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD0Ev', + '24269236' => { + 'Class' => '1378014', + 'Header' => 'errorhandler.h', + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715672' + 'type' => '1390591' + }, + '1' => { + 'name' => 'p1', + 'type' => '3129701' } }, - 'ShortName' => 'MinuteToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setAppender', + 'VirtPos' => '11' }, - '16732275' => { - 'Artificial' => 1, - 'Class' => '16709198', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '484', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD1Ev', + '24269274' => { + 'Class' => '1378014', + 'Header' => 'errorhandler.h', + 'Line' => '115', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715672' + 'type' => '1390591' + }, + '1' => { + 'name' => 'p1', + 'type' => '3129701' } }, - 'ShortName' => 'MinuteToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setBackupAppender', + 'VirtPos' => '12' }, - '16732499' => { - 'Artificial' => 1, - 'Class' => '16709198', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '484', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD2Ev', + '24269545' => { + 'Class' => '566027', + 'Header' => 'appenderattachable.h', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '46', + 'Static' => 1 + }, + '24269599' => { + 'Class' => '566027', + 'Header' => 'appenderattachable.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable11addAppenderESt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715672' + 'type' => '1014977' + }, + '1' => { + 'name' => 'p1', + 'type' => '946694' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'MinuteToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'addAppender', + 'VirtPos' => '5' }, - '16732676' => { - 'Artificial' => 1, - 'Class' => '16709001', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '499', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD0Ev', + '24269637' => { + 'Class' => '566027', + 'Const' => 1, + 'Header' => 'appenderattachable.h', + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable15getAllAppendersEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715638' + 'type' => '956706' } }, - 'ShortName' => 'SecondToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '946544', + 'ShortName' => 'getAllAppenders', + 'VirtPos' => '6' }, - '16732677' => { - 'Artificial' => 1, - 'Class' => '16709001', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '499', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD1Ev', + '24269675' => { + 'Class' => '566027', + 'Const' => 1, + 'Header' => 'appenderattachable.h', + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715638' + 'type' => '956706' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' } }, - 'ShortName' => 'SecondToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '946694', + 'ShortName' => 'getAppender', + 'VirtPos' => '7' }, - '16732901' => { - 'Artificial' => 1, - 'Class' => '16709001', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '499', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD2Ev', + '24269718' => { + 'Class' => '566027', + 'Const' => 1, + 'Header' => 'appenderattachable.h', + 'Line' => '58', + 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable10isAttachedESt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715638' + 'type' => '956706' + }, + '1' => { + 'name' => 'p1', + 'type' => '946694' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'SecondToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'isAttached', + 'VirtPos' => '8' }, - '16733078' => { - 'Artificial' => 1, - 'Class' => '16708804', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '514', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD0Ev', + '24269761' => { + 'Class' => '566027', + 'Header' => 'appenderattachable.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable18removeAllAppendersEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715604' + 'type' => '1014977' } }, - 'ShortName' => 'MillisecondToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'removeAllAppenders', + 'VirtPos' => '9' }, - '16733079' => { - 'Artificial' => 1, - 'Class' => '16708804', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '514', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD1Ev', + '24269794' => { + 'Class' => '566027', + 'Header' => 'appenderattachable.h', + 'Line' => '68', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable14removeAppenderESt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715604' + 'type' => '1014977' + }, + '1' => { + 'name' => 'p1', + 'type' => '946694' } }, - 'ShortName' => 'MillisecondToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'removeAppender', + 'VirtPos' => '10' }, - '16733303' => { - 'Artificial' => 1, - 'Class' => '16708804', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '514', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD2Ev', + '24269832' => { + 'Class' => '566027', + 'Header' => 'appenderattachable.h', + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715604' + 'type' => '1014977' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'MillisecondToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'removeAppender', + 'VirtPos' => '11' }, - '16733480' => { - 'Artificial' => 1, - 'Class' => '16708346', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '529', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD0Ev', + '24270113' => { + 'Class' => '565893', + 'Header' => 'loggerfactory.h', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '47', + 'Static' => 1 + }, + '24270208' => { + 'Class' => '565893', + 'Const' => 1, + 'Header' => 'loggerfactory.h', + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx3spi13LoggerFactory21makeNewLoggerInstanceERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715570' + 'type' => '10984793' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + }, + '2' => { + 'name' => 'p2', + 'type' => '210597' } }, - 'ShortName' => 'MicrosecondToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '3121982', + 'ShortName' => 'makeNewLoggerInstance', + 'VirtPos' => '5' }, - '16733481' => { - 'Artificial' => 1, - 'Class' => '16708346', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '529', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD1Ev', + '24270455' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '48', + 'Static' => 1 + }, + '24270550' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository25addHierarchyEventListenerERKSt10shared_ptrINS0_22HierarchyEventListenerEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715570' + 'type' => '10588285' + }, + '1' => { + 'name' => 'p1', + 'type' => '18617122' } }, - 'ShortName' => 'MicrosecondToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'addHierarchyEventListener', + 'VirtPos' => '5' }, - '16733705' => { - 'Artificial' => 1, - 'Class' => '16708346', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '529', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD2Ev', + '24270588' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '66', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository18ensureIsConfiguredESt8functionIFvvEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715570' + 'type' => '10588285' + }, + '1' => { + 'name' => 'p1', + 'type' => '2331741' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'MicrosecondToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'ensureIsConfigured', + 'VirtPos' => '6' }, - '16733882' => { - 'Artificial' => 1, - 'Class' => '16708124', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '544', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD0Ev', + '24270626' => { + 'Class' => '565598', + 'Const' => 1, + 'Header' => 'loggerrepository.h', + 'Line' => '72', + 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository10isDisabledEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715536' + 'type' => '18618499' + }, + '1' => { + 'name' => 'p1', + 'type' => '190263' } }, - 'ShortName' => 'AMPMToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'isDisabled', + 'VirtPos' => '7' }, - '16733883' => { - 'Artificial' => 1, - 'Class' => '16708124', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '544', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD1Ev', + '24270669' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '78', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository12setThresholdERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715536' + 'type' => '10588285' + }, + '1' => { + 'name' => 'p1', + 'type' => '575807' } }, - 'ShortName' => 'AMPMToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setThreshold', + 'VirtPos' => '8' }, - '16735311' => { - 'Artificial' => 1, - 'Class' => '16708124', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '544', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD2Ev', + '24270707' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '84', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository12setThresholdERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715536' + 'type' => '10588285' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' } }, - 'ShortName' => 'AMPMToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setThreshold', + 'VirtPos' => '9' }, - '16736698' => { - 'Artificial' => 1, - 'Class' => '16707866', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '563', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD0Ev', + '24270745' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '86', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21emitNoAppenderWarningEPKNS_6LoggerE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715502' + 'type' => '10588285' + }, + '1' => { + 'name' => 'p1', + 'type' => '576768' } }, - 'ShortName' => 'GeneralTimeZoneToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'emitNoAppenderWarning', + 'VirtPos' => '10' }, - '16736699' => { - 'Artificial' => 1, - 'Class' => '16707866', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '563', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD1Ev', + '24270783' => { + 'Class' => '565598', + 'Const' => 1, + 'Header' => 'loggerrepository.h', + 'Line' => '93', + 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository12getThresholdEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715502' + 'type' => '18618499' } }, - 'ShortName' => 'GeneralTimeZoneToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '567044', + 'ShortName' => 'getThreshold', + 'VirtPos' => '11' }, - '16737501' => { - 'Artificial' => 1, - 'Class' => '16707866', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '563', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD2Ev', + '24270821' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '98', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715502' + 'type' => '10588285' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' } }, - 'ShortName' => 'GeneralTimeZoneToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'VirtPos' => '12' }, - '16738275' => { - 'Artificial' => 1, - 'Class' => '16707663', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '586', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD0Ev', + '24270864' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS0_13LoggerFactoryEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715462' + 'type' => '10588285' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '3132696' } }, - 'ShortName' => 'RFC822TimeZoneToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'VirtPos' => '13' }, - '16738276' => { - 'Artificial' => 1, - 'Class' => '16707663', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '586', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD1Ev', + '24270912' => { + 'Class' => '565598', + 'Const' => 1, + 'Header' => 'loggerrepository.h', + 'Line' => '128', + 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository13getRootLoggerEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715462' + 'type' => '18618499' } }, - 'ShortName' => 'RFC822TimeZoneToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '3121982', + 'ShortName' => 'getRootLogger', + 'VirtPos' => '14' }, - '16738452' => { - 'Artificial' => 1, - 'Class' => '16707663', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '586', - 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD2Ev', + '24270950' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '130', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository6existsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715462' + 'type' => '10588285' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'RFC822TimeZoneToken', - 'Source' => 'simpledateformat.cpp', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '3121982', + 'ShortName' => 'exists', + 'VirtPos' => '15' }, - '16784818' => { - 'Class' => '3411716', - 'Destructor' => 1, - 'Header' => 'simpledateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatD0Ev', + '24270993' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '132', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository8shutdownEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715428' + 'type' => '10588285' } }, - 'ShortName' => 'SimpleDateFormat', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '841', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'shutdown', + 'VirtPos' => '16' }, - '16784819' => { - 'Class' => '3411716', - 'Destructor' => 1, - 'Header' => 'simpledateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatD1Ev', + '24271026' => { + 'Class' => '565598', + 'Const' => 1, + 'Header' => 'loggerrepository.h', + 'Line' => '134', + 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository17getCurrentLoggersEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715428' + 'type' => '18618499' } }, - 'ShortName' => 'SimpleDateFormat', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '841', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '3121994', + 'ShortName' => 'getCurrentLoggers', + 'VirtPos' => '17' }, - '16784912' => { - 'Class' => '3411716', - 'Destructor' => 1, - 'Header' => 'simpledateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatD2Ev', + '24271150' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '140', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository18resetConfigurationEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715428' + 'type' => '10588285' } }, - 'ShortName' => 'SimpleDateFormat', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '841', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'resetConfiguration', + 'VirtPos' => '20' }, - '16787430' => { - 'Class' => '3411716', - 'Constructor' => 1, - 'Header' => 'simpledateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKSt6locale', + '24271183' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '142', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository12isConfiguredEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715428' - }, - '1' => { - 'name' => 'fmt', - 'type' => '263006' - }, - '2' => { - 'name' => 'locale', - 'type' => '2139269' + 'type' => '10588285' } }, - 'ShortName' => 'SimpleDateFormat', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '830' + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'isConfigured', + 'VirtPos' => '21' }, - '16787431' => { - 'Class' => '3411716', - 'Constructor' => 1, - 'Header' => 'simpledateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKSt6locale', + '24271221' => { + 'Class' => '565598', + 'Header' => 'loggerrepository.h', + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository13setConfiguredEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715428' + 'type' => '10588285' }, '1' => { - 'name' => 'fmt', - 'type' => '263006' - }, - '2' => { - 'name' => 'locale', - 'type' => '2139269' + 'name' => 'p1', + 'type' => '174077' } }, - 'ShortName' => 'SimpleDateFormat', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '830' + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setConfigured', + 'VirtPos' => '22' }, - '16789939' => { - 'Class' => '3411716', - 'Constructor' => 1, - 'Header' => 'simpledateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24271459' => { + 'Class' => '3118493', + 'Header' => 'repositoryselector.h', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '50', + 'Static' => 1 + }, + '24271554' => { + 'Class' => '3118493', + 'Header' => 'repositoryselector.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector19getLoggerRepositoryEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715428' - }, - '1' => { - 'name' => 'fmt', - 'type' => '263006' + 'type' => '11333926' } }, - 'ShortName' => 'SimpleDateFormat', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '815' + 'PureVirt' => 1, + 'Return' => '565552', + 'ShortName' => 'getLoggerRepository', + 'VirtPos' => '5' }, - '16789940' => { - 'Class' => '3411716', - 'Constructor' => 1, - 'Header' => 'simpledateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24271775' => { + 'Class' => '5652409', + 'Header' => 'triggeringeventevaluator.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '55', + 'Static' => 1 + }, + '24271791' => { + 'Class' => '5652409', + 'Header' => 'triggeringeventevaluator.h', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '55', + 'Static' => 1 + }, + '24271807' => { + 'Class' => '5652409', + 'Const' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx3spi24TriggeringEventEvaluator8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24285346' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '55', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '24271845' => { + 'Class' => '5652409', + 'Header' => 'triggeringeventevaluator.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator17isTriggeringEventERKSt10shared_ptrINS0_12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715428' + 'type' => '24285351' }, '1' => { - 'name' => 'fmt', - 'type' => '263006' + 'name' => 'p1', + 'type' => '576659' } }, - 'ShortName' => 'SimpleDateFormat', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '815' + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'isTriggeringEvent', + 'VirtPos' => '5' }, - '16921409' => { - 'Class' => '16921289', + '24273774' => { + 'Class' => '24273662', 'Const' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'denyallfilter.h', 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx12SimpleLayout17ClazzSimpleLayout7getNameB5cxx11Ev', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923625' + 'type' => '24286051' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '16921448' => { - 'Class' => '16921289', + '24273812' => { + 'Class' => '24273662', 'Const' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'denyallfilter.h', 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923625' + 'type' => '24286051' } }, - 'Return' => '16923557', + 'Return' => '24285446', 'ShortName' => 'newInstance', 'Virt' => 1, 'VirtPos' => '4' }, - '16921487' => { + '24273850' => { 'Artificial' => 1, - 'Class' => '16921289', - 'Header' => 'simplelayout.h', + 'Class' => '24273662', + 'Header' => 'denyallfilter.h', 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZTch0_h0_NK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv', + 'Line' => '43', + 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923625' + 'type' => '24286051' } }, - 'Return' => '16923557', - 'ShortName' => '_ZTch0_h0_NK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv' + 'Return' => '24285446', + 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv' }, - '16921633' => { - 'Class' => '16921271', + '24273995' => { + 'Class' => '24273645', 'Const' => 1, - 'Header' => 'simplelayout.h', - 'MnglName' => '_ZNK7log4cxx12SimpleLayout8getClassEv', + 'Header' => 'denyallfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923597' + 'type' => '24285471' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'simplelayout.cpp', - 'SourceLine' => '25', + 'Source' => 'loader.cpp', + 'SourceLine' => '49', 'Virt' => 1, 'VirtPos' => '2' }, - '16921672' => { - 'Class' => '16921271', - 'Header' => 'simplelayout.h', - 'MnglName' => '_ZN7log4cxx12SimpleLayout14getStaticClassEv', - 'Return' => '64678', + '24274033' => { + 'Class' => '24273645', + 'Header' => 'denyallfilter.h', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'simplelayout.cpp', - 'SourceLine' => '25', + 'Source' => 'loader.cpp', + 'SourceLine' => '49', 'Static' => 1 }, - '16921689' => { - 'Class' => '16921271', - 'Header' => 'simplelayout.h', - 'MnglName' => '_ZN7log4cxx12SimpleLayout13registerClassEv', - 'Return' => '64684', + '24274049' => { + 'Class' => '24273645', + 'Header' => 'denyallfilter.h', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'simplelayout.cpp', - 'SourceLine' => '25', + 'Source' => 'loader.cpp', + 'SourceLine' => '49', 'Static' => 1 }, - '16921706' => { - 'Class' => '16921271', + '24274065' => { + 'Class' => '24273645', 'Const' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'denyallfilter.h', 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx12SimpleLayout4castERKNS_7helpers5ClassE', + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923597' + 'type' => '24285471' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '16921750' => { - 'Class' => '16921271', + '24274108' => { + 'Class' => '24273645', 'Const' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'denyallfilter.h', 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx12SimpleLayout10instanceofERKNS_7helpers5ClassE', + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923597' + 'type' => '24285471' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '16921794' => { - 'Class' => '16921271', + '24274151' => { + 'Class' => '24273645', 'Const' => 1, - 'Header' => 'simplelayout.h', - 'MnglName' => '_ZNK7log4cxx12SimpleLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Header' => 'denyallfilter.h', + 'InLine' => 2, + 'Line' => '55', + 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923597' + 'type' => '24285471' }, '1' => { - 'name' => 'output', - 'type' => '409210' - }, - '2' => { 'name' => 'event', - 'type' => '154261' + 'type' => '576659' + } + }, + 'Return' => '565023', + 'ShortName' => 'decide', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '24274260' => { + 'Data' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7classes18ObjectRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ObjectRegistration', + 'Source' => 'loader.cpp' + }, + '24274276' => { + 'Data' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7classes25OptionHandlerRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'OptionHandlerRegistration', + 'Source' => 'loader.cpp' + }, + '24274292' => { + 'Data' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7classes24ErrorHandlerRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ErrorHandlerRegistration', + 'Source' => 'loader.cpp' + }, + '24274308' => { + 'Data' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7classes20AppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'AppenderRegistration', + 'Source' => 'loader.cpp' + }, + '24274324' => { + 'Data' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7classes18FilterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'FilterRegistration', + 'Source' => 'loader.cpp' + }, + '24274340' => { + 'Data' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7classes30AppenderAttachableRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'AppenderAttachableRegistration', + 'Source' => 'loader.cpp' + }, + '24274356' => { + 'Data' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7classes25LoggerFactoryRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LoggerFactoryRegistration', + 'Source' => 'loader.cpp' + }, + '24274372' => { + 'Data' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7classes28LoggerRepositoryRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LoggerRepositoryRegistration', + 'Source' => 'loader.cpp' + }, + '24274388' => { + 'Data' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7classes25DenyAllFilterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'DenyAllFilterRegistration', + 'Source' => 'loader.cpp' + }, + '24274404' => { + 'Data' => 1, + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7classes30RepositorySelectorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'RepositorySelectorRegistration', + 'Source' => 'loader.cpp' + }, + '24274420' => { + 'Data' => 1, + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7classes22XMLDOMNodeRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'XMLDOMNodeRegistration', + 'Source' => 'loader.cpp' + }, + '24274436' => { + 'Data' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7classes26XMLDOMDocumentRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'XMLDOMDocumentRegistration', + 'Source' => 'loader.cpp' + }, + '24274452' => { + 'Data' => 1, + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7classes25XMLDOMElementRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'XMLDOMElementRegistration', + 'Source' => 'loader.cpp' + }, + '24274468' => { + 'Data' => 1, + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7classes26XMLDOMNodeListRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'XMLDOMNodeListRegistration', + 'Source' => 'loader.cpp' + }, + '24274484' => { + 'Data' => 1, + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx7classes36TriggeringEventEvaluatorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'TriggeringEventEvaluatorRegistration', + 'Source' => 'loader.cpp' + }, + '24274699' => { + 'Class' => '567947', + 'Header' => 'appender.h', + 'MnglName' => '_ZN7log4cxx8Appender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '44', + 'Static' => 1 + }, + '24274794' => { + 'Class' => '567947', + 'Header' => 'appender.h', + 'Line' => '60', + 'MnglName' => '_ZN7log4cxx8Appender9addFilterESt10shared_ptrINS_3spi6FilterEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955078' }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + '1' => { + 'name' => 'p1', + 'type' => '565564' } }, - 'Reg' => { - '3' => 'rcx' - }, + 'PureVirt' => 1, 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'simplelayout.cpp', - 'SourceLine' => '29', - 'Virt' => 1, + 'ShortName' => 'addFilter', 'VirtPos' => '7' }, - '16921844' => { - 'Class' => '16921271', + '24274832' => { + 'Class' => '567947', 'Const' => 1, - 'Header' => 'simplelayout.h', - 'InLine' => 2, - 'Line' => '61', - 'MnglName' => '_ZNK7log4cxx12SimpleLayout16ignoresThrowableEv', + 'Header' => 'appender.h', + 'Line' => '68', + 'MnglName' => '_ZNK7log4cxx8Appender9getFilterEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923597' + 'type' => '576773' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'ignoresThrowable', - 'Virt' => 1, - 'VirtPos' => '11' + 'PureVirt' => 1, + 'Return' => '565564', + 'ShortName' => 'getFilter', + 'VirtPos' => '8' }, - '16921883' => { - 'Class' => '16921271', - 'Header' => 'simplelayout.h', - 'InLine' => 2, - 'Line' => '71', - 'MnglName' => '_ZN7log4cxx12SimpleLayout15activateOptionsERNS_7helpers4PoolE', + '24274870' => { + 'Class' => '567947', + 'Header' => 'appender.h', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx8Appender12clearFiltersEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923563' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' + 'type' => '955078' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, + 'PureVirt' => 1, 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'clearFilters', + 'VirtPos' => '9' }, - '16921923' => { - 'Class' => '16921271', - 'Header' => 'simplelayout.h', - 'InLine' => 2, + '24274903' => { + 'Class' => '567947', + 'Header' => 'appender.h', 'Line' => '80', - 'MnglName' => '_ZN7log4cxx12SimpleLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'MnglName' => '_ZN7log4cxx8Appender5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955078' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'close', + 'VirtPos' => '10' + }, + '24274936' => { + 'Class' => '567947', + 'Header' => 'appender.h', + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx8Appender8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923563' + 'type' => '955078' }, '1' => { 'name' => 'p1', - 'type' => '263006' + 'type' => '576659' }, '2' => { 'name' => 'p2', - 'type' => '263006' + 'type' => '210607' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, + 'PureVirt' => 1, 'Return' => '1', - 'ShortName' => 'setOption', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'doAppend', + 'VirtPos' => '11' }, - '16922022' => { - 'Data' => 1, - 'Line' => '25', - 'MnglName' => '_ZN7log4cxx7classes24SimpleLayoutRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'SimpleLayoutRegistration', - 'Source' => 'simplelayout.cpp' + '24274979' => { + 'Class' => '567947', + 'Const' => 1, + 'Header' => 'appender.h', + 'Line' => '95', + 'MnglName' => '_ZNK7log4cxx8Appender7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576773' + } + }, + 'PureVirt' => 1, + 'Return' => '209661', + 'ShortName' => 'getName', + 'VirtPos' => '12' + }, + '24275017' => { + 'Class' => '567947', + 'Header' => 'appender.h', + 'Line' => '101', + 'MnglName' => '_ZN7log4cxx8Appender9setLayoutESt10shared_ptrINS_6LayoutEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955078' + }, + '1' => { + 'name' => 'p1', + 'type' => '1381467' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setLayout', + 'VirtPos' => '13' + }, + '24275055' => { + 'Class' => '567947', + 'Const' => 1, + 'Header' => 'appender.h', + 'Line' => '106', + 'MnglName' => '_ZNK7log4cxx8Appender9getLayoutEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576773' + } + }, + 'PureVirt' => 1, + 'Return' => '1381467', + 'ShortName' => 'getLayout', + 'VirtPos' => '14' + }, + '24275093' => { + 'Class' => '567947', + 'Header' => 'appender.h', + 'Line' => '113', + 'MnglName' => '_ZN7log4cxx8Appender7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955078' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setName', + 'VirtPos' => '15' + }, + '24275131' => { + 'Class' => '567947', + 'Const' => 1, + 'Header' => 'appender.h', + 'Line' => '129', + 'MnglName' => '_ZNK7log4cxx8Appender14requiresLayoutEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576773' + } + }, + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'requiresLayout', + 'VirtPos' => '16' + }, + '24287473' => { + 'Constructor' => 1, + 'Header' => 'fileinputstream.h', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '13864893' + }, + '1' => { + 'name' => 'filename', + 'type' => '210597' + } + } }, - '16924249' => { + '24290484' => { 'Artificial' => 1, - 'Class' => '16921271', + 'Class' => '24273645', 'Destructor' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'denyallfilter.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx12SimpleLayoutD0Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923563' + 'type' => '24285451' } }, - 'ShortName' => 'SimpleLayout', + 'ShortName' => 'DenyAllFilter', 'Virt' => 1 }, - '16924250' => { + '24290485' => { 'Artificial' => 1, - 'Class' => '16921271', + 'Class' => '24273645', 'Destructor' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'denyallfilter.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx12SimpleLayoutD2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923563' + 'type' => '24285451' } }, - 'ShortName' => 'SimpleLayout', + 'ShortName' => 'DenyAllFilter', 'Virt' => 1 }, - '16924518' => { + '24290757' => { 'Artificial' => 1, - 'Class' => '16921271', + 'Class' => '24273645', 'Destructor' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'denyallfilter.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx12SimpleLayoutD1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923563' + 'type' => '24285451' } }, - 'ShortName' => 'SimpleLayout', + 'ShortName' => 'DenyAllFilter', 'Virt' => 1 }, - '16930737' => { + '24297374' => { 'Artificial' => 1, - 'Class' => '16919987', + 'Class' => '24265840', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923301' + 'type' => '24284549' } }, 'ShortName' => 'WideLife' }, - '16930738' => { + '24297375' => { 'Artificial' => 1, - 'Class' => '16919987', + 'Class' => '24265840', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923301' + 'type' => '24284549' } }, 'ShortName' => 'WideLife' }, - '16930878' => { + '24297515' => { 'Artificial' => 1, - 'Class' => '16919987', + 'Class' => '24265840', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923301' + 'type' => '24284549' } }, 'ShortName' => 'WideLife' }, - '16930879' => { + '24297516' => { 'Artificial' => 1, - 'Class' => '16919987', + 'Class' => '24265840', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923301' + 'type' => '24284549' } }, 'ShortName' => 'WideLife' }, - '16935610' => { + '24297595' => { 'Artificial' => 1, - 'Class' => '16921271', - 'Constructor' => 1, - 'Header' => 'simplelayout.h', + 'Class' => '24265119', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx12SimpleLayoutC1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923563' + 'type' => '24284493' } }, - 'ShortName' => 'SimpleLayout' + 'ShortName' => 'WideLife' + }, + '24297596' => { + 'Artificial' => 1, + 'Class' => '24265119', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284493' + } + }, + 'ShortName' => 'WideLife' }, - '16935611' => { + '24297736' => { 'Artificial' => 1, - 'Class' => '16921271', + 'Class' => '24265119', 'Constructor' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx12SimpleLayoutC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923563' + 'type' => '24284493' } }, - 'ShortName' => 'SimpleLayout' + 'ShortName' => 'WideLife' }, - '16936627' => { + '24297737' => { 'Artificial' => 1, - 'Class' => '16921289', - 'Destructor' => 1, - 'Header' => 'simplelayout.h', + 'Class' => '24265119', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923614' + 'type' => '24284493' } }, - 'ShortName' => 'ClazzSimpleLayout', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16936628' => { + '24297816' => { 'Artificial' => 1, - 'Class' => '16921289', + 'Class' => '24264398', 'Destructor' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923614' + 'type' => '24284437' } }, - 'ShortName' => 'ClazzSimpleLayout', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16936768' => { + '24297817' => { 'Artificial' => 1, - 'Class' => '16921289', + 'Class' => '24264398', 'Destructor' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923614' + 'type' => '24284437' } }, - 'ShortName' => 'ClazzSimpleLayout', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '16936858' => { + '24297957' => { 'Artificial' => 1, - 'Class' => '16921289', + 'Class' => '24264398', 'Constructor' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923614' + 'type' => '24284437' } }, - 'ShortName' => 'ClazzSimpleLayout' + 'ShortName' => 'WideLife' }, - '16936859' => { + '24297958' => { 'Artificial' => 1, - 'Class' => '16921289', + 'Class' => '24264398', 'Constructor' => 1, - 'Header' => 'simplelayout.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutC1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923614' + 'type' => '24284437' } }, - 'ShortName' => 'ClazzSimpleLayout' + 'ShortName' => 'WideLife' }, - '17000893' => { - 'Class' => '17000773', - 'Const' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy7getNameB5cxx11Ev', + '24298037' => { + 'Artificial' => 1, + 'Class' => '24263634', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003137' + 'type' => '24284381' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife' }, - '17000932' => { - 'Class' => '17000773', - 'Const' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv', + '24298038' => { + 'Artificial' => 1, + 'Class' => '24263634', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003137' + 'type' => '24284381' } }, - 'Return' => '15777909', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '17000971' => { + '24298178' => { 'Artificial' => 1, - 'Class' => '17000773', - 'Header' => 'sizebasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv', + 'Class' => '24263634', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003137' + 'type' => '24284381' } }, - 'Return' => '15777909', - 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv' + 'ShortName' => 'WideLife' }, - '17001083' => { - 'Class' => '15770775', - 'Const' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy8getClassEv', + '24298179' => { + 'Artificial' => 1, + 'Class' => '24263634', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003103' + 'type' => '24284381' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '26', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '17001139' => { - 'Class' => '15770775', - 'Header' => 'sizebasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '26', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '17001156' => { - 'Class' => '15770775', - 'Const' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy4castERKNS_7helpers5ClassE', + '24298258' => { + 'Artificial' => 1, + 'Class' => '24263286', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003103' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '24284325' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '17001200' => { - 'Class' => '15770775', - 'Const' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy10instanceofERKNS_7helpers5ClassE', + '24298259' => { + 'Artificial' => 1, + 'Class' => '24263286', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003103' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '24284325' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife' }, - '17001296' => { - 'Class' => '15770775', - 'Header' => 'sizebasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', + '24298399' => { + 'Artificial' => 1, + 'Class' => '24263286', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' - }, - '1' => { - 'name' => 'p1', - 'type' => '264877' - }, - '2' => { - 'name' => 'p2', - 'type' => '154261' - }, - '3' => { - 'name' => 'p3', - 'type' => '263006' - }, - '4' => { - 'name' => 'fileLength', - 'type' => '50486' + 'type' => '24284325' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx', - '3' => 'rcx', - '4' => 'r8' - }, - 'Return' => '50284', - 'ShortName' => 'isTriggeringEvent', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '33', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'WideLife' }, - '17001418' => { - 'Class' => '15770775', - 'Header' => 'sizebasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy15activateOptionsERNS_7helpers4PoolE', + '24298400' => { + 'Artificial' => 1, + 'Class' => '24263286', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' + 'type' => '24284325' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '51', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'WideLife' }, - '17001458' => { - 'Class' => '15770775', - 'Header' => 'sizebasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '24298479' => { + 'Artificial' => 1, + 'Class' => '24262938', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '24284269' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '55', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '17001708' => { - 'Data' => 1, - 'Line' => '26', - 'MnglName' => '_ZN7log4cxx7classes37SizeBasedTriggeringPolicyRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'SizeBasedTriggeringPolicyRegistration', - 'Source' => 'sizebasedtriggeringpolicy.cpp' + 'ShortName' => 'WideLife' }, - '17003761' => { + '24298480' => { 'Artificial' => 1, - 'Class' => '15770775', + 'Class' => '24262938', 'Destructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' + 'type' => '24284269' } }, - 'ShortName' => 'SizeBasedTriggeringPolicy', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '17003762' => { + '24298620' => { 'Artificial' => 1, - 'Class' => '15770775', - 'Destructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', + 'Class' => '24262938', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' + 'type' => '24284269' } }, - 'ShortName' => 'SizeBasedTriggeringPolicy', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '17004030' => { + '24298621' => { 'Artificial' => 1, - 'Class' => '15770775', - 'Destructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', + 'Class' => '24262938', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' + 'type' => '24284269' } }, - 'ShortName' => 'SizeBasedTriggeringPolicy', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '17006969' => { + '24298700' => { 'Artificial' => 1, - 'Class' => '16999454', + 'Class' => '24262590', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17002913' + 'type' => '24284213' } }, 'ShortName' => 'WideLife' }, - '17006970' => { + '24298701' => { 'Artificial' => 1, - 'Class' => '16999454', + 'Class' => '24262590', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17002913' + 'type' => '24284213' } }, 'ShortName' => 'WideLife' }, - '17007110' => { + '24298841' => { 'Artificial' => 1, - 'Class' => '16999454', + 'Class' => '24262590', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17002913' + 'type' => '24284213' } }, 'ShortName' => 'WideLife' }, - '17007111' => { + '24298842' => { 'Artificial' => 1, - 'Class' => '16999454', + 'Class' => '24262590', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17002913' + 'type' => '24284213' } }, 'ShortName' => 'WideLife' }, - '17007862' => { - 'Class' => '15770775', - 'Constructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyC1Ev', + '24298921' => { + 'Artificial' => 1, + 'Class' => '24262242', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' + 'type' => '24284157' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'SizeBasedTriggeringPolicy', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '28' + 'ShortName' => 'WideLife' + }, + '24298922' => { + 'Artificial' => 1, + 'Class' => '24262242', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284157' + } + }, + 'ShortName' => 'WideLife' }, - '17008080' => { - 'Class' => '15770775', + '24299062' => { + 'Artificial' => 1, + 'Class' => '24262242', 'Constructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyC2Ev', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003069' + 'type' => '24284157' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'SizeBasedTriggeringPolicy', - 'Source' => 'sizebasedtriggeringpolicy.cpp', - 'SourceLine' => '28' + 'ShortName' => 'WideLife' }, - '17010411' => { + '24299063' => { 'Artificial' => 1, - 'Class' => '17000773', - 'Destructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', + 'Class' => '24262242', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003126' + 'type' => '24284157' } }, - 'ShortName' => 'ClazzSizeBasedTriggeringPolicy', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '17010412' => { + '24299142' => { 'Artificial' => 1, - 'Class' => '17000773', + 'Class' => '24261894', 'Destructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003126' + 'type' => '24284101' } }, - 'ShortName' => 'ClazzSizeBasedTriggeringPolicy', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '17010552' => { + '24299143' => { 'Artificial' => 1, - 'Class' => '17000773', + 'Class' => '24261894', 'Destructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003126' + 'type' => '24284101' } }, - 'ShortName' => 'ClazzSizeBasedTriggeringPolicy', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '17010642' => { + '24299283' => { 'Artificial' => 1, - 'Class' => '17000773', + 'Class' => '24261894', 'Constructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003126' + 'type' => '24284101' } }, - 'ShortName' => 'ClazzSizeBasedTriggeringPolicy' + 'ShortName' => 'WideLife' }, - '17010643' => { + '24299284' => { 'Artificial' => 1, - 'Class' => '17000773', + 'Class' => '24261894', 'Constructor' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyC1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17003126' + 'type' => '24284101' } }, - 'ShortName' => 'ClazzSizeBasedTriggeringPolicy' + 'ShortName' => 'WideLife' }, - '17104254' => { - 'Class' => '17104130', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '357', - 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator7getNameB5cxx11Ev', + '24299363' => { + 'Artificial' => 1, + 'Class' => '24261546', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111307' + 'type' => '24284045' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Source' => 'smtpappender.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife' }, - '17104294' => { - 'Class' => '17104130', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '357', - 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv', + '24299364' => { + 'Artificial' => 1, + 'Class' => '24261546', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111307' + 'type' => '24284045' } }, - 'Return' => '17110213', - 'ShortName' => 'newInstance', - 'Source' => 'smtpappender.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '17104334' => { + '24299504' => { 'Artificial' => 1, - 'Class' => '17104130', - 'InLine' => 2, - 'Line' => '357', - 'MnglName' => '_ZTch0_h0_NK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv', + 'Class' => '24261546', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111307' + 'type' => '24284045' } }, - 'Return' => '17110213', - 'ShortName' => '_ZTch0_h0_NK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv', - 'Source' => 'smtpappender.cpp' + 'ShortName' => 'WideLife' }, - '17104393' => { - 'Class' => '17104111', - 'Const' => 1, - 'Line' => '380', - 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator8getClassEv', + '24299505' => { + 'Artificial' => 1, + 'Class' => '24261546', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111273' + 'type' => '24284045' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'smtpappender.cpp', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '17104433' => { - 'Class' => '17104111', - 'Line' => '380', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'smtpappender.cpp', - 'Static' => 1 - }, - '17104452' => { - 'Class' => '17104111', - 'Line' => '380', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'smtpappender.cpp', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '17104471' => { - 'Class' => '17104111', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '358', - 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator4castERKNS_7helpers5ClassE', + '24299584' => { + 'Artificial' => 1, + 'Class' => '24261198', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111273' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '24283989' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Source' => 'smtpappender.cpp', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '17104516' => { - 'Class' => '17104111', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '361', - 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator10instanceofERKNS_7helpers5ClassE', + '24299585' => { + 'Artificial' => 1, + 'Class' => '24261198', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111273' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '24283989' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Source' => 'smtpappender.cpp', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife' }, - '17104599' => { - 'Class' => '17104111', - 'Line' => '422', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator17isTriggeringEventERKSt10shared_ptrINS_3spi12LoggingEventEE', + '24299725' => { + 'Artificial' => 1, + 'Class' => '24261198', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110219' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' + 'type' => '24283989' } }, - 'Return' => '50284', - 'ShortName' => 'isTriggeringEvent', - 'Source' => 'smtpappender.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'WideLife' }, - '17104903' => { - 'Class' => '17104782', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'InLine' => 2, - 'Line' => '87', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender17ClazzSMTPAppender7getNameB5cxx11Ev', + '24299726' => { + 'Artificial' => 1, + 'Class' => '24261198', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111365' + 'type' => '24283989' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife' }, - '17104942' => { - 'Class' => '17104782', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'InLine' => 2, - 'Line' => '87', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv', + '24299805' => { + 'Artificial' => 1, + 'Class' => '24260850', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111365' + 'type' => '24283933' } }, - 'Return' => '17111216', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '17104981' => { + '24299806' => { 'Artificial' => 1, - 'Class' => '17104782', - 'Header' => 'smtpappender.h', - 'InLine' => 2, - 'Line' => '87', - 'MnglName' => '_ZTch0_h0_NK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv', + 'Class' => '24260850', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111365' + 'type' => '24283933' } }, - 'Return' => '17111216', - 'ShortName' => '_ZTch0_h0_NK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv' + 'ShortName' => 'WideLife' }, - '17105463' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender10asciiCheckERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '24299946' => { + 'Artificial' => 1, + 'Class' => '24260850', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEEC2Ev', 'Param' => { '0' => { - 'name' => 'value', - 'type' => '263006' - }, - '1' => { - 'name' => 'field', - 'type' => '263006' + 'name' => 'this', + 'type' => '24283933' } }, - 'Private' => 1, - 'Return' => '50284', - 'ShortName' => 'asciiCheck', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '579', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '17105495' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender20checkEntryConditionsEv', + '24299947' => { + 'Artificial' => 1, + 'Class' => '24260850', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' + 'type' => '24283933' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'checkEntryConditions', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '675' + 'ShortName' => 'WideLife' }, - '17105526' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender8getClassEv', + '24300026' => { + 'Artificial' => 1, + 'Class' => '24260502', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24283877' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '381', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '17105566' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '381', - 'Static' => 1 - }, - '17105585' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '381', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '17105604' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'InLine' => 2, - 'Line' => '88', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender4castERKNS_7helpers5ClassE', + '24300027' => { + 'Artificial' => 1, + 'Class' => '24260502', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '24283877' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '17105648' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'InLine' => 2, - 'Line' => '91', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender10instanceofERKNS_7helpers5ClassE', + '24300167' => { + 'Artificial' => 1, + 'Class' => '24260502', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '24283877' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife' }, - '17105859' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '24300168' => { + 'Artificial' => 1, + 'Class' => '24260502', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '24283877' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '525', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'WideLife' }, - '17105905' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender15activateOptionsERNS_7helpers4PoolE', + '24300247' => { + 'Artificial' => 1, + 'Class' => '24260154', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '24283821' } }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '598', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'WideLife' }, - '17105946' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '24300248' => { + 'Artificial' => 1, + 'Class' => '24260154', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '24283821' } }, - 'Return' => '1', - 'ShortName' => 'append', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '649', - 'Virt' => 1, - 'VirtPos' => '17' + 'ShortName' => 'WideLife' }, - '17105992' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender5closeEv', + '24300388' => { + 'Artificial' => 1, + 'Class' => '24260154', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' + 'type' => '24283821' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '707', - 'Virt' => 1, - 'VirtPos' => '10' + 'ShortName' => 'WideLife' }, - '17106028' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender5getToB5cxx11Ev', + '24300389' => { + 'Artificial' => 1, + 'Class' => '24260154', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24283821' } }, - 'Return' => '63706', - 'ShortName' => 'getTo', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '712' + 'ShortName' => 'WideLife' }, - '17106060' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender5getCcB5cxx11Ev', + '24300706' => { + 'Artificial' => 1, + 'Class' => '24258951', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24283725' } }, - 'Return' => '63706', - 'ShortName' => 'getCc', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '722' + 'ShortName' => 'WideLife' }, - '17106092' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender6getBccB5cxx11Ev', + '24300707' => { + 'Artificial' => 1, + 'Class' => '24258951', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24283725' } }, - 'Return' => '63706', - 'ShortName' => 'getBcc', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '732' + 'ShortName' => 'WideLife' }, - '17106124' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender14requiresLayoutEv', + '24300847' => { + 'Artificial' => 1, + 'Class' => '24258951', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24283725' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'requiresLayout', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '445', - 'Virt' => 1, - 'VirtPos' => '16' + 'ShortName' => 'WideLife' }, - '17106164' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender10sendBufferERNS_7helpers4PoolE', + '24300848' => { + 'Artificial' => 1, + 'Class' => '24258951', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '24283725' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'sendBuffer', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '745' + 'ShortName' => 'WideLife' }, - '17106197' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17getEvaluatorClassB5cxx11Ev', + '24319905' => { + 'Artificial' => 1, + 'Class' => '5652418', + 'Destructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' + 'type' => '24285916' } }, - 'Return' => '63706', - 'ShortName' => 'getEvaluatorClass', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '785' + 'ShortName' => 'ClazzTriggeringEventEvaluator', + 'Virt' => 1 }, - '17106229' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender7getFromB5cxx11Ev', + '24319906' => { + 'Artificial' => 1, + 'Class' => '5652418', + 'Destructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24285916' } }, - 'Return' => '63706', - 'ShortName' => 'getFrom', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '450' + 'ShortName' => 'ClazzTriggeringEventEvaluator', + 'Virt' => 1 }, - '17106261' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender10getSubjectB5cxx11Ev', + '24320050' => { + 'Artificial' => 1, + 'Class' => '5652418', + 'Destructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24285916' } }, - 'Return' => '63706', - 'ShortName' => 'getSubject', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '461' + 'ShortName' => 'ClazzTriggeringEventEvaluator', + 'Virt' => 1 }, - '17106293' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender7setFromERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24320144' => { + 'Artificial' => 1, + 'Class' => '5652418', + 'Constructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'newVal', - 'type' => '263006' + 'type' => '24285916' } }, - 'Return' => '1', - 'ShortName' => 'setFrom', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '455' + 'ShortName' => 'ClazzTriggeringEventEvaluator' }, - '17106326' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender10setSubjectERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24320145' => { + 'Artificial' => 1, + 'Class' => '5652418', + 'Constructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'newVal', - 'type' => '263006' + 'type' => '24285916' } }, - 'Return' => '1', - 'ShortName' => 'setSubject', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '466' + 'ShortName' => 'ClazzTriggeringEventEvaluator' }, - '17106359' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender13setBufferSizeEi', + '24320800' => { + 'Artificial' => 1, + 'Class' => '24265484', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'sz', - 'type' => '50231' + 'type' => '24285936' } }, - 'Return' => '1', - 'ShortName' => 'setBufferSize', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '807' + 'ShortName' => 'ClazzXMLDOMNodeList', + 'Virt' => 1 }, - '17106392' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender11setSMTPHostERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24320801' => { + 'Artificial' => 1, + 'Class' => '24265484', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'newVal', - 'type' => '263006' + 'type' => '24285936' } }, - 'Return' => '1', - 'ShortName' => 'setSMTPHost', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '476' + 'ShortName' => 'ClazzXMLDOMNodeList', + 'Virt' => 1 }, - '17106425' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender11getSMTPHostB5cxx11Ev', + '24320945' => { + 'Artificial' => 1, + 'Class' => '24265484', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24285936' } }, - 'Return' => '63706', - 'ShortName' => 'getSMTPHost', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '471' + 'ShortName' => 'ClazzXMLDOMNodeList', + 'Virt' => 1 }, - '17106457' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender11setSMTPPortEi', + '24321039' => { + 'Artificial' => 1, + 'Class' => '24265484', + 'Constructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'newVal', - 'type' => '50231' + 'type' => '24285936' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setSMTPPort', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '486' + 'ShortName' => 'ClazzXMLDOMNodeList' }, - '17106490' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender11getSMTPPortEv', + '24321040' => { + 'Artificial' => 1, + 'Class' => '24265484', + 'Constructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24285936' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getSMTPPort', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '481' + 'ShortName' => 'ClazzXMLDOMNodeList' }, - '17106522' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender5setToERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24321695' => { + 'Artificial' => 1, + 'Class' => '24263999', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'addressStr', - 'type' => '263006' + 'type' => '24285956' } }, - 'Return' => '1', - 'ShortName' => 'setTo', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '717' + 'ShortName' => 'ClazzXMLDOMDocument', + 'Virt' => 1 }, - '17106555' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender5setCcERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24321696' => { + 'Artificial' => 1, + 'Class' => '24263999', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'addressStr', - 'type' => '263006' + 'type' => '24285956' } }, - 'Return' => '1', - 'ShortName' => 'setCc', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '727' + 'ShortName' => 'ClazzXMLDOMDocument', + 'Virt' => 1 }, - '17106588' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender6setBccERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24321840' => { + 'Artificial' => 1, + 'Class' => '24263999', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'addressStr', - 'type' => '263006' + 'type' => '24285956' } }, - 'Return' => '1', - 'ShortName' => 'setBcc', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '737' + 'ShortName' => 'ClazzXMLDOMDocument', + 'Virt' => 1 }, - '17106621' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender15setSMTPUsernameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24321934' => { + 'Artificial' => 1, + 'Class' => '24263999', + 'Constructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'newVal', - 'type' => '263006' + 'type' => '24285956' } }, - 'Return' => '1', - 'ShortName' => 'setSMTPUsername', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '506' + 'ShortName' => 'ClazzXMLDOMDocument' }, - '17106654' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender15getSMTPUsernameB5cxx11Ev', + '24321935' => { + 'Artificial' => 1, + 'Class' => '24263999', + 'Constructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24285956' } }, - 'Return' => '63706', - 'ShortName' => 'getSMTPUsername', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '501' + 'ShortName' => 'ClazzXMLDOMDocument' }, - '17106686' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender15setSMTPPasswordERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24322590' => { + 'Artificial' => 1, + 'Class' => '24264763', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'newVal', - 'type' => '263006' + 'type' => '24285976' } }, - 'Return' => '1', - 'ShortName' => 'setSMTPPassword', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '516' + 'ShortName' => 'ClazzXMLDOMElement', + 'Virt' => 1 }, - '17106719' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender15getSMTPPasswordB5cxx11Ev', + '24322591' => { + 'Artificial' => 1, + 'Class' => '24264763', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24285976' } }, - 'Return' => '63706', - 'ShortName' => 'getSMTPPassword', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '511' + 'ShortName' => 'ClazzXMLDOMElement', + 'Virt' => 1 }, - '17106751' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender13getBufferSizeEv', + '24322735' => { + 'Artificial' => 1, + 'Class' => '24264763', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24285976' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getBufferSize', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '826' + 'ShortName' => 'ClazzXMLDOMElement', + 'Virt' => 1 }, - '17106783' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender12getEvaluatorEv', + '24322829' => { + 'Artificial' => 1, + 'Class' => '24264763', + 'Constructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24285976' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '17103477', - 'ShortName' => 'getEvaluator', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '790' + 'ShortName' => 'ClazzXMLDOMElement' }, - '17106815' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'Line' => '298', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender12setEvaluatorERSt10shared_ptrINS_3spi24TriggeringEventEvaluatorEE', + '24322830' => { + 'Artificial' => 1, + 'Class' => '24264763', + 'Constructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'trigger', - 'type' => '17111261' + 'type' => '24285976' } }, - 'Return' => '1', - 'ShortName' => 'setEvaluator', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '795' + 'ShortName' => 'ClazzXMLDOMElement' }, - '17106848' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17setEvaluatorClassERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24323485' => { + 'Artificial' => 1, + 'Class' => '24258391', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '24285996' } }, - 'Return' => '1', - 'ShortName' => 'setEvaluatorClass', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '820' + 'ShortName' => 'ClazzXMLDOMNode', + 'Virt' => 1 }, - '17106881' => { - 'Class' => '17104764', - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender15setLocationInfoEb', + '24323486' => { + 'Artificial' => 1, + 'Class' => '24258391', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'newVal', - 'type' => '50284' + 'type' => '24285996' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setLocationInfo', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '496' + 'ShortName' => 'ClazzXMLDOMNode', + 'Virt' => 1 }, - '17106914' => { - 'Class' => '17104764', - 'Const' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender15getLocationInfoEv', + '24323630' => { + 'Artificial' => 1, + 'Class' => '24258391', + 'Destructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111256' + 'type' => '24285996' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getLocationInfo', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '491' - }, - '17106964' => { - 'Data' => 1, - 'Line' => '380', - 'MnglName' => '_ZN7log4cxx7classes28DefaultEvaluatorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DefaultEvaluatorRegistration', - 'Source' => 'smtpappender.cpp' - }, - '17106982' => { - 'Data' => 1, - 'Line' => '381', - 'MnglName' => '_ZN7log4cxx7classes24SMTPAppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'SMTPAppenderRegistration', - 'Source' => 'smtpappender.cpp' + 'ShortName' => 'ClazzXMLDOMNode', + 'Virt' => 1 }, - '17107112' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3spi24TriggeringEventEvaluatorENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', + '24323724' => { + 'Artificial' => 1, + 'Class' => '24258391', + 'Constructor' => 1, + 'Header' => 'xml.h', + 'InLine' => 1, + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeC2Ev', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'name' => 'this', + 'type' => '24285996' } }, - 'Return' => '17072128', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '9238623' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'ShortName' => 'ClazzXMLDOMNode' }, - '17120430' => { + '24323725' => { 'Artificial' => 1, - 'Class' => '17104111', - 'Destructor' => 1, + 'Class' => '24258391', + 'Constructor' => 1, + 'Header' => 'xml.h', 'InLine' => 1, - 'Line' => '352', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluatorD0Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110219' + 'type' => '24285996' } }, - 'ShortName' => 'DefaultEvaluator', - 'Source' => 'smtpappender.cpp', - 'Virt' => 1 + 'ShortName' => 'ClazzXMLDOMNode' }, - '17120673' => { + '24324380' => { 'Artificial' => 1, - 'Class' => '17104111', + 'Class' => '3118502', 'Destructor' => 1, + 'Header' => 'repositoryselector.h', 'InLine' => 1, - 'Line' => '352', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluatorD1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110219' + 'type' => '24286021' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DefaultEvaluator', - 'Source' => 'smtpappender.cpp', + 'ShortName' => 'ClazzRepositorySelector', 'Virt' => 1 }, - '17132272' => { + '24324381' => { 'Artificial' => 1, - 'Class' => '17105008', + 'Class' => '3118502', 'Destructor' => 1, + 'Header' => 'repositoryselector.h', 'InLine' => 1, - 'Line' => '383', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender8SMTPPrivD0Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110347' + 'type' => '24286021' } }, - 'ShortName' => 'SMTPPriv', - 'Source' => 'smtpappender.cpp', + 'ShortName' => 'ClazzRepositorySelector', 'Virt' => 1 }, - '17132273' => { + '24324525' => { 'Artificial' => 1, - 'Class' => '17105008', + 'Class' => '3118502', 'Destructor' => 1, + 'Header' => 'repositoryselector.h', 'InLine' => 1, - 'Line' => '383', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender8SMTPPrivD1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110347' + 'type' => '24286021' } }, - 'ShortName' => 'SMTPPriv', - 'Source' => 'smtpappender.cpp', + 'ShortName' => 'ClazzRepositorySelector', 'Virt' => 1 }, - '17141926' => { + '24324619' => { 'Artificial' => 1, - 'Class' => '17105008', - 'Destructor' => 1, + 'Class' => '3118502', + 'Constructor' => 1, + 'Header' => 'repositoryselector.h', 'InLine' => 1, - 'Line' => '383', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender8SMTPPrivD2Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110347' + 'type' => '24286021' } }, - 'ShortName' => 'SMTPPriv', - 'Source' => 'smtpappender.cpp', - 'Virt' => 1 + 'ShortName' => 'ClazzRepositorySelector' }, - '17157287' => { + '24324620' => { 'Artificial' => 1, - 'Class' => '17102520', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '3118502', + 'Constructor' => 1, + 'Header' => 'repositoryselector.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEED2Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110035' + 'type' => '24286021' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzRepositorySelector' }, - '17157288' => { + '24325609' => { 'Artificial' => 1, - 'Class' => '17102520', + 'Class' => '24273662', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'denyallfilter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEED0Ev', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110035' + 'type' => '24286041' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzDenyAllFilter', + 'Virt' => 1 }, - '17157429' => { + '24325610' => { 'Artificial' => 1, - 'Class' => '17102520', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '24273662', + 'Destructor' => 1, + 'Header' => 'denyallfilter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEEC2Ev', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110035' + 'type' => '24286041' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzDenyAllFilter', + 'Virt' => 1 }, - '17157430' => { + '24325754' => { 'Artificial' => 1, - 'Class' => '17102520', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '24273662', + 'Destructor' => 1, + 'Header' => 'denyallfilter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEEC1Ev', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110035' + 'type' => '24286041' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzDenyAllFilter', + 'Virt' => 1 + }, + '24325848' => { + 'Artificial' => 1, + 'Class' => '24273662', + 'Constructor' => 1, + 'Header' => 'denyallfilter.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286041' + } + }, + 'ShortName' => 'ClazzDenyAllFilter' + }, + '24325849' => { + 'Artificial' => 1, + 'Class' => '24273662', + 'Constructor' => 1, + 'Header' => 'denyallfilter.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286041' + } + }, + 'ShortName' => 'ClazzDenyAllFilter' + }, + '24325913' => { + 'Artificial' => 1, + 'Class' => '24273645', + 'Constructor' => 1, + 'Header' => 'denyallfilter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24285451' + } + }, + 'ShortName' => 'DenyAllFilter' }, - '17157755' => { + '24325914' => { 'Artificial' => 1, - 'Class' => '17101754', + 'Class' => '24273645', + 'Constructor' => 1, + 'Header' => 'denyallfilter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24285451' + } + }, + 'ShortName' => 'DenyAllFilter' + }, + '24326781' => { + 'Artificial' => 1, + 'Class' => '1378023', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'errorhandler.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEED2Ev', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17109927' + 'type' => '24286061' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzErrorHandler', + 'Virt' => 1 }, - '17157756' => { + '24326782' => { 'Artificial' => 1, - 'Class' => '17101754', + 'Class' => '1378023', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'errorhandler.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEED0Ev', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17109927' + 'type' => '24286061' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzErrorHandler', + 'Virt' => 1 + }, + '24326926' => { + 'Artificial' => 1, + 'Class' => '1378023', + 'Destructor' => 1, + 'Header' => 'errorhandler.h', + 'InLine' => 1, + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286061' + } + }, + 'ShortName' => 'ClazzErrorHandler', + 'Virt' => 1 }, - '17157897' => { + '24327020' => { 'Artificial' => 1, - 'Class' => '17101754', + 'Class' => '1378023', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'errorhandler.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEEC2Ev', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17109927' + 'type' => '24286061' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzErrorHandler' }, - '17157898' => { + '24327021' => { 'Artificial' => 1, - 'Class' => '17101754', + 'Class' => '1378023', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'errorhandler.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEEC1Ev', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17109927' + 'type' => '24286061' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzErrorHandler' }, - '17215303' => { - 'Class' => '17104764', + '24327765' => { + 'Artificial' => 1, + 'Class' => '565063', 'Destructor' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderD0Ev', + 'Header' => 'filter.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' + 'type' => '24286081' } }, - 'ShortName' => 'SMTPAppender', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '440', + 'ShortName' => 'ClazzFilter', 'Virt' => 1 }, - '17215401' => { - 'Class' => '17104764', + '24327766' => { + 'Artificial' => 1, + 'Class' => '565063', 'Destructor' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderD1Ev', + 'Header' => 'filter.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' + 'type' => '24286081' } }, - 'ShortName' => 'SMTPAppender', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '440', + 'ShortName' => 'ClazzFilter', 'Virt' => 1 }, - '17215688' => { - 'Class' => '17104764', + '24327910' => { + 'Artificial' => 1, + 'Class' => '565063', 'Destructor' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderD2Ev', + 'Header' => 'filter.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' + 'type' => '24286081' } }, - 'ShortName' => 'SMTPAppender', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '440', + 'ShortName' => 'ClazzFilter', 'Virt' => 1 }, - '17215851' => { - 'Class' => '17104764', + '24328004' => { + 'Artificial' => 1, + 'Class' => '565063', 'Constructor' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderC1ESt10shared_ptrINS_3spi24TriggeringEventEvaluatorEE', + 'Header' => 'filter.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '1' => { - 'name' => 'evaluator', - 'type' => '17103477' + 'type' => '24286081' } }, - 'ShortName' => 'SMTPAppender', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '435' + 'ShortName' => 'ClazzFilter' }, - '172286' => { - 'Class' => '151414', - 'Destructor' => 1, - 'Header' => 'andfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9AndFilterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154216' - } - }, - 'ShortName' => 'AndFilter', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '50', - 'Virt' => 1 - }, - '17236141' => { - 'Class' => '17104764', + '24328005' => { + 'Artificial' => 1, + 'Class' => '565063', 'Constructor' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderC2ESt10shared_ptrINS_3spi24TriggeringEventEvaluatorEE', + 'Header' => 'filter.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' - }, - '2' => { - 'name' => 'evaluator', - 'type' => '17103477' + 'type' => '24286081' } }, - 'ShortName' => 'SMTPAppender', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '435' + 'ShortName' => 'ClazzFilter' }, - '1723647' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10decodeUTF8ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '61535' - }, - '1' => { - 'name' => 'dst', - 'type' => '409210' - } - }, - 'Return' => '1', - 'ShortName' => 'decodeUTF8', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '43', - 'Static' => 1 - }, - '1723675' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10encodeUTF8ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '263006' - }, - '1' => { - 'name' => 'dst', - 'type' => '650733' - } - }, - 'Return' => '1', - 'ShortName' => 'encodeUTF8', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '63', - 'Static' => 1 - }, - '1723703' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10encodeUTF8ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '263006' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '51958', - 'ShortName' => 'encodeUTF8', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '88', - 'Static' => 1 - }, - '1723735' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10encodeUTF8EjRNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'sv', - 'type' => '50167' - }, - '1' => { - 'name' => 'dst', - 'type' => '1340866' - } - }, - 'Return' => '1', - 'ShortName' => 'encodeUTF8', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '100', - 'Static' => 1 - }, - '1723763' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '60', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder13encodeUTF16LEEjRNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'sv', - 'type' => '50167' - }, - '1' => { - 'name' => 'dst', - 'type' => '1340866' - } - }, - 'Return' => '1', - 'ShortName' => 'encodeUTF16LE', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '177', - 'Static' => 1 - }, - '1723791' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '64', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder13encodeUTF16BEEjRNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'sv', - 'type' => '50167' - }, - '1' => { - 'name' => 'dst', - 'type' => '1340866' - } - }, - 'Return' => '1', - 'ShortName' => 'encodeUTF16BE', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '147', - 'Static' => 1 - }, - '1723819' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EE', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '61535' - }, - '1' => { - 'name' => 'iter', - 'type' => '1729836' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50167', - 'ShortName' => 'decode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '207', - 'Static' => 1 - }, - '172384' => { - 'Class' => '151414', - 'Destructor' => 1, - 'Header' => 'andfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9AndFilterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154216' - } - }, - 'ShortName' => 'AndFilter', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '50', - 'Virt' => 1 - }, - '1723851' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeEjRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'sv', - 'type' => '50167' - }, - '1' => { - 'name' => 'dst', - 'type' => '650733' - } - }, - 'Return' => '1', - 'ShortName' => 'encode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '306', - 'Static' => 1 - }, - '1723879' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '88', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '61535' - }, - '1' => { - 'name' => 'dst', - 'type' => '409210' - } - }, - 'Return' => '1', - 'ShortName' => 'decode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '314', - 'Static' => 1 - }, - '1723907' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '95', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '263006' - }, - '1' => { - 'name' => 'dst', - 'type' => '650733' - } - }, - 'Return' => '1', - 'ShortName' => 'encode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '368', - 'Static' => 1 - }, - '1723935' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '104', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '263006' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '51958', - 'ShortName' => 'encode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '355', - 'Static' => 1 - }, - '1723967' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '109', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERNS3_IcS4_IcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '646944' - }, - '1' => { - 'name' => 'dst', - 'type' => '409210' - } - }, - 'Return' => '1', - 'ShortName' => 'decode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '482', - 'Static' => 1 - }, - '1723995' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_IwS4_IwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '263006' - }, - '1' => { - 'name' => 'dst', - 'type' => '650739' - } - }, - 'Return' => '1', - 'ShortName' => 'encode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '507', - 'Static' => 1 - }, - '1724023' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '111', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder7wencodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '263006' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '51223', - 'ShortName' => 'wencode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '531', - 'Static' => 1 - }, - '1724055' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '120', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERN9__gnu_cxx17__normal_iteratorIPKwS7_EE', - 'Param' => { - '0' => { - 'name' => 'in', - 'type' => '646944' - }, - '1' => { - 'name' => 'iter', - 'type' => '1729848' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50167', - 'ShortName' => 'decode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '546', - 'Static' => 1 - }, - '1724087' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '128', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6encodeEjRNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'sv', - 'type' => '50167' - }, - '1' => { - 'name' => 'dst', - 'type' => '650739' - } - }, - 'Return' => '1', - 'ShortName' => 'encode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '557', - 'Static' => 1 - }, - '1724115' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '167', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeEc', - 'Param' => { - '0' => { - 'name' => 'val', - 'type' => '50671' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '407306', - 'ShortName' => 'decode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '659', - 'Static' => 1 - }, - '1724142' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '172', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder6decodeB5cxx11EPKc', - 'Param' => { - '0' => { - 'name' => 'val', - 'type' => '51127' - } - }, - 'Return' => '63706', - 'ShortName' => 'decode', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '670', - 'Static' => 1 - }, - '1724169' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '178', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder17encodeCharsetNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'val', - 'type' => '263006' - } - }, - 'Return' => '36898', - 'ShortName' => 'encodeCharsetName', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '682', - 'Static' => 1 - }, - '1724288' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '187', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder10encodeUTF8EjPc', - 'Param' => { - '0' => { - 'name' => 'ch', - 'type' => '50167' - }, - '1' => { - 'name' => 'dst', - 'type' => '51958' - } - }, - 'Private' => 1, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '50486', - 'ShortName' => 'encodeUTF8', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '107', - 'Static' => 1 - }, - '1724319' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '188', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder13encodeUTF16BEEjPc', - 'Param' => { - '0' => { - 'name' => 'ch', - 'type' => '50167' - }, - '1' => { - 'name' => 'dst', - 'type' => '51958' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50486', - 'ShortName' => 'encodeUTF16BE', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '154', - 'Static' => 1 - }, - '1724350' => { - 'Class' => '1723634', - 'Header' => 'transcoder.h', - 'Line' => '189', - 'MnglName' => '_ZN7log4cxx7helpers10Transcoder13encodeUTF16LEEjPc', - 'Param' => { - '0' => { - 'name' => 'ch', - 'type' => '50167' - }, - '1' => { - 'name' => 'dst', - 'type' => '51958' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50486', - 'ShortName' => 'encodeUTF16LE', - 'Source' => 'transcoder.cpp', - 'SourceLine' => '183', - 'Static' => 1 - }, - '17256294' => { - 'Class' => '17104764', + '24328808' => { + 'Artificial' => 1, + 'Class' => '565607', + 'Destructor' => 1, + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286116' + } + }, + 'ShortName' => 'ClazzLoggerRepository', + 'Virt' => 1 + }, + '24328809' => { + 'Artificial' => 1, + 'Class' => '565607', + 'Destructor' => 1, + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286116' + } + }, + 'ShortName' => 'ClazzLoggerRepository', + 'Virt' => 1 + }, + '24328953' => { + 'Artificial' => 1, + 'Class' => '565607', + 'Destructor' => 1, + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286116' + } + }, + 'ShortName' => 'ClazzLoggerRepository', + 'Virt' => 1 + }, + '24329047' => { + 'Artificial' => 1, + 'Class' => '565607', 'Constructor' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderC1Ev', + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111222' + 'type' => '24286116' } }, - 'ShortName' => 'SMTPAppender', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '427' + 'ShortName' => 'ClazzLoggerRepository' }, - '172580' => { - 'Class' => '151414', - 'Destructor' => 1, - 'Header' => 'andfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9AndFilterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154216' - } - }, - 'ShortName' => 'AndFilter', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '50', - 'Virt' => 1 - }, - '1726510' => { - 'Class' => '1726389', - 'Const' => 1, - 'Header' => 'charsetdecoder.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoder7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1734166' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '1726559' => { - 'Class' => '1726371', - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '38', - 'Static' => 1 - }, - '1726576' => { - 'Class' => '1726371', - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '38', - 'Static' => 1 - }, - '1726593' => { - 'Class' => '1726371', - 'Const' => 1, - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1734132' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '38', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '1726632' => { - 'Class' => '1726371', - 'Const' => 1, - 'Header' => 'charsetdecoder.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1734132' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '1726676' => { - 'Class' => '1726371', - 'Const' => 1, - 'Header' => 'charsetdecoder.h', - 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1734132' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '1726787' => { - 'Class' => '1726371', - 'Header' => 'charsetdecoder.h', - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder17getDefaultDecoderEv', - 'Return' => '1729333', - 'ShortName' => 'getDefaultDecoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '513', - 'Static' => 1 - }, - '1726806' => { - 'Class' => '1726371', - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder10getDecoderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'charset', - 'type' => '263006' - } - }, - 'Return' => '1729333', - 'ShortName' => 'getDecoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '553', - 'Static' => 1 - }, - '1726835' => { - 'Class' => '1726371', - 'Header' => 'charsetdecoder.h', - 'Line' => '71', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder14getUTF8DecoderEv', - 'Return' => '1729333', - 'ShortName' => 'getUTF8Decoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '530', - 'Static' => 1 - }, - '1726854' => { - 'Class' => '1726371', - 'Header' => 'charsetdecoder.h', - 'Line' => '75', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder18getISOLatinDecoderEv', - 'Return' => '1729333', - 'ShortName' => 'getISOLatinDecoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '547', - 'Static' => 1 - }, - '1726873' => { - 'Class' => '1726371', - 'Header' => 'charsetdecoder.h', - 'Line' => '86', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1731986' - }, - '1' => { - 'name' => 'p1', - 'type' => '1340866' - }, - '2' => { - 'name' => 'p2', - 'type' => '409210' - } - }, - 'PureVirt' => 1, - 'Return' => '838230', - 'ShortName' => 'decode', - 'VirtPos' => '5' - }, - '1727015' => { - 'Class' => '1726371', - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder20createDefaultDecoderEv', - 'Private' => 1, - 'Return' => '1731986', - 'ShortName' => 'createDefaultDecoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '498', - 'Static' => 1 - }, - '172710' => { - 'Class' => '151414', - 'Constructor' => 1, - 'Header' => 'andfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9AndFilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154216' - } - }, - 'ShortName' => 'AndFilter', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '45' - }, - '17275494' => { - 'Class' => '17104764', - 'Constructor' => 1, - 'Header' => 'smtpappender.h', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17111222' - } - }, - 'ShortName' => 'SMTPAppender', - 'Source' => 'smtpappender.cpp', - 'SourceLine' => '427' - }, - '1727990' => { - 'Class' => '1727900', - 'InLine' => 2, - 'Line' => '244', - 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1732138' - }, - '1' => { - 'name' => 'in', - 'type' => '1340866' - }, - '2' => { - 'name' => 'out', - 'type' => '409210' - } - }, - 'Return' => '838230', - 'ShortName' => 'decode', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1728203' => { - 'Class' => '1728110', - 'InLine' => 2, - 'Line' => '339', - 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1732249' - }, - '1' => { - 'name' => 'in', - 'type' => '1340866' - }, - '2' => { - 'name' => 'out', - 'type' => '409210' - } - }, - 'Private' => 1, - 'Return' => '838230', - 'ShortName' => 'decode', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1728417' => { - 'Class' => '1728324', - 'InLine' => 2, - 'Line' => '385', - 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1732360' - }, - '1' => { - 'name' => 'in', - 'type' => '1340866' - }, - '2' => { - 'name' => 'out', - 'type' => '409210' - } - }, - 'Private' => 1, - 'Return' => '838230', - 'ShortName' => 'decode', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1728652' => { - 'Class' => '1728538', - 'InLine' => 2, - 'Line' => '434', - 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1732471' - }, - '1' => { - 'name' => 'in', - 'type' => '1340866' - }, - '2' => { - 'name' => 'out', - 'type' => '409210' - } - }, - 'Return' => '838230', - 'ShortName' => 'decode', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1728849' => { - 'Class' => '1728754', - 'InLine' => 2, - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1732582' - }, - '1' => { - 'name' => 'in', - 'type' => '1340866' - }, - '2' => { - 'name' => 'out', - 'type' => '409210' - } - }, - 'Return' => '838230', - 'ShortName' => 'decode', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '17296003' => { - 'Class' => '17104111', + '24329048' => { + 'Artificial' => 1, + 'Class' => '565607', 'Constructor' => 1, - 'Line' => '418', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluatorC1Ev', + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110219' + 'type' => '24286116' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DefaultEvaluator', - 'Source' => 'smtpappender.cpp' + 'ShortName' => 'ClazzLoggerRepository' }, - '17296161' => { - 'Class' => '17104111', - 'Constructor' => 1, - 'Line' => '418', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluatorC2Ev', + '24329703' => { + 'Artificial' => 1, + 'Class' => '565902', + 'Destructor' => 1, + 'Header' => 'loggerfactory.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110219' + 'type' => '24286141' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DefaultEvaluator', - 'Source' => 'smtpappender.cpp' + 'ShortName' => 'ClazzLoggerFactory', + 'Virt' => 1 }, - '17296256' => { + '24329704' => { 'Artificial' => 1, - 'Class' => '9238623', + 'Class' => '565902', 'Destructor' => 1, - 'Header' => 'triggeringeventevaluator.h', + 'Header' => 'loggerfactory.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorD2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110173' + 'type' => '24286141' } }, - 'ShortName' => 'TriggeringEventEvaluator', + 'ShortName' => 'ClazzLoggerFactory', 'Virt' => 1 }, - '17296257' => { + '24329848' => { 'Artificial' => 1, - 'Class' => '9238623', + 'Class' => '565902', 'Destructor' => 1, - 'Header' => 'triggeringeventevaluator.h', + 'Header' => 'loggerfactory.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorD0Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110173' + 'type' => '24286141' } }, - 'ShortName' => 'TriggeringEventEvaluator', + 'ShortName' => 'ClazzLoggerFactory', 'Virt' => 1 }, - '17296329' => { + '24329942' => { 'Artificial' => 1, - 'Class' => '9238623', + 'Class' => '565902', 'Constructor' => 1, - 'Header' => 'triggeringeventevaluator.h', + 'Header' => 'loggerfactory.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorC2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110173' + 'type' => '24286141' } }, - 'ShortName' => 'TriggeringEventEvaluator' + 'ShortName' => 'ClazzLoggerFactory' }, - '17296330' => { + '24329943' => { 'Artificial' => 1, - 'Class' => '9238623', + 'Class' => '565902', 'Constructor' => 1, - 'Header' => 'triggeringeventevaluator.h', + 'Header' => 'loggerfactory.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorC1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110173' + 'type' => '24286141' } }, - 'ShortName' => 'TriggeringEventEvaluator' + 'ShortName' => 'ClazzLoggerFactory' }, - '1729775' => { - 'Data' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7classes26CharsetDecoderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'CharsetDecoderRegistration', - 'Source' => 'charsetdecoder.cpp' - }, - '17299756' => { + '24330598' => { 'Artificial' => 1, - 'Class' => '17104130', + 'Class' => '566036', 'Destructor' => 1, + 'Header' => 'appenderattachable.h', 'InLine' => 1, - 'Line' => '357', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD0Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111296' + 'type' => '24286201' } }, - 'ShortName' => 'ClazzDefaultEvaluator', - 'Source' => 'smtpappender.cpp', + 'ShortName' => 'ClazzAppenderAttachable', 'Virt' => 1 }, - '17299757' => { + '24330599' => { 'Artificial' => 1, - 'Class' => '17104130', + 'Class' => '566036', 'Destructor' => 1, + 'Header' => 'appenderattachable.h', 'InLine' => 1, - 'Line' => '357', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD1Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111296' + 'type' => '24286201' } }, - 'ShortName' => 'ClazzDefaultEvaluator', - 'Source' => 'smtpappender.cpp', + 'ShortName' => 'ClazzAppenderAttachable', 'Virt' => 1 }, - '17299899' => { + '24330743' => { 'Artificial' => 1, - 'Class' => '17104130', + 'Class' => '566036', 'Destructor' => 1, + 'Header' => 'appenderattachable.h', 'InLine' => 1, - 'Line' => '357', - 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD2Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111296' + 'type' => '24286201' } }, - 'ShortName' => 'ClazzDefaultEvaluator', - 'Source' => 'smtpappender.cpp', + 'ShortName' => 'ClazzAppenderAttachable', 'Virt' => 1 }, - '17309525' => { + '24330837' => { 'Artificial' => 1, - 'Class' => '17104782', - 'Destructor' => 1, - 'Header' => 'smtpappender.h', + 'Class' => '566036', + 'Constructor' => 1, + 'Header' => 'appenderattachable.h', 'InLine' => 1, - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD0Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111354' + 'type' => '24286201' } }, - 'ShortName' => 'ClazzSMTPAppender', - 'Virt' => 1 + 'ShortName' => 'ClazzAppenderAttachable' }, - '17309526' => { + '24330838' => { 'Artificial' => 1, - 'Class' => '17104782', - 'Destructor' => 1, - 'Header' => 'smtpappender.h', + 'Class' => '566036', + 'Constructor' => 1, + 'Header' => 'appenderattachable.h', 'InLine' => 1, - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD1Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111354' + 'type' => '24286201' } }, - 'ShortName' => 'ClazzSMTPAppender', - 'Virt' => 1 + 'ShortName' => 'ClazzAppenderAttachable' }, - '17309667' => { + '24331493' => { 'Artificial' => 1, - 'Class' => '17104782', + 'Class' => '567956', 'Destructor' => 1, - 'Header' => 'smtpappender.h', + 'Header' => 'appender.h', 'InLine' => 1, - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD2Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111354' + 'type' => '24286221' } }, - 'ShortName' => 'ClazzSMTPAppender', + 'ShortName' => 'ClazzAppender', 'Virt' => 1 }, - '17309757' => { + '24331494' => { 'Artificial' => 1, - 'Class' => '17104782', - 'Constructor' => 1, - 'Header' => 'smtpappender.h', + 'Class' => '567956', + 'Destructor' => 1, + 'Header' => 'appender.h', 'InLine' => 1, - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderC2Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111354' + 'type' => '24286221' } }, - 'ShortName' => 'ClazzSMTPAppender' + 'ShortName' => 'ClazzAppender', + 'Virt' => 1 }, - '17309758' => { + '24331638' => { 'Artificial' => 1, - 'Class' => '17104782', - 'Constructor' => 1, - 'Header' => 'smtpappender.h', + 'Class' => '567956', + 'Destructor' => 1, + 'Header' => 'appender.h', 'InLine' => 1, - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderC1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17111354' + 'type' => '24286221' } }, - 'ShortName' => 'ClazzSMTPAppender' + 'ShortName' => 'ClazzAppender', + 'Virt' => 1 }, - '17381530' => { - 'Class' => '3411726', - 'Const' => 1, - 'Header' => 'strftimedateformat.h', - 'MnglName' => '_ZNK7log4cxx7helpers18StrftimeDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE', + '24331732' => { + 'Artificial' => 1, + 'Class' => '567956', + 'Constructor' => 1, + 'Header' => 'appender.h', + 'InLine' => 1, + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17383150' - }, - '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'time', - 'type' => '649587' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '24286221' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'strftimedateformat.cpp', - 'SourceLine' => '51', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'ClazzAppender' }, - '17381580' => { - 'Class' => '3411726', - 'Header' => 'strftimedateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', + '24331733' => { + 'Artificial' => 1, + 'Class' => '567956', + 'Constructor' => 1, + 'Header' => 'appender.h', + 'InLine' => 1, + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17383133' - }, - '1' => { - 'name' => 'zone', - 'type' => '1576811' + 'type' => '24286221' } }, - 'Return' => '1', - 'ShortName' => 'setTimeZone', - 'Source' => 'strftimedateformat.cpp', - 'SourceLine' => '70', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'ClazzAppender' }, - '17393874' => { - 'Class' => '3411726', + '24332458' => { + 'Artificial' => 1, + 'Class' => '566170', 'Destructor' => 1, - 'Header' => 'strftimedateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatD0Ev', + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17383133' + 'type' => '24286241' } }, - 'ShortName' => 'StrftimeDateFormat', - 'Source' => 'strftimedateformat.cpp', - 'SourceLine' => '46', + 'ShortName' => 'ClazzOptionHandler', 'Virt' => 1 }, - '17393875' => { - 'Class' => '3411726', + '24332459' => { + 'Artificial' => 1, + 'Class' => '566170', 'Destructor' => 1, - 'Header' => 'strftimedateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatD1Ev', + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17383133' + 'type' => '24286241' } }, - 'ShortName' => 'StrftimeDateFormat', - 'Source' => 'strftimedateformat.cpp', - 'SourceLine' => '46', + 'ShortName' => 'ClazzOptionHandler', 'Virt' => 1 }, - '17393968' => { - 'Class' => '3411726', + '24332603' => { + 'Artificial' => 1, + 'Class' => '566170', 'Destructor' => 1, - 'Header' => 'strftimedateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatD2Ev', + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17383133' + 'type' => '24286241' } }, - 'ShortName' => 'StrftimeDateFormat', - 'Source' => 'strftimedateformat.cpp', - 'SourceLine' => '46', + 'ShortName' => 'ClazzOptionHandler', 'Virt' => 1 }, - '17395638' => { - 'Class' => '3411726', + '24332697' => { + 'Artificial' => 1, + 'Class' => '566170', 'Constructor' => 1, - 'Header' => 'strftimedateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17383133' - }, - '1' => { - 'name' => 'fmt', - 'type' => '263006' + 'type' => '24286241' } }, - 'ShortName' => 'StrftimeDateFormat', - 'Source' => 'strftimedateformat.cpp', - 'SourceLine' => '40' + 'ShortName' => 'ClazzOptionHandler' }, - '17395639' => { - 'Class' => '3411726', + '24332698' => { + 'Artificial' => 1, + 'Class' => '566170', 'Constructor' => 1, - 'Header' => 'strftimedateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17383133' - }, - '1' => { - 'name' => 'fmt', - 'type' => '263006' + 'type' => '24286241' } }, - 'ShortName' => 'StrftimeDateFormat', - 'Source' => 'strftimedateformat.cpp', - 'SourceLine' => '40' + 'ShortName' => 'ClazzOptionHandler' }, - '1748024' => { - 'Artificial' => 1, - 'Class' => '1728538', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '428', - 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetDecoderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1732471' - } - }, - 'ShortName' => 'LocaleCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 - }, - '1748025' => { - 'Artificial' => 1, - 'Class' => '1728538', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '428', - 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetDecoderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1732471' - } - }, - 'ShortName' => 'LocaleCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 - }, - '1748171' => { - 'Artificial' => 1, - 'Class' => '1728538', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '428', - 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetDecoderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1732471' - } - }, - 'ShortName' => 'LocaleCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 - }, - '17583547' => { - 'Class' => '17583426', - 'Const' => 1, - 'Header' => 'stringmatchfilter.h', - 'InLine' => 2, - 'Line' => '55', - 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter7getNameB5cxx11Ev', + '24333353' => { + 'Artificial' => 1, + 'Class' => '209529', + 'Destructor' => 1, + 'Header' => 'object.h', + 'InLine' => 1, + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586637' + 'type' => '24286345' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzObject', + 'Virt' => 1 }, - '17583586' => { - 'Class' => '17583426', - 'Const' => 1, - 'Header' => 'stringmatchfilter.h', - 'InLine' => 2, - 'Line' => '55', - 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv', + '24333354' => { + 'Artificial' => 1, + 'Class' => '209529', + 'Destructor' => 1, + 'Header' => 'object.h', + 'InLine' => 1, + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586637' + 'type' => '24286345' } }, - 'Return' => '17586528', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzObject', + 'Virt' => 1 }, - '17583625' => { + '24333498' => { 'Artificial' => 1, - 'Class' => '17583426', - 'Header' => 'stringmatchfilter.h', - 'InLine' => 2, - 'Line' => '55', - 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv', + 'Class' => '209529', + 'Destructor' => 1, + 'Header' => 'object.h', + 'InLine' => 1, + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586637' + 'type' => '24286345' } }, - 'Return' => '17586528', - 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv' + 'ShortName' => 'ClazzObject', + 'Virt' => 1 }, - '17583869' => { - 'Class' => '17583408', - 'Const' => 1, - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter8getClassEv', + '24333592' => { + 'Artificial' => 1, + 'Class' => '209529', + 'Constructor' => 1, + 'Header' => 'object.h', + 'InLine' => 1, + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586562' + 'type' => '24286345' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '42', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'ClazzObject' }, - '17583908' => { - 'Class' => '17583408', - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '42', - 'Static' => 1 - }, - '17583925' => { - 'Class' => '17583408', - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '42', - 'Static' => 1 - }, - '17583942' => { - 'Class' => '17583408', - 'Const' => 1, - 'Header' => 'stringmatchfilter.h', - 'InLine' => 2, - 'Line' => '56', - 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter4castERKNS_7helpers5ClassE', + '24333593' => { + 'Artificial' => 1, + 'Class' => '209529', + 'Constructor' => 1, + 'Header' => 'object.h', + 'InLine' => 1, + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586562' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '24286345' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzObject' }, - '17583986' => { - 'Class' => '17583408', + '24495191' => { + 'Class' => '24494847', 'Const' => 1, - 'Header' => 'stringmatchfilter.h', - 'InLine' => 2, - 'Line' => '59', - 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter10instanceofERKNS_7helpers5ClassE', + 'Header' => 'locale.h', + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx7helpers6Locale11getLanguageB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586562' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '24495759' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '210597', + 'ShortName' => 'getLanguage', + 'Source' => 'locale.cpp', + 'SourceLine' => '64' }, - '17584110' => { - 'Class' => '17583408', - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '24495222' => { + 'Class' => '24494847', + 'Const' => 1, + 'Header' => 'locale.h', + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7helpers6Locale10getCountryB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586534' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '24495759' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '51', - 'Virt' => 1, - 'VirtPos' => '6' + 'Return' => '210597', + 'ShortName' => 'getCountry', + 'Source' => 'locale.cpp', + 'SourceLine' => '69' }, - '17584156' => { - 'Class' => '17583408', - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter16setStringToMatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '24495253' => { + 'Class' => '24494847', + 'Const' => 1, + 'Header' => 'locale.h', + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers6Locale10getVariantB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586534' - }, - '1' => { - 'name' => 'stringToMatch1', - 'type' => '263006' + 'type' => '24495759' } }, - 'Return' => '1', - 'ShortName' => 'setStringToMatch', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '96' + 'Return' => '210597', + 'ShortName' => 'getVariant', + 'Source' => 'locale.cpp', + 'SourceLine' => '74' }, - '17584188' => { - 'Class' => '17583408', - 'Const' => 1, - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter16getStringToMatchB5cxx11Ev', + '24502120' => { + 'Class' => '24494847', + 'Destructor' => 1, + 'Header' => 'locale.h', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers6LocaleD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586562' + 'type' => '24495749' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getStringToMatch', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '101' + 'ShortName' => 'Locale', + 'Source' => 'locale.cpp', + 'SourceLine' => '62' }, - '17584219' => { - 'Class' => '17583408', - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter16setAcceptOnMatchEb', + '24504519' => { + 'Class' => '24494847', + 'Constructor' => 1, + 'Header' => 'locale.h', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx7helpers6LocaleC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586534' + 'type' => '24495749' }, '1' => { - 'name' => 'acceptOnMatch1', - 'type' => '50284' + 'name' => 'language1', + 'type' => '210597' + }, + '2' => { + 'name' => 'country1', + 'type' => '210597' + }, + '3' => { + 'name' => 'variant1', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setAcceptOnMatch', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '106' + 'ShortName' => 'Locale', + 'Source' => 'locale.cpp', + 'SourceLine' => '56' }, - '17584251' => { - 'Class' => '17583408', - 'Const' => 1, - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter16getAcceptOnMatchEv', + '24504520' => { + 'Class' => '24494847', + 'Constructor' => 1, + 'Header' => 'locale.h', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx7helpers6LocaleC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586562' + 'type' => '24495749' + }, + '1' => { + 'name' => 'language1', + 'type' => '210597' + }, + '2' => { + 'name' => 'country1', + 'type' => '210597' + }, + '3' => { + 'name' => 'variant1', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAcceptOnMatch', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '111' + 'ShortName' => 'Locale', + 'Source' => 'locale.cpp', + 'SourceLine' => '56' }, - '17584282' => { - 'Class' => '17583408', - 'Const' => 1, - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', + '24508564' => { + 'Class' => '24494847', + 'Constructor' => 1, + 'Header' => 'locale.h', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers6LocaleC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586562' + 'type' => '24495749' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'language1', + 'type' => '210597' + }, + '2' => { + 'name' => 'country1', + 'type' => '210597' } }, - 'Return' => '151101', - 'ShortName' => 'decide', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '67', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '17584339' => { - 'Data' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7classes29StringMatchFilterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'StringMatchFilterRegistration', - 'Source' => 'stringmatchfilter.cpp' + 'ShortName' => 'Locale', + 'Source' => 'locale.cpp', + 'SourceLine' => '51' }, - '17593990' => { - 'Artificial' => 1, - 'Class' => '17583652', - 'Destructor' => 1, - 'InLine' => 1, + '24508565' => { + 'Class' => '24494847', + 'Constructor' => 1, + 'Header' => 'locale.h', 'Line' => '32', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD0Ev', + 'MnglName' => '_ZN7log4cxx7helpers6LocaleC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586090' + 'type' => '24495749' + }, + '1' => { + 'name' => 'language1', + 'type' => '210597' + }, + '2' => { + 'name' => 'country1', + 'type' => '210597' } }, - 'ShortName' => 'StringMatchFilterPrivate', - 'Source' => 'stringmatchfilter.cpp', - 'Virt' => 1 + 'ShortName' => 'Locale', + 'Source' => 'locale.cpp', + 'SourceLine' => '51' }, - '17593991' => { - 'Artificial' => 1, - 'Class' => '17583652', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD1Ev', + '24512060' => { + 'Class' => '24494847', + 'Constructor' => 1, + 'Header' => 'locale.h', + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers6LocaleC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586090' + 'type' => '24495749' + }, + '1' => { + 'name' => 'language1', + 'type' => '210597' } }, - 'ShortName' => 'StringMatchFilterPrivate', - 'Source' => 'stringmatchfilter.cpp', - 'Virt' => 1 + 'ShortName' => 'Locale', + 'Source' => 'locale.cpp', + 'SourceLine' => '46' }, - '17595375' => { - 'Artificial' => 1, - 'Class' => '17583652', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD2Ev', + '24512061' => { + 'Class' => '24494847', + 'Constructor' => 1, + 'Header' => 'locale.h', + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers6LocaleC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586090' + 'type' => '24495749' + }, + '1' => { + 'name' => 'language1', + 'type' => '210597' } }, - 'ShortName' => 'StringMatchFilterPrivate', - 'Source' => 'stringmatchfilter.cpp', - 'Virt' => 1 + 'ShortName' => 'Locale', + 'Source' => 'locale.cpp', + 'SourceLine' => '46' }, - '17598411' => { + '24675590' => { 'Artificial' => 1, - 'Class' => '17581769', + 'Class' => '24668421', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17585965' + 'type' => '24668889' } }, 'ShortName' => 'WideLife' }, - '17598412' => { + '24675591' => { 'Artificial' => 1, - 'Class' => '17581769', + 'Class' => '24668421', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17585965' + 'type' => '24668889' } }, 'ShortName' => 'WideLife' }, - '17598552' => { + '24675658' => { 'Artificial' => 1, - 'Class' => '17581769', + 'Class' => '24668421', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17585965' + 'type' => '24668889' } }, 'ShortName' => 'WideLife' }, - '17598553' => { + '24675659' => { 'Artificial' => 1, - 'Class' => '17581769', + 'Class' => '24668421', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17585965' + 'type' => '24668889' } }, 'ShortName' => 'WideLife' }, - '17601238' => { - 'Class' => '17583408', - 'Destructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17586534' - } - }, - 'ShortName' => 'StringMatchFilter', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '49', - 'Virt' => 1 - }, - '17601336' => { - 'Class' => '17583408', - 'Destructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17586534' - } - }, - 'ShortName' => 'StringMatchFilter', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '49', - 'Virt' => 1 - }, - '17601530' => { - 'Class' => '17583408', - 'Destructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17586534' - } - }, - 'ShortName' => 'StringMatchFilter', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '49', - 'Virt' => 1 - }, - '17601660' => { - 'Class' => '17583408', - 'Constructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17586534' - } - }, - 'ShortName' => 'StringMatchFilter', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '44' - }, - '17605624' => { - 'Class' => '17583408', - 'Constructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17586534' - } - }, - 'ShortName' => 'StringMatchFilter', - 'Source' => 'stringmatchfilter.cpp', - 'SourceLine' => '44' - }, - '17613359' => { - 'Artificial' => 1, - 'Class' => '17583426', - 'Destructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'InLine' => 1, - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17586626' - } - }, - 'ShortName' => 'ClazzStringMatchFilter', - 'Virt' => 1 - }, - '17613360' => { - 'Artificial' => 1, - 'Class' => '17583426', - 'Destructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'InLine' => 1, - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17586626' - } - }, - 'ShortName' => 'ClazzStringMatchFilter', - 'Virt' => 1 - }, - '17613500' => { - 'Artificial' => 1, - 'Class' => '17583426', - 'Destructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'InLine' => 1, - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17586626' - } - }, - 'ShortName' => 'ClazzStringMatchFilter', - 'Virt' => 1 - }, - '17613590' => { - 'Artificial' => 1, - 'Class' => '17583426', + '24681736' => { + 'Class' => '564239', 'Constructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'InLine' => 1, - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterC2Ev', + 'Header' => 'locationinfo.h', + 'Line' => '93', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17586626' + 'type' => '21204963' + }, + '1' => { + 'name' => 'src', + 'type' => '573016' } }, - 'ShortName' => 'ClazzStringMatchFilter' + 'ShortName' => 'LocationInfo', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '69' }, - '17613591' => { - 'Artificial' => 1, - 'Class' => '17583426', + '24681815' => { + 'Class' => '564239', 'Constructor' => 1, - 'Header' => 'stringmatchfilter.h', - 'InLine' => 1, - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17586626' - } - }, - 'ShortName' => 'ClazzStringMatchFilter' - }, - '176364' => { - 'Class' => '151414', - 'Constructor' => 1, - 'Header' => 'andfilter.h', - 'MnglName' => '_ZN7log4cxx6filter9AndFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154216' - } - }, - 'ShortName' => 'AndFilter', - 'Source' => 'andfilter.cpp', - 'SourceLine' => '45' - }, - '17684247' => { - 'Class' => '14540867', - 'Destructor' => 1, - 'Header' => 'stringtokenizer.h', - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizerD2Ev', + 'Header' => 'locationinfo.h', + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17672658' + 'type' => '21204963' } }, - 'ShortName' => 'StringTokenizer', - 'Source' => 'stringtokenizer.cpp', - 'SourceLine' => '42' + 'ShortName' => 'LocationInfo', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '57' }, - '17685948' => { - 'Class' => '14540867', + '24681935' => { + 'Class' => '564239', 'Constructor' => 1, - 'Header' => 'stringtokenizer.h', - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizerC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Header' => 'locationinfo.h', + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC2EPKcS3_S3_i', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17672658' + 'type' => '21204963' }, '1' => { - 'name' => 'str', - 'type' => '263006' + 'name' => 'fileName1', + 'type' => '191623' }, '2' => { - 'name' => 'delim1', - 'type' => '263006' - } - }, - 'ShortName' => 'StringTokenizer', - 'Source' => 'stringtokenizer.cpp', - 'SourceLine' => '37' - }, - '17685949' => { - 'Class' => '14540867', - 'Constructor' => 1, - 'Header' => 'stringtokenizer.h', - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizerC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17672658' + 'name' => 'shortFileName1', + 'type' => '191623' }, - '1' => { - 'name' => 'str', - 'type' => '263006' + '3' => { + 'name' => 'methodName1', + 'type' => '191623' }, - '2' => { - 'name' => 'delim1', - 'type' => '263006' + '4' => { + 'name' => 'lineNumber1', + 'type' => '190263' } }, - 'ShortName' => 'StringTokenizer', - 'Source' => 'stringtokenizer.cpp', - 'SourceLine' => '37' + 'ShortName' => 'LocationInfo', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '43' }, - '1777469' => { - 'Artificial' => 1, - 'Class' => '1727446', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEEC2IPNS0_21TrivialCharsetDecoderEJEEEOT_DpOT0_', + '2499609' => { + 'Class' => '1374417', + 'Const' => 1, + 'Header' => 'exception.h', + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7helpers9Exception4whatEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732038' - }, - '1' => { - 'name' => 'arg0', - 'type' => '1777409' + 'type' => '11525271' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '1732132' - } - } + 'Return' => '191618', + 'ShortName' => 'what', + 'Source' => 'exception.cpp', + 'SourceLine' => '80', + 'Virt' => 1, + 'VirtPos' => '2' }, - '1777470' => { - 'Artificial' => 1, - 'Class' => '1727446', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEEC1IPNS0_21TrivialCharsetDecoderEJEEEOT_DpOT0_', + '2500998' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'Line' => '76', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility16preStartFunctionEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732038' - }, - '1' => { - 'name' => 'arg0', - 'type' => '1777409' + 'type' => '2520206' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '1732132' - } - } - }, - '1777875' => { - 'Artificial' => 1, - 'Class' => '1727446', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEED2Ev', + 'Private' => 1, + 'Return' => '2501376', + 'ShortName' => 'preStartFunction', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '186' + }, + '2501028' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility21threadStartedFunctionB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732038' + 'type' => '2520206' } }, - 'ShortName' => 'WideLife' - }, - '1777876' => { - 'Artificial' => 1, - 'Class' => '1727446', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEED0Ev', + 'Private' => 1, + 'Return' => '2501388', + 'ShortName' => 'threadStartedFunction', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '191' + }, + '2501058' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'Line' => '78', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility17postStartFunctionEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732038' + 'type' => '2520206' } }, - 'ShortName' => 'WideLife' + 'Private' => 1, + 'Return' => '2501400', + 'ShortName' => 'postStartFunction', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '196' + }, + '2501133' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'Line' => '84', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility8instanceEv', + 'Return' => '2520201', + 'ShortName' => 'instance', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '69', + 'Static' => 1 }, - '1778672' => { - 'Artificial' => 1, - 'Class' => '1727446', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEEC2IPS3_JEEEOT_DpOT0_', + '2501149' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'Line' => '90', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility9configureENS0_23ThreadConfigurationTypeE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '1732038' - }, - '1' => { - 'name' => 'arg0', - 'type' => '1778612' + 'name' => 'type', + 'type' => '2500911' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '1731986' - } - } + 'Return' => '1', + 'ShortName' => 'configure', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '75', + 'Static' => 1 }, - '1778673' => { - 'Artificial' => 1, - 'Class' => '1727446', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEEC1IPS3_JEEEOT_DpOT0_', + '2501171' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'Line' => '97', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility14configureFuncsESt8functionIFvvEES2_IFvNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENSt6thread2idEmEES4_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732038' + 'type' => '2520206' }, '1' => { - 'name' => 'arg0', - 'type' => '1778612' + 'name' => 'pre_start', + 'type' => '2501376' + }, + '2' => { + 'name' => 'started', + 'type' => '2501388' + }, + '3' => { + 'name' => 'post_start', + 'type' => '2501400' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '1731986' - } - } + 'Return' => '1', + 'ShortName' => 'configureFuncs', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '109' }, - '1779309' => { - 'Artificial' => 1, - 'Class' => '1726009', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEED2Ev', + '2501213' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'Line' => '106', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility21preThreadBlockSignalsEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731721' + 'type' => '2520206' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'preThreadBlockSignals', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '118' }, - '1779310' => { - 'Artificial' => 1, - 'Class' => '1726009', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEED0Ev', + '2501240' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility23threadStartedNameThreadENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENSt6thread2idEm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731721' + 'type' => '2520206' + }, + '1' => { + 'name' => 'threadName', + 'type' => '209661' + }, + '2' => { + 'name' => 'p2', + 'type' => '1797937' + }, + '3' => { + 'name' => 'nativeHandle', + 'type' => '1798024' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'threadStartedNameThread', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '137' }, - '1779451' => { - 'Artificial' => 1, - 'Class' => '1726009', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEEC2Ev', + '2501282' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'Line' => '121', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility24postThreadUnblockSignalsEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731721' + 'type' => '2520206' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'postThreadUnblockSignals', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '169' }, - '1779452' => { - 'Artificial' => 1, - 'Class' => '1726009', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEEC1Ev', + '2501309' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility12createThreadIMNS_13AsyncAppenderEFvvEJPS3_EEESt6threadNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731721' + 'type' => '2520206' + }, + '1' => { + 'name' => 'name', + 'type' => '209661' + }, + '2' => { + 'name' => 'f', + 'type' => '2527404' + }, + '3' => { + 'name' => 'p3', + 'type' => '2527409' } }, - 'ShortName' => 'WideLife' - }, - '17841789' => { - 'Class' => '17841669', - 'Const' => 1, - 'Header' => 'systemerrwriter.h', - 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriter7getNameB5cxx11Ev', - 'Param' => { + 'Return' => '1797924', + 'ShortName' => 'createThread', + 'TParam' => { '0' => { - 'name' => 'this', - 'type' => '17843550' + 'key' => 'Function', + 'type' => '2523392' + }, + '1' => { + 'key' => undef, + 'type' => '2523382' } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '17841828' => { - 'Class' => '17841669', - 'Const' => 1, - 'Header' => 'systemerrwriter.h', + } + }, + '25025088' => { + 'Artificial' => 1, + 'Class' => '5660239', + 'Header' => 'locationinfofilter.h', 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriter11newInstanceEv', + 'Line' => '45', + 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843550' + 'type' => '25034968' } }, - 'Return' => '2849949', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '5679693', + 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv' }, - '17841877' => { - 'Class' => '2842816', + '25025356' => { + 'Class' => '5660230', 'Const' => 1, - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter8getClassEv', + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843505' + 'type' => '25034899' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '30', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '48', 'Virt' => 1, 'VirtPos' => '2' }, - '17841916' => { - 'Class' => '2842816', - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter14getStaticClassEv', - 'Return' => '64678', + '25025393' => { + 'Class' => '5660230', + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '30', - 'Static' => 1 - }, - '17841933' => { - 'Class' => '2842816', - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '30', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '48', 'Static' => 1 }, - '17841950' => { - 'Class' => '2842816', + '25025425' => { + 'Class' => '5660230', 'Const' => 1, - 'Header' => 'systemerrwriter.h', + 'Header' => 'locationinfofilter.h', 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter4castERKNS0_5ClassE', + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843505' + 'type' => '25034899' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '17841994' => { - 'Class' => '2842816', + '25025467' => { + 'Class' => '5660230', 'Const' => 1, - 'Header' => 'systemerrwriter.h', + 'Header' => 'locationinfofilter.h', 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter10instanceofERKNS0_5ClassE', + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843505' + 'type' => '25034899' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '17842102' => { - 'Class' => '2842816', - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5closeERNS0_4PoolE', + '25025585' => { + 'Class' => '5660230', + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843516' + 'type' => '25034874' }, '1' => { - 'name' => 'p1', - 'type' => '64643' + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '40', + 'ShortName' => 'setOption', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '57', 'Virt' => 1, - 'VirtPos' => '5' + 'VirtPos' => '6' }, - '17842142' => { - 'Class' => '2842816', - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5flushERNS0_4PoolE', + '25025629' => { + 'Class' => '5660230', + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter13setLineNumberEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843516' + 'type' => '25034874' }, '1' => { - 'name' => 'p1', - 'type' => '64643' + 'name' => 'lineNum', + 'type' => '190263' } }, - 'Reg' => { - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '44', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'setLineNumber', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '134' }, - '17842182' => { - 'Class' => '2842816', - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', + '25025660' => { + 'Class' => '5660230', + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter13setMethodNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843516' + 'type' => '25034874' }, '1' => { - 'name' => 'str', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'name' => 'methodName', + 'type' => '210597' } }, - 'Reg' => { - '2' => 'rdx' - }, 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '49', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'setMethodName', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '138' }, - '17842227' => { - 'Class' => '2842816', - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '25025691' => { + 'Class' => '5660230', + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter16setAcceptOnMatchEb', 'Param' => { '0' => { - 'name' => 'str', - 'type' => '263006' + 'name' => 'this', + 'type' => '25034874' + }, + '1' => { + 'name' => 'acceptOnMatch1', + 'type' => '174077' } }, 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '65', - 'Static' => 1 - }, - '17842250' => { - 'Class' => '2842816', - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5flushEv', - 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '81', - 'Static' => 1 - }, - '17842330' => { - 'Class' => '2842816', - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter6isWideEv', - 'Private' => 1, - 'Return' => '50284', - 'ShortName' => 'isWide', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '54', - 'Static' => 1 - }, - '17843135' => { - 'Data' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7classes27SystemErrWriterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'SystemErrWriterRegistration', - 'Source' => 'systemerrwriter.cpp' + 'ShortName' => 'setAcceptOnMatch', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '114' }, - '17848048' => { - 'Artificial' => 1, - 'Class' => '17841293', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEED2Ev', + '25025722' => { + 'Class' => '5660230', + 'Const' => 1, + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter16getAcceptOnMatchEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843289' + 'type' => '25034899' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'getAcceptOnMatch', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '119' }, - '17848049' => { - 'Artificial' => 1, - 'Class' => '17841293', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEED0Ev', + '25025752' => { + 'Class' => '5660230', + 'Const' => 1, + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter15getMustMatchAllEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843289' + 'type' => '25034899' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'getMustMatchAll', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '124' }, - '17848189' => { - 'Artificial' => 1, - 'Class' => '17841293', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEEC2Ev', + '25025782' => { + 'Class' => '5660230', + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter15setMustMatchAllEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843289' + 'type' => '25034874' + }, + '1' => { + 'name' => 'mustMatchAll1', + 'type' => '174077' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setMustMatchAll', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '129' }, - '17848190' => { - 'Artificial' => 1, - 'Class' => '17841293', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEEC1Ev', + '25025813' => { + 'Class' => '5660230', + 'Const' => 1, + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843289' + 'type' => '25034899' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' } }, - 'ShortName' => 'WideLife' + 'Return' => '565023', + 'ShortName' => 'decide', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '80', + 'Virt' => 1, + 'VirtPos' => '7' }, - '17853424' => { - 'Class' => '2842816', - 'Destructor' => 1, - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17843516' - } - }, - 'ShortName' => 'SystemErrWriter', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '36', - 'Virt' => 1 + '25025871' => { + 'Data' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7classes30LocationInfoFilterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LocationInfoFilterRegistration', + 'Source' => 'locationinfofilter.cpp' }, - '17853425' => { - 'Class' => '2842816', + '2502934' => { + 'Class' => '2502844', + 'Header' => 'exception.h', + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionaSERKS1_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2526424' + }, + '1' => { + 'name' => 'src', + 'type' => '2526429' + } + }, + 'Return' => '2526434', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '140' + }, + '2503126' => { + 'Class' => '2503005', + 'Header' => 'exception.h', + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionaSERKS1_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2526444' + }, + '1' => { + 'name' => 'src', + 'type' => '2526449' + } + }, + 'Return' => '2526454', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '100' + }, + '2503162' => { + 'Class' => '2503005', + 'Header' => 'exception.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeException13formatMessageB5cxx11Ei', + 'Param' => { + '0' => { + 'name' => 'stat', + 'type' => '1918053' + } + }, + 'Private' => 1, + 'Return' => '209661', + 'ShortName' => 'formatMessage', + 'Source' => 'exception.cpp', + 'SourceLine' => '106', + 'Static' => 1 + }, + '2503553' => { + 'Class' => '563933', + 'Header' => 'level.h', + 'Line' => '224', + 'MnglName' => '_ZN7log4cxx5Level8getErrorEv', + 'Return' => '567044', + 'ShortName' => 'getError', + 'Source' => 'level.cpp', + 'SourceLine' => '45', + 'Static' => 1 + }, + '2504338' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '106', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent10getMessageB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822716' + } + }, + 'Return' => '210597', + 'ShortName' => 'getMessage', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '459' + }, + '2504400' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '103', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent13getLoggerNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822716' + } + }, + 'Return' => '210597', + 'ShortName' => 'getLoggerName', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '454' + }, + '2504431' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '176', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent10getMDCCopyEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822716' + } + }, + 'Return' => '1', + 'ShortName' => 'getMDCCopy', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '285' + }, + '2504458' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '143', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent6getNDCERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822716' + }, + '1' => { + 'name' => 'dest', + 'type' => '210592' + } + }, + 'Return' => '174077', + 'ShortName' => 'getNDC', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '209' + }, + '25046034' => { + 'Artificial' => 1, + 'Class' => '25025115', 'Destructor' => 1, - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterD1Ev', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843516' + 'type' => '25034254' } }, - 'ShortName' => 'SystemErrWriter', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '36', + 'ShortName' => 'LocationInfoFilterPrivate', + 'Source' => 'locationinfofilter.cpp', 'Virt' => 1 }, - '17853519' => { - 'Class' => '2842816', + '25046035' => { + 'Artificial' => 1, + 'Class' => '25025115', 'Destructor' => 1, - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterD2Ev', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843516' + 'type' => '25034254' } }, - 'ShortName' => 'SystemErrWriter', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '36', + 'ShortName' => 'LocationInfoFilterPrivate', + 'Source' => 'locationinfofilter.cpp', 'Virt' => 1 }, - '17853609' => { - 'Class' => '2842816', - 'Constructor' => 1, - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17843516' - } - }, - 'ShortName' => 'SystemErrWriter', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '32' - }, - '17853610' => { - 'Class' => '2842816', - 'Constructor' => 1, - 'Header' => 'systemerrwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17843516' - } - }, - 'ShortName' => 'SystemErrWriter', - 'Source' => 'systemerrwriter.cpp', - 'SourceLine' => '32' - }, - '17855868' => { + '25047474' => { 'Artificial' => 1, - 'Class' => '17841669', + 'Class' => '25025115', 'Destructor' => 1, - 'Header' => 'systemerrwriter.h', 'InLine' => 1, 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD0Ev', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843539' + 'type' => '25034254' } }, - 'ShortName' => 'ClazzSystemErrWriter', + 'ShortName' => 'LocationInfoFilterPrivate', + 'Source' => 'locationinfofilter.cpp', 'Virt' => 1 }, - '17855869' => { + '25053203' => { 'Artificial' => 1, - 'Class' => '17841669', + 'Class' => '25020560', 'Destructor' => 1, - 'Header' => 'systemerrwriter.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843539' + 'type' => '25034143' } }, - 'ShortName' => 'ClazzSystemErrWriter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '17856009' => { + '25053204' => { 'Artificial' => 1, - 'Class' => '17841669', + 'Class' => '25020560', 'Destructor' => 1, - 'Header' => 'systemerrwriter.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843539' + 'type' => '25034143' } }, - 'ShortName' => 'ClazzSystemErrWriter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '17856099' => { + '25053347' => { 'Artificial' => 1, - 'Class' => '17841669', + 'Class' => '25020560', 'Constructor' => 1, - 'Header' => 'systemerrwriter.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843539' + 'type' => '25034143' } }, - 'ShortName' => 'ClazzSystemErrWriter' + 'ShortName' => 'WideLife' }, - '17856100' => { + '25053348' => { 'Artificial' => 1, - 'Class' => '17841669', + 'Class' => '25020560', 'Constructor' => 1, - 'Header' => 'systemerrwriter.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterC1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843539' + 'type' => '25034143' } }, - 'ShortName' => 'ClazzSystemErrWriter' + 'ShortName' => 'WideLife' }, - '17921399' => { - 'Class' => '17921279', - 'Const' => 1, - 'Header' => 'systemoutwriter.h', - 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriter7getNameB5cxx11Ev', + '25067421' => { + 'Class' => '5660230', + 'Destructor' => 1, + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17923160' + 'type' => '25034874' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'LocationInfoFilter', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '55', + 'Virt' => 1 }, - '17921438' => { - 'Class' => '17921279', - 'Const' => 1, - 'Header' => 'systemoutwriter.h', - 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriter11newInstanceEv', + '25067520' => { + 'Class' => '5660230', + 'Destructor' => 1, + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17923160' + 'type' => '25034874' } }, - 'Return' => '2849803', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'LocationInfoFilter', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '55', + 'Virt' => 1 }, - '17921487' => { - 'Class' => '2842400', - 'Const' => 1, - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter8getClassEv', + '25067720' => { + 'Class' => '5660230', + 'Destructor' => 1, + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17923115' + 'type' => '25034874' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '30', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '17921526' => { - 'Class' => '2842400', - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '30', - 'Static' => 1 + 'ShortName' => 'LocationInfoFilter', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '55', + 'Virt' => 1 }, - '17921543' => { - 'Class' => '2842400', - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '30', - 'Static' => 1 + '25067855' => { + 'Class' => '5660230', + 'Constructor' => 1, + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25034874' + } + }, + 'ShortName' => 'LocationInfoFilter', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '50' }, - '17921560' => { - 'Class' => '2842400', - 'Const' => 1, - 'Header' => 'systemoutwriter.h', - 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter4castERKNS0_5ClassE', + '25071320' => { + 'Class' => '5660230', + 'Constructor' => 1, + 'Header' => 'locationinfofilter.h', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17923115' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '25034874' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'LocationInfoFilter', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '50' }, - '17921604' => { - 'Class' => '2842400', - 'Const' => 1, - 'Header' => 'systemoutwriter.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter10instanceofERKNS0_5ClassE', + '25078393' => { + 'Artificial' => 1, + 'Class' => '5660239', + 'Destructor' => 1, + 'Header' => 'locationinfofilter.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17923115' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '25034958' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzLocationInfoFilter', + 'Virt' => 1 }, - '17921712' => { - 'Class' => '2842400', - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5closeERNS0_4PoolE', + '25078394' => { + 'Artificial' => 1, + 'Class' => '5660239', + 'Destructor' => 1, + 'Header' => 'locationinfofilter.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17923126' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' + 'type' => '25034958' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '40', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'ClazzLocationInfoFilter', + 'Virt' => 1 }, - '17921752' => { - 'Class' => '2842400', - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5flushERNS0_4PoolE', + '25078540' => { + 'Artificial' => 1, + 'Class' => '5660239', + 'Destructor' => 1, + 'Header' => 'locationinfofilter.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17923126' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' + 'type' => '25034958' } }, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '44', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'ClazzLocationInfoFilter', + 'Virt' => 1 }, - '17921792' => { - 'Class' => '2842400', - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', + '25078635' => { + 'Artificial' => 1, + 'Class' => '5660239', + 'Constructor' => 1, + 'Header' => 'locationinfofilter.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17923126' - }, - '1' => { - 'name' => 'str', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'type' => '25034958' } }, - 'Reg' => { - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '49', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'ClazzLocationInfoFilter' }, - '17921837' => { - 'Class' => '2842400', - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '25078636' => { + 'Artificial' => 1, + 'Class' => '5660239', + 'Constructor' => 1, + 'Header' => 'locationinfofilter.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterC1Ev', 'Param' => { '0' => { - 'name' => 'str', - 'type' => '263006' + 'name' => 'this', + 'type' => '25034958' } }, - 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '65', - 'Static' => 1 + 'ShortName' => 'ClazzLocationInfoFilter' }, - '17921860' => { - 'Class' => '2842400', - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5flushEv', - 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '81', - 'Static' => 1 - }, - '17921940' => { - 'Class' => '2842400', - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter6isWideEv', - 'Private' => 1, - 'Return' => '50284', - 'ShortName' => 'isWide', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '54', - 'Static' => 1 - }, - '17922745' => { - 'Data' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7classes27SystemOutWriterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'SystemOutWriterRegistration', - 'Source' => 'systemoutwriter.cpp' - }, - '17927658' => { - 'Artificial' => 1, - 'Class' => '17920903', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17922899' - } - }, - 'ShortName' => 'WideLife' - }, - '17927659' => { - 'Artificial' => 1, - 'Class' => '17920903', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17922899' - } - }, - 'ShortName' => 'WideLife' - }, - '17927799' => { - 'Artificial' => 1, - 'Class' => '17920903', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17922899' - } - }, - 'ShortName' => 'WideLife' - }, - '17927800' => { - 'Artificial' => 1, - 'Class' => '17920903', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17922899' - } - }, - 'ShortName' => 'WideLife' - }, - '17933034' => { - 'Class' => '2842400', - 'Destructor' => 1, - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923126' - } - }, - 'ShortName' => 'SystemOutWriter', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '36', - 'Virt' => 1 - }, - '17933035' => { - 'Class' => '2842400', - 'Destructor' => 1, - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923126' - } - }, - 'ShortName' => 'SystemOutWriter', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '36', - 'Virt' => 1 - }, - '17933129' => { - 'Class' => '2842400', - 'Destructor' => 1, - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923126' - } - }, - 'ShortName' => 'SystemOutWriter', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '36', - 'Virt' => 1 - }, - '17933219' => { - 'Class' => '2842400', - 'Constructor' => 1, - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923126' - } - }, - 'ShortName' => 'SystemOutWriter', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '32' - }, - '17933220' => { - 'Class' => '2842400', - 'Constructor' => 1, - 'Header' => 'systemoutwriter.h', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923126' - } - }, - 'ShortName' => 'SystemOutWriter', - 'Source' => 'systemoutwriter.cpp', - 'SourceLine' => '32' - }, - '17935478' => { - 'Artificial' => 1, - 'Class' => '17921279', - 'Destructor' => 1, - 'Header' => 'systemoutwriter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923149' - } - }, - 'ShortName' => 'ClazzSystemOutWriter', - 'Virt' => 1 - }, - '17935479' => { - 'Artificial' => 1, - 'Class' => '17921279', - 'Destructor' => 1, - 'Header' => 'systemoutwriter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923149' - } - }, - 'ShortName' => 'ClazzSystemOutWriter', - 'Virt' => 1 - }, - '17935619' => { - 'Artificial' => 1, - 'Class' => '17921279', - 'Destructor' => 1, - 'Header' => 'systemoutwriter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923149' - } - }, - 'ShortName' => 'ClazzSystemOutWriter', - 'Virt' => 1 - }, - '17935709' => { - 'Artificial' => 1, - 'Class' => '17921279', - 'Constructor' => 1, - 'Header' => 'systemoutwriter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923149' - } - }, - 'ShortName' => 'ClazzSystemOutWriter' - }, - '17935710' => { - 'Artificial' => 1, - 'Class' => '17921279', - 'Constructor' => 1, - 'Header' => 'systemoutwriter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17923149' - } - }, - 'ShortName' => 'ClazzSystemOutWriter' - }, - '1797180' => { - 'Class' => '1726371', - 'Destructor' => 1, - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderD0Ev', + '2507951' => { + 'Class' => '2507835', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'InLine' => 2, + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender18ClazzAsyncAppender7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731992' + 'type' => '2525110' } }, - 'ShortName' => 'CharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '494', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '1797181' => { - 'Class' => '1726371', - 'Destructor' => 1, - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderD1Ev', + '2507988' => { + 'Class' => '2507835', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'InLine' => 2, + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731992' + 'type' => '2525110' } }, - 'ShortName' => 'CharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '494', - 'Virt' => 1 + 'Return' => '2523382', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '1797274' => { - 'Class' => '1726371', - 'Destructor' => 1, - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderD2Ev', + '2508025' => { + 'Artificial' => 1, + 'Class' => '2507835', + 'Header' => 'asyncappender.h', + 'InLine' => 2, + 'Line' => '51', + 'MnglName' => '_ZTch0_h0_NK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731992' + 'type' => '2525110' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'CharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '494', - 'Virt' => 1 + 'Return' => '2523382', + 'ShortName' => '_ZTch0_h0_NK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv' }, - '1797390' => { - 'Class' => '1726371', - 'Constructor' => 1, - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderC2Ev', + '2508363' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731992' + 'type' => '2525016' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'CharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '489' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '174', + 'Virt' => 1, + 'VirtPos' => '2' }, - '1797391' => { - 'Class' => '1726371', - 'Constructor' => 1, - 'Header' => 'charsetdecoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderC1Ev', + '2508400' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '174', + 'Static' => 1 + }, + '2508416' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx13AsyncAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '174', + 'Static' => 1 + }, + '2508432' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'InLine' => 2, + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731992' + 'type' => '2525016' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'CharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'SourceLine' => '489' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '1798528' => { - 'Artificial' => 1, - 'Class' => '1728324', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '379', - 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetDecoderD0Ev', + '2508474' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'InLine' => 2, + 'Line' => '56', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732360' + 'type' => '2525016' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'USASCIICharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '1798529' => { - 'Artificial' => 1, - 'Class' => '1728324', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '379', - 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetDecoderD1Ev', + '2508594' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender11addAppenderESt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732360' + 'type' => '2523387' + }, + '1' => { + 'name' => 'newAppender', + 'type' => '946706' } }, - 'ShortName' => 'USASCIICharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'addAppender', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '188', + 'Virt' => 1, + 'VirtPos' => '5' }, - '1798675' => { - 'Artificial' => 1, - 'Class' => '1728324', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '379', - 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetDecoderD2Ev', + '2508633' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732360' + 'type' => '2523387' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'pool1', + 'type' => '210607' } }, - 'ShortName' => 'USASCIICharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'doAppend', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '218', + 'Virt' => 1, + 'VirtPos' => '12' }, - '17988156' => { - 'Class' => '17988084', - 'Header' => 'threadlocal.h', - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocal3setEPv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17988668' - }, - '1' => { - 'name' => 'priv', - 'type' => '50560' - } - }, - 'Return' => '1', - 'ShortName' => 'set', - 'Source' => 'threadlocal.cpp', - 'SourceLine' => '48' - }, - '17988189' => { - 'Class' => '17988084', - 'Header' => 'threadlocal.h', - 'Line' => '66', - 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocal3getEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17988668' - } - }, - 'Return' => '50560', - 'ShortName' => 'get', - 'Source' => 'threadlocal.cpp', - 'SourceLine' => '61' - }, - '17988286' => { - 'Class' => '17988084', - 'Header' => 'threadlocal.h', - 'Line' => '78', - 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocal6createERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Private' => 1, - 'Return' => '652173', - 'ShortName' => 'create', - 'Source' => 'threadlocal.cpp', - 'SourceLine' => '25', - 'Static' => 1 - }, - '17990170' => { - 'Class' => '17988084', - 'Destructor' => 1, - 'Header' => 'threadlocal.h', - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocalD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17988668' - } - }, - 'ShortName' => 'ThreadLocal', - 'Source' => 'threadlocal.cpp', - 'SourceLine' => '44' - }, - '17990263' => { - 'Class' => '17988084', - 'Constructor' => 1, - 'Header' => 'threadlocal.h', - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocalC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17988668' - } - }, - 'ShortName' => 'ThreadLocal', - 'Source' => 'threadlocal.cpp', - 'SourceLine' => '40' - }, - '17990264' => { - 'Class' => '17988084', - 'Constructor' => 1, - 'Header' => 'threadlocal.h', - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocalC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17988668' - } - }, - 'ShortName' => 'ThreadLocal', - 'Source' => 'threadlocal.cpp', - 'SourceLine' => '40' - }, - '1799155' => { - 'Artificial' => 1, - 'Class' => '1728110', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '334', - 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD0Ev', + '2508677' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732249' + 'type' => '2523387' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ISOLatinCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'append', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '223', + 'Virt' => 1, + 'VirtPos' => '13' }, - '1799156' => { - 'Artificial' => 1, - 'Class' => '1728110', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '334', - 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD1Ev', + '2508721' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender5closeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732249' + 'type' => '2523387' } }, - 'ShortName' => 'ISOLatinCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '302', + 'Virt' => 1, + 'VirtPos' => '14' }, - '1799302' => { - 'Artificial' => 1, - 'Class' => '1728110', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '334', - 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD2Ev', + '2508756' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender15getAllAppendersEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732249' + 'type' => '2525016' } }, - 'ShortName' => 'ISOLatinCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 + 'Return' => '946544', + 'ShortName' => 'getAllAppenders', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '328', + 'Virt' => 1, + 'VirtPos' => '6' }, - '179963' => { - 'Artificial' => 1, - 'Class' => '151305', - 'Constructor' => 1, - 'Header' => 'optionhandler.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '179913' - } - }, - 'ShortName' => 'OptionHandler' - }, - '179964' => { - 'Artificial' => 1, - 'Class' => '151305', - 'Constructor' => 1, - 'Header' => 'optionhandler.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '179913' - } - }, - 'ShortName' => 'OptionHandler' - }, - '1799978' => { - 'Artificial' => 1, - 'Class' => '1727900', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '240', - 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetDecoderD0Ev', + '2508794' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732138' + 'type' => '2525016' + }, + '1' => { + 'name' => 'n', + 'type' => '210597' } }, - 'ShortName' => 'TrivialCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 - }, - '1799979' => { - 'Artificial' => 1, - 'Class' => '1727900', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '240', - 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetDecoderD1Ev', + 'Return' => '946694', + 'ShortName' => 'getAppender', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '333', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '2508837' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender15getLocationInfoEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732138' + 'type' => '2525016' } }, - 'ShortName' => 'TrivialCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'getLocationInfo', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '363' + }, + '2508869' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender10isAttachedESt10shared_ptrINS_8AppenderEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2525016' + }, + '1' => { + 'name' => 'appender', + 'type' => '946706' + } + }, + 'Return' => '174077', + 'ShortName' => 'isAttached', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '338', + 'Virt' => 1, + 'VirtPos' => '8' + }, + '2508912' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender14requiresLayoutEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2525016' + } + }, + 'Return' => '174077', + 'ShortName' => 'requiresLayout', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '343', + 'Virt' => 1, + 'VirtPos' => '15' + }, + '2508950' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender18removeAllAppendersEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523387' + } + }, + 'Return' => '1', + 'ShortName' => 'removeAllAppenders', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '348', + 'Virt' => 1, + 'VirtPos' => '9' + }, + '2508985' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender14removeAppenderESt10shared_ptrINS_8AppenderEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523387' + }, + '1' => { + 'name' => 'appender', + 'type' => '946706' + } + }, + 'Return' => '1', + 'ShortName' => 'removeAppender', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '353', + 'Virt' => 1, + 'VirtPos' => '10' + }, + '2509025' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523387' + }, + '1' => { + 'name' => 'n', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'removeAppender', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '358', + 'Virt' => 1, + 'VirtPos' => '11' + }, + '2509065' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender15setLocationInfoEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523387' + }, + '1' => { + 'name' => 'flag', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setLocationInfo', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '368' + }, + '2509098' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender13setBufferSizeEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523387' + }, + '1' => { + 'name' => 'size', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setBufferSize', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '374' + }, + '2509131' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender13getBufferSizeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2525016' + } + }, + 'Return' => '190263', + 'ShortName' => 'getBufferSize', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '386' + }, + '2509163' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender11setBlockingEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523387' + }, + '1' => { + 'name' => 'value', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setBlocking', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '391' + }, + '2509196' => { + 'Class' => '2507817', + 'Const' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZNK7log4cxx13AsyncAppender11getBlockingEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2525016' + } + }, + 'Return' => '174077', + 'ShortName' => 'getBlocking', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '398' + }, + '2509228' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523387' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '194', + 'Virt' => 1, + 'VirtPos' => '16' + }, + '2509348' => { + 'Class' => '2507817', + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppender8dispatchEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523387' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'dispatch', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '458' + }, + '2509391' => { + 'Data' => 1, + 'Line' => '174', + 'MnglName' => '_ZN7log4cxx7classes25AsyncAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'AsyncAppenderRegistration', + 'Source' => 'asyncappender.cpp' + }, + '2521361' => { + 'Class' => '2521258', + 'Line' => '72', + 'MnglName' => '_ZN14DiscardSummaryaSERKS_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2521532' + }, + '1' => { + 'name' => 'src', + 'type' => '2521542' + } + }, + 'Return' => '2521547', + 'ShortName' => 'operator=', + 'Source' => 'asyncappender.cpp' + }, + '2521397' => { + 'Class' => '2521258', + 'Line' => '79', + 'MnglName' => '_ZN14DiscardSummary3addERKSt10shared_ptrIN7log4cxx3spi12LoggingEventEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2521532' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + } + }, + 'Return' => '1', + 'ShortName' => 'add', + 'Source' => 'asyncappender.cpp' + }, + '2521429' => { + 'Class' => '2521258', + 'Line' => '86', + 'MnglName' => '_ZN14DiscardSummary11createEventERN7log4cxx7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2521532' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '565581', + 'ShortName' => 'createEvent', + 'Source' => 'asyncappender.cpp' + }, + '2521465' => { + 'Class' => '2521258', + 'Line' => '89', + 'MnglName' => '_ZN14DiscardSummary11createEventERN7log4cxx7helpers4PoolEm', + 'Param' => { + '0' => { + 'name' => 'p', + 'type' => '210607' + }, + '1' => { + 'name' => 'discardedCount', + 'type' => '190816' + } + }, + 'Return' => '565581', + 'ShortName' => 'createEvent', + 'Source' => 'asyncappender.cpp', + 'Static' => 1 + }, + '2526509' => { + 'Class' => '564699', + 'Constructor' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '93', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEES9_RKNS0_12LocationInfoE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2523493' + }, + '1' => { + 'name' => 'logger1', + 'type' => '210597' + }, + '2' => { + 'name' => 'level1', + 'type' => '575807' + }, + '3' => { + 'name' => 'message1', + 'type' => '210597' + }, + '4' => { + 'name' => 'locationInfo1', + 'type' => '573016' + } + }, + 'ShortName' => 'LoggingEvent', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '194' + }, + '2526668' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '80', + 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2526424' + }, + '1' => { + 'name' => 'msg', + 'type' => '210597' + } + } }, - '1800124' => { + '2535909' => { 'Artificial' => 1, - 'Class' => '1727900', + 'Class' => '2502844', 'Destructor' => 1, + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '240', - 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetDecoderD2Ev', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732138' + 'type' => '2526424' } }, - 'ShortName' => 'TrivialCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', + 'ShortName' => 'IllegalArgumentException', 'Virt' => 1 }, - '180018' => { - 'Artificial' => 1, - 'Class' => '63470', - 'Constructor' => 1, - 'Header' => 'object.h', - 'InLine' => 1, - 'Line' => '105', - 'MnglName' => '_ZN7log4cxx7helpers6ObjectC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154342' - } - }, - 'ShortName' => 'Object' - }, - '180019' => { - 'Artificial' => 1, - 'Class' => '63470', - 'Constructor' => 1, - 'Header' => 'object.h', - 'InLine' => 1, - 'Line' => '105', - 'MnglName' => '_ZN7log4cxx7helpers6ObjectC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154342' - } - }, - 'ShortName' => 'Object' - }, - '1802635' => { + '2535910' => { 'Artificial' => 1, - 'Class' => '1728754', + 'Class' => '2502844', 'Destructor' => 1, + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '85', - 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetDecoderD0Ev', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732582' + 'type' => '2526424' } }, - 'ShortName' => 'APRCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', + 'ShortName' => 'IllegalArgumentException', 'Virt' => 1 }, - '1802636' => { + '2536152' => { 'Artificial' => 1, - 'Class' => '1728754', + 'Class' => '2502844', 'Destructor' => 1, + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '85', - 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetDecoderD1Ev', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732582' + 'type' => '2526424' } }, - 'ShortName' => 'APRCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', + 'ShortName' => 'IllegalArgumentException', 'Virt' => 1 }, - '1802802' => { + '2536354' => { 'Artificial' => 1, - 'Class' => '1728754', + 'Class' => '2503005', 'Destructor' => 1, + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '85', - 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetDecoderD2Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732582' + 'type' => '2526444' } }, - 'ShortName' => 'APRCharsetDecoder', - 'Source' => 'charsetdecoder.cpp', + 'ShortName' => 'RuntimeException', 'Virt' => 1 }, - '1805135' => { + '2536355' => { 'Artificial' => 1, - 'Class' => '1726389', + 'Class' => '2503005', 'Destructor' => 1, - 'Header' => 'charsetdecoder.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD0Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1734155' + 'type' => '2526444' } }, - 'ShortName' => 'ClazzCharsetDecoder', + 'ShortName' => 'RuntimeException', 'Virt' => 1 }, - '1805136' => { + '2536549' => { 'Artificial' => 1, - 'Class' => '1726389', + 'Class' => '2503005', 'Destructor' => 1, - 'Header' => 'charsetdecoder.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1734155' + 'type' => '2526444' } }, - 'ShortName' => 'ClazzCharsetDecoder', + 'ShortName' => 'RuntimeException', 'Virt' => 1 }, - '1805277' => { + '2536713' => { 'Artificial' => 1, - 'Class' => '1726389', + 'Class' => '1374417', 'Destructor' => 1, - 'Header' => 'charsetdecoder.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD2Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1734155' + 'type' => '2536672' } }, - 'ShortName' => 'ClazzCharsetDecoder', + 'ShortName' => 'Exception', 'Virt' => 1 }, - '1805367' => { + '2536714' => { 'Artificial' => 1, - 'Class' => '1726389', - 'Constructor' => 1, - 'Header' => 'charsetdecoder.h', + 'Class' => '1374417', + 'Destructor' => 1, + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderC2Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1734155' + 'type' => '2536672' } }, - 'ShortName' => 'ClazzCharsetDecoder' + 'ShortName' => 'Exception', + 'Virt' => 1 }, - '1805368' => { + '2536736' => { 'Artificial' => 1, - 'Class' => '1726389', - 'Constructor' => 1, - 'Header' => 'charsetdecoder.h', + 'Class' => '1374417', + 'Destructor' => 1, + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderC1Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers9ExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1734155' + 'type' => '2536672' } }, - 'ShortName' => 'ClazzCharsetDecoder' + 'ShortName' => 'Exception', + 'Virt' => 1 }, - '18059918' => { - 'Class' => '18059797', - 'Const' => 1, - 'Header' => 'threadpatternconverter.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18062635' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '18060047' => { - 'Class' => '18059763', - 'Header' => 'threadpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter14getStaticClassEv', - 'Return' => '64678', + '25449811' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx6Logger14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'threadpatternconverter.cpp', - 'SourceLine' => '28', + 'Source' => 'logger.cpp', + 'SourceLine' => '87', 'Static' => 1 }, - '18060064' => { - 'Class' => '18059763', - 'Header' => 'threadpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter13registerClassEv', - 'Return' => '64684', + '25449827' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'MnglName' => '_ZN7log4cxx6Logger13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'threadpatternconverter.cpp', - 'SourceLine' => '28', + 'Source' => 'logger.cpp', + 'SourceLine' => '87', 'Static' => 1 }, - '18060081' => { - 'Class' => '18059763', + '25449843' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'threadpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter8getClassEv', + 'Header' => 'logger.h', + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx6Logger8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062307' + 'type' => '25464604' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'threadpatternconverter.cpp', - 'SourceLine' => '28', + 'Source' => 'logger.cpp', + 'SourceLine' => '87', 'Virt' => 1, 'VirtPos' => '2' }, - '18060120' => { - 'Class' => '18059763', + '25449880' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'threadpatternconverter.h', + 'Header' => 'logger.h', 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter4castERKNS_7helpers5ClassE', + 'Line' => '54', + 'MnglName' => '_ZNK7log4cxx6Logger4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062307' + 'type' => '25464604' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '18060164' => { - 'Class' => '18059763', + '25449922' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'threadpatternconverter.h', + 'Header' => 'logger.h', 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter10instanceofERKNS_7helpers5ClassE', + 'Line' => '57', + 'MnglName' => '_ZNK7log4cxx6Logger10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062307' + 'type' => '25464604' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '18060245' => { - 'Class' => '18059763', - 'Header' => 'threadpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '25450077' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '85', + 'MnglName' => '_ZN7log4cxx6Logger11addAppenderESt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { - 'name' => 'p1', - 'type' => '410985' + 'name' => 'this', + 'type' => '10983089' + }, + '1' => { + 'name' => 'newAppender', + 'type' => '946706' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'threadpatternconverter.cpp', - 'SourceLine' => '36', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'addAppender', + 'Source' => 'logger.cpp', + 'SourceLine' => '99', + 'Virt' => 1, + 'VirtPos' => '5' }, - '18060273' => { - 'Class' => '18059763', + '25450116' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'threadpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger13callAppendersERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062307' + 'type' => '25464604' }, '1' => { 'name' => 'event', - 'type' => '154261' + 'type' => '576659' }, '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'name' => 'p', + 'type' => '210607' } }, - 'Reg' => { - '3' => 'rcx' - }, 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'threadpatternconverter.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '18060695' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes34ThreadPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ThreadPatternConverterRegistration', - 'Source' => 'threadpatternconverter.cpp' + 'ShortName' => 'callAppenders', + 'Source' => 'logger.cpp', + 'SourceLine' => '127' }, - '18065636' => { - 'Artificial' => 1, - 'Class' => '18059763', - 'Destructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterD0Ev', + '25450178' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5debugERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062108' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'ThreadPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'debug', + 'Source' => 'logger.cpp', + 'SourceLine' => '625' }, - '18065637' => { - 'Artificial' => 1, - 'Class' => '18059763', - 'Destructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterD2Ev', + '25450216' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5debugERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062108' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' } }, - 'ShortName' => 'ThreadPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'debug', + 'Source' => 'logger.cpp', + 'SourceLine' => '633' }, - '18065901' => { - 'Artificial' => 1, - 'Class' => '18059763', - 'Destructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterD1Ev', + '25450249' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5debugERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062108' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'ThreadPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'debug', + 'Source' => 'logger.cpp', + 'SourceLine' => '808' }, - '18075485' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_22ThreadPatternConverterEEJEEEOT_DpOT0_', + '25450287' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5debugERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '25464604' }, '1' => { - 'name' => 'arg0', - 'type' => '18062130' + 'name' => 'msg', + 'type' => '202841' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '18036911' - } - } + 'Return' => '1', + 'ShortName' => 'debug', + 'Source' => 'logger.cpp', + 'SourceLine' => '816' }, - '18075486' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_22ThreadPatternConverterEEJEEEOT_DpOT0_', + '25450320' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '25464604' }, '1' => { - 'name' => 'arg0', - 'type' => '18062130' + 'name' => 'msg', + 'type' => '202831' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '18036911' - } - } + 'Return' => '1', + 'ShortName' => 'error', + 'Source' => 'logger.cpp', + 'SourceLine' => '642' }, - '18075901' => { - 'Artificial' => 1, - 'Class' => '18058133', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEED2Ev', + '25450358' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18061800' - } - }, - 'ShortName' => 'WideLife' - }, - '18075902' => { - 'Artificial' => 1, - 'Class' => '18058133', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18061800' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'error', + 'Source' => 'logger.cpp', + 'SourceLine' => '651' }, - '18076042' => { - 'Artificial' => 1, - 'Class' => '18058133', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEEC2Ev', + '25450391' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5errorERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18061800' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'error', + 'Source' => 'logger.cpp', + 'SourceLine' => '832' }, - '18076043' => { - 'Artificial' => 1, - 'Class' => '18058133', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEEC1Ev', + '25450424' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5errorERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18061800' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'error', + 'Source' => 'logger.cpp', + 'SourceLine' => '824' }, - '18081273' => { - 'Class' => '18059763', - 'Constructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterC1Ev', + '25450462' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5fatalERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062108' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'ThreadPatternConverter', - 'Source' => 'threadpatternconverter.cpp', - 'SourceLine' => '30' + 'Return' => '1', + 'ShortName' => 'fatal', + 'Source' => 'logger.cpp', + 'SourceLine' => '659' }, - '18085390' => { - 'Class' => '18059763', - 'Constructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterC2Ev', + '25450500' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5fatalERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062108' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' } }, - 'ShortName' => 'ThreadPatternConverter', - 'Source' => 'threadpatternconverter.cpp', - 'SourceLine' => '30' + 'Return' => '1', + 'ShortName' => 'fatal', + 'Source' => 'logger.cpp', + 'SourceLine' => '667' }, - '18091425' => { - 'Artificial' => 1, - 'Class' => '18059797', - 'Destructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD0Ev', + '25450533' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5fatalERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062624' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'ClazzThreadPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'fatal', + 'Source' => 'logger.cpp', + 'SourceLine' => '840' }, - '18091426' => { - 'Artificial' => 1, - 'Class' => '18059797', - 'Destructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD1Ev', + '25450571' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5fatalERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062624' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' } }, - 'ShortName' => 'ClazzThreadPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'fatal', + 'Source' => 'logger.cpp', + 'SourceLine' => '848' }, - '18091566' => { - 'Artificial' => 1, - 'Class' => '18059797', - 'Destructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD2Ev', + '25450604' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger8addEventERKSt10shared_ptrINS_5LevelEEONSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062624' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '25464629' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'ClazzThreadPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'addEvent', + 'Source' => 'logger.cpp', + 'SourceLine' => '161' }, - '18091656' => { - 'Artificial' => 1, - 'Class' => '18059797', - 'Constructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterC2Ev', + '25450645' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger9forcedLogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062624' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '202831' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'ClazzThreadPatternConverter' + 'Return' => '1', + 'ShortName' => 'forcedLog', + 'Source' => 'logger.cpp', + 'SourceLine' => '175' }, - '18091657' => { - 'Artificial' => 1, - 'Class' => '18059797', - 'Constructor' => 1, - 'Header' => 'threadpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterC1Ev', + '25450686' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger9forcedLogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18062624' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '202831' } }, - 'ShortName' => 'ClazzThreadPatternConverter' + 'Return' => '1', + 'ShortName' => 'forcedLog', + 'Source' => 'logger.cpp', + 'SourceLine' => '190' }, - '181085' => { - 'Artificial' => 1, - 'Class' => '150962', - 'Constructor' => 1, - 'Header' => 'filter_priv.h', - 'InLine' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '153321' - } - }, - 'ShortName' => 'FilterPrivate' - }, - '181086' => { - 'Artificial' => 1, - 'Class' => '150962', - 'Constructor' => 1, - 'Header' => 'filter_priv.h', - 'InLine' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '153321' - } - }, - 'ShortName' => 'FilterPrivate' - }, - '181235' => { - 'Artificial' => 1, - 'Class' => '150962', - 'Destructor' => 1, - 'Header' => 'filter_priv.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '153321' - } - }, - 'ShortName' => 'FilterPrivate', - 'Virt' => 1 - }, - '181236' => { - 'Artificial' => 1, - 'Class' => '150962', - 'Destructor' => 1, - 'Header' => 'filter_priv.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '153321' - } - }, - 'ShortName' => 'FilterPrivate', - 'Virt' => 1 - }, - '18162590' => { - 'Class' => '18162469', + '25450722' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverter7getNameB5cxx11Ev', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger8addEventERKSt10shared_ptrINS_5LevelEEONSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18165191' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '25464634' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '18162719' => { - 'Class' => '18162451', - 'Header' => 'threadusernamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'threadusernamepatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '18162736' => { - 'Class' => '18162451', - 'Header' => 'threadusernamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'threadusernamepatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'addEvent', + 'Source' => 'logger.cpp', + 'SourceLine' => '742' }, - '18162753' => { - 'Class' => '18162451', + '25450765' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter8getClassEv', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger9forcedLogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164857' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '202841' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'threadusernamepatternconverter.cpp', - 'SourceLine' => '28', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '1', + 'ShortName' => 'forcedLog', + 'Source' => 'logger.cpp', + 'SourceLine' => '756' }, - '18162792' => { - 'Class' => '18162451', + '25450808' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter4castERKNS_7helpers5ClassE', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger9forcedLogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164857' + 'type' => '25464604' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '202841' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '1', + 'ShortName' => 'forcedLog', + 'Source' => 'logger.cpp', + 'SourceLine' => '771' }, - '18162836' => { - 'Class' => '18162451', + '25450846' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter10instanceofERKNS_7helpers5ClassE', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger10addEventLSERKSt10shared_ptrINS_5LevelEEONSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164857' + 'type' => '25464604' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '18162917' => { - 'Class' => '18162451', - 'Header' => 'threadusernamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' + 'name' => 'level', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '21209470' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'threadusernamepatternconverter.cpp', - 'SourceLine' => '36', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'addEventLS', + 'Source' => 'logger.cpp', + 'SourceLine' => '195' }, - '18162945' => { - 'Class' => '18162451', + '25450887' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger11forcedLogLSERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164857' + 'type' => '25464604' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'level1', + 'type' => '575807' }, '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' + 'name' => 'message', + 'type' => '210597' }, '3' => { - 'name' => 'p3', - 'type' => '64643' + 'name' => 'location', + 'type' => '573016' } }, - 'Reg' => { - '3' => 'rcx' - }, 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'threadusernamepatternconverter.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '18163268' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes42ThreadUsernamePatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ThreadUsernamePatternConverterRegistration', - 'Source' => 'threadusernamepatternconverter.cpp' + 'ShortName' => 'forcedLogLS', + 'Source' => 'logger.cpp', + 'SourceLine' => '204' }, - '18168192' => { - 'Artificial' => 1, - 'Class' => '18162451', - 'Destructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD0Ev', + '25450928' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger13getAdditivityEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164658' + 'type' => '25464604' } }, - 'ShortName' => 'ThreadUsernamePatternConverter', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'getAdditivity', + 'Source' => 'logger.cpp', + 'SourceLine' => '215' }, - '18168193' => { - 'Artificial' => 1, - 'Class' => '18162451', - 'Destructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD2Ev', + '25450959' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '629', + 'MnglName' => '_ZNK7log4cxx6Logger15getAllAppendersEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164658' + 'type' => '25464604' } }, - 'ShortName' => 'ThreadUsernamePatternConverter', - 'Virt' => 1 + 'Return' => '946544', + 'ShortName' => 'getAllAppenders', + 'Source' => 'logger.cpp', + 'SourceLine' => '220', + 'Virt' => 1, + 'VirtPos' => '6' }, - '18168457' => { - 'Artificial' => 1, - 'Class' => '18162451', - 'Destructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD1Ev', + '25450996' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '635', + 'MnglName' => '_ZNK7log4cxx6Logger11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164658' + 'type' => '25464604' + }, + '1' => { + 'name' => 'name1', + 'type' => '210597' } }, - 'ShortName' => 'ThreadUsernamePatternConverter', - 'Virt' => 1 + 'Return' => '946694', + 'ShortName' => 'getAppender', + 'Source' => 'logger.cpp', + 'SourceLine' => '225', + 'Virt' => 1, + 'VirtPos' => '7' }, - '18178041' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_30ThreadUsernamePatternConverterEEJEEEOT_DpOT0_', + '25451038' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '646', + 'MnglName' => '_ZNK7log4cxx6Logger17getEffectiveLevelEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '18164680' + 'type' => '25464604' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '18139345' - } - } + 'Return' => '575807', + 'ShortName' => 'getEffectiveLevel', + 'Source' => 'logger.cpp', + 'SourceLine' => '230', + 'Virt' => 1, + 'VirtPos' => '12' }, - '18178042' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_30ThreadUsernamePatternConverterEEJEEEOT_DpOT0_', + '25451138' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger7getNameERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '25464604' }, '1' => { - 'name' => 'arg0', - 'type' => '18164680' + 'name' => 'rv', + 'type' => '210602' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '18139345' - } - } + 'Return' => '1', + 'ShortName' => 'getName', + 'Source' => 'logger.cpp', + 'SourceLine' => '602' }, - '18178457' => { - 'Artificial' => 1, - 'Class' => '18160821', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEED2Ev', + '25451171' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger7getNameERNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164350' + 'type' => '25464604' + }, + '1' => { + 'name' => 'rv', + 'type' => '210622' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'getName', + 'Source' => 'logger.cpp', + 'SourceLine' => '776' }, - '18178458' => { - 'Artificial' => 1, - 'Class' => '18160821', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEED0Ev', + '25451236' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '702', + 'MnglName' => '_ZNK7log4cxx6Logger8getLevelEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164350' + 'type' => '25464604' } }, - 'ShortName' => 'WideLife' + 'Return' => '575807', + 'ShortName' => 'getLevel', + 'Source' => 'logger.cpp', + 'SourceLine' => '303' }, - '18178598' => { - 'Artificial' => 1, - 'Class' => '18160821', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEEC2Ev', + '25451268' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '708', + 'MnglName' => '_ZN7log4cxx6Logger9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '18164350' + 'name' => 'name', + 'type' => '202831' } }, - 'ShortName' => 'WideLife' + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'logger.cpp', + 'SourceLine' => '575', + 'Static' => 1 }, - '18178599' => { - 'Artificial' => 1, - 'Class' => '18160821', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEEC1Ev', + '25451296' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '713', + 'MnglName' => '_ZN7log4cxx6Logger9getLoggerEPKc', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '18164350' + 'name' => 'name', + 'type' => '191623' } }, - 'ShortName' => 'WideLife' + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'logger.cpp', + 'SourceLine' => '581', + 'Static' => 1 }, - '18183829' => { - 'Class' => '18162451', - 'Constructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterC1Ev', + '25451324' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '719', + 'MnglName' => '_ZN7log4cxx6Logger9getLoggerERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '18164658' + 'name' => 'name', + 'type' => '202841' } }, - 'ShortName' => 'ThreadUsernamePatternConverter', - 'Source' => 'threadusernamepatternconverter.cpp', - 'SourceLine' => '30' + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'logger.cpp', + 'SourceLine' => '781', + 'Static' => 1 }, - '18187946' => { - 'Class' => '18162451', - 'Constructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterC2Ev', + '25451352' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '724', + 'MnglName' => '_ZN7log4cxx6Logger9getLoggerEPKw', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '18164658' + 'name' => 'name', + 'type' => '191812' } }, - 'ShortName' => 'ThreadUsernamePatternConverter', - 'Source' => 'threadusernamepatternconverter.cpp', - 'SourceLine' => '30' + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'logger.cpp', + 'SourceLine' => '786', + 'Static' => 1 }, - '18193981' => { - 'Artificial' => 1, - 'Class' => '18162469', - 'Destructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD0Ev', + '25451380' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'MnglName' => '_ZN7log4cxx6Logger11getLoggerLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '18165180' + 'name' => 'name', + 'type' => '210597' } }, - 'ShortName' => 'ClazzThreadUsernamePatternConverter', - 'Virt' => 1 + 'Return' => '3121982', + 'ShortName' => 'getLoggerLS', + 'Source' => 'logger.cpp', + 'SourceLine' => '733', + 'Static' => 1 }, - '18193982' => { - 'Artificial' => 1, - 'Class' => '18162469', - 'Destructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD1Ev', + '25451427' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'MnglName' => '_ZN7log4cxx6Logger11getLoggerLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '18165180' + 'name' => 'name', + 'type' => '210597' + }, + '1' => { + 'name' => 'factory', + 'type' => '3132696' } }, - 'ShortName' => 'ClazzThreadUsernamePatternConverter', - 'Virt' => 1 + 'Return' => '3121982', + 'ShortName' => 'getLoggerLS', + 'Source' => 'logger.cpp', + 'SourceLine' => '596', + 'Static' => 1 }, - '18194122' => { - 'Artificial' => 1, - 'Class' => '18162469', - 'Destructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD2Ev', + '25451526' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger17getResourceBundleEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18165180' + 'type' => '25464604' } }, - 'ShortName' => 'ClazzThreadUsernamePatternConverter', - 'Virt' => 1 + 'Return' => '18600155', + 'ShortName' => 'getResourceBundle', + 'Source' => 'logger.cpp', + 'SourceLine' => '256' }, - '18194212' => { - 'Artificial' => 1, - 'Class' => '18162469', - 'Constructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterC2Ev', + '25451558' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger23getResourceBundleStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18165180' + 'type' => '25464604' + }, + '1' => { + 'name' => 'key', + 'type' => '210597' } }, - 'ShortName' => 'ClazzThreadUsernamePatternConverter' + 'Protected' => 1, + 'Return' => '209661', + 'ShortName' => 'getResourceBundleString', + 'Source' => 'logger.cpp', + 'SourceLine' => '271' }, - '18194213' => { - 'Artificial' => 1, - 'Class' => '18162469', - 'Constructor' => 1, - 'Header' => 'threadusernamepatternconverter.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterC1Ev', + '25451595' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger4infoERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18165180' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'ClazzThreadUsernamePatternConverter' + 'Return' => '1', + 'ShortName' => 'info', + 'Source' => 'logger.cpp', + 'SourceLine' => '675' }, - '181983' => { - 'Artificial' => 1, - 'Class' => '150962', - 'Destructor' => 1, - 'Header' => 'filter_priv.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '153321' - } - }, - 'ShortName' => 'FilterPrivate', - 'Virt' => 1 - }, - '183831' => { - 'Artificial' => 1, - 'Class' => '151432', - 'Destructor' => 1, - 'Header' => 'andfilter.h', - 'InLine' => 1, - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154320' - } - }, - 'ShortName' => 'ClazzAndFilter', - 'Virt' => 1 - }, - '183832' => { - 'Artificial' => 1, - 'Class' => '151432', - 'Destructor' => 1, - 'Header' => 'andfilter.h', - 'InLine' => 1, - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154320' - } - }, - 'ShortName' => 'ClazzAndFilter', - 'Virt' => 1 - }, - '183973' => { - 'Artificial' => 1, - 'Class' => '151432', - 'Destructor' => 1, - 'Header' => 'andfilter.h', - 'InLine' => 1, - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154320' - } - }, - 'ShortName' => 'ClazzAndFilter', - 'Virt' => 1 - }, - '184063' => { - 'Artificial' => 1, - 'Class' => '151432', - 'Constructor' => 1, - 'Header' => 'andfilter.h', - 'InLine' => 1, - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154320' - } - }, - 'ShortName' => 'ClazzAndFilter' - }, - '184064' => { - 'Artificial' => 1, - 'Class' => '151432', - 'Constructor' => 1, - 'Header' => 'andfilter.h', - 'InLine' => 1, - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154320' - } - }, - 'ShortName' => 'ClazzAndFilter' - }, - '184228' => { - 'Artificial' => 1, - 'Class' => '151305', - 'Destructor' => 1, - 'Header' => 'optionhandler.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '179913' - } - }, - 'ShortName' => 'OptionHandler', - 'Virt' => 1 - }, - '184229' => { - 'Artificial' => 1, - 'Class' => '151305', - 'Destructor' => 1, - 'Header' => 'optionhandler.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '179913' - } - }, - 'ShortName' => 'OptionHandler', - 'Virt' => 1 - }, - '18425534' => { - 'Artificial' => 1, - 'Class' => '18298896', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEED2Ev', + '25451633' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger4infoERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18303132' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'info', + 'Source' => 'logger.cpp', + 'SourceLine' => '683' }, - '18425535' => { - 'Artificial' => 1, - 'Class' => '18298896', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEED0Ev', + '25451666' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger4infoERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18303132' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'info', + 'Source' => 'logger.cpp', + 'SourceLine' => '856' }, - '18425678' => { - 'Artificial' => 1, - 'Class' => '18298896', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEEC2Ev', + '25451704' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger4infoERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18303132' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'info', + 'Source' => 'logger.cpp', + 'SourceLine' => '864' }, - '18425679' => { - 'Artificial' => 1, - 'Class' => '18298896', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEEC1Ev', + '25451737' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '989', + 'MnglName' => '_ZNK7log4cxx6Logger10isAttachedESt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18303132' + 'type' => '25464604' + }, + '1' => { + 'name' => 'appender', + 'type' => '946706' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'isAttached', + 'Source' => 'logger.cpp', + 'SourceLine' => '308', + 'Virt' => 1, + 'VirtPos' => '8' }, - '184289' => { - 'Artificial' => 1, - 'Class' => '63470', - 'Destructor' => 1, - 'Header' => 'object.h', - 'InLine' => 1, - 'Line' => '108', - 'MnglName' => '_ZN7log4cxx7helpers6ObjectD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154342' - } - }, - 'ShortName' => 'Object', - 'Virt' => 1 - }, - '184290' => { - 'Artificial' => 1, - 'Class' => '63470', - 'Destructor' => 1, - 'Header' => 'object.h', - 'InLine' => 1, - 'Line' => '108', - 'MnglName' => '_ZN7log4cxx7helpers6ObjectD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154342' - } - }, - 'ShortName' => 'Object', - 'Virt' => 1 - }, - '184312' => { - 'Artificial' => 1, - 'Class' => '63470', - 'Destructor' => 1, - 'Header' => 'object.h', - 'InLine' => 1, - 'Line' => '108', - 'MnglName' => '_ZN7log4cxx7helpers6ObjectD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '154342' - } - }, - 'ShortName' => 'Object', - 'Virt' => 1 - }, - '18443567' => { - 'Class' => '648250', - 'Destructor' => 1, - 'Header' => 'threadspecificdata.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificDataD2Ev', + '25451783' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger14isDebugEnabledEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18300888' + 'type' => '25464604' } }, - 'ShortName' => 'ThreadSpecificData', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '40' + 'Return' => '174077', + 'ShortName' => 'isDebugEnabled', + 'Source' => 'logger.cpp', + 'SourceLine' => '325' }, - '18445025' => { - 'Class' => '648250', - 'Constructor' => 1, - 'Header' => 'threadspecificdata.h', - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificDataC2Ev', + '25451843' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '1058', + 'MnglName' => '_ZNK7log4cxx6Logger12isEnabledForERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18300888' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level1', + 'type' => '575807' } }, - 'ShortName' => 'ThreadSpecificData', - 'Source' => 'threadspecificdata.cpp' + 'Return' => '174077', + 'ShortName' => 'isEnabledFor', + 'Source' => 'logger.cpp', + 'SourceLine' => '337' }, - '18445026' => { - 'Class' => '648250', - 'Constructor' => 1, - 'Header' => 'threadspecificdata.h', - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificDataC1Ev', + '25451880' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger13isInfoEnabledEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18300888' + 'type' => '25464604' } }, - 'ShortName' => 'ThreadSpecificData', - 'Source' => 'threadspecificdata.cpp' + 'Return' => '174077', + 'ShortName' => 'isInfoEnabled', + 'Source' => 'logger.cpp', + 'SourceLine' => '350' }, - '18566320' => { - 'Artificial' => 1, - 'Class' => '18543791', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEED2Ev', + '25451940' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger13isWarnEnabledEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18545248' + 'type' => '25464604' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'isWarnEnabled', + 'Source' => 'logger.cpp', + 'SourceLine' => '374' }, - '18566321' => { - 'Artificial' => 1, - 'Class' => '18543791', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEED0Ev', + '25452000' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger14isErrorEnabledEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18545248' + 'type' => '25464604' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'isErrorEnabled', + 'Source' => 'logger.cpp', + 'SourceLine' => '362' }, - '18566462' => { - 'Artificial' => 1, - 'Class' => '18543791', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEEC2Ev', + '25452060' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger14isFatalEnabledEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18545248' + 'type' => '25464604' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'isFatalEnabled', + 'Source' => 'logger.cpp', + 'SourceLine' => '386' }, - '18566463' => { - 'Artificial' => 1, - 'Class' => '18543791', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEEC1Ev', + '25452120' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger14isTraceEnabledEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18545248' + 'type' => '25464604' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'isTraceEnabled', + 'Source' => 'logger.cpp', + 'SourceLine' => '313' }, - '18590107' => { - 'Class' => '833040', - 'Destructor' => 1, - 'Header' => 'threadutility.h', - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtilityD2Ev', + '25452180' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoERKSt6vectorISB_SaISB_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'key', + 'type' => '210597' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' + }, + '4' => { + 'name' => 'params', + 'type' => '6085700' } }, - 'ShortName' => 'ThreadUtility', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '67' + 'Return' => '1', + 'ShortName' => 'l7dlog', + 'Source' => 'logger.cpp', + 'SourceLine' => '425' }, - '18590949' => { - 'Class' => '833040', - 'Constructor' => 1, - 'Header' => 'threadutility.h', - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtilityC2Ev', + '25452228' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'key', + 'type' => '202831' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' } }, - 'Private' => 1, - 'ShortName' => 'ThreadUtility', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '58' + 'Return' => '1', + 'ShortName' => 'l7dlog', + 'Source' => 'logger.cpp', + 'SourceLine' => '453' }, - '18590950' => { - 'Class' => '833040', - 'Constructor' => 1, - 'Header' => 'threadutility.h', - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtilityC1Ev', + '25452271' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoESD_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'key', + 'type' => '202831' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' + }, + '4' => { + 'name' => 'val1', + 'type' => '202831' } }, - 'Private' => 1, - 'ShortName' => 'ThreadUtility', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '58' + 'Return' => '1', + 'ShortName' => 'l7dlog', + 'Source' => 'logger.cpp', + 'SourceLine' => '462' }, - '18676428' => { - 'Class' => '18676307', + '25452319' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverter7getNameB5cxx11Ev', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoESD_SD_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18680184' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'key', + 'type' => '202831' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' + }, + '4' => { + 'name' => 'val1', + 'type' => '202831' + }, + '5' => { + 'name' => 'val2', + 'type' => '202831' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '18676729' => { - 'Class' => '18676273', - 'Header' => 'throwableinformationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'SourceLine' => '43', - 'Static' => 1 - }, - '18676746' => { - 'Class' => '18676273', - 'Header' => 'throwableinformationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'SourceLine' => '43', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'l7dlog', + 'Source' => 'logger.cpp', + 'SourceLine' => '473' }, - '18676763' => { - 'Class' => '18676273', + '25452372' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter8getClassEv', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoESD_SD_SD_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679755' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'key', + 'type' => '202831' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' + }, + '4' => { + 'name' => 'val1', + 'type' => '202831' + }, + '5' => { + 'name' => 'val2', + 'type' => '202831' + }, + '6' => { + 'name' => 'val3', + 'offset' => '0', + 'type' => '202831' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '1', + 'ShortName' => 'l7dlog', + 'Source' => 'logger.cpp', + 'SourceLine' => '487' }, - '18676802' => { - 'Class' => '18676273', + '25452632' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter4castERKNS_7helpers5ClassE', + 'Header' => 'logger.h', + 'Line' => '1550', + 'MnglName' => '_ZNK7log4cxx6Logger3logERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679755' + 'type' => '25464604' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '202831' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '1', + 'ShortName' => 'log', + 'Source' => 'logger.cpp', + 'SourceLine' => '691' }, - '18676846' => { - 'Class' => '18676273', + '25452675' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter10instanceofERKNS_7helpers5ClassE', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger3logERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679755' + 'type' => '25464604' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '202831' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '1', + 'ShortName' => 'log', + 'Source' => 'logger.cpp', + 'SourceLine' => '700' }, - '18676932' => { - 'Class' => '18676273', - 'Header' => 'throwableinformationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '25452713' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'Line' => '1570', + 'MnglName' => '_ZNK7log4cxx6Logger3logERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { - 'name' => 'options', - 'type' => '2273842' + 'name' => 'this', + 'type' => '25464604' + }, + '1' => { + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '202841' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' } }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'SourceLine' => '54', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'log', + 'Source' => 'logger.cpp', + 'SourceLine' => '872' }, - '18676960' => { - 'Class' => '18676273', + '25452756' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger3logERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679755' + 'type' => '25464604' }, '1' => { - 'name' => 'p1', - 'type' => '154261' + 'name' => 'level1', + 'type' => '575807' }, '2' => { - 'name' => 'p2', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'name' => 'message', + 'type' => '202841' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx', - '3' => 'rcx' - }, 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'SourceLine' => '67', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'log', + 'Source' => 'logger.cpp', + 'SourceLine' => '881' }, - '18677011' => { - 'Class' => '18676273', + '25452794' => { + 'Class' => '566426', 'Const' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter16handlesThrowableEv', + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5logLSERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679755' + 'type' => '25464604' + }, + '1' => { + 'name' => 'level1', + 'type' => '575807' + }, + '2' => { + 'name' => 'message', + 'type' => '210597' + }, + '3' => { + 'name' => 'location', + 'type' => '573016' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'handlesThrowable', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'SourceLine' => '78', - 'Virt' => 1, - 'VirtPos' => '8' - }, - '18677403' => { - 'Data' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7classes48ThrowableInformationPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ThrowableInformationPatternConverterRegistration', - 'Source' => 'throwableinformationpatternconverter.cpp' + 'Return' => '1', + 'ShortName' => 'logLS', + 'Source' => 'logger.cpp', + 'SourceLine' => '708' }, - '18683192' => { - 'Artificial' => 1, - 'Class' => '18676273', - 'Destructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD0Ev', + '25452837' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1642', + 'MnglName' => '_ZN7log4cxx6Logger18removeAllAppendersEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679640' + 'type' => '10983089' } }, - 'ShortName' => 'ThrowableInformationPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'removeAllAppenders', + 'Source' => 'logger.cpp', + 'SourceLine' => '503', + 'Virt' => 1, + 'VirtPos' => '9' }, - '18683193' => { - 'Artificial' => 1, - 'Class' => '18676273', - 'Destructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD2Ev', + '25452872' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1647', + 'MnglName' => '_ZN7log4cxx6Logger14removeAppenderESt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679640' + 'type' => '10983089' + }, + '1' => { + 'name' => 'appender', + 'type' => '946706' } }, - 'ShortName' => 'ThrowableInformationPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'removeAppender', + 'Source' => 'logger.cpp', + 'SourceLine' => '516', + 'Virt' => 1, + 'VirtPos' => '10' }, - '18683460' => { - 'Artificial' => 1, - 'Class' => '18676273', - 'Destructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD1Ev', + '25452912' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1653', + 'MnglName' => '_ZN7log4cxx6Logger14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679640' + 'type' => '10983089' + }, + '1' => { + 'name' => 'name1', + 'type' => '210597' } }, - 'ShortName' => 'ThrowableInformationPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'removeAppender', + 'Source' => 'logger.cpp', + 'SourceLine' => '525', + 'Virt' => 1, + 'VirtPos' => '11' }, - '18692571' => { - 'Artificial' => 1, - 'Class' => '18676470', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD0Ev', + '25453107' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger12getHierarchyEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18678959' + 'type' => '25464604' } }, - 'ShortName' => 'ThrowableInformationPatternConverterPrivate', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'Virt' => 1 + 'Private' => 1, + 'Return' => '10588285', + 'ShortName' => 'getHierarchy', + 'Source' => 'logger.cpp', + 'SourceLine' => '251' }, - '18692572' => { - 'Artificial' => 1, - 'Class' => '18676470', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD1Ev', + '25453137' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1689', + 'MnglName' => '_ZN7log4cxx6Logger8setLevelESt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18678959' + 'type' => '10983089' + }, + '1' => { + 'name' => 'level1', + 'type' => '567056' } }, - 'ShortName' => 'ThrowableInformationPatternConverterPrivate', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setLevel', + 'Source' => 'logger.cpp', + 'SourceLine' => '554', + 'Virt' => 1, + 'VirtPos' => '13' }, - '18693992' => { - 'Artificial' => 1, - 'Class' => '18676470', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD2Ev', + '25453210' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger4warnERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18678959' + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'ThrowableInformationPatternConverterPrivate', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'warn', + 'Source' => 'logger.cpp', + 'SourceLine' => '889' }, - '18697112' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_36ThrowableInformationPatternConverterEEJEEEOT_DpOT0_', + '25453248' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger4warnERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '25464604' }, '1' => { - 'name' => 'arg0', - 'type' => '18679662' + 'name' => 'msg', + 'type' => '202841' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '18651499' - } - } + 'Return' => '1', + 'ShortName' => 'warn', + 'Source' => 'logger.cpp', + 'SourceLine' => '897' }, - '18697113' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_36ThrowableInformationPatternConverterEEJEEEOT_DpOT0_', + '25453281' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger4warnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '25464604' }, '1' => { - 'name' => 'arg0', - 'type' => '18679662' + 'name' => 'msg', + 'type' => '202831' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '18651499' - } - } + 'Return' => '1', + 'ShortName' => 'warn', + 'Source' => 'logger.cpp', + 'SourceLine' => '717' + }, + '25453319' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger4warnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' + } + }, + 'Return' => '1', + 'ShortName' => 'warn', + 'Source' => 'logger.cpp', + 'SourceLine' => '725' + }, + '25453352' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5traceERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' + } + }, + 'Return' => '1', + 'ShortName' => 'trace', + 'Source' => 'logger.cpp', + 'SourceLine' => '791' + }, + '25453390' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5traceERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' + } + }, + 'Return' => '1', + 'ShortName' => 'trace', + 'Source' => 'logger.cpp', + 'SourceLine' => '800' + }, + '25453423' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5traceERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' + }, + '2' => { + 'name' => 'location', + 'type' => '573016' + } + }, + 'Return' => '1', + 'ShortName' => 'trace', + 'Source' => 'logger.cpp', + 'SourceLine' => '608' + }, + '25453461' => { + 'Class' => '566426', + 'Const' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZNK7log4cxx6Logger5traceERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25464604' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' + } + }, + 'Return' => '1', + 'ShortName' => 'trace', + 'Source' => 'logger.cpp', + 'SourceLine' => '617' + }, + '25453494' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '1964', + 'MnglName' => '_ZN7log4cxx6Logger11reconfigureERKSt6vectorISt10shared_ptrINS_8AppenderEESaIS4_EEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10983089' + }, + '1' => { + 'name' => 'appenders', + 'type' => '954903' + }, + '2' => { + 'name' => 'additive1', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'reconfigure', + 'Source' => 'logger.cpp', + 'SourceLine' => '108' + }, + '25454741' => { + 'Data' => 1, + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx7classes18LoggerRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LoggerRegistration', + 'Source' => 'logger.cpp' }, - '18698657' => { + '25498822' => { 'Artificial' => 1, - 'Class' => '18674473', + 'Class' => '25445478', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18678834' + 'type' => '25463332' } }, 'ShortName' => 'WideLife' }, - '18698658' => { + '25498823' => { 'Artificial' => 1, - 'Class' => '18674473', + 'Class' => '25445478', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18678834' + 'type' => '25463332' } }, 'ShortName' => 'WideLife' }, - '18698799' => { + '25498965' => { 'Artificial' => 1, - 'Class' => '18674473', + 'Class' => '25445478', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18678834' + 'type' => '25463332' } }, 'ShortName' => 'WideLife' }, - '18698800' => { + '25498966' => { 'Artificial' => 1, - 'Class' => '18674473', + 'Class' => '25445478', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18678834' + 'type' => '25463332' } }, 'ShortName' => 'WideLife' }, - '18708367' => { - 'Class' => '18676273', - 'Constructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterC1Eb', + '25628700' => { + 'Class' => '566426', + 'Destructor' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZN7log4cxx6LoggerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679640' - }, - '1' => { - 'name' => 'shortReport1', - 'type' => '50284' + 'type' => '10983089' } }, - 'ShortName' => 'ThrowableInformationPatternConverter', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'SourceLine' => '45' + 'ShortName' => 'Logger', + 'Source' => 'logger.cpp', + 'SourceLine' => '95', + 'Virt' => 1 + }, + '25628799' => { + 'Class' => '566426', + 'Destructor' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZN7log4cxx6LoggerD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10983089' + } + }, + 'ShortName' => 'Logger', + 'Source' => 'logger.cpp', + 'SourceLine' => '95', + 'Virt' => 1 + }, + '25631867' => { + 'Class' => '566426', + 'Destructor' => 1, + 'Header' => 'logger.h', + 'MnglName' => '_ZN7log4cxx6LoggerD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10983089' + } + }, + 'ShortName' => 'Logger', + 'Source' => 'logger.cpp', + 'SourceLine' => '95', + 'Virt' => 1 }, - '18718288' => { - 'Class' => '18676273', + '25637953' => { + 'Class' => '566426', 'Constructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterC2Eb', + 'Header' => 'logger.h', + 'MnglName' => '_ZN7log4cxx6LoggerC2ERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18679640' + 'type' => '10983089' }, '2' => { - 'name' => 'shortReport1', - 'type' => '50284' + 'name' => 'p', + 'type' => '210607' + }, + '3' => { + 'name' => 'name1', + 'type' => '210597' } }, - 'ShortName' => 'ThrowableInformationPatternConverter', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'SourceLine' => '45' + 'ShortName' => 'Logger', + 'Source' => 'logger.cpp', + 'SourceLine' => '89' }, - '18733024' => { + '25643026' => { 'Artificial' => 1, - 'Class' => '18676307', + 'Class' => '566440', 'Destructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', + 'Header' => 'logger.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD0Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18680173' + 'type' => '25464744' } }, - 'ShortName' => 'ClazzThrowableInformationPatternConverter', + 'ShortName' => 'ClazzLogger', 'Virt' => 1 }, - '18733025' => { + '25643027' => { 'Artificial' => 1, - 'Class' => '18676307', + 'Class' => '566440', 'Destructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', + 'Header' => 'logger.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18680173' + 'type' => '25464744' } }, - 'ShortName' => 'ClazzThrowableInformationPatternConverter', + 'ShortName' => 'ClazzLogger', 'Virt' => 1 }, - '18733166' => { + '25643173' => { 'Artificial' => 1, - 'Class' => '18676307', + 'Class' => '566440', 'Destructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', + 'Header' => 'logger.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD2Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18680173' + 'type' => '25464744' } }, - 'ShortName' => 'ClazzThrowableInformationPatternConverter', + 'ShortName' => 'ClazzLogger', 'Virt' => 1 }, - '18733256' => { + '25643268' => { 'Artificial' => 1, - 'Class' => '18676307', + 'Class' => '566440', 'Constructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', + 'Header' => 'logger.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterC2Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18680173' + 'type' => '25464744' } }, - 'ShortName' => 'ClazzThrowableInformationPatternConverter' + 'ShortName' => 'ClazzLogger' }, - '18733257' => { + '25643269' => { 'Artificial' => 1, - 'Class' => '18676307', + 'Class' => '566440', 'Constructor' => 1, - 'Header' => 'throwableinformationpatternconverter.h', + 'Header' => 'logger.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterC1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18680173' + 'type' => '25464744' } }, - 'ShortName' => 'ClazzThrowableInformationPatternConverter' + 'ShortName' => 'ClazzLogger' }, - '18954553' => { - 'Class' => '18954432', + '2583397' => { + 'Artificial' => 1, + 'Class' => '2508052', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '99', + 'MnglName' => '_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2522340' + } + }, + 'ShortName' => 'AsyncAppenderPriv', + 'Source' => 'asyncappender.cpp', + 'Virt' => 1 + }, + '2583398' => { + 'Artificial' => 1, + 'Class' => '2508052', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '99', + 'MnglName' => '_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2522340' + } + }, + 'ShortName' => 'AsyncAppenderPriv', + 'Source' => 'asyncappender.cpp', + 'Virt' => 1 + }, + '2590024' => { + 'Artificial' => 1, + 'Class' => '2508052', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '99', + 'MnglName' => '_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2522340' + } + }, + 'ShortName' => 'AsyncAppenderPriv', + 'Source' => 'asyncappender.cpp', + 'Virt' => 1 + }, + '25982812' => { + 'Class' => '25982700', 'Const' => 1, - 'Header' => 'timebasedrollingpolicy.h', + 'Header' => 'loggermatchfilter.h', 'InLine' => 2, - 'Line' => '143', - 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy7getNameB5cxx11Ev', + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965437' + 'type' => '25992469' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '18954593' => { - 'Class' => '18954432', + '25982849' => { + 'Class' => '25982700', 'Const' => 1, - 'Header' => 'timebasedrollingpolicy.h', + 'Header' => 'loggermatchfilter.h', 'InLine' => 2, - 'Line' => '143', - 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv', + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965437' + 'type' => '25992469' } }, - 'Return' => '15778025', + 'Return' => '25992370', 'ShortName' => 'newInstance', 'Virt' => 1, 'VirtPos' => '4' }, - '18954633' => { + '25982886' => { 'Artificial' => 1, - 'Class' => '18954432', - 'Header' => 'timebasedrollingpolicy.h', + 'Class' => '25982700', + 'Header' => 'loggermatchfilter.h', 'InLine' => 2, - 'Line' => '143', - 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv', + 'Line' => '52', + 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965437' + 'type' => '25992469' } }, - 'Return' => '15778025', - 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv' + 'Return' => '25992370', + 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv' }, - '18954732' => { - 'Class' => '15769233', + '25983128' => { + 'Class' => '25982682', 'Const' => 1, - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy8getClassEv', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965403' + 'type' => '25992400' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '40', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '42', 'Virt' => 1, 'VirtPos' => '2' }, - '18954789' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy13registerClassEv', - 'Return' => '64684', + '25983165' => { + 'Class' => '25982682', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '42', + 'Static' => 1 + }, + '25983181' => { + 'Class' => '25982682', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '40', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '42', 'Static' => 1 }, - '18954806' => { - 'Class' => '15769233', + '25983197' => { + 'Class' => '25982682', 'Const' => 1, - 'Header' => 'timebasedrollingpolicy.h', + 'Header' => 'loggermatchfilter.h', 'InLine' => 2, - 'Line' => '144', - 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy4castERKNS_7helpers5ClassE', + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965403' + 'type' => '25992400' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '18954851' => { - 'Class' => '15769233', + '25983239' => { + 'Class' => '25982682', 'Const' => 1, - 'Header' => 'timebasedrollingpolicy.h', + 'Header' => 'loggermatchfilter.h', 'InLine' => 2, - 'Line' => '148', - 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy10instanceofERKNS_7helpers5ClassE', + 'Line' => '56', + 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965403' + 'type' => '25992400' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '18954991' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy15activateOptionsERNS_7helpers4PoolE', + '25983357' => { + 'Class' => '25982682', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25992375' }, '1' => { - 'name' => 'pool', - 'type' => '64643' + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '278', + 'ShortName' => 'setOption', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '62', 'Virt' => 1, - 'VirtPos' => '5' + 'VirtPos' => '6' }, - '18955033' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy15setMultiprocessEb', + '25983401' => { + 'Class' => '25982682', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter16setLoggerToMatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25992375' }, '1' => { - 'name' => 'multiprocess', - 'type' => '50284' + 'name' => 'value', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'setMultiprocess', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '528' + 'ShortName' => 'setLoggerToMatch', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '52' }, - '18955066' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', + '25983432' => { + 'Class' => '25982682', + 'Const' => 1, + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter16getLoggerToMatchB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' - }, - '1' => { - 'name' => 'currentActiveFile', - 'type' => '263006' - }, - '2' => { - 'name' => 'append', - 'type' => '50291' - }, - '3' => { - 'name' => 'pool', - 'type' => '64643' + 'type' => '25992400' } }, - 'Return' => '6294348', - 'ShortName' => 'initialize', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '360', - 'Virt' => 1, - 'VirtPos' => '8' + 'Return' => '209661', + 'ShortName' => 'getLoggerToMatch', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '57' }, - '18955122' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', + '25983462' => { + 'Class' => '25982682', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter16setAcceptOnMatchEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25992375' }, '1' => { - 'name' => 'currentActiveFile', - 'type' => '263006' - }, - '2' => { - 'name' => 'append', - 'type' => '50291' - }, - '3' => { - 'name' => 'pool', - 'type' => '64643' + 'name' => 'acceptOnMatch1', + 'type' => '174077' } }, - 'Return' => '6294348', - 'ShortName' => 'rollover', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '392', - 'Virt' => 1, - 'VirtPos' => '9' + 'Return' => '1', + 'ShortName' => 'setAcceptOnMatch', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '100' }, - '18955178' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', + '25983493' => { + 'Class' => '25982682', + 'Const' => 1, + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter16getAcceptOnMatchEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' - }, - '1' => { - 'name' => 'appender', - 'type' => '264877' - }, - '2' => { - 'name' => 'p2', - 'type' => '154261' - }, - '3' => { - 'name' => 'filename', - 'type' => '263006' - }, - '4' => { - 'name' => 'p4', - 'type' => '50486' + 'type' => '25992400' } }, - 'Reg' => { - '2' => 'rdx', - '4' => 'r8' - }, - 'Return' => '50284', - 'ShortName' => 'isTriggeringEvent', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '497', - 'Virt' => 1, - 'VirtPos' => '7' + 'Return' => '174077', + 'ShortName' => 'getAcceptOnMatch', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '105' }, - '18955239' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '25983523' => { + 'Class' => '25982682', + 'Const' => 1, + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25992400' }, '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'event', + 'type' => '576659' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '535', + 'Return' => '565023', + 'ShortName' => 'decide', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '78', 'Virt' => 1, - 'VirtPos' => '6' + 'VirtPos' => '7' }, - '18955286' => { - 'Class' => '15769233', - 'Const' => 1, - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy19getFormatSpecifiersB5cxx11Ev', + '25983597' => { + 'Data' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7classes29LoggerMatchFilterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LoggerMatchFilterRegistration', + 'Source' => 'loggermatchfilter.cpp' + }, + '26000533' => { + 'Artificial' => 1, + 'Class' => '25982913', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965403' + 'type' => '25991755' } }, - 'Protected' => 1, - 'Return' => '3708324', - 'ShortName' => 'getFormatSpecifiers', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '349', - 'Virt' => 1, - 'VirtPos' => '10' + 'ShortName' => 'LoggerMatchFilterPrivate', + 'Source' => 'loggermatchfilter.cpp', + 'Virt' => 1 }, - '18955327' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy14createMMapFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '26000534' => { + 'Artificial' => 1, + 'Class' => '25982913', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' - }, - '1' => { - 'name' => 'p1', - 'type' => '61535' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'type' => '25991755' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '50231', - 'ShortName' => 'createMMapFile', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '248' + 'ShortName' => 'LoggerMatchFilterPrivate', + 'Source' => 'loggermatchfilter.cpp', + 'Virt' => 1 }, - '18955367' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy14isMapFileEmptyERNS_7helpers4PoolE', + '26001948' => { + 'Artificial' => 1, + 'Class' => '25982913', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' + 'type' => '25991755' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50284', - 'ShortName' => 'isMapFileEmpty', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '252' + 'ShortName' => 'LoggerMatchFilterPrivate', + 'Source' => 'loggermatchfilter.cpp', + 'Virt' => 1 }, - '18955402' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy12initMMapFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '26006803' => { + 'Artificial' => 1, + 'Class' => '25978367', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'type' => '25991644' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'initMMapFile', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '256' + 'ShortName' => 'WideLife' }, - '18955439' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy12lockMMapFileEi', + '26006804' => { + 'Artificial' => 1, + 'Class' => '25978367', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' - }, - '1' => { - 'name' => 'p1', - 'type' => '50231' + 'type' => '25991644' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50231', - 'ShortName' => 'lockMMapFile', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '258' + 'ShortName' => 'WideLife' }, - '18955475' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy14unLockMMapFileEv', + '26006946' => { + 'Artificial' => 1, + 'Class' => '25978367', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25991644' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'unLockMMapFile', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '262' + 'ShortName' => 'WideLife' }, - '18955506' => { - 'Class' => '15769233', - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy10createFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RNS_7helpers4PoolE', + '26006947' => { + 'Artificial' => 1, + 'Class' => '25978367', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' - }, - '1' => { - 'name' => 'p1', - 'type' => '61535' - }, - '2' => { - 'name' => 'p2', - 'type' => '61535' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' - } - }, - 'Private' => 1, - 'Reg' => { - '1' => 'rdx', - '2' => 'rcx', - '3' => 'r8' - }, - 'Return' => '36910', - 'ShortName' => 'createFile', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '266' - }, - '18956876' => { - 'Data' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7classes34TimeBasedRollingPolicyRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'TimeBasedRollingPolicyRegistration', - 'Source' => 'timebasedrollingpolicy.cpp' - }, - '19020925' => { - 'Artificial' => 1, - 'Class' => '18952473', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18961750' - } - }, - 'ShortName' => 'WideLife' - }, - '19020926' => { - 'Artificial' => 1, - 'Class' => '18952473', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18961750' - } - }, - 'ShortName' => 'WideLife' - }, - '19021067' => { - 'Artificial' => 1, - 'Class' => '18952473', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18961750' - } - }, - 'ShortName' => 'WideLife' - }, - '19021068' => { - 'Artificial' => 1, - 'Class' => '18952473', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18961750' + 'type' => '25991644' } }, 'ShortName' => 'WideLife' }, - '19101926' => { - 'Class' => '15769233', + '26010516' => { + 'Class' => '25982682', 'Destructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyD0Ev', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25992375' } }, - 'ShortName' => 'TimeBasedRollingPolicy', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '276', + 'ShortName' => 'LoggerMatchFilter', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '50', 'Virt' => 1 }, - '19102025' => { - 'Class' => '15769233', + '26010615' => { + 'Class' => '25982682', 'Destructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyD1Ev', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25992375' } }, - 'ShortName' => 'TimeBasedRollingPolicy', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '276', + 'ShortName' => 'LoggerMatchFilter', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '50', 'Virt' => 1 }, - '19104587' => { - 'Class' => '15769233', + '26010813' => { + 'Class' => '25982682', 'Destructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyD2Ev', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25992375' } }, - 'ShortName' => 'TimeBasedRollingPolicy', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '276', + 'ShortName' => 'LoggerMatchFilter', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '50', 'Virt' => 1 }, - '19106966' => { - 'Class' => '15769233', + '26010948' => { + 'Class' => '25982682', 'Constructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyC1Ev', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25992375' } }, - 'ShortName' => 'TimeBasedRollingPolicy', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '271' + 'ShortName' => 'LoggerMatchFilter', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '45' }, - '19110532' => { - 'Class' => '15769233', + '26014495' => { + 'Class' => '25982682', 'Constructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyC2Ev', + 'Header' => 'loggermatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965375' + 'type' => '25992375' } }, - 'ShortName' => 'TimeBasedRollingPolicy', - 'Source' => 'timebasedrollingpolicy.cpp', - 'SourceLine' => '271' + 'ShortName' => 'LoggerMatchFilter', + 'Source' => 'loggermatchfilter.cpp', + 'SourceLine' => '45' }, - '19117516' => { + '26021636' => { 'Artificial' => 1, - 'Class' => '18954432', + 'Class' => '25982700', 'Destructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', + 'Header' => 'loggermatchfilter.h', 'InLine' => 1, - 'Line' => '143', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965426' + 'type' => '25992459' } }, - 'ShortName' => 'ClazzTimeBasedRollingPolicy', + 'ShortName' => 'ClazzLoggerMatchFilter', 'Virt' => 1 }, - '19117517' => { + '26021637' => { 'Artificial' => 1, - 'Class' => '18954432', + 'Class' => '25982700', 'Destructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', + 'Header' => 'loggermatchfilter.h', 'InLine' => 1, - 'Line' => '143', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965426' + 'type' => '25992459' } }, - 'ShortName' => 'ClazzTimeBasedRollingPolicy', + 'ShortName' => 'ClazzLoggerMatchFilter', 'Virt' => 1 }, - '19117658' => { + '26021782' => { 'Artificial' => 1, - 'Class' => '18954432', + 'Class' => '25982700', 'Destructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', + 'Header' => 'loggermatchfilter.h', 'InLine' => 1, - 'Line' => '143', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965426' + 'type' => '25992459' } }, - 'ShortName' => 'ClazzTimeBasedRollingPolicy', + 'ShortName' => 'ClazzLoggerMatchFilter', 'Virt' => 1 }, - '19117748' => { + '26021877' => { 'Artificial' => 1, - 'Class' => '18954432', + 'Class' => '25982700', 'Constructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', + 'Header' => 'loggermatchfilter.h', 'InLine' => 1, - 'Line' => '143', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyC2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18965426' + 'type' => '25992459' } }, - 'ShortName' => 'ClazzTimeBasedRollingPolicy' + 'ShortName' => 'ClazzLoggerMatchFilter' }, - '19117749' => { + '26021878' => { 'Artificial' => 1, - 'Class' => '18954432', + 'Class' => '25982700', 'Constructor' => 1, - 'Header' => 'timebasedrollingpolicy.h', + 'Header' => 'loggermatchfilter.h', 'InLine' => 1, - 'Line' => '143', - 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18965426' - } - }, - 'ShortName' => 'ClazzTimeBasedRollingPolicy' - }, - '19209060' => { - 'Class' => '19208939', - 'Const' => 1, - 'Header' => 'timezone.h', - 'InLine' => 2, - 'Line' => '36', - 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone13ClazzTimeZone7getNameB5cxx11Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19214853' + 'type' => '25992459' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzLoggerMatchFilter' }, - '19209138' => { - 'Class' => '3413936', - 'Header' => 'timezone.h', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone14getStaticClassEv', - 'Return' => '64678', + '2612319' => { + 'Artificial' => 1, + 'Class' => '2501628', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2522229' + } + }, + 'ShortName' => 'WideLife' + }, + '2612320' => { + 'Artificial' => 1, + 'Class' => '2501628', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2522229' + } + }, + 'ShortName' => 'WideLife' + }, + '2612461' => { + 'Artificial' => 1, + 'Class' => '2501628', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2522229' + } + }, + 'ShortName' => 'WideLife' + }, + '2612462' => { + 'Artificial' => 1, + 'Class' => '2501628', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2522229' + } + }, + 'ShortName' => 'WideLife' + }, + '26360260' => { + 'Class' => '9953745', + 'Header' => 'loggerpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'timezone.cpp', - 'SourceLine' => '34', + 'Source' => 'loggerpatternconverter.cpp', + 'SourceLine' => '28', 'Static' => 1 }, - '19209155' => { - 'Class' => '3413936', - 'Header' => 'timezone.h', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13registerClassEv', - 'Return' => '64684', + '26360276' => { + 'Class' => '9953745', + 'Header' => 'loggerpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'timezone.cpp', - 'SourceLine' => '34', + 'Source' => 'loggerpatternconverter.cpp', + 'SourceLine' => '28', 'Static' => 1 }, - '19209172' => { - 'Class' => '3413936', + '26360292' => { + 'Class' => '9953745', 'Const' => 1, - 'Header' => 'timezone.h', - 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone8getClassEv', + 'Header' => 'loggerpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16857613' + 'type' => '26372758' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'timezone.cpp', - 'SourceLine' => '34', + 'Source' => 'loggerpatternconverter.cpp', + 'SourceLine' => '28', 'Virt' => 1, 'VirtPos' => '2' }, - '19209211' => { - 'Class' => '3413936', + '26360329' => { + 'Class' => '9953745', 'Const' => 1, - 'Header' => 'timezone.h', + 'Header' => 'loggerpatternconverter.h', 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16857613' + 'type' => '26372758' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '19209255' => { - 'Class' => '3413936', + '26360371' => { + 'Class' => '9953745', 'Const' => 1, - 'Header' => 'timezone.h', + 'Header' => 'loggerpatternconverter.h', 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16857613' + 'type' => '26372758' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '19209316' => { - 'Class' => '3413936', - 'Header' => 'timezone.h', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone6getGMTEv', - 'Return' => '1576811', - 'ShortName' => 'getGMT', - 'Source' => 'timezone.cpp', - 'SourceLine' => '196', - 'Static' => 1 - }, - '19209391' => { - 'Class' => '3413936', + '26360482' => { + 'Class' => '9953745', 'Const' => 1, - 'Header' => 'timezone.h', - 'Line' => '55', - 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone7explodeEP14apr_time_exp_tl', + 'Header' => 'loggerpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16857607' + 'type' => '26372758' }, '1' => { - 'name' => 'p1', - 'type' => '19214830' + 'name' => 'event', + 'type' => '576659' }, '2' => { - 'name' => 'p2', - 'type' => '649587' + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'PureVirt' => 1, - 'Return' => '838230', - 'ShortName' => 'explode', - 'VirtPos' => '5' + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'loggerpatternconverter.cpp', + 'SourceLine' => '49', + 'Virt' => 1, + 'VirtPos' => '7' }, - '19210504' => { - 'Class' => '19210404', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '54', - 'MnglName' => '_ZNK7log4cxx7helpers12TimeZoneImpl11GMTTimeZone7explodeEP14apr_time_exp_tl', + '26363882' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes34LoggerPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LoggerPatternConverterRegistration', + 'Source' => 'loggerpatternconverter.cpp' + }, + '26377134' => { + 'Artificial' => 1, + 'Class' => '9953745', + 'Destructor' => 1, + 'Header' => 'loggerpatternconverter.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213937' - }, - '1' => { - 'name' => 'result', - 'type' => '19214789' - }, - '2' => { - 'name' => 'input', - 'type' => '649587' + 'type' => '26372232' } }, - 'Return' => '838230', - 'ShortName' => 'explode', - 'Source' => 'timezone.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'LoggerPatternConverter', + 'Virt' => 1 }, - '19210717' => { - 'Class' => '19210617', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '93', - 'MnglName' => '_ZNK7log4cxx7helpers12TimeZoneImpl13LocalTimeZone7explodeEP14apr_time_exp_tl', + '26377135' => { + 'Artificial' => 1, + 'Class' => '9953745', + 'Destructor' => 1, + 'Header' => 'loggerpatternconverter.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19214006' - }, - '1' => { - 'name' => 'result', - 'type' => '19214789' - }, - '2' => { - 'name' => 'input', - 'type' => '649587' + 'type' => '26372232' } }, - 'Return' => '838230', - 'ShortName' => 'explode', - 'Source' => 'timezone.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'LoggerPatternConverter', + 'Virt' => 1 }, - '19210793' => { - 'Class' => '19210617', - 'InLine' => 2, - 'Line' => '119', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZone15getTimeZoneNameB5cxx11Ev', - 'Private' => 1, - 'Return' => '262804', - 'ShortName' => 'getTimeZoneName', - 'Source' => 'timezone.cpp', - 'Static' => 1 + '26377468' => { + 'Artificial' => 1, + 'Class' => '9953745', + 'Destructor' => 1, + 'Header' => 'loggerpatternconverter.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26372232' + } + }, + 'ShortName' => 'LoggerPatternConverter', + 'Virt' => 1 }, - '19210966' => { - 'Class' => '19210846', - 'Const' => 1, - 'InLine' => 2, - 'Line' => '152', - 'MnglName' => '_ZNK7log4cxx7helpers12TimeZoneImpl13FixedTimeZone7explodeEP14apr_time_exp_tl', + '26387822' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_22LoggerPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19214075' + 'type' => '6085740' }, '1' => { - 'name' => 'result', - 'type' => '19214789' - }, - '2' => { - 'name' => 'input', - 'type' => '649587' + 'name' => 'arg0', + 'type' => '26372202' } }, - 'Return' => '838230', - 'ShortName' => 'explode', - 'Source' => 'timezone.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '26298457' + } + } }, - '19211461' => { - 'Data' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7classes20TimeZoneRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'TimeZoneRegistration', - 'Source' => 'timezone.cpp' + '26387823' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_22LoggerPatternConverterEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '26372202' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '26298457' + } + } }, - '1922259' => { - 'Class' => '1922139', - 'Const' => 1, - 'Header' => 'charsetencoder.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoder7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1931149' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '19222698' => { + '26388321' => { 'Artificial' => 1, - 'Class' => '19210404', + 'Class' => '26357996', 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213610' + 'type' => '26371756' } }, - 'ShortName' => 'GMTTimeZone', - 'Source' => 'timezone.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '19222699' => { + '26388322' => { 'Artificial' => 1, - 'Class' => '19210404', + 'Class' => '26357996', 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213610' + 'type' => '26371756' } }, - 'ShortName' => 'GMTTimeZone', - 'Source' => 'timezone.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '19222845' => { + '26388465' => { 'Artificial' => 1, - 'Class' => '19210404', - 'Destructor' => 1, + 'Class' => '26357996', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213610' + 'type' => '26371756' } }, - 'ShortName' => 'GMTTimeZone', - 'Source' => 'timezone.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '19222951' => { + '26388466' => { 'Artificial' => 1, - 'Class' => '19210617', - 'Destructor' => 1, + 'Class' => '26357996', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213721' + 'type' => '26371756' } }, - 'ShortName' => 'LocalTimeZone', - 'Source' => 'timezone.cpp', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '19222952' => { + '26397018' => { + 'Class' => '9953745', + 'Constructor' => 1, + 'Header' => 'loggerpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterC1ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26372232' + }, + '1' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'ShortName' => 'LoggerPatternConverter', + 'Source' => 'loggerpatternconverter.cpp', + 'SourceLine' => '30' + }, + '26400110' => { + 'Class' => '9953745', + 'Constructor' => 1, + 'Header' => 'loggerpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverterC2ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26372232' + }, + '2' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'ShortName' => 'LoggerPatternConverter', + 'Source' => 'loggerpatternconverter.cpp', + 'SourceLine' => '30' + }, + '26405031' => { 'Artificial' => 1, - 'Class' => '19210617', + 'Class' => '9953770', 'Destructor' => 1, + 'Header' => 'loggerpatternconverter.h', 'InLine' => 1, - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213721' + 'type' => '26372913' } }, - 'ShortName' => 'LocalTimeZone', - 'Source' => 'timezone.cpp', + 'ShortName' => 'ClazzLoggerPatternConverter', 'Virt' => 1 }, - '1922308' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '41', - 'Static' => 1 - }, - '19223098' => { + '26405032' => { 'Artificial' => 1, - 'Class' => '19210617', + 'Class' => '9953770', 'Destructor' => 1, + 'Header' => 'loggerpatternconverter.h', 'InLine' => 1, - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213721' + 'type' => '26372913' } }, - 'ShortName' => 'LocalTimeZone', - 'Source' => 'timezone.cpp', + 'ShortName' => 'ClazzLoggerPatternConverter', 'Virt' => 1 }, - '19223204' => { + '26405178' => { 'Artificial' => 1, - 'Class' => '19210846', + 'Class' => '9953770', 'Destructor' => 1, + 'Header' => 'loggerpatternconverter.h', 'InLine' => 1, - 'Line' => '144', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213832' + 'type' => '26372913' } }, - 'ShortName' => 'FixedTimeZone', - 'Source' => 'timezone.cpp', + 'ShortName' => 'ClazzLoggerPatternConverter', 'Virt' => 1 }, - '19223205' => { + '26405273' => { 'Artificial' => 1, - 'Class' => '19210846', - 'Destructor' => 1, + 'Class' => '9953770', + 'Constructor' => 1, + 'Header' => 'loggerpatternconverter.h', 'InLine' => 1, - 'Line' => '144', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213832' + 'type' => '26372913' } }, - 'ShortName' => 'FixedTimeZone', - 'Source' => 'timezone.cpp', - 'Virt' => 1 + 'ShortName' => 'ClazzLoggerPatternConverter' }, - '1922325' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '41', - 'Static' => 1 - }, - '19223351' => { + '26405274' => { 'Artificial' => 1, - 'Class' => '19210846', - 'Destructor' => 1, + 'Class' => '9953770', + 'Constructor' => 1, + 'Header' => 'loggerpatternconverter.h', 'InLine' => 1, - 'Line' => '144', - 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213832' + 'type' => '26372913' } }, - 'ShortName' => 'FixedTimeZone', - 'Source' => 'timezone.cpp', - 'Virt' => 1 + 'ShortName' => 'ClazzLoggerPatternConverter' }, - '1922342' => { - 'Class' => '1922121', - 'Const' => 1, - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv', + '2642767' => { + 'Class' => '2521258', + 'Constructor' => 1, + 'Line' => '70', + 'MnglName' => '_ZN14DiscardSummaryC2ERKS_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1931103' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '41', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '1922381' => { - 'Class' => '1922121', - 'Const' => 1, - 'Header' => 'charsetencoder.h', - 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1931103' + 'type' => '2521532' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'src', + 'type' => '2521542' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'DiscardSummary', + 'Source' => 'asyncappender.cpp' }, - '1922425' => { - 'Class' => '1922121', - 'Const' => 1, - 'Header' => 'charsetencoder.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE', + '2642768' => { + 'Class' => '2521258', + 'Constructor' => 1, + 'Line' => '70', + 'MnglName' => '_ZN14DiscardSummaryC1ERKS_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1931103' + 'type' => '2521532' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'src', + 'type' => '2521542' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'DiscardSummary', + 'Source' => 'asyncappender.cpp' }, - '1922536' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder17getDefaultEncoderEv', - 'Return' => '1925609', - 'ShortName' => 'getDefaultEncoder', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '514', - 'Static' => 1 - }, - '1922555' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'Line' => '69', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder10getEncoderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '2643251' => { + 'Class' => '2521258', + 'Constructor' => 1, + 'Line' => '68', + 'MnglName' => '_ZN14DiscardSummaryC2ERKSt10shared_ptrIN7log4cxx3spi12LoggingEventEE', 'Param' => { '0' => { - 'name' => 'charset', - 'type' => '263006' + 'name' => 'this', + 'type' => '2521532' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' } }, - 'Return' => '1925609', - 'ShortName' => 'getEncoder', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '554', - 'Static' => 1 - }, - '1922584' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'Line' => '75', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder14getUTF8EncoderEv', - 'Return' => '1925609', - 'ShortName' => 'getUTF8Encoder', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '547', - 'Static' => 1 + 'ShortName' => 'DiscardSummary', + 'Source' => 'asyncappender.cpp' }, - '1922603' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder6encodeERSt10shared_ptrIS1_ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcSA_EERNS0_10ByteBufferE', + '2643252' => { + 'Class' => '2521258', + 'Constructor' => 1, + 'Line' => '68', + 'MnglName' => '_ZN14DiscardSummaryC1ERKSt10shared_ptrIN7log4cxx3spi12LoggingEventEE', 'Param' => { '0' => { - 'name' => 'enc', - 'type' => '1931108' + 'name' => 'this', + 'type' => '2521532' }, '1' => { - 'name' => 'src', - 'type' => '263006' - }, - '2' => { - 'name' => 'iter', - 'type' => '1729836' - }, - '3' => { - 'name' => 'dst', - 'type' => '1340866' + 'name' => 'event', + 'type' => '576659' } }, - 'Return' => '1', - 'ShortName' => 'encode', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '608', - 'Static' => 1 + 'ShortName' => 'DiscardSummary', + 'Source' => 'asyncappender.cpp' }, - '1922643' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'Line' => '96', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', + '2672204' => { + 'Class' => '2507817', + 'Destructor' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928239' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '1729836' - }, - '3' => { - 'name' => 'p3', - 'type' => '1340866' + 'type' => '2523387' } }, - 'PureVirt' => 1, - 'Return' => '838230', - 'ShortName' => 'encode', - 'VirtPos' => '5' + 'ShortName' => 'AsyncAppender', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '183', + 'Virt' => 1 }, - '1922697' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder5resetEv', + '2672302' => { + 'Class' => '2507817', + 'Destructor' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928245' + 'type' => '2523387' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '1', - 'ShortName' => 'reset', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '599', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'AsyncAppender', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '183', + 'Virt' => 1 }, - '1922733' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE', + '2672655' => { + 'Class' => '2507817', + 'Destructor' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928245' - }, - '1' => { - 'name' => 'p1', - 'type' => '1340866' + 'type' => '2523387' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '603', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'AsyncAppender', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '183', + 'Virt' => 1 }, - '1922801' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'Line' => '123', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19isTriviallyCopyableERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrIS1_E', + '2672772' => { + 'Class' => '2507817', + 'Constructor' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppenderC1Ev', 'Param' => { '0' => { - 'name' => 'src', - 'type' => '263006' - }, - '1' => { - 'name' => 'enc', - 'type' => '1931114' + 'name' => 'this', + 'type' => '2523387' } }, - 'Return' => '50284', - 'ShortName' => 'isTriviallyCopyable', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '631', - 'Static' => 1 - }, - '1922901' => { - 'Class' => '1922121', - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder20createDefaultEncoderEv', - 'Private' => 1, - 'Return' => '1928239', - 'ShortName' => 'createDefaultEncoder', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '531', - 'Static' => 1 + 'ShortName' => 'AsyncAppender', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '178' }, - '1923792' => { - 'Class' => '1923738', - 'InLine' => 2, - 'Line' => '314', - 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', + '2679417' => { + 'Class' => '2507817', + 'Constructor' => 1, + 'Header' => 'asyncappender.h', + 'MnglName' => '_ZN7log4cxx13AsyncAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928391' - }, - '1' => { - 'name' => 'in', - 'type' => '263006' - }, - '2' => { - 'name' => 'iter', - 'type' => '1729836' - }, - '3' => { - 'name' => 'out', - 'type' => '1340866' + 'type' => '2523387' } }, - 'Return' => '838230', - 'ShortName' => 'encode', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'AsyncAppender', + 'Source' => 'asyncappender.cpp', + 'SourceLine' => '178' }, - '1924005' => { - 'Class' => '1923953', - 'InLine' => 2, - 'Line' => '225', - 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', + '2679524' => { + 'Artificial' => 1, + 'Class' => '567947', + 'Constructor' => 1, + 'Header' => 'appender.h', + 'InLine' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx8AppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928502' - }, - '1' => { - 'name' => 'in', - 'type' => '263006' - }, - '2' => { - 'name' => 'iter', - 'type' => '1729836' - }, - '3' => { - 'name' => 'out', - 'type' => '1340866' + 'type' => '2679474' } }, - 'Return' => '838230', - 'ShortName' => 'encode', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'Appender' }, - '1924217' => { - 'Class' => '1924163', - 'InLine' => 2, - 'Line' => '269', - 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', + '2679525' => { + 'Artificial' => 1, + 'Class' => '567947', + 'Constructor' => 1, + 'Header' => 'appender.h', + 'InLine' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx8AppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928613' - }, - '1' => { - 'name' => 'in', - 'type' => '263006' - }, - '2' => { - 'name' => 'iter', - 'type' => '1729836' - }, - '3' => { - 'name' => 'out', - 'type' => '1340866' + 'type' => '2679474' } }, - 'Return' => '838230', - 'ShortName' => 'encode', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'Appender' }, - '19242418' => { - 'Artificial' => 1, - 'Class' => '19209938', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, + '26797601' => { + 'Class' => '26797588', + 'Header' => 'system.h', 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEEC2IS2_INS0_12TimeZoneImpl13LocalTimeZoneEEJEEEOT_DpOT0_', + 'MnglName' => '_ZN7log4cxx7helpers6System11getPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'lkey', + 'type' => '210597' + } + }, + 'Return' => '209661', + 'ShortName' => 'getProperty', + 'Source' => 'system.cpp', + 'SourceLine' => '32', + 'Static' => 1 + }, + '26801742' => { + 'Artificial' => 1, + 'Class' => '564713', + 'Header' => 'loggingevent.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZTch0_h0_NK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822801' + } + }, + 'Return' => '576748', + 'ShortName' => '_ZTch0_h0_NK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv' + }, + '26801783' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822716' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '168', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '26801837' => { + 'Class' => '564699', + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '168', + 'Static' => 1 + }, + '26801853' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'InLine' => 2, + 'Line' => '54', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213510' + 'type' => '26822716' }, '1' => { - 'name' => 'arg0', - 'type' => '19213743' + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '19176318' - } - } + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '19242419' => { - 'Artificial' => 1, - 'Class' => '19209938', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEEC1IS2_INS0_12TimeZoneImpl13LocalTimeZoneEEJEEEOT_DpOT0_', + '26801896' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'InLine' => 2, + 'Line' => '56', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213510' + 'type' => '26822716' }, '1' => { - 'name' => 'arg0', - 'type' => '19213743' + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '19176318' - } - } + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '19242589' => { - 'Artificial' => 1, - 'Class' => '19209938', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEED2Ev', + '26802256' => { + 'Class' => '564699', + 'Header' => 'loggingevent.h', + 'Line' => '114', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent12getStartTimeEv', + 'Return' => '1914488', + 'ShortName' => 'getStartTime', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '174', + 'Static' => 1 + }, + '26802304' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '123', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent17getThreadUserNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213510' + 'type' => '26822716' } }, - 'ShortName' => 'WideLife' + 'Return' => '210597', + 'ShortName' => 'getThreadUserName', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '205' }, - '19242590' => { - 'Artificial' => 1, - 'Class' => '19209938', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEED0Ev', + '26802367' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent18getChronoTimeStampEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213510' + 'type' => '26822716' } }, - 'ShortName' => 'WideLife' + 'Return' => '125430', + 'ShortName' => 'getChronoTimeStamp', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '484' }, - '19243379' => { - 'Artificial' => 1, - 'Class' => '19209938', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEEC2IS2_INS0_12TimeZoneImpl11GMTTimeZoneEEJEEEOT_DpOT0_', + '26802580' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '184', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent11getPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213510' + 'type' => '26822716' }, '1' => { - 'name' => 'arg0', - 'type' => '19213632' + 'name' => 'key', + 'type' => '210597' + }, + '2' => { + 'name' => 'dest', + 'type' => '210592' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '19175080' - } - } + 'Return' => '174077', + 'ShortName' => 'getProperty', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '304' }, - '19243380' => { - 'Artificial' => 1, - 'Class' => '19209938', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEEC1IS2_INS0_12TimeZoneImpl11GMTTimeZoneEEJEEEOT_DpOT0_', + '26802622' => { + 'Class' => '564699', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'Line' => '191', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent17getPropertyKeySetB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822716' + } + }, + 'Return' => '20755196', + 'ShortName' => 'getPropertyKeySet', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '322' + }, + '26802654' => { + 'Class' => '564699', + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent11setPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213510' + 'type' => '2523493' }, '1' => { - 'name' => 'arg0', - 'type' => '19213632' + 'name' => 'key', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '19175080' - } - } + 'Return' => '1', + 'ShortName' => 'setProperty', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '439' + }, + '26802781' => { + 'Class' => '564699', + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent20getCurrentThreadNameB5cxx11Ev', + 'Private' => 1, + 'Return' => '210597', + 'ShortName' => 'getCurrentThreadName', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '340', + 'Static' => 1 + }, + '26802798' => { + 'Class' => '564699', + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent24getCurrentThreadUserNameB5cxx11Ev', + 'Private' => 1, + 'Return' => '210597', + 'ShortName' => 'getCurrentThreadUserName', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '387', + 'Static' => 1 + }, + '26804779' => { + 'Data' => 1, + 'Line' => '168', + 'MnglName' => '_ZN7log4cxx7classes24LoggingEventRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LoggingEventRegistration', + 'Source' => 'loggingevent.cpp' + }, + '26824225' => { + 'Constructor' => 1, + 'Header' => 'locationinfo.h', + 'Line' => '93', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC1ERKS1_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21204963' + }, + '1' => { + 'name' => 'src', + 'type' => '573016' + } + } + }, + '26824286' => { + 'Constructor' => 1, + 'Header' => 'locationinfo.h', + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21204963' + } + } }, - '19243795' => { + '26881772' => { 'Artificial' => 1, - 'Class' => '19208559', + 'Class' => '26799011', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213281' + 'type' => '26821814' } }, 'ShortName' => 'WideLife' }, - '19243796' => { + '26881773' => { 'Artificial' => 1, - 'Class' => '19208559', + 'Class' => '26799011', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213281' + 'type' => '26821814' } }, 'ShortName' => 'WideLife' }, - '19243937' => { + '26881916' => { 'Artificial' => 1, - 'Class' => '19208559', + 'Class' => '26799011', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213281' + 'type' => '26821814' } }, 'ShortName' => 'WideLife' }, - '19243938' => { + '26881917' => { 'Artificial' => 1, - 'Class' => '19208559', + 'Class' => '26799011', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213281' + 'type' => '26821814' } }, 'ShortName' => 'WideLife' }, - '1924432' => { - 'Class' => '1924378', - 'InLine' => 2, - 'Line' => '390', - 'MnglName' => '_ZN7log4cxx7helpers21UTF16BECharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928724' - }, - '1' => { - 'name' => 'in', - 'type' => '263006' - }, - '2' => { - 'name' => 'iter', - 'type' => '1729836' - }, - '3' => { - 'name' => 'out', - 'type' => '1340866' - } - }, - 'Return' => '838230', - 'ShortName' => 'encode', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1924647' => { - 'Class' => '1924593', - 'InLine' => 2, - 'Line' => '425', - 'MnglName' => '_ZN7log4cxx7helpers21UTF16LECharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928835' - }, - '1' => { - 'name' => 'in', - 'type' => '263006' - }, - '2' => { - 'name' => 'iter', - 'type' => '1729836' - }, - '3' => { - 'name' => 'out', - 'type' => '1340866' - } - }, - 'Return' => '838230', - 'ShortName' => 'encode', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1924920' => { - 'Class' => '1924808', - 'InLine' => 2, - 'Line' => '457', - 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928946' - }, - '1' => { - 'name' => 'in', - 'type' => '263006' - }, - '2' => { - 'name' => 'iter', - 'type' => '1729836' - }, - '3' => { - 'name' => 'out', - 'type' => '1340866' - } - }, - 'Return' => '838230', - 'ShortName' => 'encode', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1925122' => { - 'Class' => '1925027', - 'InLine' => 2, - 'Line' => '83', - 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1929057' - }, - '1' => { - 'name' => 'in', - 'type' => '263006' - }, - '2' => { - 'name' => 'iter', - 'type' => '1729836' - }, - '3' => { - 'name' => 'out', - 'type' => '1340866' - } - }, - 'Return' => '838230', - 'ShortName' => 'encode', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '1926056' => { - 'Data' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7classes26CharsetEncoderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'CharsetEncoderRegistration', - 'Source' => 'charsetencoder.cpp' - }, - '19290272' => { - 'Class' => '3413936', + '26910397' => { + 'Class' => '564699', 'Destructor' => 1, - 'Header' => 'timezone.h', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneD0Ev', + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEventD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213464' + 'type' => '2523493' } }, - 'Protected' => 1, - 'ShortName' => 'TimeZone', - 'Source' => 'timezone.cpp', - 'SourceLine' => '187', + 'ShortName' => 'LoggingEvent', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '201', 'Virt' => 1 }, - '19290273' => { - 'Class' => '3413936', + '26910496' => { + 'Class' => '564699', 'Destructor' => 1, - 'Header' => 'timezone.h', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneD1Ev', + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEventD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213464' + 'type' => '2523493' } }, - 'Protected' => 1, - 'ShortName' => 'TimeZone', - 'Source' => 'timezone.cpp', - 'SourceLine' => '187', + 'ShortName' => 'LoggingEvent', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '201', 'Virt' => 1 }, - '19290368' => { - 'Class' => '3413936', + '26914252' => { + 'Class' => '564699', 'Destructor' => 1, - 'Header' => 'timezone.h', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneD2Ev', + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEventD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213464' + 'type' => '2523493' } }, - 'Protected' => 1, - 'ShortName' => 'TimeZone', - 'Source' => 'timezone.cpp', - 'SourceLine' => '187', + 'ShortName' => 'LoggingEvent', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '201', 'Virt' => 1 }, - '19291102' => { - 'Class' => '3413936', + '26922260' => { + 'Class' => '564699', 'Constructor' => 1, - 'Header' => 'timezone.h', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEES9_RKNS0_12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213464' + 'type' => '2523493' }, - '1' => { - 'name' => 'id1', - 'type' => '263006' + '2' => { + 'name' => 'logger1', + 'type' => '210597' + }, + '3' => { + 'name' => 'level1', + 'type' => '575807' + }, + '4' => { + 'name' => 'message1', + 'type' => '210597' + }, + '5' => { + 'name' => 'locationInfo1', + 'type' => '573016' } }, - 'Protected' => 1, - 'ShortName' => 'TimeZone', - 'Source' => 'timezone.cpp', - 'SourceLine' => '183' + 'ShortName' => 'LoggingEvent', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '194' }, - '19291103' => { - 'Class' => '3413936', + '26931127' => { + 'Class' => '564699', 'Constructor' => 1, - 'Header' => 'timezone.h', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEERKNS0_12LocationInfoEOS7_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213464' + 'type' => '2523493' }, - '1' => { - 'name' => 'id1', - 'type' => '263006' + '2' => { + 'name' => 'logger', + 'type' => '210597' + }, + '3' => { + 'name' => 'level', + 'type' => '575807' + }, + '4' => { + 'name' => 'location', + 'type' => '573016' + }, + '5' => { + 'name' => 'message', + 'type' => '21209470' } }, - 'Protected' => 1, - 'ShortName' => 'TimeZone', - 'Source' => 'timezone.cpp', - 'SourceLine' => '183' + 'ShortName' => 'LoggingEvent', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '184' }, - '19299033' => { - 'Artificial' => 1, - 'Class' => '19208939', - 'Destructor' => 1, - 'Header' => 'timezone.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD0Ev', + '26935752' => { + 'Class' => '564699', + 'Constructor' => 1, + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19214842' + 'type' => '2523493' } }, - 'ShortName' => 'ClazzTimeZone', - 'Virt' => 1 + 'ShortName' => 'LoggingEvent', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '179' }, - '19299034' => { - 'Artificial' => 1, - 'Class' => '19208939', - 'Destructor' => 1, - 'Header' => 'timezone.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD1Ev', + '26938557' => { + 'Class' => '564699', + 'Constructor' => 1, + 'Header' => 'loggingevent.h', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEventC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19214842' + 'type' => '2523493' } }, - 'ShortName' => 'ClazzTimeZone', - 'Virt' => 1 + 'ShortName' => 'LoggingEvent', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '179' }, - '19299175' => { + '26943808' => { 'Artificial' => 1, - 'Class' => '19208939', + 'Class' => '564713', 'Destructor' => 1, - 'Header' => 'timezone.h', + 'Header' => 'loggingevent.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD2Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19214842' + 'type' => '26822791' } }, - 'ShortName' => 'ClazzTimeZone', + 'ShortName' => 'ClazzLoggingEvent', 'Virt' => 1 }, - '19299265' => { + '26943809' => { 'Artificial' => 1, - 'Class' => '19208939', - 'Constructor' => 1, - 'Header' => 'timezone.h', + 'Class' => '564713', + 'Destructor' => 1, + 'Header' => 'loggingevent.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneC2Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19214842' + 'type' => '26822791' } }, - 'ShortName' => 'ClazzTimeZone' + 'ShortName' => 'ClazzLoggingEvent', + 'Virt' => 1 }, - '19299266' => { + '26943955' => { 'Artificial' => 1, - 'Class' => '19208939', - 'Constructor' => 1, - 'Header' => 'timezone.h', + 'Class' => '564713', + 'Destructor' => 1, + 'Header' => 'loggingevent.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneC1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19214842' + 'type' => '26822791' } }, - 'ShortName' => 'ClazzTimeZone' + 'ShortName' => 'ClazzLoggingEvent', + 'Virt' => 1 }, - '19463833' => { + '26944050' => { 'Artificial' => 1, - 'Class' => '1149270', + 'Class' => '564713', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'loggingevent.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA4_KcJEEEOT_DpOT0_', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8378360' + 'type' => '26822791' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '8378360' - } - } + 'ShortName' => 'ClazzLoggingEvent' }, - '19463834' => { + '26944051' => { 'Artificial' => 1, - 'Class' => '1149270', + 'Class' => '564713', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'loggingevent.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA4_KcJEEEOT_DpOT0_', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8378360' + 'type' => '26822791' } }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '8378360' - } - } + 'ShortName' => 'ClazzLoggingEvent' }, - '1949483' => { - 'Artificial' => 1, - 'Class' => '1923953', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '218', - 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetEncoderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928502' - } - }, - 'ShortName' => 'USASCIICharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1949484' => { - 'Artificial' => 1, - 'Class' => '1923953', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '218', - 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetEncoderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928502' - } - }, - 'ShortName' => 'USASCIICharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1949629' => { - 'Artificial' => 1, - 'Class' => '1923953', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '218', - 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetEncoderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928502' - } - }, - 'ShortName' => 'USASCIICharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1949736' => { - 'Artificial' => 1, - 'Class' => '1924163', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '262', - 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928613' - } - }, - 'ShortName' => 'ISOLatinCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1949737' => { - 'Artificial' => 1, - 'Class' => '1924163', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '262', - 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928613' - } - }, - 'ShortName' => 'ISOLatinCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1949883' => { - 'Artificial' => 1, - 'Class' => '1924163', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '262', - 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928613' - } - }, - 'ShortName' => 'ISOLatinCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1949990' => { - 'Artificial' => 1, - 'Class' => '1923738', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '306', - 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetEncoderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928391' - } - }, - 'ShortName' => 'TrivialCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1949991' => { - 'Artificial' => 1, - 'Class' => '1923738', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '306', - 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetEncoderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928391' - } - }, - 'ShortName' => 'TrivialCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1950137' => { - 'Artificial' => 1, - 'Class' => '1923738', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '306', - 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetEncoderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928391' - } - }, - 'ShortName' => 'TrivialCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1950244' => { - 'Artificial' => 1, - 'Class' => '1924378', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '383', - 'MnglName' => '_ZN7log4cxx7helpers21UTF16BECharsetEncoderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928724' - } - }, - 'ShortName' => 'UTF16BECharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1950245' => { - 'Artificial' => 1, - 'Class' => '1924378', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '383', - 'MnglName' => '_ZN7log4cxx7helpers21UTF16BECharsetEncoderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928724' - } - }, - 'ShortName' => 'UTF16BECharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '1950391' => { + '2696257' => { 'Artificial' => 1, - 'Class' => '1924378', + 'Class' => '2507835', 'Destructor' => 1, + 'Header' => 'asyncappender.h', 'InLine' => 1, - 'Line' => '383', - 'MnglName' => '_ZN7log4cxx7helpers21UTF16BECharsetEncoderD2Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928724' + 'type' => '2525100' } }, - 'ShortName' => 'UTF16BECharsetEncoder', - 'Source' => 'charsetencoder.cpp', + 'ShortName' => 'ClazzAsyncAppender', 'Virt' => 1 }, - '1950498' => { + '2696258' => { 'Artificial' => 1, - 'Class' => '1924593', + 'Class' => '2507835', 'Destructor' => 1, + 'Header' => 'asyncappender.h', 'InLine' => 1, - 'Line' => '417', - 'MnglName' => '_ZN7log4cxx7helpers21UTF16LECharsetEncoderD0Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928835' + 'type' => '2525100' } }, - 'ShortName' => 'UTF16LECharsetEncoder', - 'Source' => 'charsetencoder.cpp', + 'ShortName' => 'ClazzAsyncAppender', 'Virt' => 1 }, - '1950499' => { + '2696403' => { 'Artificial' => 1, - 'Class' => '1924593', + 'Class' => '2507835', 'Destructor' => 1, + 'Header' => 'asyncappender.h', 'InLine' => 1, - 'Line' => '417', - 'MnglName' => '_ZN7log4cxx7helpers21UTF16LECharsetEncoderD1Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928835' + 'type' => '2525100' } }, - 'ShortName' => 'UTF16LECharsetEncoder', - 'Source' => 'charsetencoder.cpp', + 'ShortName' => 'ClazzAsyncAppender', 'Virt' => 1 }, - '1950645' => { + '2696497' => { 'Artificial' => 1, - 'Class' => '1924593', - 'Destructor' => 1, + 'Class' => '2507835', + 'Constructor' => 1, + 'Header' => 'asyncappender.h', 'InLine' => 1, - 'Line' => '417', - 'MnglName' => '_ZN7log4cxx7helpers21UTF16LECharsetEncoderD2Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928835' + 'type' => '2525100' } }, - 'ShortName' => 'UTF16LECharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 + 'ShortName' => 'ClazzAsyncAppender' }, - '1950752' => { + '2696498' => { 'Artificial' => 1, - 'Class' => '1924808', - 'Destructor' => 1, + 'Class' => '2507835', + 'Constructor' => 1, + 'Header' => 'asyncappender.h', 'InLine' => 1, - 'Line' => '451', - 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetEncoderD0Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928946' + 'type' => '2525100' } }, - 'ShortName' => 'LocaleCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 + 'ShortName' => 'ClazzAsyncAppender' }, - '1950753' => { + '2697077' => { 'Artificial' => 1, - 'Class' => '1924808', + 'Class' => '567947', 'Destructor' => 1, + 'Header' => 'appender.h', 'InLine' => 1, - 'Line' => '451', - 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetEncoderD1Ev', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx8AppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928946' + 'type' => '2679474' } }, - 'ShortName' => 'LocaleCharsetEncoder', - 'Source' => 'charsetencoder.cpp', + 'ShortName' => 'Appender', 'Virt' => 1 }, - '1950899' => { + '2697078' => { 'Artificial' => 1, - 'Class' => '1924808', + 'Class' => '567947', 'Destructor' => 1, + 'Header' => 'appender.h', 'InLine' => 1, - 'Line' => '451', - 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetEncoderD2Ev', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx8AppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928946' + 'type' => '2679474' } }, - 'ShortName' => 'LocaleCharsetEncoder', - 'Source' => 'charsetencoder.cpp', + 'ShortName' => 'Appender', 'Virt' => 1 }, - '19531205' => { - 'Class' => '19531084', - 'Const' => 1, - 'Header' => 'triggeringpolicy.h', - 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicy7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '19532771' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '19531296' => { - 'Class' => '6059004', - 'Header' => 'triggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy13registerClassEv', - 'Return' => '64684', + '27272149' => { + 'Class' => '3121054', + 'Header' => 'loggingeventpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'triggeringpolicy.cpp', - 'SourceLine' => '24', + 'Source' => 'loggingeventpatternconverter.cpp', + 'SourceLine' => '28', 'Static' => 1 }, - '19531313' => { - 'Class' => '6059004', - 'Const' => 1, - 'Header' => 'triggeringpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling16TriggeringPolicy8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6090106' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'triggeringpolicy.cpp', - 'SourceLine' => '24', - 'Virt' => 1, - 'VirtPos' => '2' + '27274765' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes40LoggingEventPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'LoggingEventPatternConverterRegistration', + 'Source' => 'loggingeventpatternconverter.cpp' }, - '19531482' => { - 'Class' => '6059004', - 'Header' => 'triggeringpolicy.h', - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', + '27284619' => { + 'Class' => '3120362', + 'Constructor' => 1, + 'Header' => 'patternconverter.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterC2ESt10unique_ptrINS1_23PatternConverterPrivateESt14default_deleteIS3_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6087607' - }, - '1' => { - 'name' => 'p1', - 'type' => '264877' + 'type' => '6085855' }, '2' => { - 'name' => 'p2', - 'type' => '154261' - }, - '3' => { - 'name' => 'p3', - 'type' => '263006' - }, - '4' => { - 'name' => 'p4', - 'type' => '50486' + 'name' => 'priv', + 'offset' => '0', + 'type' => '2968054' } }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'isTriggeringEvent', - 'VirtPos' => '7' - }, - '19531557' => { - 'Data' => 1, - 'Line' => '24', - 'MnglName' => '_ZN7log4cxx7classes28TriggeringPolicyRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'TriggeringPolicyRegistration', - 'Source' => 'triggeringpolicy.cpp' + 'Protected' => 1, + 'ShortName' => 'PatternConverter', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '28' }, - '19536070' => { + '27290330' => { 'Artificial' => 1, - 'Class' => '19529953', + 'Class' => '27270068', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532559' + 'type' => '27282695' } }, 'ShortName' => 'WideLife' }, - '19536071' => { + '27290331' => { 'Artificial' => 1, - 'Class' => '19529953', + 'Class' => '27270068', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532559' + 'type' => '27282695' } }, 'ShortName' => 'WideLife' }, - '19536211' => { + '27290473' => { 'Artificial' => 1, - 'Class' => '19529953', + 'Class' => '27270068', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532559' + 'type' => '27282695' } }, 'ShortName' => 'WideLife' }, - '19536212' => { + '27290474' => { 'Artificial' => 1, - 'Class' => '19529953', + 'Class' => '27270068', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532559' + 'type' => '27282695' } }, 'ShortName' => 'WideLife' }, - '19536569' => { - 'Class' => '6059004', - 'Destructor' => 1, - 'Header' => 'triggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyD0Ev', + '27292203' => { + 'Class' => '3121054', + 'Constructor' => 1, + 'Header' => 'loggingeventpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterC1ESt10unique_ptrINS0_16PatternConverter23PatternConverterPrivateESt14default_deleteIS4_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6087613' + 'type' => '6114592' + }, + '1' => { + 'name' => 'priv', + 'type' => '2968054' } }, - 'ShortName' => 'TriggeringPolicy', - 'Source' => 'triggeringpolicy.cpp', - 'SourceLine' => '26', - 'Virt' => 1 + 'Protected' => 1, + 'ShortName' => 'LoggingEventPatternConverter', + 'Source' => 'loggingeventpatternconverter.cpp', + 'SourceLine' => '37' }, - '19536667' => { - 'Class' => '6059004', - 'Destructor' => 1, - 'Header' => 'triggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyD1Ev', + '27294387' => { + 'Class' => '3121054', + 'Constructor' => 1, + 'Header' => 'loggingeventpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6087613' + 'type' => '6114592' + }, + '1' => { + 'name' => 'name1', + 'type' => '210597' + }, + '2' => { + 'name' => 'style1', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'TriggeringPolicy', - 'Source' => 'triggeringpolicy.cpp', - 'SourceLine' => '26', - 'Virt' => 1 + 'Protected' => 1, + 'ShortName' => 'LoggingEventPatternConverter', + 'Source' => 'loggingeventpatternconverter.cpp', + 'SourceLine' => '32' }, - '19536710' => { - 'Class' => '6059004', + '27296353' => { + 'Artificial' => 1, + 'Class' => '3121060', 'Destructor' => 1, - 'Header' => 'triggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyD2Ev', + 'Header' => 'loggingeventpatternconverter.h', + 'InLine' => 1, + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6087613' + 'type' => '27283395' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'TriggeringPolicy', - 'Source' => 'triggeringpolicy.cpp', - 'SourceLine' => '26', + 'ShortName' => 'ClazzLoggingEventPatternConverter', 'Virt' => 1 }, - '19538592' => { + '27296354' => { 'Artificial' => 1, - 'Class' => '19531084', + 'Class' => '3121060', 'Destructor' => 1, - 'Header' => 'triggeringpolicy.h', + 'Header' => 'loggingeventpatternconverter.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD0Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532760' + 'type' => '27283395' } }, - 'ShortName' => 'ClazzTriggeringPolicy', + 'ShortName' => 'ClazzLoggingEventPatternConverter', 'Virt' => 1 }, - '19538593' => { + '27296499' => { 'Artificial' => 1, - 'Class' => '19531084', + 'Class' => '3121060', 'Destructor' => 1, - 'Header' => 'triggeringpolicy.h', + 'Header' => 'loggingeventpatternconverter.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD1Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532760' + 'type' => '27283395' } }, - 'ShortName' => 'ClazzTriggeringPolicy', + 'ShortName' => 'ClazzLoggingEventPatternConverter', 'Virt' => 1 }, - '19538733' => { + '27296594' => { 'Artificial' => 1, - 'Class' => '19531084', - 'Destructor' => 1, - 'Header' => 'triggeringpolicy.h', + 'Class' => '3121060', + 'Constructor' => 1, + 'Header' => 'loggingeventpatternconverter.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD2Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532760' + 'type' => '27283395' } }, - 'ShortName' => 'ClazzTriggeringPolicy', - 'Virt' => 1 + 'ShortName' => 'ClazzLoggingEventPatternConverter' }, - '19538823' => { + '27296595' => { 'Artificial' => 1, - 'Class' => '19531084', + 'Class' => '3121060', 'Constructor' => 1, - 'Header' => 'triggeringpolicy.h', + 'Header' => 'loggingeventpatternconverter.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyC2Ev', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532760' + 'type' => '27283395' } }, - 'ShortName' => 'ClazzTriggeringPolicy' + 'ShortName' => 'ClazzLoggingEventPatternConverter' + }, + '27581920' => { + 'Class' => '7856744', + 'Header' => 'systemerrwriter.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'str', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '65', + 'Static' => 1 }, - '19538824' => { + '27599746' => { 'Artificial' => 1, - 'Class' => '19531084', - 'Constructor' => 1, - 'Header' => 'triggeringpolicy.h', + 'Class' => '27581394', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyC1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532760' + 'type' => '27589174' } }, - 'ShortName' => 'ClazzTriggeringPolicy' + 'ShortName' => 'WideLife' }, - '19596453' => { - 'Class' => '19596333', - 'Const' => 1, - 'Header' => 'writer.h', - 'InLine' => 2, - 'Line' => '36', - 'MnglName' => '_ZNK7log4cxx7helpers6Writer11ClazzWriter7getNameB5cxx11Ev', + '27599747' => { + 'Artificial' => 1, + 'Class' => '27581394', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598688' + 'type' => '27589174' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '19596519' => { - 'Class' => '1248265', - 'Header' => 'writer.h', - 'MnglName' => '_ZN7log4cxx7helpers6Writer13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'writer.cpp', - 'SourceLine' => '25', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '19596536' => { - 'Class' => '1248265', - 'Const' => 1, - 'Header' => 'writer.h', - 'MnglName' => '_ZNK7log4cxx7helpers6Writer8getClassEv', + '27599889' => { + 'Artificial' => 1, + 'Class' => '27581394', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1271027' + 'type' => '27589174' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'writer.cpp', - 'SourceLine' => '25', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'WideLife' }, - '19596619' => { - 'Class' => '1248265', - 'Const' => 1, - 'Header' => 'writer.h', - 'InLine' => 2, + '27599890' => { + 'Artificial' => 1, + 'Class' => '27581394', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers6Writer10instanceofERKNS0_5ClassE', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1271027' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '27589174' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'WideLife' }, - '19596727' => { - 'Class' => '1248265', - 'Header' => 'writer.h', - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers6Writer5closeERNS0_4PoolE', + '27613378' => { + 'Class' => '1374445', + 'Destructor' => 1, + 'Header' => 'loglog.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers6LogLogD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4976475' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' + 'type' => '27587455' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'close', - 'VirtPos' => '5' + 'ShortName' => 'LogLog', + 'Source' => 'loglog.cpp', + 'SourceLine' => '60' }, - '19596767' => { - 'Class' => '1248265', - 'Header' => 'writer.h', + '27613835' => { + 'Class' => '1374445', + 'Constructor' => 1, + 'Header' => 'loglog.h', 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers6Writer5flushERNS0_4PoolE', + 'MnglName' => '_ZN7log4cxx7helpers6LogLogC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4976475' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' + 'type' => '27587455' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'flush', - 'VirtPos' => '6' + 'Private' => 1, + 'ShortName' => 'LogLog', + 'Source' => 'loglog.cpp', + 'SourceLine' => '53' }, - '19596807' => { - 'Class' => '1248265', - 'Header' => 'writer.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7helpers6Writer5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', + '27613836' => { + 'Class' => '1374445', + 'Constructor' => 1, + 'Header' => 'loglog.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers6LogLogC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4976475' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'type' => '27587455' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'write', - 'VirtPos' => '7' + 'Private' => 1, + 'ShortName' => 'LogLog', + 'Source' => 'loglog.cpp', + 'SourceLine' => '53' + }, + '28004265' => { + 'Class' => '11314111', + 'Header' => 'defaultrepositoryselector.h', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '28004281' => { + 'Class' => '11314111', + 'Header' => 'defaultrepositoryselector.h', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '43', + 'Static' => 1 }, - '19597675' => { + '28007984' => { 'Data' => 1, - 'Line' => '25', - 'MnglName' => '_ZN7log4cxx7classes18WriterRegistrationE', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7classes37DefaultRepositorySelectorRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'WriterRegistration', - 'Source' => 'writer.cpp' + 'Return' => '210733', + 'ShortName' => 'DefaultRepositorySelectorRegistration', + 'Source' => 'logmanager.cpp' + }, + '28008151' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3spi18RepositorySelectorENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '1937382' + } + }, + 'Return' => '3044231', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '3118493' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '19601878' => { + '28045837' => { 'Artificial' => 1, - 'Class' => '19595957', + 'Class' => '28001275', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598487' + 'type' => '28017007' } }, 'ShortName' => 'WideLife' }, - '19601879' => { + '28045838' => { 'Artificial' => 1, - 'Class' => '19595957', + 'Class' => '28001275', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598487' + 'type' => '28017007' } }, 'ShortName' => 'WideLife' }, - '19602019' => { + '28045980' => { 'Artificial' => 1, - 'Class' => '19595957', + 'Class' => '28001275', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598487' + 'type' => '28017007' } }, 'ShortName' => 'WideLife' }, - '19602020' => { + '28045981' => { 'Artificial' => 1, - 'Class' => '19595957', + 'Class' => '28001275', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598487' + 'type' => '28017007' } }, 'ShortName' => 'WideLife' }, - '19602368' => { - 'Class' => '1248265', + '28083128' => { + 'Artificial' => 1, + 'Class' => '11314196', 'Destructor' => 1, - 'Header' => 'writer.h', - 'MnglName' => '_ZN7log4cxx7helpers6WriterD0Ev', + 'Header' => 'defaultrepositoryselector.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598654' + 'type' => '28018638' } }, - 'Protected' => 1, - 'ShortName' => 'Writer', - 'Source' => 'writer.cpp', - 'SourceLine' => '31', + 'ShortName' => 'ClazzDefaultRepositorySelector', 'Virt' => 1 }, - '19602369' => { - 'Class' => '1248265', + '28083129' => { + 'Artificial' => 1, + 'Class' => '11314196', 'Destructor' => 1, - 'Header' => 'writer.h', - 'MnglName' => '_ZN7log4cxx7helpers6WriterD1Ev', + 'Header' => 'defaultrepositoryselector.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598654' + 'type' => '28018638' } }, - 'Protected' => 1, - 'ShortName' => 'Writer', - 'Source' => 'writer.cpp', - 'SourceLine' => '31', + 'ShortName' => 'ClazzDefaultRepositorySelector', 'Virt' => 1 }, - '19602463' => { - 'Class' => '1248265', + '28083275' => { + 'Artificial' => 1, + 'Class' => '11314196', 'Destructor' => 1, - 'Header' => 'writer.h', - 'MnglName' => '_ZN7log4cxx7helpers6WriterD2Ev', + 'Header' => 'defaultrepositoryselector.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598654' + 'type' => '28018638' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Writer', - 'Source' => 'writer.cpp', - 'SourceLine' => '31', + 'ShortName' => 'ClazzDefaultRepositorySelector', 'Virt' => 1 }, - '19602578' => { - 'Class' => '1248265', + '28083370' => { + 'Artificial' => 1, + 'Class' => '11314196', 'Constructor' => 1, - 'Header' => 'writer.h', - 'MnglName' => '_ZN7log4cxx7helpers6WriterC2Ev', + 'Header' => 'defaultrepositoryselector.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598654' + 'type' => '28018638' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Writer', - 'Source' => 'writer.cpp', - 'SourceLine' => '27' + 'ShortName' => 'ClazzDefaultRepositorySelector' }, - '19602579' => { - 'Class' => '1248265', + '28083371' => { + 'Artificial' => 1, + 'Class' => '11314196', 'Constructor' => 1, - 'Header' => 'writer.h', - 'MnglName' => '_ZN7log4cxx7helpers6WriterC1Ev', + 'Header' => 'defaultrepositoryselector.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598654' + 'type' => '28018638' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Writer', - 'Source' => 'writer.cpp', - 'SourceLine' => '27' + 'ShortName' => 'ClazzDefaultRepositorySelector' }, - '19604665' => { - 'Artificial' => 1, - 'Class' => '19596333', - 'Destructor' => 1, - 'Header' => 'writer.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterD0Ev', + '28401576' => { + 'Class' => '28401382', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamlsEPFRSt8ios_baseS2_E', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598677' + 'type' => '28411635' + }, + '1' => { + 'name' => 'manip', + 'type' => '573448' } }, - 'ShortName' => 'ClazzWriter', - 'Virt' => 1 + 'Return' => '28411655', + 'ShortName' => 'operator<<', + 'Source' => 'logstream.cpp', + 'SourceLine' => '393' }, - '19604666' => { - 'Artificial' => 1, - 'Class' => '19596333', - 'Destructor' => 1, - 'Header' => 'writer.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterD1Ev', + '28401613' => { + 'Class' => '28401382', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamlsEPFRNS_14logstream_baseES2_E', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598677' + 'type' => '28411635' + }, + '1' => { + 'name' => 'manip', + 'type' => '28411660' } }, - 'ShortName' => 'ClazzWriter', - 'Virt' => 1 + 'Return' => '28411655', + 'ShortName' => 'operator<<', + 'Source' => 'logstream.cpp', + 'SourceLine' => '366' }, - '19604806' => { - 'Artificial' => 1, - 'Class' => '19596333', - 'Destructor' => 1, - 'Header' => 'writer.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterD2Ev', + '28401650' => { + 'Class' => '28401382', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamlsERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598677' + 'type' => '28411635' + }, + '1' => { + 'name' => 'l', + 'type' => '575807' } }, - 'ShortName' => 'ClazzWriter', - 'Virt' => 1 + 'Return' => '28411655', + 'ShortName' => 'operator<<', + 'Source' => 'logstream.cpp', + 'SourceLine' => '372' }, - '19604896' => { - 'Artificial' => 1, - 'Class' => '19596333', - 'Constructor' => 1, - 'Header' => 'writer.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterC2Ev', + '28401687' => { + 'Class' => '28401382', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamlsERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598677' + 'type' => '28411635' + }, + '1' => { + 'name' => 'newlocation', + 'type' => '573016' } }, - 'ShortName' => 'ClazzWriter' + 'Return' => '28411655', + 'ShortName' => 'operator<<', + 'Source' => 'logstream.cpp', + 'SourceLine' => '378' }, - '19604897' => { - 'Artificial' => 1, - 'Class' => '19596333', - 'Constructor' => 1, - 'Header' => 'writer.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterC1Ev', + '28401724' => { + 'Class' => '28401382', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamrsERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19598677' + 'type' => '28411635' + }, + '1' => { + 'name' => 'newlocation', + 'type' => '573016' } }, - 'ShortName' => 'ClazzWriter' + 'Return' => '28411655', + 'ShortName' => 'operator>>', + 'Source' => 'logstream.cpp', + 'SourceLine' => '384' }, - '19733525' => { - 'Class' => '19733404', - 'Const' => 1, - 'Header' => 'writerappender.h', - 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx14WriterAppender19ClazzWriterAppender7getNameB5cxx11Ev', + '28401761' => { + 'Class' => '28401382', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamcvRSt13basic_ostreamIwSt11char_traitsIwEEEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739952' + 'type' => '28411635' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '19733845' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '32', - 'Static' => 1 + 'Return' => '204110', + 'ShortName' => 'operator std::basic_ostream&', + 'Source' => 'logstream.cpp', + 'SourceLine' => '399' }, - '19733862' => { - 'Class' => '2844858', - 'Const' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZNK7log4cxx14WriterAppender8getClassEv', + '28401793' => { + 'Class' => '28401382', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstream3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '3029741' + 'type' => '28411635' + }, + '1' => { + 'name' => 'log', + 'type' => '18750555' + }, + '2' => { + 'name' => 'lev', + 'type' => '575807' + }, + '3' => { + 'name' => 'loc', + 'type' => '573016' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '32', + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'log', + 'Source' => 'logstream.cpp', + 'SourceLine' => '410', 'Virt' => 1, 'VirtPos' => '2' }, - '19734274' => { - 'Class' => '2844858', - 'Const' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZNK7log4cxx14WriterAppender17getImmediateFlushEv', + '28401841' => { + 'Class' => '28401382', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstream5eraseEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '3029741' + 'type' => '28411635' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getImmediateFlush', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '325' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'erase', + 'Source' => 'logstream.cpp', + 'SourceLine' => '426', + 'Virt' => 1, + 'VirtPos' => '3' }, - '19734306' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '28401876' => { + 'Class' => '28401382', + 'Const' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZNK7log4cxx10wlogstream16get_stream_stateERSt8ios_baseS2_RiRb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411696' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'base', + 'type' => '203737' }, '2' => { - 'name' => 'pool1', - 'type' => '64643' + 'name' => 'mask', + 'type' => '203737' + }, + '3' => { + 'name' => 'fill', + 'type' => '4230610' + }, + '4' => { + 'name' => 'fillSet', + 'type' => '568268' } }, + 'Protected' => 1, 'Return' => '1', - 'ShortName' => 'append', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '91', + 'ShortName' => 'get_stream_state', + 'Source' => 'logstream.cpp', + 'SourceLine' => '436', 'Virt' => 1, - 'VirtPos' => '17' + 'VirtPos' => '4' }, - '19734352' => { - 'Class' => '2844858', - 'Const' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv', + '28401931' => { + 'Class' => '28401382', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstream20refresh_stream_stateEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '3029741' + 'type' => '28411635' } }, 'Protected' => 1, - 'Return' => '50284', - 'ShortName' => 'checkEntryConditions', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '108', + 'Return' => '1', + 'ShortName' => 'refresh_stream_state', + 'Source' => 'logstream.cpp', + 'SourceLine' => '457', 'Virt' => 1, - 'VirtPos' => '18' + 'VirtPos' => '5' }, - '19734529' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppender11setEncodingERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '28402151' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base6insertEPFRSt8ios_baseS2_E', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411800' }, '1' => { - 'name' => 'enc', - 'type' => '263006' + 'name' => 'manip', + 'type' => '573448' } }, 'Return' => '1', - 'ShortName' => 'setEncoding', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '248' + 'ShortName' => 'insert', + 'Source' => 'logstream.cpp', + 'SourceLine' => '64' }, - '19734641' => { - 'Class' => '2844858', - 'Const' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZNK7log4cxx14WriterAppender9getWriterEv', + '28402183' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base9precisionEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '3029741' + 'type' => '28411800' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '19732349', - 'ShortName' => 'getWriter', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '330' + 'Return' => '190263', + 'ShortName' => 'precision', + 'Source' => 'logstream.cpp', + 'SourceLine' => '125' }, - '19734673' => { - 'Class' => '2844858', - 'Const' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZNK7log4cxx14WriterAppender14requiresLayoutEv', + '28402213' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base5widthEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '3029741' + 'type' => '28411800' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'requiresLayout', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '302', - 'Virt' => 1, - 'VirtPos' => '16' + 'Return' => '190263', + 'ShortName' => 'width', + 'Source' => 'logstream.cpp', + 'SourceLine' => '140' }, - '19734760' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE', + '28402243' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base9precisionEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411800' }, '1' => { 'name' => 'p', - 'type' => '64643' + 'type' => '190263' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'writeFooter', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '270', - 'Virt' => 1, - 'VirtPos' => '21' + 'Return' => '190263', + 'ShortName' => 'precision', + 'Source' => 'logstream.cpp', + 'SourceLine' => '116' }, - '19734802' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE', + '28402278' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base5widthEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411800' }, '1' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'w', + 'type' => '190263' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'writeHeader', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '280', - 'Virt' => 1, - 'VirtPos' => '22' - }, - '19734968' => { - 'Data' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7classes26WriterAppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'WriterAppenderRegistration', - 'Source' => 'writerappender.cpp' + 'Return' => '190263', + 'ShortName' => 'width', + 'Source' => 'logstream.cpp', + 'SourceLine' => '131' }, - '19771262' => { - 'Artificial' => 1, - 'Class' => '19731536', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEED2Ev', + '28402313' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base4fillEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19738845' + 'type' => '28411800' } }, - 'ShortName' => 'WideLife' + 'Return' => '190263', + 'ShortName' => 'fill', + 'Source' => 'logstream.cpp', + 'SourceLine' => '156' }, - '19771263' => { - 'Artificial' => 1, - 'Class' => '19731536', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEED0Ev', + '28402343' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base4fillEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19738845' + 'type' => '28411800' + }, + '1' => { + 'name' => 'newfill', + 'type' => '190263' } }, - 'ShortName' => 'WideLife' + 'Return' => '190263', + 'ShortName' => 'fill', + 'Source' => 'logstream.cpp', + 'SourceLine' => '146' }, - '19771404' => { - 'Artificial' => 1, - 'Class' => '19731536', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEEC2Ev', + '28402378' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base5flagsESt13_Ios_Fmtflags', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19738845' + 'type' => '28411800' + }, + '1' => { + 'name' => 'newflags', + 'type' => '18063531' } }, - 'ShortName' => 'WideLife' + 'Return' => '18063531', + 'ShortName' => 'flags', + 'Source' => 'logstream.cpp', + 'SourceLine' => '162' }, - '19771405' => { - 'Artificial' => 1, - 'Class' => '19731536', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEEC1Ev', + '28402413' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base4setfESt13_Ios_FmtflagsS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19738845' + 'type' => '28411800' + }, + '1' => { + 'name' => 'newflags', + 'type' => '18063531' + }, + '2' => { + 'name' => 'mask', + 'type' => '18063531' } }, - 'ShortName' => 'WideLife' + 'Return' => '18063531', + 'ShortName' => 'setf', + 'Source' => 'logstream.cpp', + 'SourceLine' => '171' }, - '19844846' => { - 'Class' => '2844858', - 'Destructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderD0Ev', + '28402453' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base4setfESt13_Ios_Fmtflags', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411800' + }, + '1' => { + 'name' => 'newflags', + 'type' => '18063531' } }, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '58', - 'Virt' => 1 + 'Return' => '18063531', + 'ShortName' => 'setf', + 'Source' => 'logstream.cpp', + 'SourceLine' => '180' }, - '19844944' => { - 'Class' => '2844858', - 'Destructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderD1Ev', + '28402488' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base6endmsgERS0_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '19739829' + 'name' => 'stream', + 'type' => '28411681' } }, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '58', - 'Virt' => 1 + 'Return' => '28411681', + 'ShortName' => 'endmsg', + 'Source' => 'logstream.cpp', + 'SourceLine' => '93', + 'Static' => 1 }, - '19845228' => { - 'Class' => '2844858', - 'Destructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderD2Ev', + '28402515' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base3nopERS0_', + 'Param' => { + '0' => { + 'name' => 'stream', + 'type' => '28411681' + } + }, + 'Return' => '28411681', + 'ShortName' => 'nop', + 'Source' => 'logstream.cpp', + 'SourceLine' => '99', + 'Static' => 1 + }, + '28402543' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base11end_messageEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411800' } }, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '58', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'end_message', + 'Source' => 'logstream.cpp', + 'SourceLine' => '104' }, - '19845390' => { - 'Class' => '2844858', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderC1ESt10unique_ptrINS0_18WriterAppenderPrivESt14default_deleteIS2_EE', + '28402570' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base8setLevelERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411800' }, '1' => { - 'name' => 'priv', - 'type' => '2809109' + 'name' => 'newlevel', + 'type' => '575807' } }, - 'Protected' => 1, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '52' + 'Return' => '1', + 'ShortName' => 'setLevel', + 'Source' => 'logstream.cpp', + 'SourceLine' => '191' }, - '19847497' => { - 'Class' => '2844858', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderC2ESt10unique_ptrINS0_18WriterAppenderPrivESt14default_deleteIS2_EE', + '28402632' => { + 'Class' => '28402052', + 'Const' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZNK7log4cxx14logstream_base12isEnabledForERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411810' }, - '2' => { - 'name' => 'priv', - 'type' => '2809109' + '1' => { + 'name' => 'l', + 'type' => '575807' } }, - 'Protected' => 1, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '52' + 'Return' => '174077', + 'ShortName' => 'isEnabledFor', + 'Source' => 'logstream.cpp', + 'SourceLine' => '203' }, - '19849520' => { - 'Class' => '2844858', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderC1ERKSt10shared_ptrINS_6LayoutEE', + '28402667' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base11setLocationERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411800' }, '1' => { - 'name' => 'layout1', - 'type' => '412075' + 'name' => 'newlocation', + 'type' => '573016' } }, - 'Protected' => 1, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '47' + 'Return' => '1', + 'ShortName' => 'setLocation', + 'Source' => 'logstream.cpp', + 'SourceLine' => '209' }, - '19860546' => { - 'Class' => '2844858', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderC2ERKSt10shared_ptrINS_6LayoutEE', + '28402699' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base16set_stream_stateERSt8ios_baseRi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411800' + }, + '1' => { + 'name' => 'dest', + 'type' => '203737' }, '2' => { - 'name' => 'layout1', - 'type' => '412075' + 'name' => 'dstchar', + 'type' => '4230610' } }, - 'Protected' => 1, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '47' + 'Return' => '174077', + 'ShortName' => 'set_stream_state', + 'Source' => 'logstream.cpp', + 'SourceLine' => '72' }, - '19871476' => { - 'Class' => '2844858', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderC1ERKSt10shared_ptrINS_6LayoutEERS1_INS_7helpers6WriterEE', + '28402739' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'Line' => '152', + 'MnglName' => '_ZN7log4cxx14logstream_base3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411795' }, '1' => { - 'name' => 'layout1', - 'type' => '412075' + 'name' => 'p1', + 'type' => '18750555' }, '2' => { - 'name' => 'writer1', - 'type' => '1249980' + 'name' => 'p2', + 'type' => '575807' + }, + '3' => { + 'name' => 'p3', + 'type' => '573016' } }, 'Protected' => 1, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '39' + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'log', + 'VirtPos' => '2' }, - '19882977' => { - 'Class' => '2844858', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderC2ERKSt10shared_ptrINS_6LayoutEERS1_INS_7helpers6WriterEE', + '28402790' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'Line' => '158', + 'MnglName' => '_ZN7log4cxx14logstream_base5eraseEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '28411795' + } + }, + 'Protected' => 1, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'erase', + 'VirtPos' => '3' + }, + '28402825' => { + 'Class' => '28402052', + 'Const' => 1, + 'Header' => 'stream.h', + 'Line' => '164', + 'MnglName' => '_ZNK7log4cxx14logstream_base16get_stream_stateERSt8ios_baseS2_RiRb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411805' + }, + '1' => { + 'name' => 'p1', + 'type' => '203737' }, '2' => { - 'name' => 'layout1', - 'type' => '412075' + 'name' => 'p2', + 'type' => '203737' }, '3' => { - 'name' => 'writer1', - 'type' => '1249980' + 'name' => 'p3', + 'type' => '4230610' + }, + '4' => { + 'name' => 'p4', + 'type' => '568268' } }, 'Protected' => 1, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '39' + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'get_stream_state', + 'VirtPos' => '4' }, - '1988746' => { - 'Artificial' => 1, - 'Class' => '1923331', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928291' - } - }, - 'ShortName' => 'WideLife' - }, - '1988747' => { - 'Artificial' => 1, - 'Class' => '1923331', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928291' - } - }, - 'ShortName' => 'WideLife' - }, - '19894337' => { - 'Class' => '2844858', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderC1Ev', + '28402880' => { + 'Class' => '28402052', + 'Header' => 'stream.h', + 'Line' => '168', + 'MnglName' => '_ZN7log4cxx14logstream_base20refresh_stream_stateEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411795' } }, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '34' + 'Protected' => 1, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'refresh_stream_state', + 'VirtPos' => '5' }, - '1989544' => { - 'Artificial' => 1, - 'Class' => '1923331', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEEC2IPS3_JEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928291' - }, - '1' => { - 'name' => 'arg0', - 'type' => '1989483' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '1928239' - } - } - }, - '1989545' => { - 'Artificial' => 1, - 'Class' => '1923331', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEEC1IPS3_JEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928291' - }, - '1' => { - 'name' => 'arg0', - 'type' => '1989483' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '1928239' - } - } - }, - '19903854' => { - 'Class' => '2844858', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'MnglName' => '_ZN7log4cxx14WriterAppenderC2Ev', + '28403471' => { + 'Class' => '28403285', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamlsEPFRSt8ios_baseS2_E', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739829' + 'type' => '28411726' + }, + '1' => { + 'name' => 'manip', + 'type' => '573448' } }, - 'ShortName' => 'WriterAppender', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '34' + 'Return' => '28411736', + 'ShortName' => 'operator<<', + 'Source' => 'logstream.cpp', + 'SourceLine' => '264' }, - '1990417' => { - 'Artificial' => 1, - 'Class' => '1921760', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1927941' - } - }, - 'ShortName' => 'WideLife' - }, - '1990418' => { - 'Artificial' => 1, - 'Class' => '1921760', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1927941' - } - }, - 'ShortName' => 'WideLife' - }, - '1990559' => { - 'Artificial' => 1, - 'Class' => '1921760', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1927941' - } - }, - 'ShortName' => 'WideLife' - }, - '1990560' => { - 'Artificial' => 1, - 'Class' => '1921760', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1927941' - } - }, - 'ShortName' => 'WideLife' - }, - '19914495' => { - 'Artificial' => 1, - 'Class' => '2844868', - 'Constructor' => 1, - 'Header' => 'writerappender_priv.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC2ERKSt10shared_ptrINS_6LayoutEERS2_INS_7helpers6WriterEE', + '28403508' => { + 'Class' => '28403285', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamlsEPFRNS_14logstream_baseES2_E', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2849470' + 'type' => '28411726' }, '1' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '2' => { - 'name' => 'writer1', - 'type' => '1249980' + 'name' => 'manip', + 'type' => '28411660' } }, - 'ShortName' => 'WriterAppenderPriv' + 'Return' => '28411736', + 'ShortName' => 'operator<<', + 'Source' => 'logstream.cpp', + 'SourceLine' => '240' }, - '19914496' => { - 'Artificial' => 1, - 'Class' => '2844868', - 'Constructor' => 1, - 'Header' => 'writerappender_priv.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC1ERKSt10shared_ptrINS_6LayoutEERS2_INS_7helpers6WriterEE', + '28403543' => { + 'Class' => '28403285', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamlsERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2849470' + 'type' => '28411726' }, '1' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '2' => { - 'name' => 'writer1', - 'type' => '1249980' + 'name' => 'l', + 'type' => '575807' } }, - 'ShortName' => 'WriterAppenderPriv' + 'Return' => '28411736', + 'ShortName' => 'operator<<', + 'Source' => 'logstream.cpp', + 'SourceLine' => '246' }, - '19924321' => { - 'Artificial' => 1, - 'Class' => '19733404', - 'Destructor' => 1, - 'Header' => 'writerappender.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD0Ev', + '28403578' => { + 'Class' => '28403285', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamlsERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739941' + 'type' => '28411726' + }, + '1' => { + 'name' => 'newlocation', + 'type' => '573016' } }, - 'ShortName' => 'ClazzWriterAppender', - 'Virt' => 1 + 'Return' => '28411736', + 'ShortName' => 'operator<<', + 'Source' => 'logstream.cpp', + 'SourceLine' => '252' }, - '19924322' => { - 'Artificial' => 1, - 'Class' => '19733404', - 'Destructor' => 1, - 'Header' => 'writerappender.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD1Ev', + '28403613' => { + 'Class' => '28403285', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamrsERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739941' + 'type' => '28411726' + }, + '1' => { + 'name' => 'newlocation', + 'type' => '573016' } }, - 'ShortName' => 'ClazzWriterAppender', - 'Virt' => 1 + 'Return' => '28411736', + 'ShortName' => 'operator>>', + 'Source' => 'logstream.cpp', + 'SourceLine' => '258' }, - '19924463' => { - 'Artificial' => 1, - 'Class' => '19733404', - 'Destructor' => 1, - 'Header' => 'writerappender.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD2Ev', + '28403650' => { + 'Class' => '28403285', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamcvRSoEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739941' + 'type' => '28411726' } }, - 'ShortName' => 'ClazzWriterAppender', - 'Virt' => 1 - }, - '19924553' => { - 'Artificial' => 1, - 'Class' => '19733404', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderC2Ev', + 'Return' => '204095', + 'ShortName' => 'operator std::basic_ostream&', + 'Source' => 'logstream.cpp', + 'SourceLine' => '270' + }, + '28403682' => { + 'Class' => '28403285', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstream3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739941' + 'type' => '28411726' + }, + '1' => { + 'name' => 'log', + 'type' => '18750555' + }, + '2' => { + 'name' => 'lev', + 'type' => '575807' + }, + '3' => { + 'name' => 'loc', + 'type' => '573016' } }, - 'ShortName' => 'ClazzWriterAppender' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'log', + 'Source' => 'logstream.cpp', + 'SourceLine' => '281', + 'Virt' => 1, + 'VirtPos' => '2' }, - '19924554' => { - 'Artificial' => 1, - 'Class' => '19733404', - 'Constructor' => 1, - 'Header' => 'writerappender.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderC1Ev', + '28403730' => { + 'Class' => '28403285', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstream5eraseEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19739941' + 'type' => '28411726' } }, - 'ShortName' => 'ClazzWriterAppender' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'erase', + 'Source' => 'logstream.cpp', + 'SourceLine' => '297', + 'Virt' => 1, + 'VirtPos' => '3' }, - '20014992' => { - 'Class' => '20014871', + '28403765' => { + 'Class' => '28403285', 'Const' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 2, - 'Line' => '59', - 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout14ClazzXMLLayout7getNameB5cxx11Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZNK7log4cxx9logstream16get_stream_stateERSt8ios_baseS2_RiRb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018279' + 'type' => '28411746' + }, + '1' => { + 'name' => 'base', + 'type' => '203737' + }, + '2' => { + 'name' => 'mask', + 'type' => '203737' + }, + '3' => { + 'name' => 'fill', + 'type' => '4230610' + }, + '4' => { + 'name' => 'fillSet', + 'type' => '568268' } }, - 'Return' => '63706', - 'ShortName' => 'getName', + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'get_stream_state', + 'Source' => 'logstream.cpp', + 'SourceLine' => '307', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '4' }, - '20015031' => { - 'Class' => '20014871', - 'Const' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 2, - 'Line' => '59', - 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv', + '28403820' => { + 'Class' => '28403285', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstream20refresh_stream_stateEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018279' + 'type' => '28411726' } }, - 'Return' => '20018217', - 'ShortName' => 'newInstance', + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'refresh_stream_state', + 'Source' => 'logstream.cpp', + 'SourceLine' => '328', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '5' }, - '20015070' => { + '28413656' => { 'Artificial' => 1, - 'Class' => '20014871', - 'Header' => 'xmllayout.h', - 'InLine' => 2, - 'Line' => '59', - 'MnglName' => '_ZTch0_h0_NK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv', + 'Class' => '28402981', + 'Destructor' => 1, + 'Header' => 'stream.h', + 'InLine' => 1, + 'Line' => '183', + 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018279' + 'type' => '28411820' } }, - 'Return' => '20018217', - 'ShortName' => '_ZTch0_h0_NK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv' + 'ShortName' => 'logstream_ios_base', + 'Virt' => 1 }, - '20015157' => { - 'Class' => '20014774', - 'Const' => 1, - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout8getClassEv', + '28413657' => { + 'Artificial' => 1, + 'Class' => '28402981', + 'Destructor' => 1, + 'Header' => 'stream.h', + 'InLine' => 1, + 'Line' => '183', + 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018251' + 'type' => '28411820' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '51', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'logstream_ios_base', + 'Virt' => 1 }, - '20015196' => { - 'Class' => '20014774', - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '51', - 'Static' => 1 + '28413803' => { + 'Artificial' => 1, + 'Class' => '28402981', + 'Destructor' => 1, + 'Header' => 'stream.h', + 'InLine' => 1, + 'Line' => '183', + 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '28411820' + } + }, + 'ShortName' => 'logstream_ios_base', + 'Virt' => 1 }, - '20015213' => { - 'Class' => '20014774', - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '51', - 'Static' => 1 + '28448333' => { + 'Class' => '28401382', + 'Destructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '28411635' + } + }, + 'ShortName' => 'wlogstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '361', + 'Virt' => 1 }, - '20015230' => { - 'Class' => '20014774', - 'Const' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 2, - 'Line' => '60', - 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout4castERKNS_7helpers5ClassE', + '28448334' => { + 'Class' => '28401382', + 'Destructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018251' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '28411635' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'wlogstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '361', + 'Virt' => 1 }, - '20015274' => { - 'Class' => '20014774', - 'Const' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 2, - 'Line' => '63', - 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout10instanceofERKNS_7helpers5ClassE', + '28448430' => { + 'Class' => '28401382', + 'Destructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018251' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '28411635' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'wlogstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '361', + 'Virt' => 1 }, - '20015398' => { - 'Class' => '20014774', - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout15setLocationInfoEb', + '28448550' => { + 'Class' => '28401382', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamC2ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411635' }, '1' => { - 'name' => 'locationInfo1', - 'type' => '50284' + 'name' => 'loggerName', + 'type' => '202811' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setLocationInfo', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '184' + 'ShortName' => 'wlogstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '356' }, - '20015430' => { - 'Class' => '20014774', - 'Const' => 1, - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout15getLocationInfoEv', + '28448551' => { + 'Class' => '28401382', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamC1ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018251' + 'type' => '28411635' + }, + '1' => { + 'name' => 'loggerName', + 'type' => '202811' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getLocationInfo', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '189' + 'ShortName' => 'wlogstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '356' }, - '20015461' => { - 'Class' => '20014774', - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout13setPropertiesEb', + '28449539' => { + 'Class' => '28401382', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamC2EPKwRKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411635' }, '1' => { - 'name' => 'flag', - 'type' => '50284' + 'name' => 'loggerName', + 'type' => '28411650' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setProperties', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '194' + 'ShortName' => 'wlogstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '349' }, - '20015493' => { - 'Class' => '20014774', - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout13getPropertiesEv', + '28449540' => { + 'Class' => '28401382', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamC1EPKwRKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411635' + }, + '1' => { + 'name' => 'loggerName', + 'type' => '28411650' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getProperties', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '199' + 'ShortName' => 'wlogstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '349' }, - '20015524' => { - 'Class' => '20014774', - 'Header' => 'xmllayout.h', - 'InLine' => 2, - 'Line' => '105', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout15activateOptionsERNS_7helpers4PoolE', + '28450528' => { + 'Class' => '28401382', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamC2ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411635' }, '1' => { - 'name' => 'p1', - 'type' => '64643' + 'name' => 'logger', + 'type' => '11940831' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'wlogstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '344' }, - '20015565' => { - 'Class' => '20014774', - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '28450529' => { + 'Class' => '28401382', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx10wlogstreamC1ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411635' }, '1' => { - 'name' => 'option', - 'type' => '263006' + 'name' => 'logger', + 'type' => '11940831' }, '2' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'level', + 'type' => '575807' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '61', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'wlogstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '344' }, - '20015611' => { - 'Class' => '20014774', - 'Const' => 1, - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '28460980' => { + 'Class' => '28403285', + 'Destructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '28411726' + } + }, + 'ShortName' => 'logstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '235', + 'Virt' => 1 + }, + '28460981' => { + 'Class' => '28403285', + 'Destructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '28411726' + } + }, + 'ShortName' => 'logstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '235', + 'Virt' => 1 + }, + '28461077' => { + 'Class' => '28403285', + 'Destructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '28411726' + } + }, + 'ShortName' => 'logstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '235', + 'Virt' => 1 + }, + '28461195' => { + 'Class' => '28403285', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018251' + 'type' => '28411726' }, '1' => { - 'name' => 'output', - 'type' => '409210' + 'name' => 'loggerName', + 'type' => '202705' }, '2' => { - 'name' => 'event', - 'type' => '154261' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'level', + 'type' => '575807' } }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '77', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'logstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '230' }, - '20015662' => { - 'Class' => '20014774', - 'Const' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 2, - 'Line' => '130', - 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout16ignoresThrowableEv', + '28461196' => { + 'Class' => '28403285', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018251' + 'type' => '28411726' + }, + '1' => { + 'name' => 'loggerName', + 'type' => '202705' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'ignoresThrowable', - 'Virt' => 1, - 'VirtPos' => '11' - }, - '20015744' => { - 'Data' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7classes21XMLLayoutRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'XMLLayoutRegistration', - 'Source' => 'xmllayout.cpp' + 'ShortName' => 'logstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '230' }, - '20031968' => { - 'Artificial' => 1, - 'Class' => '20012826', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEED2Ev', + '28462180' => { + 'Class' => '28403285', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamC2EPKcRKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20017671' + 'type' => '28411726' + }, + '1' => { + 'name' => 'loggerName', + 'type' => '28411731' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'logstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '223' }, - '20031969' => { - 'Artificial' => 1, - 'Class' => '20012826', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEED0Ev', + '28462181' => { + 'Class' => '28403285', + 'Constructor' => 1, + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamC1EPKcRKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20017671' + 'type' => '28411726' + }, + '1' => { + 'name' => 'loggerName', + 'type' => '28411731' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'logstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '223' }, - '20032110' => { - 'Artificial' => 1, - 'Class' => '20012826', + '28463165' => { + 'Class' => '28403285', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEEC2Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamC2ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20017671' + 'type' => '28411726' + }, + '1' => { + 'name' => 'logger', + 'type' => '11940831' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'logstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '218' }, - '20032111' => { - 'Artificial' => 1, - 'Class' => '20012826', + '28463166' => { + 'Class' => '28403285', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEEC1Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx9logstreamC1ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20017671' + 'type' => '28411726' + }, + '1' => { + 'name' => 'logger', + 'type' => '11940831' + }, + '2' => { + 'name' => 'level', + 'type' => '575807' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'logstream', + 'Source' => 'logstream.cpp', + 'SourceLine' => '218' }, - '20072267' => { - 'Class' => '20014774', + '28469354' => { + 'Class' => '28402052', 'Destructor' => 1, - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutD0Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_baseD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411800' } }, - 'ShortName' => 'XMLLayout', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '59', + 'ShortName' => 'logstream_base', + 'Source' => 'logstream.cpp', + 'SourceLine' => '60', 'Virt' => 1 }, - '20072365' => { - 'Class' => '20014774', + '28469355' => { + 'Class' => '28402052', 'Destructor' => 1, - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutD1Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_baseD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411800' } }, - 'ShortName' => 'XMLLayout', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '59', + 'ShortName' => 'logstream_base', + 'Source' => 'logstream.cpp', + 'SourceLine' => '60', 'Virt' => 1 }, - '20072888' => { - 'Class' => '20014774', + '28469451' => { + 'Class' => '28402052', 'Destructor' => 1, - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutD2Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_baseD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411800' } }, - 'ShortName' => 'XMLLayout', - 'Source' => 'xmllayout.cpp', - 'SourceLine' => '59', + 'ShortName' => 'logstream_base', + 'Source' => 'logstream.cpp', + 'SourceLine' => '60', 'Virt' => 1 }, - '20073342' => { - 'Class' => '20014774', + '28470932' => { + 'Class' => '28402052', 'Constructor' => 1, - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutC1Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_baseC2ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411800' + }, + '1' => { + 'name' => 'log', + 'type' => '11940831' + }, + '2' => { + 'name' => 'lvl', + 'type' => '575807' } }, - 'ShortName' => 'XMLLayout', - 'Source' => 'xmllayout.cpp', + 'ShortName' => 'logstream_base', + 'Source' => 'logstream.cpp', 'SourceLine' => '53' }, - '2007384' => { - 'Class' => '1922121', - 'Destructor' => 1, - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928245' - } - }, - 'ShortName' => 'CharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '510', - 'Virt' => 1 - }, - '2007385' => { - 'Class' => '1922121', - 'Destructor' => 1, - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928245' - } - }, - 'ShortName' => 'CharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '510', - 'Virt' => 1 - }, - '20074664' => { - 'Class' => '20014774', + '28470933' => { + 'Class' => '28402052', 'Constructor' => 1, - 'Header' => 'xmllayout.h', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutC2Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_baseC1ERKSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018223' + 'type' => '28411800' + }, + '1' => { + 'name' => 'log', + 'type' => '11940831' + }, + '2' => { + 'name' => 'lvl', + 'type' => '575807' } }, - 'ShortName' => 'XMLLayout', - 'Source' => 'xmllayout.cpp', + 'ShortName' => 'logstream_base', + 'Source' => 'logstream.cpp', 'SourceLine' => '53' }, - '2007478' => { - 'Class' => '1922121', - 'Destructor' => 1, - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928245' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'CharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '510', - 'Virt' => 1 - }, - '2007594' => { - 'Class' => '1922121', - 'Constructor' => 1, - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928245' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'CharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '506' - }, - '2007595' => { - 'Class' => '1922121', - 'Constructor' => 1, - 'Header' => 'charsetencoder.h', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1928245' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'CharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'SourceLine' => '506' - }, - '20078235' => { - 'Artificial' => 1, - 'Class' => '20014871', - 'Destructor' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 1, - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20018268' - } - }, - 'ShortName' => 'ClazzXMLLayout', - 'Virt' => 1 - }, - '20078236' => { - 'Artificial' => 1, - 'Class' => '20014871', - 'Destructor' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 1, - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20018268' - } - }, - 'ShortName' => 'ClazzXMLLayout', - 'Virt' => 1 - }, - '20078377' => { - 'Artificial' => 1, - 'Class' => '20014871', - 'Destructor' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 1, - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20018268' - } - }, - 'ShortName' => 'ClazzXMLLayout', - 'Virt' => 1 - }, - '20078467' => { - 'Artificial' => 1, - 'Class' => '20014871', + '28472890' => { + 'Class' => '28402981', 'Constructor' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 1, - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutC2Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseC2ESt13_Ios_Fmtflagsi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018268' + 'type' => '28411820' + }, + '1' => { + 'name' => 'initval', + 'type' => '18063531' + }, + '2' => { + 'name' => 'initsize', + 'type' => '190263' } }, - 'ShortName' => 'ClazzXMLLayout' + 'ShortName' => 'logstream_ios_base', + 'Source' => 'logstream.cpp', + 'SourceLine' => '33' }, - '20078468' => { - 'Artificial' => 1, - 'Class' => '20014871', + '28472891' => { + 'Class' => '28402981', 'Constructor' => 1, - 'Header' => 'xmllayout.h', - 'InLine' => 1, - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutC1Ev', + 'Header' => 'stream.h', + 'MnglName' => '_ZN7log4cxx14logstream_base18logstream_ios_baseC1ESt13_Ios_Fmtflagsi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20018268' + 'type' => '28411820' + }, + '1' => { + 'name' => 'initval', + 'type' => '18063531' + }, + '2' => { + 'name' => 'initsize', + 'type' => '190263' } }, - 'ShortName' => 'ClazzXMLLayout' + 'ShortName' => 'logstream_ios_base', + 'Source' => 'logstream.cpp', + 'SourceLine' => '33' }, - '2015074' => { - 'Artificial' => 1, - 'Class' => '1925027', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetEncoderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1929057' - } - }, - 'ShortName' => 'APRCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '2015075' => { - 'Artificial' => 1, - 'Class' => '1925027', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetEncoderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1929057' - } - }, - 'ShortName' => 'APRCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '2015241' => { - 'Artificial' => 1, - 'Class' => '1925027', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetEncoderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1929057' - } - }, - 'ShortName' => 'APRCharsetEncoder', - 'Source' => 'charsetencoder.cpp', - 'Virt' => 1 - }, - '20163927' => { - 'Class' => '20163806', - 'Const' => 1, - 'Header' => 'zipcompressaction.h', + '28791770' => { + 'Artificial' => 1, + 'Class' => '5658142', + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction22ClazzZipCompressAction7getNameB5cxx11Ev', + 'Line' => '45', + 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168494' + 'type' => '28800659' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '20164187' => { - 'Class' => '6294310', - 'Header' => 'zipcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'zipcompressaction.cpp', - 'SourceLine' => '45', - 'Static' => 1 - }, - '20164204' => { - 'Class' => '6294310', - 'Header' => 'zipcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'zipcompressaction.cpp', - 'SourceLine' => '45', - 'Static' => 1 + 'Return' => '5679583', + 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv' }, - '20164221' => { - 'Class' => '6294310', + '28791879' => { + 'Class' => '5658133', 'Const' => 1, - 'Header' => 'zipcompressaction.h', - 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction8getClassEv', + 'Header' => 'manualtriggeringpolicy.h', + 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168391' + 'type' => '28800629' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'zipcompressaction.cpp', - 'SourceLine' => '45', + 'Source' => 'manualtriggeringpolicy.cpp', + 'SourceLine' => '26', 'Virt' => 1, 'VirtPos' => '2' }, - '20164260' => { - 'Class' => '6294310', + '28791916' => { + 'Class' => '5658133', + 'Header' => 'manualtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'manualtriggeringpolicy.cpp', + 'SourceLine' => '26', + 'Static' => 1 + }, + '28791948' => { + 'Class' => '5658133', 'Const' => 1, - 'Header' => 'zipcompressaction.h', + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction4castERKNS_7helpers5ClassE', + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168391' + 'type' => '28800629' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '20164304' => { - 'Class' => '6294310', + '28791990' => { + 'Class' => '5658133', 'Const' => 1, - 'Header' => 'zipcompressaction.h', + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction10instanceofERKNS_7helpers5ClassE', + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168391' + 'type' => '28800629' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '20164400' => { - 'Class' => '6294310', - 'Const' => 1, - 'Header' => 'zipcompressaction.h', - 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction7executeERNS_7helpers4PoolE', + '28792068' => { + 'Class' => '5658133', + 'Header' => 'manualtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168391' + 'type' => '28800599' }, '1' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'p1', + 'type' => '955078' + }, + '2' => { + 'name' => 'p2', + 'type' => '576659' + }, + '3' => { + 'name' => 'p3', + 'type' => '210597' + }, + '4' => { + 'name' => 'p4', + 'type' => '190816' } }, - 'Return' => '50284', - 'ShortName' => 'execute', - 'Source' => 'zipcompressaction.cpp', - 'SourceLine' => '55', + 'Return' => '174077', + 'ShortName' => 'isTriggeringEvent', + 'Source' => 'manualtriggeringpolicy.cpp', + 'SourceLine' => '32', 'Virt' => 1, - 'VirtPos' => '5' - }, - '20165492' => { - 'Data' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7classes29ZipCompressActionRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ZipCompressActionRegistration', - 'Source' => 'zipcompressaction.cpp' + 'VirtPos' => '7' }, - '20169531' => { - 'Artificial' => 1, - 'Class' => '6294310', - 'Destructor' => 1, - 'Header' => 'zipcompressaction.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionD0Ev', + '28792125' => { + 'Class' => '5658133', + 'Header' => 'manualtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168402' + 'type' => '28800599' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'ZipCompressAction', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'manualtriggeringpolicy.cpp', + 'SourceLine' => '40', + 'Virt' => 1, + 'VirtPos' => '5' }, - '20169532' => { - 'Artificial' => 1, - 'Class' => '6294310', - 'Destructor' => 1, - 'Header' => 'zipcompressaction.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionD2Ev', + '28792164' => { + 'Class' => '5658133', + 'Header' => 'manualtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168402' + 'type' => '28800599' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210597' } }, - 'ShortName' => 'ZipCompressAction', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'manualtriggeringpolicy.cpp', + 'SourceLine' => '44', + 'Virt' => 1, + 'VirtPos' => '6' }, - '20169738' => { - 'Artificial' => 1, - 'Class' => '6294310', - 'Destructor' => 1, - 'Header' => 'zipcompressaction.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20168402' - } - }, - 'ShortName' => 'ZipCompressAction', - 'Virt' => 1 + '28792602' => { + 'Data' => 1, + 'Line' => '26', + 'MnglName' => '_ZN7log4cxx7classes34ManualTriggeringPolicyRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ManualTriggeringPolicyRegistration', + 'Source' => 'manualtriggeringpolicy.cpp' }, - '20174538' => { + '28802355' => { 'Artificial' => 1, - 'Class' => '20163969', + 'Class' => '5658133', 'Destructor' => 1, + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD0Ev', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168005' + 'type' => '28800599' } }, - 'ShortName' => 'ZipCompressActionPrivate', - 'Source' => 'zipcompressaction.cpp', + 'ShortName' => 'ManualTriggeringPolicy', 'Virt' => 1 }, - '20174539' => { + '28802356' => { 'Artificial' => 1, - 'Class' => '20163969', + 'Class' => '5658133', 'Destructor' => 1, + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD1Ev', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168005' + 'type' => '28800599' } }, - 'ShortName' => 'ZipCompressActionPrivate', - 'Source' => 'zipcompressaction.cpp', + 'ShortName' => 'ManualTriggeringPolicy', 'Virt' => 1 }, - '20174771' => { + '28802629' => { 'Artificial' => 1, - 'Class' => '20163969', + 'Class' => '5658133', 'Destructor' => 1, + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD2Ev', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168005' + 'type' => '28800599' } }, - 'ShortName' => 'ZipCompressActionPrivate', - 'Source' => 'zipcompressaction.cpp', + 'ShortName' => 'ManualTriggeringPolicy', 'Virt' => 1 }, - '20176313' => { + '28805473' => { 'Artificial' => 1, - 'Class' => '20162113', + 'Class' => '28787918', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20167880' + 'type' => '28800228' } }, 'ShortName' => 'WideLife' }, - '20176314' => { + '28805474' => { 'Artificial' => 1, - 'Class' => '20162113', + 'Class' => '28787918', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20167880' + 'type' => '28800228' } }, 'ShortName' => 'WideLife' }, - '20176455' => { + '28805616' => { 'Artificial' => 1, - 'Class' => '20162113', + 'Class' => '28787918', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20167880' + 'type' => '28800228' } }, 'ShortName' => 'WideLife' }, - '20176456' => { + '28805617' => { 'Artificial' => 1, - 'Class' => '20162113', + 'Class' => '28787918', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20167880' + 'type' => '28800228' } }, 'ShortName' => 'WideLife' }, - '2017673' => { - 'Artificial' => 1, - 'Class' => '1922139', - 'Destructor' => 1, - 'Header' => 'charsetencoder.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1931138' - } - }, - 'ShortName' => 'ClazzCharsetEncoder', - 'Virt' => 1 - }, - '2017674' => { - 'Artificial' => 1, - 'Class' => '1922139', - 'Destructor' => 1, - 'Header' => 'charsetencoder.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1931138' - } - }, - 'ShortName' => 'ClazzCharsetEncoder', - 'Virt' => 1 - }, - '2017815' => { - 'Artificial' => 1, - 'Class' => '1922139', - 'Destructor' => 1, - 'Header' => 'charsetencoder.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1931138' - } - }, - 'ShortName' => 'ClazzCharsetEncoder', - 'Virt' => 1 - }, - '2017905' => { - 'Artificial' => 1, - 'Class' => '1922139', - 'Constructor' => 1, - 'Header' => 'charsetencoder.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1931138' - } - }, - 'ShortName' => 'ClazzCharsetEncoder' - }, - '2017906' => { - 'Artificial' => 1, - 'Class' => '1922139', - 'Constructor' => 1, - 'Header' => 'charsetencoder.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1931138' - } - }, - 'ShortName' => 'ClazzCharsetEncoder' - }, - '20184038' => { - 'Class' => '6294310', + '28806194' => { + 'Class' => '5658133', 'Constructor' => 1, - 'Header' => 'zipcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionC1ERKNS_4FileES4_b', + 'Header' => 'manualtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168402' - }, - '1' => { - 'name' => 'src', - 'type' => '840075' - }, - '2' => { - 'name' => 'dest', - 'type' => '840075' - }, - '3' => { - 'name' => 'del', - 'type' => '50284' + 'type' => '28800599' } }, - 'ShortName' => 'ZipCompressAction', - 'Source' => 'zipcompressaction.cpp', - 'SourceLine' => '47' + 'ShortName' => 'ManualTriggeringPolicy', + 'Source' => 'manualtriggeringpolicy.cpp', + 'SourceLine' => '28' }, - '20187595' => { - 'Class' => '6294310', + '28806415' => { + 'Class' => '5658133', 'Constructor' => 1, - 'Header' => 'zipcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionC2ERKNS_4FileES4_b', + 'Header' => 'manualtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicyC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168402' - }, - '2' => { - 'name' => 'src', - 'type' => '840075' - }, - '3' => { - 'name' => 'dest', - 'type' => '840075' - }, - '4' => { - 'name' => 'del', - 'type' => '50284' + 'type' => '28800599' } }, - 'ShortName' => 'ZipCompressAction', - 'Source' => 'zipcompressaction.cpp', - 'SourceLine' => '47' + 'ShortName' => 'ManualTriggeringPolicy', + 'Source' => 'manualtriggeringpolicy.cpp', + 'SourceLine' => '28' }, - '20193488' => { + '28808629' => { 'Artificial' => 1, - 'Class' => '20163806', + 'Class' => '5658142', 'Destructor' => 1, - 'Header' => 'zipcompressaction.h', + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD0Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168483' + 'type' => '28800649' } }, - 'ShortName' => 'ClazzZipCompressAction', + 'ShortName' => 'ClazzManualTriggeringPolicy', 'Virt' => 1 }, - '20193489' => { + '28808630' => { 'Artificial' => 1, - 'Class' => '20163806', + 'Class' => '5658142', 'Destructor' => 1, - 'Header' => 'zipcompressaction.h', + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168483' + 'type' => '28800649' } }, - 'ShortName' => 'ClazzZipCompressAction', + 'ShortName' => 'ClazzManualTriggeringPolicy', 'Virt' => 1 }, - '20193630' => { + '28808775' => { 'Artificial' => 1, - 'Class' => '20163806', + 'Class' => '5658142', 'Destructor' => 1, - 'Header' => 'zipcompressaction.h', + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD2Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168483' + 'type' => '28800649' } }, - 'ShortName' => 'ClazzZipCompressAction', + 'ShortName' => 'ClazzManualTriggeringPolicy', 'Virt' => 1 }, - '20193720' => { + '28808870' => { 'Artificial' => 1, - 'Class' => '20163806', + 'Class' => '5658142', 'Constructor' => 1, - 'Header' => 'zipcompressaction.h', + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionC2Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168483' + 'type' => '28800649' } }, - 'ShortName' => 'ClazzZipCompressAction' + 'ShortName' => 'ClazzManualTriggeringPolicy' }, - '20193721' => { + '28808871' => { 'Artificial' => 1, - 'Class' => '20163806', + 'Class' => '5658142', 'Constructor' => 1, - 'Header' => 'zipcompressaction.h', + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionC1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20168483' + 'type' => '28800649' } }, - 'ShortName' => 'ClazzZipCompressAction' + 'ShortName' => 'ClazzManualTriggeringPolicy' }, - '20254340' => { - 'Class' => '20254220', + '29169383' => { + 'Class' => '29169270', 'Const' => 1, - 'Header' => 'datagrampacket.h', + 'Header' => 'mapfilter.h', 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket19ClazzDatagramPacket7getNameB5cxx11Ev', + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx6filter9MapFilter14ClazzMapFilter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20257020' + 'type' => '29179744' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '20254402' => { - 'Class' => '20253924', - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '63', - 'Static' => 1 + '29169420' => { + 'Class' => '29169270', + 'Const' => 1, + 'Header' => 'mapfilter.h', + 'InLine' => 2, + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29179744' + } + }, + 'Return' => '29179645', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '20254419' => { - 'Class' => '20253924', - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '63', - 'Static' => 1 + '29169457' => { + 'Artificial' => 1, + 'Class' => '29169270', + 'Header' => 'mapfilter.h', + 'InLine' => 2, + 'Line' => '49', + 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29179744' + } + }, + 'Return' => '29179645', + 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv' }, - '20254436' => { - 'Class' => '20253924', + '29169712' => { + 'Class' => '29169252', 'Const' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket8getClassEv', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter9MapFilter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256975' + 'type' => '29179675' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '63', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '42', 'Virt' => 1, 'VirtPos' => '2' }, - '20254475' => { - 'Class' => '20253924', + '29169749' => { + 'Class' => '29169252', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '42', + 'Static' => 1 + }, + '29169765' => { + 'Class' => '29169252', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '42', + 'Static' => 1 + }, + '29169781' => { + 'Class' => '29169252', 'Const' => 1, - 'Header' => 'datagrampacket.h', + 'Header' => 'mapfilter.h', 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket4castERKNS0_5ClassE', + 'Line' => '50', + 'MnglName' => '_ZNK7log4cxx6filter9MapFilter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256975' + 'type' => '29179675' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '20254519' => { - 'Class' => '20253924', + '29169823' => { + 'Class' => '29169252', 'Const' => 1, - 'Header' => 'datagrampacket.h', + 'Header' => 'mapfilter.h', 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket10instanceofERKNS0_5ClassE', + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx6filter9MapFilter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256975' + 'type' => '29179675' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '20254778' => { - 'Class' => '20253924', - 'Const' => 1, - 'Header' => 'datagrampacket.h', - 'Line' => '70', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket10getAddressEv', + '29169941' => { + 'Class' => '29169252', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256975' + 'type' => '29179650' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '7592264', - 'ShortName' => 'getAddress', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '100' + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '51', + 'Virt' => 1, + 'VirtPos' => '6' }, - '20254809' => { - 'Class' => '20253924', - 'Const' => 1, - 'Header' => 'datagrampacket.h', - 'Line' => '73', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket7getDataEv', + '29169985' => { + 'Class' => '29169252', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter11setKeyValueERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256975' + 'type' => '29179650' + }, + '1' => { + 'name' => 'strKey', + 'type' => '210597' + }, + '2' => { + 'name' => 'strValue', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50560', - 'ShortName' => 'getData', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '105' + 'Return' => '1', + 'ShortName' => 'setKeyValue', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '108' }, - '20254840' => { - 'Class' => '20253924', + '29170021' => { + 'Class' => '29169252', 'Const' => 1, - 'Header' => 'datagrampacket.h', - 'Line' => '77', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket9getLengthEv', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter9MapFilter8getValueERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256975' + 'type' => '29179675' + }, + '1' => { + 'name' => 'strKey', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getLength', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '110' + 'Return' => '210597', + 'ShortName' => 'getValue', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '113' + }, + '29170056' => { + 'Class' => '29169252', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter16setAcceptOnMatchEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29179650' + }, + '1' => { + 'name' => 'acceptOnMatch1', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setAcceptOnMatch', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '121' }, - '20254871' => { - 'Class' => '20253924', + '29170087' => { + 'Class' => '29169252', 'Const' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket9getOffsetEv', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter9MapFilter16getAcceptOnMatchEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256975' + 'type' => '29179675' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getOffset', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '115' + 'Return' => '174077', + 'ShortName' => 'getAcceptOnMatch', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '126' }, - '20254902' => { - 'Class' => '20253924', + '29170117' => { + 'Class' => '29169252', 'Const' => 1, - 'Header' => 'datagrampacket.h', - 'Line' => '85', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket7getPortEv', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter9MapFilter15getMustMatchAllEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256975' + 'type' => '29179675' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getPort', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '120' + 'Return' => '174077', + 'ShortName' => 'getMustMatchAll', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '131' }, - '20254933' => { - 'Class' => '20253924', - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket10setAddressESt10shared_ptrINS0_11InetAddressEE', + '29170147' => { + 'Class' => '29169252', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter15setMustMatchAllEb', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' + 'type' => '29179650' }, '1' => { - 'name' => 'address1', - 'type' => '7592264' + 'name' => 'mustMatchAll1', + 'type' => '174077' } }, 'Return' => '1', - 'ShortName' => 'setAddress', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '125' + 'ShortName' => 'setMustMatchAll', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '136' }, - '20254965' => { - 'Class' => '20253924', - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket7setDataEPv', + '29170178' => { + 'Class' => '29169252', + 'Const' => 1, + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter9MapFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' + 'type' => '29179675' }, '1' => { - 'name' => 'buf1', - 'type' => '50560' + 'name' => 'event', + 'type' => '576659' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setData', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '130' + 'Return' => '565023', + 'ShortName' => 'decide', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '68', + 'Virt' => 1, + 'VirtPos' => '7' }, - '20254997' => { - 'Class' => '20253924', - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket7setDataEPvii', + '29170251' => { + 'Data' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7classes21MapFilterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'MapFilterRegistration', + 'Source' => 'mapfilter.cpp' + }, + '29211240' => { + 'Artificial' => 1, + 'Class' => '29169484', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' - }, - '1' => { - 'name' => 'buf1', - 'type' => '50560' - }, - '2' => { - 'name' => 'offset1', - 'type' => '50231' - }, - '3' => { - 'name' => 'length1', - 'type' => '50231' + 'type' => '29178749' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx', - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'setData', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '135' + 'ShortName' => 'MapFilterPrivate', + 'Source' => 'mapfilter.cpp', + 'Virt' => 1 }, - '20255039' => { - 'Class' => '20253924', - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket9setLengthEi', + '29211241' => { + 'Artificial' => 1, + 'Class' => '29169484', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' - }, - '1' => { - 'name' => 'length1', - 'type' => '50231' + 'type' => '29178749' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setLength', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '142' + 'ShortName' => 'MapFilterPrivate', + 'Source' => 'mapfilter.cpp', + 'Virt' => 1 }, - '20255071' => { - 'Class' => '20253924', - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket7setPortEi', + '29212352' => { + 'Artificial' => 1, + 'Class' => '29169484', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' - }, - '1' => { - 'name' => 'port1', - 'type' => '50231' + 'type' => '29178749' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setPort', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '147' + 'ShortName' => 'MapFilterPrivate', + 'Source' => 'mapfilter.cpp', + 'Virt' => 1 }, - '20256291' => { - 'Data' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7classes26DatagramPacketRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DatagramPacketRegistration', - 'Source' => 'datagrampacket.cpp' + '29218420' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132810' + } + }, + 'ShortName' => 'WideLife' + }, + '29218421' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132810' + } + }, + 'ShortName' => 'WideLife' }, - '20262053' => { + '29220240' => { 'Artificial' => 1, - 'Class' => '20255184', + 'Class' => '29164560', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256819' + 'type' => '29178638' } }, 'ShortName' => 'WideLife' }, - '20262054' => { + '29220241' => { 'Artificial' => 1, - 'Class' => '20255184', + 'Class' => '29164560', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256819' + 'type' => '29178638' } }, 'ShortName' => 'WideLife' }, - '20262194' => { + '29220384' => { 'Artificial' => 1, - 'Class' => '20255184', + 'Class' => '29164560', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256819' + 'type' => '29178638' } }, 'ShortName' => 'WideLife' }, - '20262195' => { + '29220385' => { 'Artificial' => 1, - 'Class' => '20255184', + 'Class' => '29164560', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256819' + 'type' => '29178638' } }, 'ShortName' => 'WideLife' }, - '20266411' => { - 'Class' => '20253924', + '29232366' => { + 'Class' => '29169252', 'Destructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketD0Ev', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' + 'type' => '29179650' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '96', + 'ShortName' => 'MapFilter', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '49', 'Virt' => 1 }, - '20266412' => { - 'Class' => '20253924', + '29232465' => { + 'Class' => '29169252', 'Destructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketD1Ev', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' + 'type' => '29179650' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '96', + 'ShortName' => 'MapFilter', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '49', 'Virt' => 1 }, - '20266505' => { - 'Class' => '20253924', + '29232665' => { + 'Class' => '29169252', 'Destructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketD2Ev', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' + 'type' => '29179650' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '96', + 'ShortName' => 'MapFilter', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '49', 'Virt' => 1 }, - '20267640' => { - 'Class' => '20253924', + '29232800' => { + 'Class' => '29169252', 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC2EPviiSt10shared_ptrINS0_11InetAddressEEi', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' - }, - '1' => { - 'name' => 'buf1', - 'type' => '50560' - }, - '2' => { - 'name' => 'offset1', - 'type' => '50231' - }, - '3' => { - 'name' => 'length1', - 'type' => '50231' - }, - '4' => { - 'name' => 'address1', - 'type' => '7592264' - }, - '5' => { - 'name' => 'port1', - 'type' => '50231' + 'type' => '29179650' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '90' + 'ShortName' => 'MapFilter', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '44' }, - '20267641' => { - 'Class' => '20253924', + '29236029' => { + 'Class' => '29169252', 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC1EPviiSt10shared_ptrINS0_11InetAddressEEi', + 'Header' => 'mapfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9MapFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' - }, - '1' => { - 'name' => 'buf1', - 'type' => '50560' - }, - '2' => { - 'name' => 'offset1', - 'type' => '50231' - }, - '3' => { - 'name' => 'length1', - 'type' => '50231' - }, - '4' => { - 'name' => 'address1', - 'type' => '7592264' - }, - '5' => { - 'name' => 'port1', - 'type' => '50231' + 'type' => '29179650' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '90' + 'ShortName' => 'MapFilter', + 'Source' => 'mapfilter.cpp', + 'SourceLine' => '44' }, - '20270090' => { - 'Class' => '20253924', - 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC2EPvii', + '29243068' => { + 'Artificial' => 1, + 'Class' => '29169270', + 'Destructor' => 1, + 'Header' => 'mapfilter.h', + 'InLine' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' - }, - '1' => { - 'name' => 'buf1', - 'type' => '50560' - }, - '2' => { - 'name' => 'offset1', - 'type' => '50231' - }, - '3' => { - 'name' => 'length1', - 'type' => '50231' + 'type' => '29179734' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '83' + 'ShortName' => 'ClazzMapFilter', + 'Virt' => 1 }, - '20270091' => { - 'Class' => '20253924', - 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC1EPvii', + '29243069' => { + 'Artificial' => 1, + 'Class' => '29169270', + 'Destructor' => 1, + 'Header' => 'mapfilter.h', + 'InLine' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' - }, - '1' => { - 'name' => 'buf1', - 'type' => '50560' - }, - '2' => { - 'name' => 'offset1', - 'type' => '50231' - }, - '3' => { - 'name' => 'length1', - 'type' => '50231' + 'type' => '29179734' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '83' + 'ShortName' => 'ClazzMapFilter', + 'Virt' => 1 + }, + '29243215' => { + 'Artificial' => 1, + 'Class' => '29169270', + 'Destructor' => 1, + 'Header' => 'mapfilter.h', + 'InLine' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29179734' + } + }, + 'ShortName' => 'ClazzMapFilter', + 'Virt' => 1 }, - '20271044' => { - 'Class' => '20253924', + '29243310' => { + 'Artificial' => 1, + 'Class' => '29169270', 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC2EPviSt10shared_ptrINS0_11InetAddressEEi', + 'Header' => 'mapfilter.h', + 'InLine' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' - }, - '1' => { - 'name' => 'buf1', - 'type' => '50560' - }, - '2' => { - 'name' => 'length1', - 'type' => '50231' - }, - '3' => { - 'name' => 'address1', - 'type' => '7592264' - }, - '4' => { - 'name' => 'port1', - 'type' => '50231' + 'type' => '29179734' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '75' + 'ShortName' => 'ClazzMapFilter' }, - '20271045' => { - 'Class' => '20253924', + '29243311' => { + 'Artificial' => 1, + 'Class' => '29169270', 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC1EPviSt10shared_ptrINS0_11InetAddressEEi', + 'Header' => 'mapfilter.h', + 'InLine' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter9MapFilter14ClazzMapFilterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' - }, - '1' => { - 'name' => 'buf1', - 'type' => '50560' - }, - '2' => { - 'name' => 'length1', - 'type' => '50231' - }, - '3' => { - 'name' => 'address1', - 'type' => '7592264' - }, - '4' => { - 'name' => 'port1', - 'type' => '50231' + 'type' => '29179734' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '75' + 'ShortName' => 'ClazzMapFilter' }, - '20273443' => { - 'Class' => '20253924', + '29459527' => { + 'Class' => '566570', 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC2EPvi', + 'Header' => 'mdc.h', + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx3MDCC2ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEES8_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' + 'type' => '29424743' }, '1' => { - 'name' => 'buf1', - 'type' => '50560' + 'name' => 'key1', + 'type' => '202841' }, '2' => { - 'name' => 'length1', - 'type' => '50231' + 'name' => 'value', + 'type' => '202841' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '67' + 'ShortName' => 'MDC', + 'Source' => 'mdc.cpp', + 'SourceLine' => '141' }, - '20273444' => { - 'Class' => '20253924', + '29459528' => { + 'Class' => '566570', 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC1EPvi', + 'Header' => 'mdc.h', + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx3MDCC1ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEES8_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256986' + 'type' => '29424743' }, '1' => { - 'name' => 'buf1', - 'type' => '50560' + 'name' => 'key1', + 'type' => '202841' }, '2' => { - 'name' => 'length1', - 'type' => '50231' + 'name' => 'value', + 'type' => '202841' } }, - 'ShortName' => 'DatagramPacket', - 'Source' => 'datagrampacket.cpp', - 'SourceLine' => '67' + 'ShortName' => 'MDC', + 'Source' => 'mdc.cpp', + 'SourceLine' => '141' }, - '20276936' => { - 'Artificial' => 1, - 'Class' => '20254220', + '29479700' => { + 'Class' => '566570', 'Destructor' => 1, - 'Header' => 'datagrampacket.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD0Ev', + 'Header' => 'mdc.h', + 'Line' => '60', + 'MnglName' => '_ZN7log4cxx3MDCD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20257009' + 'type' => '29424743' } }, - 'ShortName' => 'ClazzDatagramPacket', - 'Virt' => 1 + 'ShortName' => 'MDC', + 'Source' => 'mdc.cpp', + 'SourceLine' => '37' }, - '20276937' => { - 'Artificial' => 1, - 'Class' => '20254220', + '29481808' => { + 'Class' => '566570', + 'Constructor' => 1, + 'Header' => 'mdc.h', + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3MDCC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29424743' + }, + '1' => { + 'name' => 'key1', + 'type' => '202831' + }, + '2' => { + 'name' => 'value', + 'type' => '202831' + } + }, + 'ShortName' => 'MDC', + 'Source' => 'mdc.cpp', + 'SourceLine' => '30' + }, + '29481809' => { + 'Class' => '566570', + 'Constructor' => 1, + 'Header' => 'mdc.h', + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3MDCC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29424743' + }, + '1' => { + 'name' => 'key1', + 'type' => '202831' + }, + '2' => { + 'name' => 'value', + 'type' => '202831' + } + }, + 'ShortName' => 'MDC', + 'Source' => 'mdc.cpp', + 'SourceLine' => '30' + }, + '29753068' => { + 'Class' => '560672', 'Destructor' => 1, - 'Header' => 'datagrampacket.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD1Ev', + 'Header' => 'messagebuffer.h', + 'Line' => '585', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20257009' + 'type' => '29685706' } }, - 'ShortName' => 'ClazzDatagramPacket', - 'Virt' => 1 + 'ShortName' => 'MessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '403' }, - '20277077' => { - 'Artificial' => 1, - 'Class' => '20254220', + '29753882' => { + 'Class' => '560672', + 'Constructor' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '581', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + } + }, + 'ShortName' => 'MessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '398' + }, + '29753883' => { + 'Class' => '560672', + 'Constructor' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '581', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + } + }, + 'ShortName' => 'MessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '398' + }, + '29769366' => { + 'Class' => '559739', 'Destructor' => 1, - 'Header' => 'datagrampacket.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD2Ev', + 'Header' => 'messagebuffer.h', + 'Line' => '414', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20257009' + 'type' => '29685391' } }, - 'ShortName' => 'ClazzDatagramPacket', - 'Virt' => 1 + 'ShortName' => 'WideMessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '241' }, - '20277167' => { - 'Artificial' => 1, - 'Class' => '20254220', + '29770511' => { + 'Class' => '559739', 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketC2Ev', + 'Header' => 'messagebuffer.h', + 'Line' => '410', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20257009' + 'type' => '29685391' } }, - 'ShortName' => 'ClazzDatagramPacket' + 'ShortName' => 'WideMessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '236' }, - '20277168' => { - 'Artificial' => 1, - 'Class' => '20254220', + '29770512' => { + 'Class' => '559739', 'Constructor' => 1, - 'Header' => 'datagrampacket.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketC1Ev', + 'Header' => 'messagebuffer.h', + 'Line' => '410', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20257009' + 'type' => '29685391' } }, - 'ShortName' => 'ClazzDatagramPacket' + 'ShortName' => 'WideMessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '236' }, - '20347668' => { - 'Class' => '20347547', - 'Const' => 1, - 'Header' => 'datagramsocket.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket19ClazzDatagramSocket7getNameB5cxx11Ev', + '29785832' => { + 'Class' => '558842', + 'Destructor' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351740' + 'type' => '29685050' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'CharMessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '97' }, - '20347764' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket14getStaticClassEv', - 'Return' => '64678', + '29786977' => { + 'Class' => '558842', + 'Constructor' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + } + }, + 'ShortName' => 'CharMessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '93' + }, + '29786978' => { + 'Class' => '558842', + 'Constructor' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + } + }, + 'ShortName' => 'CharMessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '93' + }, + '30135973' => { + 'Class' => '9955075', + 'Header' => 'messagepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'datagramsocket.cpp', + 'Source' => 'messagepatternconverter.cpp', 'SourceLine' => '27', 'Static' => 1 }, - '20347781' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket13registerClassEv', - 'Return' => '64684', + '30135989' => { + 'Class' => '9955075', + 'Header' => 'messagepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'datagramsocket.cpp', + 'Source' => 'messagepatternconverter.cpp', 'SourceLine' => '27', 'Static' => 1 }, - '20347798' => { - 'Class' => '20347336', + '30136005' => { + 'Class' => '9955075', 'Const' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket8getClassEv', + 'Header' => 'messagepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351706' + 'type' => '30148389' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'datagramsocket.cpp', + 'Source' => 'messagepatternconverter.cpp', 'SourceLine' => '27', 'Virt' => 1, 'VirtPos' => '2' }, - '20347837' => { - 'Class' => '20347336', + '30136042' => { + 'Class' => '9955075', 'Const' => 1, - 'Header' => 'datagramsocket.h', + 'Header' => 'messagepatternconverter.h', 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket4castERKNS0_5ClassE', + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351706' + 'type' => '30148389' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '20347881' => { - 'Class' => '20347336', + '30136084' => { + 'Class' => '9955075', 'Const' => 1, - 'Header' => 'datagramsocket.h', + 'Header' => 'messagepatternconverter.h', 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket10instanceofERKNS0_5ClassE', + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351706' + 'type' => '30148389' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '20347963' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket4bindEiSt10shared_ptrINS0_11InetAddressEE', + '30136189' => { + 'Class' => '9955075', + 'Const' => 1, + 'Header' => 'messagepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351065' + 'type' => '30148389' }, '1' => { - 'name' => 'p1', - 'type' => '50231' + 'name' => 'event', + 'type' => '576659' }, '2' => { - 'name' => 'p2', - 'type' => '7592264' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'bind', - 'VirtPos' => '5' - }, - '20348008' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket5closeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20351071' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '45', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '20348043' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket7connectESt10shared_ptrINS0_11InetAddressEEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20351065' - }, - '1' => { - 'name' => 'p1', - 'type' => '7592264' + 'name' => 'toAppendTo', + 'type' => '210592' }, - '2' => { - 'name' => 'p2', - 'type' => '50231' + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'PureVirt' => 1, 'Return' => '1', - 'ShortName' => 'connect', + 'ShortName' => 'format', + 'Source' => 'messagepatternconverter.cpp', + 'SourceLine' => '81', + 'Virt' => 1, 'VirtPos' => '7' }, - '20348088' => { - 'Class' => '20347336', - 'Const' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket14getInetAddressEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20351706' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '7592264', - 'ShortName' => 'getInetAddress', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '49' + '30139113' => { + 'Data' => 1, + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7classes35MessagePatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'MessagePatternConverterRegistration', + 'Source' => 'messagepatternconverter.cpp' }, - '20348119' => { - 'Class' => '20347336', - 'Const' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket15getLocalAddressEv', + '30155277' => { + 'Artificial' => 1, + 'Class' => '9955075', + 'Destructor' => 1, + 'Header' => 'messagepatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351706' + 'type' => '30147963' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '7592264', - 'ShortName' => 'getLocalAddress', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '54' + 'ShortName' => 'MessagePatternConverter', + 'Virt' => 1 }, - '20348150' => { - 'Class' => '20347336', - 'Const' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket12getLocalPortEv', + '30155278' => { + 'Artificial' => 1, + 'Class' => '9955075', + 'Destructor' => 1, + 'Header' => 'messagepatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351706' + 'type' => '30147963' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getLocalPort', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '59' + 'ShortName' => 'MessagePatternConverter', + 'Virt' => 1 }, - '20348181' => { - 'Class' => '20347336', - 'Const' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket7getPortEv', + '30155550' => { + 'Artificial' => 1, + 'Class' => '9955075', + 'Destructor' => 1, + 'Header' => 'messagepatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351706' + 'type' => '30147963' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getPort', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '64' + 'ShortName' => 'MessagePatternConverter', + 'Virt' => 1 }, - '20348212' => { - 'Class' => '20347336', - 'Const' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket7isBoundEv', + '30169522' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_23MessagePatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351706' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '30147753' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'isBound', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '69' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '30067580' + } + } }, - '20348243' => { - 'Class' => '20347336', - 'Const' => 1, - 'Header' => 'datagramsocket.h', - 'Line' => '78', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket8isClosedEv', + '30169523' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_23MessagePatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351700' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '30147753' } }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'isClosed', - 'VirtPos' => '8' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '30067580' + } + } }, - '20348282' => { - 'Class' => '20347336', - 'Const' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket11isConnectedEv', + '30170634' => { + 'Artificial' => 1, + 'Class' => '30133707', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351706' + 'type' => '30146970' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'isConnected', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '74' + 'ShortName' => 'WideLife' }, - '20348313' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'Line' => '84', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket7receiveERSt10shared_ptrINS0_14DatagramPacketEE', + '30170635' => { + 'Artificial' => 1, + 'Class' => '30133707', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351065' - }, - '1' => { - 'name' => 'p1', - 'type' => '20351711' + 'type' => '30146970' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'receive', - 'VirtPos' => '9' + 'ShortName' => 'WideLife' }, - '20348353' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket4sendERSt10shared_ptrINS0_14DatagramPacketEE', + '30170778' => { + 'Artificial' => 1, + 'Class' => '30133707', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351065' - }, - '1' => { - 'name' => 'p1', - 'type' => '20351711' + 'type' => '30146970' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'send', - 'VirtPos' => '10' - }, - '20348393' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'Line' => '91', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket6createEv', - 'Return' => '20349655', - 'ShortName' => 'create', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '79', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '20348410' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket6createEi', + '30170779' => { + 'Artificial' => 1, + 'Class' => '30133707', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEEC1Ev', 'Param' => { '0' => { - 'name' => 'localPort1', - 'type' => '50231' + 'name' => 'this', + 'type' => '30146970' } }, - 'Return' => '20349655', - 'ShortName' => 'create', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '83', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '20348438' => { - 'Class' => '20347336', - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket6createEiSt10shared_ptrINS0_11InetAddressEE', + '30183368' => { + 'Class' => '9955075', + 'Constructor' => 1, + 'Header' => 'messagepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterC1Ev', 'Param' => { '0' => { - 'name' => 'localPort1', - 'type' => '50231' - }, - '1' => { - 'name' => 'localAddress1', - 'type' => '7592264' + 'name' => 'this', + 'type' => '30147963' } }, - 'Return' => '20349655', - 'ShortName' => 'create', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '91', - 'Static' => 1 - }, - '20349694' => { - 'Data' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7classes26DatagramSocketRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DatagramSocketRegistration', - 'Source' => 'datagramsocket.cpp' + 'ShortName' => 'MessagePatternConverter', + 'Source' => 'messagepatternconverter.cpp', + 'SourceLine' => '64' }, - '20357252' => { - 'Artificial' => 1, - 'Class' => '20347354', - 'Destructor' => 1, - 'Header' => 'datagramsocket_priv.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivD2Ev', + '30186441' => { + 'Class' => '9955075', + 'Constructor' => 1, + 'Header' => 'messagepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20349783' + 'type' => '30147963' } }, - 'ShortName' => 'DatagramSocketPriv' + 'ShortName' => 'MessagePatternConverter', + 'Source' => 'messagepatternconverter.cpp', + 'SourceLine' => '64' }, - '20357253' => { + '30197006' => { 'Artificial' => 1, - 'Class' => '20347354', + 'Class' => '9955100', 'Destructor' => 1, - 'Header' => 'datagramsocket_priv.h', + 'Header' => 'messagepatternconverter.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivD0Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20349783' + 'type' => '30148740' } }, - 'ShortName' => 'DatagramSocketPriv' + 'ShortName' => 'ClazzMessagePatternConverter', + 'Virt' => 1 }, - '20358942' => { + '30197007' => { 'Artificial' => 1, - 'Class' => '20348552', + 'Class' => '9955100', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'messagepatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEED2Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20350946' + 'type' => '30148740' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzMessagePatternConverter', + 'Virt' => 1 }, - '20358943' => { + '30197153' => { 'Artificial' => 1, - 'Class' => '20348552', + 'Class' => '9955100', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'messagepatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEED0Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20350946' + 'type' => '30148740' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzMessagePatternConverter', + 'Virt' => 1 }, - '20359084' => { + '30197248' => { 'Artificial' => 1, - 'Class' => '20348552', + 'Class' => '9955100', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'messagepatternconverter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEEC2Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20350946' + 'type' => '30148740' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzMessagePatternConverter' }, - '20359085' => { + '30197249' => { 'Artificial' => 1, - 'Class' => '20348552', + 'Class' => '9955100', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'messagepatternconverter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEEC1Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20350946' + 'type' => '30148740' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzMessagePatternConverter' }, - '20372887' => { - 'Class' => '20347336', - 'Destructor' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20351071' - } - }, - 'ShortName' => 'DatagramSocket', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '33', - 'Virt' => 1 + '30529375' => { + 'Class' => '9955247', + 'Header' => 'methodlocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'methodlocationpatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 }, - '20372888' => { - 'Class' => '20347336', - 'Destructor' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketD1Ev', + '30529391' => { + 'Class' => '9955247', + 'Header' => 'methodlocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'methodlocationpatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '30529407' => { + 'Class' => '9955247', + 'Const' => 1, + 'Header' => 'methodlocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351071' + 'type' => '30541153' } }, - 'ShortName' => 'DatagramSocket', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '33', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'methodlocationpatternconverter.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '2' }, - '20372981' => { - 'Class' => '20347336', - 'Destructor' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketD2Ev', + '30529444' => { + 'Class' => '9955247', + 'Const' => 1, + 'Header' => 'methodlocationpatternconverter.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351071' + 'type' => '30541153' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'DatagramSocket', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '33', - 'Virt' => 1 + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '20374843' => { - 'Class' => '20347336', - 'Constructor' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketC2ESt10unique_ptrINS1_18DatagramSocketPrivESt14default_deleteIS3_EE', + '30529486' => { + 'Class' => '9955247', + 'Const' => 1, + 'Header' => 'methodlocationpatternconverter.h', + 'InLine' => 2, + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351071' + 'type' => '30541153' }, '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '20318293' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DatagramSocket', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '29' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '20374844' => { - 'Class' => '20347336', - 'Constructor' => 1, - 'Header' => 'datagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketC1ESt10unique_ptrINS1_18DatagramSocketPrivESt14default_deleteIS3_EE', + '30529591' => { + 'Class' => '9955247', + 'Const' => 1, + 'Header' => 'methodlocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351071' + 'type' => '30541153' }, '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '20318293' + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DatagramSocket', - 'Source' => 'datagramsocket.cpp', - 'SourceLine' => '29' + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'methodlocationpatternconverter.cpp', + 'SourceLine' => '43', + 'Virt' => 1, + 'VirtPos' => '7' }, - '20378333' => { + '30532493' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes42MethodLocationPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'MethodLocationPatternConverterRegistration', + 'Source' => 'methodlocationpatternconverter.cpp' + }, + '30545459' => { 'Artificial' => 1, - 'Class' => '20347547', + 'Class' => '9955247', 'Destructor' => 1, - 'Header' => 'datagramsocket.h', + 'Header' => 'methodlocationpatternconverter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD0Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351729' + 'type' => '30540812' } }, - 'ShortName' => 'ClazzDatagramSocket', + 'ShortName' => 'MethodLocationPatternConverter', 'Virt' => 1 }, - '20378334' => { + '30545460' => { 'Artificial' => 1, - 'Class' => '20347547', + 'Class' => '9955247', 'Destructor' => 1, - 'Header' => 'datagramsocket.h', + 'Header' => 'methodlocationpatternconverter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351729' + 'type' => '30540812' } }, - 'ShortName' => 'ClazzDatagramSocket', + 'ShortName' => 'MethodLocationPatternConverter', 'Virt' => 1 }, - '20378475' => { + '30545729' => { 'Artificial' => 1, - 'Class' => '20347547', + 'Class' => '9955247', 'Destructor' => 1, - 'Header' => 'datagramsocket.h', + 'Header' => 'methodlocationpatternconverter.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351729' + 'type' => '30540812' } }, - 'ShortName' => 'ClazzDatagramSocket', + 'ShortName' => 'MethodLocationPatternConverter', 'Virt' => 1 }, - '20378565' => { + '30552621' => { 'Artificial' => 1, - 'Class' => '20347547', + 'Class' => '6072360', 'Constructor' => 1, - 'Header' => 'datagramsocket.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketC2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_30MethodLocationPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351729' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '30540642' } }, - 'ShortName' => 'ClazzDatagramSocket' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '30468642' + } + } }, - '20378566' => { + '30552622' => { 'Artificial' => 1, - 'Class' => '20347547', + 'Class' => '6072360', 'Constructor' => 1, - 'Header' => 'datagramsocket.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20351729' - } - }, - 'ShortName' => 'ClazzDatagramSocket' - }, - '20454338' => { - 'Class' => '20349314', - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket4bindEiSt10shared_ptrINS0_11InetAddressEE', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_30MethodLocationPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' + 'type' => '6085740' }, '1' => { - 'name' => 'localPort1', - 'type' => '50231' - }, - '2' => { - 'name' => 'localAddress1', - 'type' => '7592264' + 'name' => 'arg0', + 'type' => '30540642' } }, - 'Return' => '1', - 'ShortName' => 'bind', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '151', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '30468642' + } + } }, - '20454383' => { - 'Class' => '20349314', - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket5closeEv', + '30553049' => { + 'Artificial' => 1, + 'Class' => '30527107', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' + 'type' => '30540366' } }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '136', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'WideLife' }, - '20454418' => { - 'Class' => '20349314', - 'Const' => 1, - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZNK7log4cxx7helpers17APRDatagramSocket8isClosedEv', + '30553050' => { + 'Artificial' => 1, + 'Class' => '30527107', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20457940' + 'type' => '30540366' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'isClosed', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '209', - 'Virt' => 1, - 'VirtPos' => '8' + 'ShortName' => 'WideLife' }, - '20454457' => { - 'Class' => '20349314', - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket7receiveERSt10shared_ptrINS0_14DatagramPacketEE', + '30553192' => { + 'Artificial' => 1, + 'Class' => '30527107', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' - }, - '1' => { - 'name' => 'p', - 'type' => '20351711' + 'type' => '30540366' } }, - 'Return' => '1', - 'ShortName' => 'receive', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '82', - 'Virt' => 1, - 'VirtPos' => '9' + 'ShortName' => 'WideLife' }, - '20454497' => { - 'Class' => '20349314', - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket4sendERSt10shared_ptrINS0_14DatagramPacketEE', + '30553193' => { + 'Artificial' => 1, + 'Class' => '30527107', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' - }, - '1' => { - 'name' => 'p', - 'type' => '20351711' + 'type' => '30540366' } }, - 'Return' => '1', - 'ShortName' => 'send', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '109', - 'Virt' => 1, - 'VirtPos' => '10' + 'ShortName' => 'WideLife' }, - '20454537' => { - 'Class' => '20349314', - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket7connectESt10shared_ptrINS0_11InetAddressEEi', + '30559260' => { + 'Class' => '9955247', + 'Constructor' => 1, + 'Header' => 'methodlocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' - }, - '1' => { - 'name' => 'address1', - 'type' => '7592264' - }, - '2' => { - 'name' => 'port1', - 'type' => '50231' + 'type' => '30540812' } }, - 'Return' => '1', - 'ShortName' => 'connect', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '180', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'MethodLocationPatternConverter', + 'Source' => 'methodlocationpatternconverter.cpp', + 'SourceLine' => '30' }, - '20454582' => { - 'Class' => '20349314', - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket4initEv', + '30562285' => { + 'Class' => '9955247', + 'Constructor' => 1, + 'Header' => 'methodlocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' + 'type' => '30540812' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'init', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '68' + 'ShortName' => 'MethodLocationPatternConverter', + 'Source' => 'methodlocationpatternconverter.cpp', + 'SourceLine' => '30' }, - '20460336' => { + '30567040' => { 'Artificial' => 1, - 'Class' => '20349314', + 'Class' => '9955272', 'Destructor' => 1, - 'Header' => 'aprdatagramsocket.h', + 'Header' => 'methodlocationpatternconverter.h', 'InLine' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' + 'type' => '30541313' } }, - 'ShortName' => 'APRDatagramSocket', + 'ShortName' => 'ClazzMethodLocationPatternConverter', 'Virt' => 1 }, - '20460337' => { + '30567041' => { 'Artificial' => 1, - 'Class' => '20349314', + 'Class' => '9955272', 'Destructor' => 1, - 'Header' => 'aprdatagramsocket.h', + 'Header' => 'methodlocationpatternconverter.h', 'InLine' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' + 'type' => '30541313' } }, - 'ShortName' => 'APRDatagramSocket', + 'ShortName' => 'ClazzMethodLocationPatternConverter', 'Virt' => 1 }, - '20460478' => { + '30567186' => { 'Artificial' => 1, - 'Class' => '20349314', + 'Class' => '9955272', 'Destructor' => 1, - 'Header' => 'aprdatagramsocket.h', + 'Header' => 'methodlocationpatternconverter.h', 'InLine' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' + 'type' => '30541313' } }, - 'ShortName' => 'APRDatagramSocket', + 'ShortName' => 'ClazzMethodLocationPatternConverter', 'Virt' => 1 }, - '20490497' => { - 'Class' => '20349314', + '30567281' => { + 'Artificial' => 1, + 'Class' => '9955272', 'Constructor' => 1, - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC2EiSt10shared_ptrINS0_11InetAddressEE', + 'Header' => 'methodlocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' - }, - '1' => { - 'name' => 'port', - 'type' => '50231' - }, - '2' => { - 'name' => 'laddr', - 'type' => '7592264' + 'type' => '30541313' } }, - 'ShortName' => 'APRDatagramSocket', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '63' + 'ShortName' => 'ClazzMethodLocationPatternConverter' }, - '20490498' => { - 'Class' => '20349314', + '30567282' => { + 'Artificial' => 1, + 'Class' => '9955272', 'Constructor' => 1, - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC1EiSt10shared_ptrINS0_11InetAddressEE', + 'Header' => 'methodlocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' - }, - '1' => { - 'name' => 'port', - 'type' => '50231' - }, - '2' => { - 'name' => 'laddr', - 'type' => '7592264' + 'type' => '30541313' } }, - 'ShortName' => 'APRDatagramSocket', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '63' + 'ShortName' => 'ClazzMethodLocationPatternConverter' }, - '20498983' => { - 'Class' => '20349314', - 'Constructor' => 1, - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC2Ei', + '30793917' => { + 'Class' => '6075057', + 'Header' => 'nameabbreviator.h', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '30793933' => { + 'Class' => '6075057', + 'Header' => 'nameabbreviator.h', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '30793949' => { + 'Class' => '6075057', + 'Const' => 1, + 'Header' => 'nameabbreviator.h', + 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' - }, - '1' => { - 'name' => 'port', - 'type' => '50231' + 'type' => '30798676' } }, - 'ShortName' => 'APRDatagramSocket', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '58' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '2' }, - '20498984' => { - 'Class' => '20349314', - 'Constructor' => 1, - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC1Ei', + '30793986' => { + 'Class' => '6075057', + 'Const' => 1, + 'Header' => 'nameabbreviator.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' + 'type' => '30798676' }, '1' => { - 'name' => 'port', - 'type' => '50231' + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'APRDatagramSocket', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '58' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '20504946' => { - 'Class' => '20349314', - 'Constructor' => 1, - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC2Ev', + '30794028' => { + 'Class' => '6075057', + 'Const' => 1, + 'Header' => 'nameabbreviator.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20351362' + 'type' => '30798676' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'APRDatagramSocket', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '53' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '20504947' => { - 'Class' => '20349314', - 'Constructor' => 1, - 'Header' => 'aprdatagramsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC1Ev', + '30794133' => { + 'Class' => '6075057', + 'Header' => 'nameabbreviator.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator14getAbbreviatorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '20351362' + 'name' => 'pattern', + 'type' => '210597' } }, - 'ShortName' => 'APRDatagramSocket', - 'Source' => 'aprdatagramsocket.cpp', - 'SourceLine' => '53' + 'Return' => '30795970', + 'ShortName' => 'getAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '267', + 'Static' => 1 }, - '20512426' => { - 'Artificial' => 1, - 'Class' => '20347354', - 'Constructor' => 1, - 'Header' => 'datagramsocket_priv.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC2EiSt10shared_ptrINS0_11InetAddressEE', + '30794162' => { + 'Class' => '6075057', + 'Header' => 'nameabbreviator.h', + 'Line' => '70', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator21getDefaultAbbreviatorEv', + 'Return' => '30795970', + 'ShortName' => 'getDefaultAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '362', + 'Static' => 1 + }, + '30794181' => { + 'Class' => '6075057', + 'Const' => 1, + 'Header' => 'nameabbreviator.h', + 'Line' => '78', + 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20349783' + 'type' => '30798671' }, '1' => { - 'name' => 'localPort1', - 'type' => '50231' + 'name' => 'p1', + 'type' => '51887' }, '2' => { - 'name' => 'localAddress1', - 'type' => '7592264' + 'name' => 'p2', + 'type' => '210592' } }, - 'ShortName' => 'DatagramSocketPriv' + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'abbreviate', + 'VirtPos' => '5' }, - '20512427' => { - 'Artificial' => 1, - 'Class' => '20347354', - 'Constructor' => 1, - 'Header' => 'datagramsocket_priv.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC1EiSt10shared_ptrINS0_11InetAddressEE', + '30794400' => { + 'Class' => '30794229', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '171', + 'MnglName' => '_ZNK7log4cxx7pattern26PatternAbbreviatorFragment10abbreviateERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20349783' + 'type' => '30796650' }, '1' => { - 'name' => 'localPort1', - 'type' => '50231' + 'name' => 'buf', + 'type' => '210592' }, '2' => { - 'name' => 'localAddress1', - 'type' => '7592264' + 'name' => 'startPos', + 'type' => '51887' } }, - 'ShortName' => 'DatagramSocketPriv' + 'Return' => '51887', + 'ShortName' => 'abbreviate', + 'Source' => 'nameabbreviator.cpp' }, - '20512609' => { - 'Artificial' => 1, - 'Class' => '20347354', - 'Constructor' => 1, - 'Header' => 'datagramsocket_priv.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC2Ei', + '30794574' => { + 'Class' => '30794460', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviator7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20349783' - }, - '1' => { - 'name' => 'localPort1', - 'type' => '50231' + 'type' => '30798661' } }, - 'ShortName' => 'DatagramSocketPriv' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '3' }, - '20512610' => { - 'Artificial' => 1, - 'Class' => '20347354', - 'Constructor' => 1, - 'Header' => 'datagramsocket_priv.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC1Ei', + '30794675' => { + 'Class' => '30794443', + 'Line' => '261', + 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'nameabbreviator.cpp', + 'Static' => 1 + }, + '30794694' => { + 'Class' => '30794443', + 'Line' => '261', + 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'nameabbreviator.cpp', + 'Static' => 1 + }, + '30794713' => { + 'Class' => '30794443', + 'Const' => 1, + 'Line' => '261', + 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20349783' - }, - '1' => { - 'name' => 'localPort1', - 'type' => '50231' + 'type' => '30798406' } }, - 'ShortName' => 'DatagramSocketPriv' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '2' }, - '20512661' => { - 'Artificial' => 1, - 'Class' => '20347354', - 'Constructor' => 1, - 'Header' => 'datagramsocket_priv.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC2Ev', + '30794750' => { + 'Class' => '30794443', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20349783' + 'type' => '30798406' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'DatagramSocketPriv' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '4' }, - '20512662' => { - 'Artificial' => 1, - 'Class' => '20347354', - 'Constructor' => 1, - 'Header' => 'datagramsocket_priv.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC1Ev', + '30794792' => { + 'Class' => '30794443', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20349783' + 'type' => '30798406' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'DatagramSocketPriv' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '3' }, - '20580658' => { - 'Class' => '20580405', - 'Header' => 'serversocket.h', - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket6acceptEv', + '30794861' => { + 'Class' => '30794443', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '64', + 'MnglName' => '_ZNK7log4cxx7pattern14NOPAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581915' + 'type' => '30798406' + }, + '1' => { + 'name' => 'p1', + 'type' => '51887' + }, + '2' => { + 'name' => 'p2', + 'type' => '210592' } }, - 'PureVirt' => 1, - 'Return' => '20580832', - 'ShortName' => 'accept', - 'VirtPos' => '2' + 'Return' => '1', + 'ShortName' => 'abbreviate', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '5' }, - '20580698' => { - 'Class' => '20580405', - 'Header' => 'serversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket5closeEv', + '30795071' => { + 'Class' => '30794957', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '81', + 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviator7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581921' + 'type' => '30798641' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'serversocket.cpp', - 'SourceLine' => '36', + 'Return' => '209661', + 'ShortName' => 'getName', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1, 'VirtPos' => '3' }, - '20580734' => { - 'Class' => '20580405', + '30795185' => { + 'Class' => '30794940', + 'Line' => '262', + 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'nameabbreviator.cpp', + 'Static' => 1 + }, + '30795204' => { + 'Class' => '30794940', + 'Line' => '262', + 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'nameabbreviator.cpp', + 'Static' => 1 + }, + '30795223' => { + 'Class' => '30794940', 'Const' => 1, - 'Header' => 'serversocket.h', - 'MnglName' => '_ZNK7log4cxx7helpers12ServerSocket12getSoTimeoutEv', + 'Line' => '262', + 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20582585' + 'type' => '30798074' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getSoTimeout', - 'Source' => 'serversocket.cpp', - 'SourceLine' => '42' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '2' }, - '20580765' => { - 'Class' => '20580405', - 'Header' => 'serversocket.h', - 'Line' => '58', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket12setSoTimeoutEi', + '30795260' => { + 'Class' => '30794940', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '82', + 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581921' + 'type' => '30798074' }, '1' => { - 'name' => 'newVal', - 'type' => '50231' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setSoTimeout', - 'Source' => 'serversocket.cpp', - 'SourceLine' => '49' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '4' }, - '20580797' => { - 'Class' => '20580405', - 'Header' => 'serversocket.h', - 'Line' => '60', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket6createEi', + '30795302' => { + 'Class' => '30794940', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '85', + 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { - 'name' => 'port', - 'type' => '50231' + 'name' => 'this', + 'type' => '30798074' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '20580844', - 'ShortName' => 'create', - 'Source' => 'serversocket.cpp', - 'SourceLine' => '54', - 'Static' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '3' }, - '20588868' => { - 'Class' => '20580405', - 'Destructor' => 1, - 'Header' => 'serversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketD0Ev', + '30795376' => { + 'Class' => '30794940', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '99', + 'MnglName' => '_ZNK7log4cxx7pattern21MaxElementAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581921' + 'type' => '30798074' + }, + '1' => { + 'name' => 'nameStart', + 'type' => '51887' + }, + '2' => { + 'name' => 'buf', + 'type' => '210592' } }, - 'ShortName' => 'ServerSocket', - 'Source' => 'serversocket.cpp', - 'SourceLine' => '31', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'abbreviate', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '5' }, - '20588869' => { - 'Class' => '20580405', - 'Destructor' => 1, - 'Header' => 'serversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketD1Ev', + '30795586' => { + 'Class' => '30795472', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '209', + 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviator7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581921' + 'type' => '30798621' } }, - 'ShortName' => 'ServerSocket', - 'Source' => 'serversocket.cpp', - 'SourceLine' => '31', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '3' }, - '20588964' => { - 'Class' => '20580405', - 'Destructor' => 1, - 'Header' => 'serversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketD2Ev', + '30795700' => { + 'Class' => '30795455', + 'Line' => '263', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'nameabbreviator.cpp', + 'Static' => 1 + }, + '30795719' => { + 'Class' => '30795455', + 'Line' => '263', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'nameabbreviator.cpp', + 'Static' => 1 + }, + '30795738' => { + 'Class' => '30795455', + 'Const' => 1, + 'Line' => '263', + 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581921' + 'type' => '30798240' } }, - 'ShortName' => 'ServerSocket', - 'Source' => 'serversocket.cpp', - 'SourceLine' => '31', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '2' }, - '20589374' => { - 'Class' => '20580405', - 'Constructor' => 1, - 'Header' => 'serversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketC2ESt10unique_ptrINS1_19ServerSocketPrivateESt14default_deleteIS3_EE', + '30795775' => { + 'Class' => '30795455', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '210', + 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581921' + 'type' => '30798240' }, '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '20558368' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'ServerSocket', - 'Source' => 'serversocket.cpp', - 'SourceLine' => '26' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '4' }, - '20589375' => { - 'Class' => '20580405', - 'Constructor' => 1, - 'Header' => 'serversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketC1ESt10unique_ptrINS1_19ServerSocketPrivateESt14default_deleteIS3_EE', + '30795817' => { + 'Class' => '30795455', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '213', + 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581921' + 'type' => '30798240' }, '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '20558368' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'ServerSocket', - 'Source' => 'serversocket.cpp', - 'SourceLine' => '26' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1, + 'VirtPos' => '3' }, - '20662725' => { - 'Class' => '20580827', - 'Header' => 'aprserversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket5closeEv', + '30795891' => { + 'Class' => '30795455', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '233', + 'MnglName' => '_ZNK7log4cxx7pattern18PatternAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20582212' + 'type' => '30798240' + }, + '1' => { + 'name' => 'nameStart', + 'type' => '51887' + }, + '2' => { + 'name' => 'buf', + 'type' => '210592' } }, 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'aprserversocket.cpp', - 'SourceLine' => '84', + 'ShortName' => 'abbreviate', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '5' }, - '20662761' => { - 'Class' => '20580827', - 'Header' => 'aprserversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket6acceptEv', + '30795995' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes27NameAbbreviatorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'NameAbbreviatorRegistration', + 'Source' => 'nameabbreviator.cpp' + }, + '30796011' => { + 'Data' => 1, + 'Line' => '261', + 'MnglName' => '_ZN7log4cxx7classes26NOPAbbreviatorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'NOPAbbreviatorRegistration', + 'Source' => 'nameabbreviator.cpp' + }, + '30796028' => { + 'Data' => 1, + 'Line' => '262', + 'MnglName' => '_ZN7log4cxx7classes33MaxElementAbbreviatorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'MaxElementAbbreviatorRegistration', + 'Source' => 'nameabbreviator.cpp' + }, + '30796045' => { + 'Data' => 1, + 'Line' => '263', + 'MnglName' => '_ZN7log4cxx7classes30PatternAbbreviatorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'PatternAbbreviatorRegistration', + 'Source' => 'nameabbreviator.cpp' + }, + '30808443' => { + 'Artificial' => 1, + 'Class' => '30794443', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviatorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20582212' + 'type' => '30797628' } }, - 'Return' => '20580832', - 'ShortName' => 'accept', - 'Source' => 'aprserversocket.cpp', - 'SourceLine' => '104', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'NOPAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1 }, - '20673567' => { + '30808444' => { 'Artificial' => 1, - 'Class' => '20580827', + 'Class' => '30794443', 'Destructor' => 1, - 'Header' => 'aprserversocket.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketD0Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviatorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20582212' + 'type' => '30797628' } }, - 'ShortName' => 'APRServerSocket', + 'ShortName' => 'NOPAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20673568' => { + '30808589' => { 'Artificial' => 1, - 'Class' => '20580827', + 'Class' => '30794443', 'Destructor' => 1, - 'Header' => 'aprserversocket.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketD1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviatorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20582212' + 'type' => '30797628' } }, - 'ShortName' => 'APRServerSocket', + 'ShortName' => 'NOPAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20673709' => { + '30808694' => { 'Artificial' => 1, - 'Class' => '20580827', + 'Class' => '30794940', 'Destructor' => 1, - 'Header' => 'aprserversocket.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketD2Ev', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviatorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20582212' + 'type' => '30797258' } }, - 'ShortName' => 'APRServerSocket', + 'ShortName' => 'MaxElementAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20679293' => { + '30808695' => { 'Artificial' => 1, - 'Class' => '20662445', + 'Class' => '30794940', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD0Ev', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviatorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20666821' + 'type' => '30797258' } }, - 'ShortName' => 'APRServerSocketPriv', - 'Source' => 'aprserversocket.cpp', + 'ShortName' => 'MaxElementAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20679294' => { + '30808840' => { 'Artificial' => 1, - 'Class' => '20662445', + 'Class' => '30794940', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD1Ev', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviatorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20666821' + 'type' => '30797258' } }, - 'ShortName' => 'APRServerSocketPriv', - 'Source' => 'aprserversocket.cpp', + 'ShortName' => 'MaxElementAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20679488' => { + '30808945' => { 'Artificial' => 1, - 'Class' => '20662445', + 'Class' => '30795455', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD2Ev', + 'Line' => '201', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviatorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20666821' + 'type' => '30797353' } }, - 'ShortName' => 'APRServerSocketPriv', - 'Source' => 'aprserversocket.cpp', + 'ShortName' => 'PatternAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20680776' => { + '30808946' => { 'Artificial' => 1, - 'Class' => '20580423', + 'Class' => '30795455', 'Destructor' => 1, - 'Header' => 'serversocket_priv.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD0Ev', + 'Line' => '201', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviatorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581612' + 'type' => '30797353' } }, - 'ShortName' => 'ServerSocketPrivate', + 'ShortName' => 'PatternAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20680777' => { + '30809738' => { 'Artificial' => 1, - 'Class' => '20580423', + 'Class' => '30795455', 'Destructor' => 1, - 'Header' => 'serversocket_priv.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD1Ev', + 'Line' => '201', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviatorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581612' + 'type' => '30797353' } }, - 'ShortName' => 'ServerSocketPrivate', + 'ShortName' => 'PatternAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20680799' => { + '30832177' => { 'Artificial' => 1, - 'Class' => '20580423', + 'Class' => '30792495', 'Destructor' => 1, - 'Header' => 'serversocket_priv.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581612' + 'type' => '30797363' } }, - 'ShortName' => 'ServerSocketPrivate', - 'Virt' => 1 + 'ShortName' => 'WideLife' + }, + '30832178' => { + 'Artificial' => 1, + 'Class' => '30792495', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '30797363' + } + }, + 'ShortName' => 'WideLife' }, - '20687671' => { - 'Class' => '20580827', + '30832967' => { + 'Artificial' => 1, + 'Class' => '30792495', 'Constructor' => 1, - 'Header' => 'aprserversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketC2Ei', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEEC2IS2_INS3_14NOPAbbreviatorEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20582212' + 'type' => '30797363' }, '1' => { - 'name' => 'port', - 'type' => '50231' + 'name' => 'arg0', + 'type' => '30797458' } }, - 'ShortName' => 'APRServerSocket', - 'Source' => 'aprserversocket.cpp', - 'SourceLine' => '38' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '30720895' + } + } }, - '20687672' => { - 'Class' => '20580827', + '30832968' => { + 'Artificial' => 1, + 'Class' => '30792495', 'Constructor' => 1, - 'Header' => 'aprserversocket.h', - 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketC1Ei', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEEC1IS2_INS3_14NOPAbbreviatorEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20582212' + 'type' => '30797363' }, '1' => { - 'name' => 'port', - 'type' => '50231' + 'name' => 'arg0', + 'type' => '30797458' } }, - 'ShortName' => 'APRServerSocket', - 'Source' => 'aprserversocket.cpp', - 'SourceLine' => '38' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '30720895' + } + } }, - '20692448' => { + '30834402' => { 'Artificial' => 1, - 'Class' => '20580423', - 'Constructor' => 1, - 'Header' => 'serversocket_priv.h', + 'Class' => '30792140', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateC2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581612' + 'type' => '30796992' } }, - 'ShortName' => 'ServerSocketPrivate' + 'ShortName' => 'WideLife' }, - '20692449' => { + '30834403' => { 'Artificial' => 1, - 'Class' => '20580423', - 'Constructor' => 1, - 'Header' => 'serversocket_priv.h', + 'Class' => '30792140', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateC1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20581612' + 'type' => '30796992' } }, - 'ShortName' => 'ServerSocketPrivate' + 'ShortName' => 'WideLife' }, - '20761708' => { - 'Class' => '20761588', - 'Const' => 1, - 'Header' => 'socket.h', - 'InLine' => 2, - 'Line' => '50', - 'MnglName' => '_ZNK7log4cxx7helpers6Socket11ClazzSocket7getNameB5cxx11Ev', + '30834544' => { + 'Artificial' => 1, + 'Class' => '30792140', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20765026' + 'type' => '30796992' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '20761804' => { - 'Class' => '20662270', - 'Header' => 'socket.h', - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers6Socket14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'socket.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '20761821' => { - 'Class' => '20662270', - 'Header' => 'socket.h', - 'MnglName' => '_ZN7log4cxx7helpers6Socket13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'socket.cpp', - 'SourceLine' => '27', - 'Static' => 1 + 'ShortName' => 'WideLife' }, - '20761838' => { - 'Class' => '20662270', - 'Const' => 1, - 'Header' => 'socket.h', - 'MnglName' => '_ZNK7log4cxx7helpers6Socket8getClassEv', + '30834545' => { + 'Artificial' => 1, + 'Class' => '30792140', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764957' + 'type' => '30796992' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'socket.cpp', - 'SourceLine' => '27', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'WideLife' }, - '20761877' => { - 'Class' => '20662270', - 'Const' => 1, - 'Header' => 'socket.h', - 'InLine' => 2, - 'Line' => '51', - 'MnglName' => '_ZNK7log4cxx7helpers6Socket4castERKNS0_5ClassE', + '30834624' => { + 'Artificial' => 1, + 'Class' => '30791785', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764957' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '30796936' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'WideLife' }, - '20761921' => { - 'Class' => '20662270', - 'Const' => 1, - 'Header' => 'socket.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx7helpers6Socket10instanceofERKNS0_5ClassE', + '30834625' => { + 'Artificial' => 1, + 'Class' => '30791785', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764957' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '30796936' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '20762002' => { - 'Class' => '20662270', - 'Header' => 'socket.h', - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx7helpers6Socket5writeERNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20764316' - }, - '1' => { - 'name' => 'p1', - 'type' => '1340866' - } - }, - 'PureVirt' => 1, - 'Return' => '50486', - 'ShortName' => 'write', - 'VirtPos' => '5' - }, - '20762046' => { - 'Class' => '20662270', - 'Header' => 'socket.h', - 'Line' => '60', - 'MnglName' => '_ZN7log4cxx7helpers6Socket5closeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20764316' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'close', - 'VirtPos' => '6' + 'ShortName' => 'WideLife' }, - '20762082' => { - 'Class' => '20662270', - 'Const' => 1, - 'Header' => 'socket.h', - 'MnglName' => '_ZNK7log4cxx7helpers6Socket14getInetAddressEv', + '30834766' => { + 'Artificial' => 1, + 'Class' => '30791785', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764957' + 'type' => '30796936' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '7592264', - 'ShortName' => 'getInetAddress', - 'Source' => 'socket.cpp', - 'SourceLine' => '38' + 'ShortName' => 'WideLife' }, - '20762113' => { - 'Class' => '20662270', - 'Const' => 1, - 'Header' => 'socket.h', - 'MnglName' => '_ZNK7log4cxx7helpers6Socket7getPortEv', + '30834767' => { + 'Artificial' => 1, + 'Class' => '30791785', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764957' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getPort', - 'Source' => 'socket.cpp', - 'SourceLine' => '43' - }, - '20762144' => { - 'Class' => '20662270', - 'Header' => 'socket.h', - 'Line' => '68', - 'MnglName' => '_ZN7log4cxx7helpers6Socket6createERSt10shared_ptrINS0_11InetAddressEEi', - 'Param' => { - '0' => { - 'name' => 'address', - 'type' => '20764962' - }, - '1' => { - 'name' => 'port', - 'type' => '50231' + 'type' => '30796936' } }, - 'Return' => '20763353', - 'ShortName' => 'create', - 'Source' => 'socket.cpp', - 'SourceLine' => '48', - 'Static' => 1 - }, - '20763387' => { - 'Data' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7classes18SocketRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'SocketRegistration', - 'Source' => 'socket.cpp' + 'ShortName' => 'WideLife' }, - '20771999' => { + '30834846' => { 'Artificial' => 1, - 'Class' => '20762246', + 'Class' => '30791430', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764197' + 'type' => '30796880' } }, 'ShortName' => 'WideLife' }, - '20772000' => { + '30834847' => { 'Artificial' => 1, - 'Class' => '20762246', + 'Class' => '30791430', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764197' + 'type' => '30796880' } }, 'ShortName' => 'WideLife' }, - '20772140' => { + '30834988' => { 'Artificial' => 1, - 'Class' => '20762246', + 'Class' => '30791430', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764197' + 'type' => '30796880' } }, 'ShortName' => 'WideLife' }, - '20772141' => { + '30834989' => { 'Artificial' => 1, - 'Class' => '20762246', + 'Class' => '30791430', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764197' + 'type' => '30796880' } }, 'ShortName' => 'WideLife' }, - '20775207' => { - 'Class' => '20662270', + '30836577' => { + 'Artificial' => 1, + 'Class' => '30790674', 'Destructor' => 1, - 'Header' => 'socket.h', - 'MnglName' => '_ZN7log4cxx7helpers6SocketD0Ev', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764322' + 'type' => '30796474' } }, - 'ShortName' => 'Socket', - 'Source' => 'socket.cpp', - 'SourceLine' => '34', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '20775208' => { - 'Class' => '20662270', + '30836578' => { + 'Artificial' => 1, + 'Class' => '30790674', 'Destructor' => 1, - 'Header' => 'socket.h', - 'MnglName' => '_ZN7log4cxx7helpers6SocketD1Ev', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764322' + 'type' => '30796474' } }, - 'ShortName' => 'Socket', - 'Source' => 'socket.cpp', - 'SourceLine' => '34', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '20775302' => { - 'Class' => '20662270', - 'Destructor' => 1, - 'Header' => 'socket.h', - 'MnglName' => '_ZN7log4cxx7helpers6SocketD2Ev', + '30836719' => { + 'Artificial' => 1, + 'Class' => '30790674', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764322' + 'type' => '30796474' } }, - 'ShortName' => 'Socket', - 'Source' => 'socket.cpp', - 'SourceLine' => '34', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '20775715' => { - 'Class' => '20662270', + '30836720' => { + 'Artificial' => 1, + 'Class' => '30790674', 'Constructor' => 1, - 'Header' => 'socket.h', - 'MnglName' => '_ZN7log4cxx7helpers6SocketC2ESt10unique_ptrINS1_13SocketPrivateESt14default_deleteIS3_EE', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764322' - }, - '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '20733168' + 'type' => '30796474' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Socket', - 'Source' => 'socket.cpp', - 'SourceLine' => '29' + 'ShortName' => 'WideLife' }, - '20775716' => { - 'Class' => '20662270', + '30856912' => { + 'Artificial' => 1, + 'Class' => '30795455', 'Constructor' => 1, - 'Header' => 'socket.h', - 'MnglName' => '_ZN7log4cxx7helpers6SocketC1ESt10unique_ptrINS1_13SocketPrivateESt14default_deleteIS3_EE', + 'InLine' => 1, + 'Line' => '219', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviatorC2ERKSt6vectorINS0_26PatternAbbreviatorFragmentESaIS3_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764322' + 'type' => '30797353' }, '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '20733168' + 'name' => 'fragments1', + 'type' => '30796830' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Socket', - 'Source' => 'socket.cpp', - 'SourceLine' => '29' + 'ShortName' => 'PatternAbbreviator', + 'Source' => 'nameabbreviator.cpp' }, - '20779053' => { + '30856913' => { 'Artificial' => 1, - 'Class' => '20761588', - 'Destructor' => 1, - 'Header' => 'socket.h', + 'Class' => '30795455', + 'Constructor' => 1, 'InLine' => 1, - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketD0Ev', + 'Line' => '219', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviatorC1ERKSt6vectorINS0_26PatternAbbreviatorFragmentESaIS3_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20765015' + 'type' => '30797353' + }, + '1' => { + 'name' => 'fragments1', + 'type' => '30796830' } }, - 'ShortName' => 'ClazzSocket', - 'Virt' => 1 + 'ShortName' => 'PatternAbbreviator', + 'Source' => 'nameabbreviator.cpp' }, - '20779054' => { + '30860712' => { 'Artificial' => 1, - 'Class' => '20761588', + 'Class' => '30795472', 'Destructor' => 1, - 'Header' => 'socket.h', 'InLine' => 1, - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketD1Ev', + 'Line' => '209', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20765015' + 'type' => '30798611' } }, - 'ShortName' => 'ClazzSocket', + 'ShortName' => 'ClazzPatternAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20779194' => { + '30860713' => { 'Artificial' => 1, - 'Class' => '20761588', + 'Class' => '30795472', 'Destructor' => 1, - 'Header' => 'socket.h', 'InLine' => 1, - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketD2Ev', + 'Line' => '209', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20765015' + 'type' => '30798611' } }, - 'ShortName' => 'ClazzSocket', + 'ShortName' => 'ClazzPatternAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20779284' => { + '30860858' => { 'Artificial' => 1, - 'Class' => '20761588', - 'Constructor' => 1, - 'Header' => 'socket.h', + 'Class' => '30795472', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketC2Ev', + 'Line' => '209', + 'MnglName' => '_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20765015' + 'type' => '30798611' } }, - 'ShortName' => 'ClazzSocket' + 'ShortName' => 'ClazzPatternAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1 }, - '20779285' => { + '30863927' => { 'Artificial' => 1, - 'Class' => '20761588', - 'Constructor' => 1, - 'Header' => 'socket.h', + 'Class' => '30794957', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20765015' - } - }, - 'ShortName' => 'ClazzSocket' - }, - '20861506' => { - 'Class' => '20662837', - 'Header' => 'aprsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocket5writeERNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20764613' - }, - '1' => { - 'name' => 'buf', - 'type' => '1340866' - } - }, - 'Return' => '50486', - 'ShortName' => 'write', - 'Source' => 'aprsocket.cpp', - 'SourceLine' => '109', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '20861550' => { - 'Class' => '20662837', - 'Header' => 'aprsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocket5closeEv', + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764613' + 'type' => '30798631' } }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'aprsocket.cpp', - 'SourceLine' => '147', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'ClazzMaxElementAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'Virt' => 1 }, - '20870234' => { + '30863928' => { 'Artificial' => 1, - 'Class' => '20662837', + 'Class' => '30794957', 'Destructor' => 1, - 'Header' => 'aprsocket.h', 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocketD0Ev', + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764613' + 'type' => '30798631' } }, - 'ShortName' => 'APRSocket', + 'ShortName' => 'ClazzMaxElementAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20870235' => { + '30864073' => { 'Artificial' => 1, - 'Class' => '20662837', + 'Class' => '30794957', 'Destructor' => 1, - 'Header' => 'aprsocket.h', 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocketD1Ev', + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764613' + 'type' => '30798631' } }, - 'ShortName' => 'APRSocket', + 'ShortName' => 'ClazzMaxElementAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20870376' => { + '30865246' => { 'Artificial' => 1, - 'Class' => '20662837', + 'Class' => '30794460', 'Destructor' => 1, - 'Header' => 'aprsocket.h', 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocketD2Ev', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764613' + 'type' => '30798651' } }, - 'ShortName' => 'APRSocket', + 'ShortName' => 'ClazzNOPAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20878483' => { + '30865247' => { 'Artificial' => 1, - 'Class' => '20861149', + 'Class' => '30794460', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD0Ev', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20864989' + 'type' => '30798651' } }, - 'ShortName' => 'APRSocketPriv', - 'Source' => 'aprsocket.cpp', + 'ShortName' => 'ClazzNOPAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20878484' => { + '30865392' => { 'Artificial' => 1, - 'Class' => '20861149', + 'Class' => '30794460', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD1Ev', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20864989' + 'type' => '30798651' } }, - 'ShortName' => 'APRSocketPriv', - 'Source' => 'aprsocket.cpp', + 'ShortName' => 'ClazzNOPAbbreviator', + 'Source' => 'nameabbreviator.cpp', 'Virt' => 1 }, - '20879288' => { - 'Artificial' => 1, - 'Class' => '20861149', + '30865542' => { + 'Class' => '6075057', 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD2Ev', + 'Header' => 'nameabbreviator.h', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20864989' + 'type' => '30797478' } }, - 'ShortName' => 'APRSocketPriv', - 'Source' => 'aprsocket.cpp', + 'ShortName' => 'NameAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '34', 'Virt' => 1 }, - '20883538' => { - 'Class' => '20662837', - 'Constructor' => 1, - 'Header' => 'aprsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocketC2EP12apr_socket_tP10apr_pool_t', + '30865543' => { + 'Class' => '6075057', + 'Destructor' => 1, + 'Header' => 'nameabbreviator.h', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764613' - }, - '1' => { - 'name' => 's', - 'type' => '20457413' - }, - '2' => { - 'name' => 'pool', - 'type' => '652756' + 'type' => '30797478' } }, - 'ShortName' => 'APRSocket', - 'Source' => 'aprsocket.cpp', - 'SourceLine' => '81' + 'ShortName' => 'NameAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '34', + 'Virt' => 1 }, - '20883539' => { - 'Class' => '20662837', - 'Constructor' => 1, - 'Header' => 'aprsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocketC1EP12apr_socket_tP10apr_pool_t', + '30865636' => { + 'Class' => '6075057', + 'Destructor' => 1, + 'Header' => 'nameabbreviator.h', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764613' - }, - '1' => { - 'name' => 's', - 'type' => '20457413' - }, - '2' => { - 'name' => 'pool', - 'type' => '652756' + 'type' => '30797478' } }, - 'ShortName' => 'APRSocket', - 'Source' => 'aprsocket.cpp', - 'SourceLine' => '81' + 'ShortName' => 'NameAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '34', + 'Virt' => 1 }, - '20900744' => { - 'Class' => '20662837', + '30865752' => { + 'Class' => '6075057', 'Constructor' => 1, - 'Header' => 'aprsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocketC2ERSt10shared_ptrINS0_11InetAddressEEi', + 'Header' => 'nameabbreviator.h', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764613' - }, - '1' => { - 'name' => 'address', - 'type' => '20764962' - }, - '2' => { - 'name' => 'port', - 'type' => '50231' + 'type' => '30797478' } }, - 'ShortName' => 'APRSocket', - 'Source' => 'aprsocket.cpp', - 'SourceLine' => '48' + 'Protected' => 1, + 'ShortName' => 'NameAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '30' }, - '20900745' => { - 'Class' => '20662837', + '30865753' => { + 'Class' => '6075057', 'Constructor' => 1, - 'Header' => 'aprsocket.h', - 'MnglName' => '_ZN7log4cxx7helpers9APRSocketC1ERSt10shared_ptrINS0_11InetAddressEEi', + 'Header' => 'nameabbreviator.h', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviatorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764613' - }, - '1' => { - 'name' => 'address', - 'type' => '20764962' - }, - '2' => { - 'name' => 'port', - 'type' => '50231' + 'type' => '30797478' } }, - 'ShortName' => 'APRSocket', - 'Source' => 'aprsocket.cpp', - 'SourceLine' => '48' + 'Protected' => 1, + 'ShortName' => 'NameAbbreviator', + 'Source' => 'nameabbreviator.cpp', + 'SourceLine' => '30' }, - '20909228' => { + '30867671' => { 'Artificial' => 1, - 'Class' => '20761457', + 'Class' => '6075063', 'Destructor' => 1, - 'Header' => 'socket_priv.h', + 'Header' => 'nameabbreviator.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateD0Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20763482' + 'type' => '30798686' } }, - 'ShortName' => 'SocketPrivate', + 'ShortName' => 'ClazzNameAbbreviator', 'Virt' => 1 }, - '20909229' => { + '30867672' => { 'Artificial' => 1, - 'Class' => '20761457', + 'Class' => '6075063', 'Destructor' => 1, - 'Header' => 'socket_priv.h', + 'Header' => 'nameabbreviator.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateD1Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20763482' + 'type' => '30798686' } }, - 'ShortName' => 'SocketPrivate', + 'ShortName' => 'ClazzNameAbbreviator', 'Virt' => 1 }, - '20909977' => { + '30867817' => { 'Artificial' => 1, - 'Class' => '20761457', + 'Class' => '6075063', 'Destructor' => 1, - 'Header' => 'socket_priv.h', + 'Header' => 'nameabbreviator.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateD2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20763482' + 'type' => '30798686' } }, - 'ShortName' => 'SocketPrivate', + 'ShortName' => 'ClazzNameAbbreviator', 'Virt' => 1 }, - '20910708' => { + '30867911' => { 'Artificial' => 1, - 'Class' => '20761457', + 'Class' => '6075063', 'Constructor' => 1, - 'Header' => 'socket_priv.h', + 'Header' => 'nameabbreviator.h', 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateC2ERKSt10shared_ptrINS0_11InetAddressEEi', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20763482' - }, - '1' => { - 'name' => 'addr', - 'type' => '20765003' - }, - '2' => { - 'name' => '_port', - 'type' => '50231' + 'type' => '30798686' } }, - 'ShortName' => 'SocketPrivate' + 'ShortName' => 'ClazzNameAbbreviator' }, - '20910709' => { + '30867912' => { 'Artificial' => 1, - 'Class' => '20761457', + 'Class' => '6075063', 'Constructor' => 1, - 'Header' => 'socket_priv.h', + 'Header' => 'nameabbreviator.h', 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateC1ERKSt10shared_ptrINS0_11InetAddressEEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20763482' - }, - '1' => { - 'name' => 'addr', - 'type' => '20765003' - }, - '2' => { - 'name' => '_port', - 'type' => '50231' - } - }, - 'ShortName' => 'SocketPrivate' - }, - '21024472' => { - 'Class' => '21024351', - 'Const' => 1, - 'Header' => 'telnetappender.h', - 'InLine' => 2, - 'Line' => '73', - 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender19ClazzTelnetAppender7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21031255' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '21024511' => { - 'Class' => '21024351', - 'Const' => 1, - 'Header' => 'telnetappender.h', - 'InLine' => 2, - 'Line' => '73', - 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21031255' - } - }, - 'Return' => '21030642', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '21024550' => { - 'Artificial' => 1, - 'Class' => '21024351', - 'Header' => 'telnetappender.h', - 'InLine' => 2, - 'Line' => '73', - 'MnglName' => '_ZTch0_h0_NK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21031255' - } - }, - 'Return' => '21030642', - 'ShortName' => '_ZTch0_h0_NK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv' - }, - '21024863' => { - 'Class' => '21024333', - 'Const' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21031162' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '32', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '21024902' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '32', - 'Static' => 1 - }, - '21024919' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '32', - 'Static' => 1 - }, - '21024936' => { - 'Class' => '21024333', - 'Const' => 1, - 'Header' => 'telnetappender.h', - 'InLine' => 2, - 'Line' => '74', - 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21031162' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '21024980' => { - 'Class' => '21024333', - 'Const' => 1, - 'Header' => 'telnetappender.h', - 'InLine' => 2, - 'Line' => '77', - 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender10instanceofERKNS_7helpers5ClassE', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21031162' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '30798686' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzNameAbbreviator' }, - '21025104' => { - 'Class' => '21024333', - 'Const' => 1, - 'Header' => 'telnetappender.h', - 'InLine' => 2, - 'Line' => '85', - 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender14requiresLayoutEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21031162' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'requiresLayout', - 'Virt' => 1, - 'VirtPos' => '16' - }, - '21025143' => { - 'Class' => '21024333', - 'Const' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender11getEncodingB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21031162' - } - }, - 'Return' => '63706', - 'ShortName' => 'getEncoding', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '99' - }, - '21025174' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender11setEncodingERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - }, - '1' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setEncoding', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '105' - }, - '21025206' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '71', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '21025247' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '82', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '21025293' => { - 'Class' => '21024333', - 'Const' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender7getPortEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21031162' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getPort', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '312' - }, - '21025325' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender7setPortEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - }, - '1' => { - 'name' => 'port1', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setPort', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '317' - }, - '21025358' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender5closeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - } - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '113', - 'Virt' => 1, - 'VirtPos' => '10' - }, - '21025394' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'append', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '197', - 'Virt' => 1, - 'VirtPos' => '17' - }, - '21025516' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender5writeERNS_7helpers10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - }, - '1' => { - 'name' => 'buf', - 'type' => '1340866' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '157' + '3115781' => { + 'Class' => '3115697', + 'Const' => 1, + 'Header' => 'outputstreamwriter.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34249480' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3116318' => { + 'Class' => '3116234', + 'Const' => 1, + 'Header' => 'charsetencoder.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoder7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4995963' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3116451' => { + 'Class' => '3116367', + 'Const' => 1, + 'Header' => 'writer.h', + 'InLine' => 2, + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx7helpers6Writer11ClazzWriter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878654' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3116584' => { + 'Class' => '3116500', + 'Const' => 1, + 'Header' => 'outputstream.h', + 'InLine' => 2, + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx7helpers12OutputStream17ClazzOutputStream7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34038837' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3118586' => { + 'Class' => '3118502', + 'Const' => 1, + 'Header' => 'repositoryselector.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx3spi18RepositorySelector23ClazzRepositorySelector7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286031' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3118852' => { + 'Class' => '3118768', + 'Const' => 1, + 'Header' => 'configurator.h', + 'InLine' => 2, + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx3spi12Configurator17ClazzConfigurator7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7412151' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3119587' => { + 'Class' => '566426', + 'Header' => 'logger.h', + 'Line' => '749', + 'MnglName' => '_ZN7log4cxx6Logger13getRootLoggerEv', + 'Return' => '3121982', + 'ShortName' => 'getRootLogger', + 'Source' => 'logger.cpp', + 'SourceLine' => '591', + 'Static' => 1 + }, + '3119652' => { + 'Class' => '3119612', + 'Header' => 'basicconfigurator.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx17BasicConfigurator9configureERKSt10shared_ptrINS_6LayoutEE', + 'Param' => { + '0' => { + 'name' => 'layoutArg', + 'type' => '1391157' + } + }, + 'Return' => '1', + 'ShortName' => 'configure', + 'Source' => 'basicconfigurator.cpp', + 'SourceLine' => '27', + 'Static' => 1 + }, + '3119674' => { + 'Class' => '3119612', + 'Header' => 'basicconfigurator.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx17BasicConfigurator9configureERKSt10shared_ptrINS_8AppenderEE', + 'Param' => { + '0' => { + 'name' => 'appender', + 'type' => '3129701' + } + }, + 'Return' => '1', + 'ShortName' => 'configure', + 'Source' => 'basicconfigurator.cpp', + 'SourceLine' => '40', + 'Static' => 1 + }, + '3119696' => { + 'Class' => '3119612', + 'Header' => 'basicconfigurator.h', + 'Line' => '64', + 'MnglName' => '_ZN7log4cxx17BasicConfigurator18resetConfigurationEv', + 'Return' => '1', + 'ShortName' => 'resetConfiguration', + 'Source' => 'basicconfigurator.cpp', + 'SourceLine' => '46', + 'Static' => 1 + }, + '3120460' => { + 'Class' => '3120376', + 'Const' => 1, + 'Header' => 'patternconverter.h', + 'InLine' => 2, + 'Line' => '63', + 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter21ClazzPatternConverter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34466215' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3120598' => { + 'Class' => '3120514', + 'Const' => 1, + 'Header' => 'formattinginfo.h', + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo19ClazzFormattingInfo7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '17168375' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3120695' => { + 'Class' => '3120638', + 'Data' => 1, + 'Header' => 'patternparser.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParser11ESCAPE_CHARE', + 'Private' => 1, + 'Return' => '563928', + 'ShortName' => 'ESCAPE_CHAR', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '27' + }, + '3120737' => { + 'Class' => '3120638', + 'Header' => 'patternparser.h', + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParser16extractConverterEcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRS7_SA_', + 'Param' => { + '0' => { + 'name' => 'lastChar', + 'type' => '209678' + }, + '1' => { + 'name' => 'pattern', + 'type' => '210597' + }, + '2' => { + 'name' => 'i', + 'type' => '51887' + }, + '3' => { + 'name' => 'convBuf', + 'type' => '210592' + }, + '4' => { + 'name' => 'currentLiteral', + 'type' => '210592' + } + }, + 'Private' => 1, + 'Return' => '190816', + 'ShortName' => 'extractConverter', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '58', + 'Static' => 1 + }, + '3120783' => { + 'Class' => '3120638', + 'Header' => 'patternparser.h', + 'Line' => '99', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParser14extractOptionsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRSt6vectorIS7_SaIS7_EE', + 'Param' => { + '0' => { + 'name' => 'pattern', + 'type' => '210597' + }, + '1' => { + 'name' => 'i', + 'type' => '51887' + }, + '2' => { + 'name' => 'options', + 'type' => '6085710' + } + }, + 'Private' => 1, + 'Return' => '190816', + 'ShortName' => 'extractOptions', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '95', + 'Static' => 1 + }, + '3120819' => { + 'Class' => '3120638', + 'Header' => 'patternparser.h', + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParser5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERSt6vectorISt10shared_ptrINS0_16PatternConverterEESaISD_EERSA_ISB_INS0_14FormattingInfoEESaISI_EERKSt3mapIS7_St8functionIFSD_RKSA_IS7_SaIS7_EEEESt4lessIS7_ESaISt4pairIS8_ST_EEE', + 'Param' => { + '0' => { + 'name' => 'pattern', + 'type' => '210597' + }, + '1' => { + 'name' => 'patternConverters', + 'type' => '16783989' + }, + '2' => { + 'name' => 'formattingInfos', + 'type' => '16783994' + }, + '3' => { + 'name' => 'rules', + 'type' => '3130521' + } + }, + 'Return' => '1', + 'ShortName' => 'parse', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '115', + 'Static' => 1 + }, + '3120856' => { + 'Class' => '3120638', + 'Header' => 'patternparser.h', + 'Line' => '128', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParser15createConverterERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RKSt3mapIS7_St8functionIFSt10shared_ptrINS0_16PatternConverterEERKSt6vectorIS7_SaIS7_EEEESt4lessIS7_ESaISt4pairIS8_SM_EEERSI_', + 'Param' => { + '0' => { + 'name' => 'converterId', + 'type' => '210597' + }, + '1' => { + 'name' => 'currentLiteral', + 'type' => '210592' + }, + '2' => { + 'name' => 'rules', + 'type' => '3130521' + }, + '3' => { + 'name' => 'options', + 'type' => '6085710' + } + }, + 'Private' => 1, + 'Return' => '3121025', + 'ShortName' => 'createConverter', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '307', + 'Static' => 1 + }, + '3120897' => { + 'Class' => '3120638', + 'Header' => 'patternparser.h', + 'Line' => '147', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParser17finalizeConverterEcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRS7_RKSt10shared_ptrINS0_14FormattingInfoEERKSt3mapIS7_St8functionIFSB_INS0_16PatternConverterEERKSt6vectorIS7_SaIS7_EEEESt4lessIS7_ESaISt4pairIS8_SQ_EEERSK_ISJ_SaISJ_EERSK_ISD_SaISD_EE', + 'Param' => { + '0' => { + 'name' => 'c', + 'type' => '209678' + }, + '1' => { + 'name' => 'pattern', + 'type' => '210597' + }, + '2' => { + 'name' => 'i', + 'type' => '190816' + }, + '3' => { + 'name' => 'currentLiteral', + 'type' => '210592' + }, + '4' => { + 'name' => 'formattingInfo', + 'type' => '3130526' + }, + '5' => { + 'name' => 'rules', + 'type' => '3130521' + }, + '6' => { + 'name' => 'patternConverters', + 'offset' => '0', + 'type' => '16783989' + }, + '7' => { + 'name' => 'formattingInfos', + 'offset' => '8', + 'type' => '16783994' + } + }, + 'Private' => 1, + 'Return' => '190816', + 'ShortName' => 'finalizeConverter', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '334', + 'Static' => 1 + }, + '3120958' => { + 'Class' => '3120638', + 'Header' => 'patternparser.h', + 'Line' => '154', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParser24isUnicodeIdentifierStartEc', + 'Param' => { + '0' => { + 'name' => 'ch', + 'type' => '209678' + } + }, + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'isUnicodeIdentifierStart', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '37', + 'Static' => 1 + }, + '31209580' => { + 'Class' => '6074647', + 'Header' => 'namepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'namepatternconverter.cpp', + 'SourceLine' => '42', + 'Static' => 1 }, - '21025547' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender11writeStatusERKSt10shared_ptrINS_7helpers6SocketEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', + '31209806' => { + 'Class' => '6074647', + 'Header' => 'namepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter14getAbbreviatorERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21030648' + 'type' => '6087922' }, '1' => { - 'name' => 'socket', - 'type' => '21031196' - }, - '2' => { - 'name' => 'msg', - 'type' => '263006' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'writeStatus', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '180' - }, - '21025588' => { - 'Class' => '21024333', - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender17acceptConnectionsEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' + 'name' => 'options', + 'type' => '6085700' } }, 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'acceptConnections', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '235' + 'Return' => '30795970', + 'ShortName' => 'getAbbreviator', + 'Source' => 'namepatternconverter.cpp', + 'SourceLine' => '53' }, - '21025643' => { + '3120984' => { + 'Class' => '3120638', + 'Header' => 'patternparser.h', + 'Line' => '155', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParser23isUnicodeIdentifierPartEc', + 'Param' => { + '0' => { + 'name' => 'ch', + 'type' => '209678' + } + }, + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'isUnicodeIdentifierPart', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '48', + 'Static' => 1 + }, + '3121144' => { + 'Class' => '3121060', + 'Const' => 1, + 'Header' => 'loggingeventpatternconverter.h', + 'InLine' => 2, + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '27283405' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '31212575' => { 'Data' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7classes26TelnetAppenderRegistrationE', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7classes32NamePatternConverterRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'TelnetAppenderRegistration', - 'Source' => 'telnetappender.cpp' - }, - '21030019' => { - 'Class' => '21024333', - 'Data' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender12DEFAULT_PORTE', - 'Return' => '50239', - 'ShortName' => 'DEFAULT_PORT', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '56', - 'Value' => '23' - }, - '21030028' => { - 'Class' => '21024333', - 'Data' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender15MAX_CONNECTIONSE', - 'Return' => '50239', - 'ShortName' => 'MAX_CONNECTIONS', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '59', - 'Value' => '20' - }, - '21054939' => { - 'Artificial' => 1, - 'Class' => '21024577', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030060' - } - }, - 'ShortName' => 'TelnetAppenderPriv', - 'Source' => 'telnetappender.cpp', - 'Virt' => 1 + 'Return' => '210733', + 'ShortName' => 'NamePatternConverterRegistration', + 'Source' => 'namepatternconverter.cpp' }, - '21054940' => { - 'Artificial' => 1, - 'Class' => '21024577', - 'Destructor' => 1, + '3121290' => { + 'Class' => '3121199', + 'Const' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 2, + 'Line' => '451', + 'MnglName' => '_ZNK7log4cxx13PatternLayout18ClazzPatternLayout7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980451' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3121331' => { + 'Class' => '3121199', + 'Const' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 2, + 'Line' => '451', + 'MnglName' => '_ZNK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980451' + } + }, + 'Return' => '3132935', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '3121572' => { + 'Class' => '3121559', + 'Data' => 1, + 'Header' => 'logmanager.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx10LogManager5guardE', + 'Private' => 1, + 'Return' => '190924', + 'ShortName' => 'guard', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '45' + }, + '3121588' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx10LogManager21getRepositorySelectorEv', + 'Private' => 1, + 'Return' => '3118319', + 'ShortName' => 'getRepositorySelector', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '47', + 'Static' => 1 + }, + '3121604' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx10LogManager21setRepositorySelectorESt10shared_ptrINS_3spi18RepositorySelectorEEPv', + 'Param' => { + '0' => { + 'name' => 'selector', + 'type' => '3118319' + }, + '1' => { + 'name' => 'guard1', + 'type' => '190924' + } + }, + 'Return' => '1', + 'ShortName' => 'setRepositorySelector', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '58', + 'Static' => 1 + }, + '3121631' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '70', + 'MnglName' => '_ZN7log4cxx10LogManager19getLoggerRepositoryEv', + 'Return' => '565552', + 'ShortName' => 'getLoggerRepository', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '76', + 'Static' => 1 + }, + '3121647' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '78', + 'MnglName' => '_ZN7log4cxx10LogManager13getRootLoggerEv', + 'Return' => '3121982', + 'ShortName' => 'getRootLogger', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '81', + 'Static' => 1 + }, + '3121663' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '88', + 'MnglName' => '_ZN7log4cxx10LogManager9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '202831' + } + }, + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '111', + 'Static' => 1 + }, + '3121689' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '98', + 'MnglName' => '_ZN7log4cxx10LogManager9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '202831' + }, + '1' => { + 'name' => 'factory', + 'type' => '3132696' + } + }, + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '117', + 'Static' => 1 + }, + '3121720' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '103', + 'MnglName' => '_ZN7log4cxx10LogManager6existsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '202831' + } + }, + 'Return' => '3121982', + 'ShortName' => 'exists', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '124', + 'Static' => 1 + }, + '3121746' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '113', + 'MnglName' => '_ZN7log4cxx10LogManager9getLoggerERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '202841' + } + }, + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '131', + 'Static' => 1 + }, + '3121772' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '122', + 'MnglName' => '_ZN7log4cxx10LogManager9getLoggerERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '202841' + }, + '1' => { + 'name' => 'factory', + 'type' => '3132696' + } + }, + 'Return' => '3121982', + 'ShortName' => 'getLogger', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '137', + 'Static' => 1 + }, + '3121803' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx10LogManager6existsERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '202841' + } + }, + 'Return' => '3121982', + 'ShortName' => 'exists', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '144', + 'Static' => 1 + }, + '3121829' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '194', + 'MnglName' => '_ZN7log4cxx10LogManager11getLoggerLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '210597' + } + }, + 'Return' => '3121982', + 'ShortName' => 'getLoggerLS', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '92', + 'Static' => 1 + }, + '3121855' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '204', + 'MnglName' => '_ZN7log4cxx10LogManager11getLoggerLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '210597' + }, + '1' => { + 'name' => 'factory', + 'type' => '3132696' + } + }, + 'Return' => '3121982', + 'ShortName' => 'getLoggerLS', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '102', + 'Static' => 1 + }, + '3121886' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '210', + 'MnglName' => '_ZN7log4cxx10LogManager8existsLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '210597' + } + }, + 'Return' => '3121982', + 'ShortName' => 'existsLS', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '193', + 'Static' => 1 + }, + '3121912' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx10LogManager17getCurrentLoggersEv', + 'Return' => '3121994', + 'ShortName' => 'getCurrentLoggers', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '198', + 'Static' => 1 + }, + '3121928' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '218', + 'MnglName' => '_ZN7log4cxx10LogManager8shutdownEv', + 'Return' => '1', + 'ShortName' => 'shutdown', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '203', + 'Static' => 1 + }, + '3121940' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '225', + 'MnglName' => '_ZN7log4cxx10LogManager18resetConfigurationEv', + 'Return' => '1', + 'ShortName' => 'resetConfiguration', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '209', + 'Static' => 1 + }, + '3121952' => { + 'Class' => '3121559', + 'Header' => 'logmanager.h', + 'Line' => '238', + 'MnglName' => '_ZN7log4cxx10LogManager12removeLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', + 'Param' => { + '0' => { + 'name' => 'name', + 'type' => '210597' + }, + '1' => { + 'name' => 'ifNotUsed', + 'type' => '174077' + } + }, + 'Return' => '174077', + 'ShortName' => 'removeLogger', + 'Source' => 'logmanager.cpp', + 'SourceLine' => '214', + 'Static' => 1 + }, + '3122099' => { + 'Class' => '3122015', + 'Const' => 1, + 'Header' => 'consoleappender.h', + 'InLine' => 2, + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx15ConsoleAppender20ClazzConsoleAppender7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7876276' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3122137' => { + 'Class' => '3122015', + 'Const' => 1, + 'Header' => 'consoleappender.h', + 'InLine' => 2, + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7876276' + } + }, + 'Return' => '3133115', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '3122453' => { + 'Class' => '3122369', + 'Const' => 1, + 'Header' => 'writerappender.h', + 'InLine' => 2, + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx14WriterAppender19ClazzWriterAppender7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50328817' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '31227863' => { + 'Artificial' => 1, + 'Class' => '31209308', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD1Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21030060' + 'type' => '31220686' } }, - 'ShortName' => 'TelnetAppenderPriv', - 'Source' => 'telnetappender.cpp', + 'ShortName' => 'NamePatternConverterPrivate', + 'Source' => 'namepatternconverter.cpp', 'Virt' => 1 }, - '21061937' => { + '31227864' => { 'Artificial' => 1, - 'Class' => '21024577', + 'Class' => '31209308', 'Destructor' => 1, 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD2Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21030060' + 'type' => '31220686' } }, - 'ShortName' => 'TelnetAppenderPriv', - 'Source' => 'telnetappender.cpp', + 'ShortName' => 'NamePatternConverterPrivate', + 'Source' => 'namepatternconverter.cpp', 'Virt' => 1 }, - '21075079' => { + '31229961' => { 'Artificial' => 1, - 'Class' => '21022416', + 'Class' => '31209308', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEED2Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21029221' + 'type' => '31220686' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'NamePatternConverterPrivate', + 'Source' => 'namepatternconverter.cpp', + 'Virt' => 1 }, - '21075080' => { + '31235759' => { 'Artificial' => 1, - 'Class' => '21022416', + 'Class' => '31207286', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21029221' + 'type' => '31220575' } }, 'ShortName' => 'WideLife' }, - '21075221' => { + '31235760' => { 'Artificial' => 1, - 'Class' => '21022416', - 'Constructor' => 1, + 'Class' => '31207286', + 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEEC2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21029221' + 'type' => '31220575' } }, 'ShortName' => 'WideLife' }, - '21075222' => { + '31235903' => { 'Artificial' => 1, - 'Class' => '21022416', + 'Class' => '31207286', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21029221' + 'type' => '31220575' } }, 'ShortName' => 'WideLife' }, - '21121638' => { - 'Class' => '21024333', - 'Destructor' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - } - }, - 'ShortName' => 'TelnetAppender', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '66', - 'Virt' => 1 - }, - '21121736' => { - 'Class' => '21024333', - 'Destructor' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - } - }, - 'ShortName' => 'TelnetAppender', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '66', - 'Virt' => 1 - }, - '21122020' => { - 'Class' => '21024333', - 'Destructor' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21030648' - } - }, - 'ShortName' => 'TelnetAppender', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '66', - 'Virt' => 1 - }, - '21122170' => { - 'Class' => '21024333', + '31235904' => { + 'Artificial' => 1, + 'Class' => '31207286', 'Constructor' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderC1Ev', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21030648' + 'type' => '31220575' } }, - 'ShortName' => 'TelnetAppender', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '61' + 'ShortName' => 'WideLife' }, - '21134032' => { - 'Class' => '21024333', + '31237135' => { + 'Class' => '6074647', 'Constructor' => 1, - 'Header' => 'telnetappender.h', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderC2Ev', + 'Header' => 'namepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RKSt6vectorIS7_SaIS7_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21030648' + 'type' => '6087922' + }, + '1' => { + 'name' => 'name1', + 'type' => '210597' + }, + '2' => { + 'name' => 'style1', + 'type' => '210597' + }, + '3' => { + 'name' => 'options', + 'type' => '6085700' } }, - 'ShortName' => 'TelnetAppender', - 'Source' => 'telnetappender.cpp', - 'SourceLine' => '61' + 'Protected' => 1, + 'ShortName' => 'NamePatternConverter', + 'Source' => 'namepatternconverter.cpp', + 'SourceLine' => '44' }, - '21156683' => { + '31256166' => { 'Artificial' => 1, - 'Class' => '21024351', + 'Class' => '6074656', 'Destructor' => 1, - 'Header' => 'telnetappender.h', + 'Header' => 'namepatternconverter.h', 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD0Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21031244' + 'type' => '31221480' } }, - 'ShortName' => 'ClazzTelnetAppender', + 'ShortName' => 'ClazzNamePatternConverter', 'Virt' => 1 }, - '21156684' => { + '31256167' => { 'Artificial' => 1, - 'Class' => '21024351', + 'Class' => '6074656', 'Destructor' => 1, - 'Header' => 'telnetappender.h', + 'Header' => 'namepatternconverter.h', 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD1Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21031244' + 'type' => '31221480' } }, - 'ShortName' => 'ClazzTelnetAppender', + 'ShortName' => 'ClazzNamePatternConverter', 'Virt' => 1 }, - '21156825' => { + '31256313' => { 'Artificial' => 1, - 'Class' => '21024351', + 'Class' => '6074656', 'Destructor' => 1, - 'Header' => 'telnetappender.h', + 'Header' => 'namepatternconverter.h', 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21031244' + 'type' => '31221480' } }, - 'ShortName' => 'ClazzTelnetAppender', + 'ShortName' => 'ClazzNamePatternConverter', 'Virt' => 1 }, - '21156915' => { + '31256408' => { 'Artificial' => 1, - 'Class' => '21024351', + 'Class' => '6074656', 'Constructor' => 1, - 'Header' => 'telnetappender.h', + 'Header' => 'namepatternconverter.h', 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderC2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21031244' + 'type' => '31221480' } }, - 'ShortName' => 'ClazzTelnetAppender' + 'ShortName' => 'ClazzNamePatternConverter' }, - '21156916' => { + '31256409' => { 'Artificial' => 1, - 'Class' => '21024351', + 'Class' => '6074656', 'Constructor' => 1, - 'Header' => 'telnetappender.h', + 'Header' => 'namepatternconverter.h', 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderC1Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21031244' + 'type' => '31221480' } }, - 'ShortName' => 'ClazzTelnetAppender' + 'ShortName' => 'ClazzNamePatternConverter' }, - '21272870' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton15activateOptionsERNS_7helpers4PoolE', + '3135370' => { + 'Class' => '3122006', + 'Constructor' => 1, + 'Header' => 'consoleappender.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC1ERKSt10shared_ptrINS_6LayoutEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3133120' + }, + '1' => { + 'name' => 'layout', + 'type' => '1391157' + } + }, + 'ShortName' => 'ConsoleAppender', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '48' + }, + '3135409' => { + 'Class' => '3121185', + 'Constructor' => 1, + 'Header' => 'patternlayout.h', + 'Line' => '465', + 'MnglName' => '_ZN7log4cxx13PatternLayoutC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + }, + '1' => { + 'name' => 'pattern', + 'type' => '210597' + } + }, + 'ShortName' => 'PatternLayout', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '105' + }, + '31471847' => { + 'Class' => '1914500', + 'Constructor' => 1, + 'Header' => 'ndc.h', + 'Line' => '215', + 'MnglName' => '_ZN7log4cxx3NDCC2ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31437217' }, '1' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'message', + 'type' => '202841' } }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '63', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'NDC', + 'Source' => 'ndc.cpp', + 'SourceLine' => '247' }, - '21272911' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton5closeEv', + '31471848' => { + 'Class' => '1914500', + 'Constructor' => 1, + 'Header' => 'ndc.h', + 'Line' => '215', + 'MnglName' => '_ZN7log4cxx3NDCC1ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31437217' + }, + '1' => { + 'name' => 'message', + 'type' => '202841' } }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '69', - 'Virt' => 1, - 'VirtPos' => '10' + 'ShortName' => 'NDC', + 'Source' => 'ndc.cpp', + 'SourceLine' => '247' }, - '21272947' => { - 'Class' => '21272305', - 'Const' => 1, - 'Header' => 'socketappenderskeleton.h', - 'InLine' => 2, - 'Line' => '69', - 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton14requiresLayoutEv', + '31490055' => { + 'Class' => '1914500', + 'Destructor' => 1, + 'Header' => 'ndc.h', + 'Line' => '100', + 'MnglName' => '_ZN7log4cxx3NDCD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21278955' + 'type' => '31437217' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'requiresLayout', - 'Virt' => 1, - 'VirtPos' => '16' + 'ShortName' => 'NDC', + 'Source' => 'ndc.cpp', + 'SourceLine' => '30' }, - '21272986' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton13setRemoteHostERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { + '31490833' => { + 'Class' => '1914500', + 'Constructor' => 1, + 'Header' => 'ndc.h', + 'Line' => '93', + 'MnglName' => '_ZN7log4cxx3NDCC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31437217' }, '1' => { - 'name' => 'host', - 'type' => '263006' + 'name' => 'message', + 'type' => '202831' } }, - 'Return' => '1', - 'ShortName' => 'setRemoteHost', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '219' + 'ShortName' => 'NDC', + 'Source' => 'ndc.cpp', + 'SourceLine' => '25' }, - '21273018' => { - 'Class' => '21272305', - 'Const' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton13getRemoteHostB5cxx11Ev', + '31490834' => { + 'Class' => '1914500', + 'Constructor' => 1, + 'Header' => 'ndc.h', + 'Line' => '93', + 'MnglName' => '_ZN7log4cxx3NDCC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21278955' + 'type' => '31437217' + }, + '1' => { + 'name' => 'message', + 'type' => '202831' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getRemoteHost', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '225' + 'ShortName' => 'NDC', + 'Source' => 'ndc.cpp', + 'SourceLine' => '25' }, - '21273049' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton7setPortEi', + '3149788' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132810' + } + }, + 'ShortName' => 'WideLife' + }, + '3149789' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132810' + } + }, + 'ShortName' => 'WideLife' + }, + '3150559' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA24_KcJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '3133181' + } + }, + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '3133181' + } + } + }, + '3150560' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA24_KcJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '3133181' + } + }, + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '3133181' + } + } + }, + '31851822' => { + 'Class' => '31851709', + 'Const' => 1, + 'Header' => 'mdcpatternconverter.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' - }, - '1' => { - 'name' => 'port1', - 'type' => '50231' + 'type' => '31865455' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setPort', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '230' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '31851945' => { + 'Class' => '31851675', + 'Header' => 'mdcpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'mdcpatternconverter.cpp', + 'SourceLine' => '26', + 'Static' => 1 + }, + '31851961' => { + 'Class' => '31851675', + 'Header' => 'mdcpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'mdcpatternconverter.cpp', + 'SourceLine' => '26', + 'Static' => 1 }, - '21273081' => { - 'Class' => '21272305', + '31851977' => { + 'Class' => '31851675', 'Const' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton7getPortEv', + 'Header' => 'mdcpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21278955' + 'type' => '31864926' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getPort', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '235' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'mdcpatternconverter.cpp', + 'SourceLine' => '26', + 'Virt' => 1, + 'VirtPos' => '2' }, - '21273112' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton15setLocationInfoEb', + '31852015' => { + 'Class' => '31851675', + 'Const' => 1, + 'Header' => 'mdcpatternconverter.h', + 'InLine' => 2, + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31864926' }, '1' => { - 'name' => 'locationInfo1', - 'type' => '50284' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setLocationInfo', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '240' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '21273144' => { - 'Class' => '21272305', + '31852058' => { + 'Class' => '31851675', 'Const' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton15getLocationInfoEv', + 'Header' => 'mdcpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21278955' + 'type' => '31864926' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getLocationInfo', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '245' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '21273175' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton20setReconnectionDelayEi', + '31852152' => { + 'Class' => '31851675', + 'Header' => 'mdcpatternconverter.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'mdcpatternconverter.cpp', + 'SourceLine' => '37', + 'Static' => 1 + }, + '31852179' => { + 'Class' => '31851675', + 'Const' => 1, + 'Header' => 'mdcpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern19MDCPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31864926' }, '1' => { - 'name' => 'reconnectionDelay1', - 'type' => '50231' + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'setReconnectionDelay', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '250' + 'ShortName' => 'format', + 'Source' => 'mdcpatternconverter.cpp', + 'SourceLine' => '48', + 'Virt' => 1, + 'VirtPos' => '7' }, - '21273207' => { - 'Class' => '21272305', - 'Const' => 1, - 'Header' => 'socketappenderskeleton.h', - 'Line' => '123', - 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton20getReconnectionDelayEv', + '31855367' => { + 'Data' => 1, + 'Line' => '26', + 'MnglName' => '_ZN7log4cxx7classes31MDCPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'MDCPatternConverterRegistration', + 'Source' => 'mdcpatternconverter.cpp' + }, + '31869660' => { + 'Artificial' => 1, + 'Class' => '31851675', + 'Destructor' => 1, + 'Header' => 'mdcpatternconverter.h', + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21278955' + 'type' => '31864425' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getReconnectionDelay', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '255' + 'ShortName' => 'MDCPatternConverter', + 'Virt' => 1 }, - '21273238' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'Line' => '125', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton13fireConnectorEv', + '31869661' => { + 'Artificial' => 1, + 'Class' => '31851675', + 'Destructor' => 1, + 'Header' => 'mdcpatternconverter.h', + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31864425' } }, - 'Return' => '1', - 'ShortName' => 'fireConnector', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '150' + 'ShortName' => 'MDCPatternConverter', + 'Virt' => 1 }, - '21273265' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '31869933' => { + 'Artificial' => 1, + 'Class' => '31851675', + 'Destructor' => 1, + 'Header' => 'mdcpatternconverter.h', + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '31864425' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '126', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'MDCPatternConverter', + 'Virt' => 1 }, - '21273353' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'Line' => '147', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton9setSocketERSt10shared_ptrINS_7helpers6SocketEERNS3_4PoolE', + '31886947' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_19MDCPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277935' + 'type' => '6085740' }, '1' => { - 'name' => 'p1', - 'type' => '21278960' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'name' => 'arg0', + 'type' => '31864395' } }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'setSocket', - 'VirtPos' => '18' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '31779375' + } + } }, - '21273399' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'Line' => '149', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton7cleanUpERNS_7helpers4PoolE', + '31886948' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_19MDCPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277935' + 'type' => '6085740' }, '1' => { - 'name' => 'p1', - 'type' => '64643' + 'name' => 'arg0', + 'type' => '31864395' } }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'cleanUp', - 'VirtPos' => '19' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '31779375' + } + } }, - '21273440' => { - 'Class' => '21272305', - 'Const' => 1, - 'Header' => 'socketappenderskeleton.h', - 'Line' => '151', - 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton15getDefaultDelayEv', + '31887917' => { + 'Artificial' => 1, + 'Class' => '31849174', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21278949' + 'type' => '31864119' } }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '50231', - 'ShortName' => 'getDefaultDelay', - 'VirtPos' => '20' + 'ShortName' => 'WideLife' }, - '21273479' => { - 'Class' => '21272305', - 'Const' => 1, - 'Header' => 'socketappenderskeleton.h', - 'Line' => '153', - 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton14getDefaultPortEv', + '31887918' => { + 'Artificial' => 1, + 'Class' => '31849174', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21278949' + 'type' => '31864119' } }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '50231', - 'ShortName' => 'getDefaultPort', - 'VirtPos' => '21' + 'ShortName' => 'WideLife' }, - '21273518' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton7connectERNS_7helpers4PoolE', + '31888061' => { + 'Artificial' => 1, + 'Class' => '31849174', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '31864119' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'connect', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '92' + 'ShortName' => 'WideLife' }, - '21273549' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton7monitorEv', + '31888062' => { + 'Artificial' => 1, + 'Class' => '31849174', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31864119' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'monitor', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '162' + 'ShortName' => 'WideLife' }, - '21273575' => { - 'Class' => '21272305', - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton9is_closedEv', + '31914109' => { + 'Class' => '31851675', + 'Constructor' => 1, + 'Header' => 'mdcpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RKSt6vectorIS7_SaIS7_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31864425' + }, + '1' => { + 'name' => 'name', + 'type' => '210597' + }, + '2' => { + 'name' => 'style', + 'type' => '210597' + }, + '3' => { + 'name' => 'options', + 'type' => '6085700' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'is_closed', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '214' + 'ShortName' => 'MDCPatternConverter', + 'Source' => 'mdcpatternconverter.cpp', + 'SourceLine' => '28' + }, + '31917467' => { + 'Class' => '31851675', + 'Constructor' => 1, + 'Header' => 'mdcpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RKSt6vectorIS7_SaIS7_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '31864425' + }, + '2' => { + 'name' => 'name', + 'type' => '210597' + }, + '3' => { + 'name' => 'style', + 'type' => '210597' + }, + '4' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'ShortName' => 'MDCPatternConverter', + 'Source' => 'mdcpatternconverter.cpp', + 'SourceLine' => '28' }, - '21308973' => { + '31925517' => { 'Artificial' => 1, - 'Class' => '21272323', + 'Class' => '31851709', 'Destructor' => 1, - 'Header' => 'socketappenderskeleton_priv.h', + 'Header' => 'mdcpatternconverter.h', 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD0Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277232' + 'type' => '31865445' } }, - 'ShortName' => 'SocketAppenderSkeletonPriv', + 'ShortName' => 'ClazzMDCPatternConverter', 'Virt' => 1 }, - '21308974' => { + '31925518' => { 'Artificial' => 1, - 'Class' => '21272323', + 'Class' => '31851709', 'Destructor' => 1, - 'Header' => 'socketappenderskeleton_priv.h', + 'Header' => 'mdcpatternconverter.h', 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277232' + 'type' => '31865445' } }, - 'ShortName' => 'SocketAppenderSkeletonPriv', + 'ShortName' => 'ClazzMDCPatternConverter', 'Virt' => 1 }, - '21314435' => { + '31925664' => { 'Artificial' => 1, - 'Class' => '21272323', + 'Class' => '31851709', 'Destructor' => 1, - 'Header' => 'socketappenderskeleton_priv.h', + 'Header' => 'mdcpatternconverter.h', 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277232' + 'type' => '31865445' } }, - 'ShortName' => 'SocketAppenderSkeletonPriv', + 'ShortName' => 'ClazzMDCPatternConverter', 'Virt' => 1 }, - '2136449' => { - 'Class' => '62698', - 'Const' => 1, - 'Header' => 'class.h', - 'MnglName' => '_ZNK7log4cxx7helpers5Class11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141391' - } - }, - 'Return' => '66130', - 'ShortName' => 'newInstance', - 'Source' => 'class.cpp', - 'SourceLine' => '106', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '2136489' => { - 'Class' => '62698', - 'Const' => 1, - 'Header' => 'class.h', - 'Line' => '36', - 'MnglName' => '_ZNK7log4cxx7helpers5Class8toStringB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141391' - } - }, - 'Return' => '63706', - 'ShortName' => 'toString', - 'Source' => 'class.cpp', - 'SourceLine' => '101' - }, - '2136520' => { - 'Class' => '62698', - 'Const' => 1, - 'Header' => 'class.h', - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx7helpers5Class7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141385' - } - }, - 'PureVirt' => 1, - 'Return' => '63706', - 'ShortName' => 'getName', - 'VirtPos' => '3' - }, - '2136560' => { - 'Class' => '62698', - 'Header' => 'class.h', - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers5Class7forNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'className', - 'type' => '263006' - } - }, - 'Return' => '64678', - 'ShortName' => 'forName', - 'Source' => 'class.cpp', - 'SourceLine' => '122', - 'Static' => 1 - }, - '2136587' => { - 'Class' => '62698', - 'Header' => 'class.h', - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers5Class13registerClassERKS1_', - 'Param' => { - '0' => { - 'name' => 'newClass', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'registerClass', - 'Source' => 'class.cpp', - 'SourceLine' => '165', - 'Static' => 1 - }, - '2136719' => { - 'Class' => '62698', - 'Header' => 'class.h', - 'MnglName' => '_ZN7log4cxx7helpers5Class11getRegistryB5cxx11Ev', - 'Private' => 1, - 'Return' => '2141886', - 'ShortName' => 'getRegistry', - 'Source' => 'class.cpp', - 'SourceLine' => '116', - 'Static' => 1 - }, - '2136735' => { - 'Class' => '62698', - 'Header' => 'class.h', - 'MnglName' => '_ZN7log4cxx7helpers5Class15registerClassesEv', - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'registerClasses', - 'Source' => 'class.cpp', - 'SourceLine' => '171', - 'Static' => 1 - }, - '2137952' => { - 'Class' => '2137863', - 'Header' => 'exception.h', - 'Line' => '187', - 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142290' - }, - '1' => { - 'name' => 'src', - 'type' => '2142295' - } - }, - 'Return' => '2142301', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '358' - }, - '2137988' => { - 'Class' => '2137863', - 'Header' => 'exception.h', - 'Line' => '189', - 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundException13formatMessageERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'className', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '63706', - 'ShortName' => 'formatMessage', - 'Source' => 'exception.cpp', - 'SourceLine' => '364', - 'Static' => 1 - }, - '2138140' => { - 'Class' => '2138051', - 'Header' => 'exception.h', - 'Line' => '174', - 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142313' - }, - '1' => { - 'name' => 'src', - 'type' => '2142318' - } - }, - 'Return' => '2142324', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '341' - }, - '2138323' => { - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx14libraryVersionEv', - 'NameSpace' => 'log4cxx', - 'Return' => '53778', - 'ShortName' => 'libraryVersion', - 'Source' => 'class.cpp' - }, - '21408067' => { - 'Class' => '21272305', - 'Destructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonD0Ev', + '31925759' => { + 'Artificial' => 1, + 'Class' => '31851709', + 'Constructor' => 1, + 'Header' => 'mdcpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31865445' } }, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '58', - 'Virt' => 1 + 'ShortName' => 'ClazzMDCPatternConverter' }, - '21408165' => { - 'Class' => '21272305', - 'Destructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonD1Ev', + '31925760' => { + 'Artificial' => 1, + 'Class' => '31851709', + 'Constructor' => 1, + 'Header' => 'mdcpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '31865445' } }, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '58', - 'Virt' => 1 + 'ShortName' => 'ClazzMDCPatternConverter' }, - '21408267' => { - 'Class' => '21272305', - 'Destructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonD2Ev', + '32258428' => { + 'Class' => '9955763', + 'Header' => 'ndcpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'ndcpatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '32258444' => { + 'Class' => '9955763', + 'Header' => 'ndcpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'ndcpatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '32258460' => { + 'Class' => '9955763', + 'Const' => 1, + 'Header' => 'ndcpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '32270211' } }, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '58', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'ndcpatternconverter.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '2' }, - '21408429' => { - 'Class' => '21272305', - 'Constructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC1ESt10unique_ptrINS1_26SocketAppenderSkeletonPrivESt14default_deleteIS3_EE', + '32258497' => { + 'Class' => '9955763', + 'Const' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '32270211' }, '1' => { - 'name' => 'priv', - 'type' => '21230430' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '53' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '21410354' => { - 'Class' => '21272305', - 'Constructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC2ESt10unique_ptrINS1_26SocketAppenderSkeletonPrivESt14default_deleteIS3_EE', + '32258539' => { + 'Class' => '9955763', + 'Const' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '32270211' }, - '2' => { - 'name' => 'priv', - 'type' => '21230430' + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '53' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '21412401' => { - 'Class' => '21272305', - 'Constructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii', + '32258644' => { + 'Class' => '9955763', + 'Const' => 1, + 'Header' => 'ndcpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '32270211' }, '1' => { - 'name' => 'host', - 'type' => '263006' + 'name' => 'event', + 'type' => '576659' }, '2' => { - 'name' => 'port', - 'type' => '50231' + 'name' => 'toAppendTo', + 'type' => '210592' }, '3' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + 'name' => 'p3', + 'type' => '210607' } }, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '48' + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'ndcpatternconverter.cpp', + 'SourceLine' => '43', + 'Virt' => 1, + 'VirtPos' => '7' }, - '21422774' => { - 'Class' => '21272305', - 'Constructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii', + '32261551' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes31NDCPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'NDCPatternConverterRegistration', + 'Source' => 'ndcpatternconverter.cpp' + }, + '32274517' => { + 'Artificial' => 1, + 'Class' => '9955763', + 'Destructor' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' - }, - '2' => { - 'name' => 'host', - 'type' => '263006' - }, - '3' => { - 'name' => 'port', - 'type' => '50231' - }, - '4' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + 'type' => '32269870' } }, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '48' + 'ShortName' => 'NDCPatternConverter', + 'Virt' => 1 }, - '2142367' => { - 'Artificial' => 1, - 'Class' => '2137863', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '182', - 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142290' - } - }, - 'ShortName' => 'ClassNotFoundException', - 'Virt' => 1 - }, - '2142368' => { - 'Artificial' => 1, - 'Class' => '2137863', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '182', - 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142290' - } - }, - 'ShortName' => 'ClassNotFoundException', - 'Virt' => 1 - }, - '2142559' => { - 'Artificial' => 1, - 'Class' => '2137863', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '182', - 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142290' - } - }, - 'ShortName' => 'ClassNotFoundException', - 'Virt' => 1 - }, - '2142711' => { - 'Artificial' => 1, - 'Class' => '2138051', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '169', - 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142313' - } - }, - 'ShortName' => 'InstantiationException', - 'Virt' => 1 - }, - '2142712' => { - 'Artificial' => 1, - 'Class' => '2138051', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '169', - 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142313' - } - }, - 'ShortName' => 'InstantiationException', - 'Virt' => 1 - }, - '2142903' => { - 'Artificial' => 1, - 'Class' => '2138051', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '169', - 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142313' - } - }, - 'ShortName' => 'InstantiationException', - 'Virt' => 1 - }, - '21433231' => { - 'Class' => '21272305', - 'Constructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC1ESt10shared_ptrINS_7helpers11InetAddressEEii', + '32274518' => { + 'Artificial' => 1, + 'Class' => '9955763', + 'Destructor' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' - }, - '1' => { - 'name' => 'address', - 'type' => '7592264' - }, - '2' => { - 'name' => 'port', - 'type' => '50231' - }, - '3' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + 'type' => '32269870' } }, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '43' + 'ShortName' => 'NDCPatternConverter', + 'Virt' => 1 }, - '21444240' => { - 'Class' => '21272305', - 'Constructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC2ESt10shared_ptrINS_7helpers11InetAddressEEii', + '32274787' => { + 'Artificial' => 1, + 'Class' => '9955763', + 'Destructor' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' - }, - '2' => { - 'name' => 'address', - 'type' => '7592264' - }, - '3' => { - 'name' => 'port', - 'type' => '50231' - }, - '4' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + 'type' => '32269870' } }, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '43' + 'ShortName' => 'NDCPatternConverter', + 'Virt' => 1 }, - '21455321' => { - 'Class' => '21272305', + '32284631' => { + 'Artificial' => 1, + 'Class' => '6072360', 'Constructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC1Eii', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_19NDCPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' + 'type' => '6085740' }, '1' => { - 'name' => 'defaultPort', - 'type' => '50231' - }, - '2' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + 'name' => 'arg0', + 'type' => '32269700' } }, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '38' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '32197722' + } + } }, - '21464832' => { - 'Class' => '21272305', + '32284632' => { + 'Artificial' => 1, + 'Class' => '6072360', 'Constructor' => 1, - 'Header' => 'socketappenderskeleton.h', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC2Eii', + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_19NDCPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277941' - }, - '2' => { - 'name' => 'defaultPort', - 'type' => '50231' + 'type' => '6085740' }, - '3' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + '1' => { + 'name' => 'arg0', + 'type' => '32269700' } }, - 'ShortName' => 'SocketAppenderSkeleton', - 'Source' => 'socketappenderskeleton.cpp', - 'SourceLine' => '38' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '32197722' + } + } }, - '21474409' => { + '32285059' => { 'Artificial' => 1, - 'Class' => '21272323', - 'Constructor' => 1, - 'Header' => 'socketappenderskeleton_priv.h', + 'Class' => '32256187', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277232' - }, - '1' => { - 'name' => 'host', - 'type' => '263006' - }, - '2' => { - 'name' => 'port', - 'type' => '50231' - }, - '3' => { - 'name' => 'delay', - 'type' => '50231' + 'type' => '32269424' } }, - 'ShortName' => 'SocketAppenderSkeletonPriv' + 'ShortName' => 'WideLife' }, - '21474410' => { + '32285060' => { 'Artificial' => 1, - 'Class' => '21272323', - 'Constructor' => 1, - 'Header' => 'socketappenderskeleton_priv.h', + 'Class' => '32256187', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277232' - }, - '1' => { - 'name' => 'host', - 'type' => '263006' - }, - '2' => { - 'name' => 'port', - 'type' => '50231' - }, - '3' => { - 'name' => 'delay', - 'type' => '50231' + 'type' => '32269424' } }, - 'ShortName' => 'SocketAppenderSkeletonPriv' + 'ShortName' => 'WideLife' }, - '21474507' => { + '32285202' => { 'Artificial' => 1, - 'Class' => '21272323', + 'Class' => '32256187', 'Constructor' => 1, - 'Header' => 'socketappenderskeleton_priv.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC2ESt10shared_ptrINS_7helpers11InetAddressEEii', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277232' - }, - '1' => { - 'name' => 'address', - 'type' => '7592264' - }, - '2' => { - 'name' => 'defaultPort', - 'type' => '50231' - }, - '3' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + 'type' => '32269424' } }, - 'ShortName' => 'SocketAppenderSkeletonPriv' + 'ShortName' => 'WideLife' }, - '21474508' => { + '32285203' => { 'Artificial' => 1, - 'Class' => '21272323', + 'Class' => '32256187', 'Constructor' => 1, - 'Header' => 'socketappenderskeleton_priv.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC1ESt10shared_ptrINS_7helpers11InetAddressEEii', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277232' - }, - '1' => { - 'name' => 'address', - 'type' => '7592264' - }, - '2' => { - 'name' => 'defaultPort', - 'type' => '50231' - }, - '3' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + 'type' => '32269424' } }, - 'ShortName' => 'SocketAppenderSkeletonPriv' + 'ShortName' => 'WideLife' }, - '21474707' => { - 'Artificial' => 1, - 'Class' => '21272323', + '32290683' => { + 'Class' => '9955763', 'Constructor' => 1, - 'Header' => 'socketappenderskeleton_priv.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC2Eii', + 'Header' => 'ndcpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277232' - }, - '1' => { - 'name' => 'defaultPort', - 'type' => '50231' - }, - '2' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + 'type' => '32269870' } }, - 'ShortName' => 'SocketAppenderSkeletonPriv' + 'ShortName' => 'NDCPatternConverter', + 'Source' => 'ndcpatternconverter.cpp', + 'SourceLine' => '30' }, - '21474708' => { - 'Artificial' => 1, - 'Class' => '21272323', + '32293706' => { + 'Class' => '9955763', 'Constructor' => 1, - 'Header' => 'socketappenderskeleton_priv.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC1Eii', + 'Header' => 'ndcpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21277232' - }, - '1' => { - 'name' => 'defaultPort', - 'type' => '50231' - }, - '2' => { - 'name' => 'reconnectionDelay', - 'type' => '50231' + 'type' => '32269870' } }, - 'ShortName' => 'SocketAppenderSkeletonPriv' + 'ShortName' => 'NDCPatternConverter', + 'Source' => 'ndcpatternconverter.cpp', + 'SourceLine' => '30' }, - '21559452' => { - 'Class' => '21559331', - 'Const' => 1, - 'Header' => 'socketoutputstream.h', - 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStream7getNameB5cxx11Ev', + '32298461' => { + 'Artificial' => 1, + 'Class' => '9955788', + 'Destructor' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562857' + 'type' => '32270371' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzNDCPatternConverter', + 'Virt' => 1 }, - '21559501' => { - 'Class' => '21559224', - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '35', - 'Static' => 1 + '32298462' => { + 'Artificial' => 1, + 'Class' => '9955788', + 'Destructor' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32270371' + } + }, + 'ShortName' => 'ClazzNDCPatternConverter', + 'Virt' => 1 }, - '21559518' => { - 'Class' => '21559224', - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '35', + '32298607' => { + 'Artificial' => 1, + 'Class' => '9955788', + 'Destructor' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32270371' + } + }, + 'ShortName' => 'ClazzNDCPatternConverter', + 'Virt' => 1 + }, + '32298702' => { + 'Artificial' => 1, + 'Class' => '9955788', + 'Constructor' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32270371' + } + }, + 'ShortName' => 'ClazzNDCPatternConverter' + }, + '32298703' => { + 'Artificial' => 1, + 'Class' => '9955788', + 'Constructor' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32270371' + } + }, + 'ShortName' => 'ClazzNDCPatternConverter' + }, + '32757714' => { + 'Class' => '4208199', + 'Header' => 'timezone.h', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone10getDefaultEv', + 'Return' => '4213117', + 'ShortName' => 'getDefault', + 'Source' => 'timezone.cpp', + 'SourceLine' => '191', 'Static' => 1 }, - '21559535' => { - 'Class' => '21559224', + '32767515' => { + 'Artificial' => 1, + 'Class' => '5661373', + 'Header' => 'odbcappender.h', + 'InLine' => 2, + 'Line' => '145', + 'MnglName' => '_ZTch0_h0_NK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32789195' + } + }, + 'Return' => '5680273', + 'ShortName' => '_ZTch0_h0_NK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv' + }, + '32767548' => { + 'Class' => '5661367', 'Const' => 1, - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZNK7log4cxx7helpers18SocketOutputStream8getClassEv', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562806' + 'type' => '32788841' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '35', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '117', 'Virt' => 1, 'VirtPos' => '2' }, - '21559574' => { - 'Class' => '21559224', + '32767585' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '117', + 'Static' => 1 + }, + '32767617' => { + 'Class' => '5661367', 'Const' => 1, - 'Header' => 'socketoutputstream.h', + 'Header' => 'odbcappender.h', 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx7helpers18SocketOutputStream4castERKNS0_5ClassE', + 'Line' => '146', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562806' + 'type' => '32788841' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '21559618' => { - 'Class' => '21559224', + '32767659' => { + 'Class' => '5661367', 'Const' => 1, - 'Header' => 'socketoutputstream.h', + 'Header' => 'odbcappender.h', 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7helpers18SocketOutputStream10instanceofERKNS0_5ClassE', + 'Line' => '149', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562806' + 'type' => '32788841' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '21559732' => { - 'Class' => '21559224', - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream5closeERNS0_4PoolE', + '32767778' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562817' + 'type' => '32788851' }, '1' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '47', + 'ShortName' => 'setOption', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '174', 'Virt' => 1, - 'VirtPos' => '5' + 'VirtPos' => '6' }, - '21559772' => { - 'Class' => '21559224', - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream5flushERNS0_4PoolE', + '32767822' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562817' + 'type' => '32788851' }, '1' => { 'name' => 'p1', - 'type' => '64643' + 'type' => '210607' } }, - 'Reg' => { - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '53', + 'ShortName' => 'activateOptions', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '215', 'Virt' => 1, - 'VirtPos' => '6' + 'VirtPos' => '5' }, - '21559812' => { - 'Class' => '21559224', - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE', + '32767861' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562817' + 'type' => '32788851' }, '1' => { - 'name' => 'buf', - 'type' => '1340866' + 'name' => 'event', + 'type' => '576659' }, '2' => { - 'name' => 'p2', - 'type' => '64643' + 'name' => 'p', + 'type' => '210607' } }, - 'Reg' => { - '2' => 'rdx' - }, 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '63', + 'ShortName' => 'append', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '257', 'Virt' => 1, - 'VirtPos' => '7' - }, - '21561093' => { - 'Data' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7classes30SocketOutputStreamRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'SocketOutputStreamRegistration', - 'Source' => 'socketoutputstream.cpp' - }, - '21572422' => { - 'Artificial' => 1, - 'Class' => '21559968', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21562650' - } - }, - 'ShortName' => 'WideLife' + 'VirtPos' => '17' }, - '21572423' => { - 'Artificial' => 1, - 'Class' => '21559968', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEED0Ev', + '32767907' => { + 'Class' => '5661367', + 'Const' => 1, + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender15getLogStatementB5cxx11ERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562650' + 'type' => '32788841' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '209661', + 'ShortName' => 'getLogStatement', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '270' }, - '21572563' => { - 'Artificial' => 1, - 'Class' => '21559968', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEEC2Ev', + '32767949' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender7executeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562650' + 'type' => '32788851' + }, + '1' => { + 'name' => 'sql', + 'type' => '210597' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'execute', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '275', + 'Virt' => 1, + 'VirtPos' => '18' }, - '21572564' => { - 'Artificial' => 1, - 'Class' => '21559968', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEEC1Ev', + '32767995' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender15closeConnectionEPv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562650' + 'type' => '32788851' + }, + '1' => { + 'name' => 'p1', + 'type' => '32768036' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'closeConnection', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '281', + 'Virt' => 1, + 'VirtPos' => '19' }, - '21575339' => { - 'Class' => '21559224', - 'Destructor' => 1, - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamD0Ev', + '32768049' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender13getConnectionERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562817' + 'type' => '32788851' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'SocketOutputStream', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '43', - 'Virt' => 1 + 'Protected' => 1, + 'Return' => '32768036', + 'ShortName' => 'getConnection', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '285', + 'Virt' => 1, + 'VirtPos' => '20' }, - '21575340' => { - 'Class' => '21559224', - 'Destructor' => 1, - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamD1Ev', + '32768094' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender5closeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562817' + 'type' => '32788851' } }, - 'ShortName' => 'SocketOutputStream', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '43', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '375', + 'Virt' => 1, + 'VirtPos' => '10' }, - '21575433' => { - 'Class' => '21559224', - 'Destructor' => 1, - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamD2Ev', + '32768130' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender11flushBufferERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562817' + 'type' => '32788851' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'SocketOutputStream', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '43', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'flushBuffer', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '584', + 'Virt' => 1, + 'VirtPos' => '21' }, - '21577100' => { - 'Class' => '21559224', - 'Constructor' => 1, - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamC2ERKSt10shared_ptrINS0_6SocketEE', + '32768171' => { + 'Class' => '5661367', + 'Const' => 1, + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender14requiresLayoutEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562817' - }, - '1' => { - 'name' => 'socket1', - 'type' => '21031196' + 'type' => '32788841' } }, - 'ShortName' => 'SocketOutputStream', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '37' + 'Return' => '174077', + 'ShortName' => 'requiresLayout', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '210', + 'Virt' => 1, + 'VirtPos' => '16' }, - '21577101' => { - 'Class' => '21559224', - 'Constructor' => 1, - 'Header' => 'socketoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamC1ERKSt10shared_ptrINS0_6SocketEE', + '32768208' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6setSqlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562817' + 'type' => '32788851' }, '1' => { - 'name' => 'socket1', - 'type' => '21031196' + 'name' => 's', + 'type' => '210597' } }, - 'ShortName' => 'SocketOutputStream', - 'Source' => 'socketoutputstream.cpp', - 'SourceLine' => '37' + 'Return' => '1', + 'ShortName' => 'setSql', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '614' }, - '21581435' => { - 'Artificial' => 1, - 'Class' => '21559331', - 'Destructor' => 1, - 'Header' => 'socketoutputstream.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD0Ev', + '32768241' => { + 'Class' => '5661367', + 'Const' => 1, + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender6getSqlB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562846' + 'type' => '32788841' } }, - 'ShortName' => 'ClazzSocketOutputStream', - 'Virt' => 1 + 'Return' => '210597', + 'ShortName' => 'getSql', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '657' }, - '21581436' => { - 'Artificial' => 1, - 'Class' => '21559331', - 'Destructor' => 1, - 'Header' => 'socketoutputstream.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD1Ev', + '32768273' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender7setUserERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562846' + 'type' => '32788851' + }, + '1' => { + 'name' => 'user', + 'type' => '210597' } }, - 'ShortName' => 'ClazzSocketOutputStream', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setUser', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '662' }, - '21581576' => { - 'Artificial' => 1, - 'Class' => '21559331', - 'Destructor' => 1, - 'Header' => 'socketoutputstream.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD2Ev', + '32768306' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6setURLERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562846' + 'type' => '32788851' + }, + '1' => { + 'name' => 'url', + 'type' => '210597' } }, - 'ShortName' => 'ClazzSocketOutputStream', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setURL', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '667' }, - '21581666' => { - 'Artificial' => 1, - 'Class' => '21559331', - 'Constructor' => 1, - 'Header' => 'socketoutputstream.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamC2Ev', + '32768339' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender11setPasswordERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562846' + 'type' => '32788851' + }, + '1' => { + 'name' => 'password', + 'type' => '210597' } }, - 'ShortName' => 'ClazzSocketOutputStream' + 'Return' => '1', + 'ShortName' => 'setPassword', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '672' }, - '21581667' => { - 'Artificial' => 1, - 'Class' => '21559331', - 'Constructor' => 1, - 'Header' => 'socketoutputstream.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamC1Ev', + '32768372' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender13setBufferSizeEm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562846' + 'type' => '32788851' + }, + '1' => { + 'name' => 'newBufferSize', + 'type' => '190816' } }, - 'ShortName' => 'ClazzSocketOutputStream' + 'Return' => '1', + 'ShortName' => 'setBufferSize', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '677' }, - '21694160' => { - 'Class' => '21694039', + '32768405' => { + 'Class' => '5661367', 'Const' => 1, - 'Header' => 'xmlsocketappender.h', - 'InLine' => 2, - 'Line' => '117', - 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender7getNameB5cxx11Ev', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender7getUserB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701247' + 'type' => '32788841' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '210597', + 'ShortName' => 'getUser', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '682' }, - '21694199' => { - 'Class' => '21694039', + '32768437' => { + 'Class' => '5661367', 'Const' => 1, - 'Header' => 'xmlsocketappender.h', - 'InLine' => 2, - 'Line' => '117', - 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender6getURLB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701247' + 'type' => '32788841' } }, - 'Return' => '21701124', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '210597', + 'ShortName' => 'getURL', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '687' }, - '21694238' => { - 'Artificial' => 1, - 'Class' => '21694039', - 'Header' => 'xmlsocketappender.h', - 'InLine' => 2, - 'Line' => '117', - 'MnglName' => '_ZTch0_h0_NK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv', + '32768469' => { + 'Class' => '5661367', + 'Const' => 1, + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender11getPasswordB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701247' + 'type' => '32788841' } }, - 'Return' => '21701124', - 'ShortName' => '_ZTch0_h0_NK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv' + 'Return' => '210597', + 'ShortName' => 'getPassword', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '692' }, - '21694568' => { - 'Class' => '21694021', + '32768501' => { + 'Class' => '5661367', 'Const' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender8getClassEv', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender13getBufferSizeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701119' + 'type' => '32788841' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '51', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '21694607' => { - 'Class' => '21694021', - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '51', - 'Static' => 1 - }, - '21694624' => { - 'Class' => '21694021', - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '51', - 'Static' => 1 + 'Return' => '190816', + 'ShortName' => 'getBufferSize', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '697' }, - '21694641' => { - 'Class' => '21694021', - 'Const' => 1, - 'Header' => 'xmlsocketappender.h', - 'InLine' => 2, - 'Line' => '118', - 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender4castERKNS_7helpers5ClassE', + '32768611' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6encodeEPPwRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '21701119' + 'name' => 'dest', + 'type' => '193049' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'src', + 'type' => '210597' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'encode', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '620', + 'Static' => 1 }, - '21694685' => { - 'Class' => '21694021', - 'Const' => 1, - 'Header' => 'xmlsocketappender.h', - 'InLine' => 2, - 'Line' => '121', - 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender10instanceofERKNS_7helpers5ClassE', + '32768644' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender6encodeEPPtRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '21701119' + 'name' => 'dest', + 'type' => '32788876' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'src', + 'type' => '210597' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'encode', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '626', + 'Static' => 1 }, - '21694903' => { - 'Class' => '21694021', - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender9setSocketERSt10shared_ptrINS_7helpers6SocketEERNS3_4PoolE', + '32768844' => { + 'Class' => '32768709', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12SQLException13formatMessageEsPvPKcRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32789205' }, '1' => { - 'name' => 'socket', - 'type' => '21278960' + 'name' => 'fHandleType', + 'type' => '190256' }, '2' => { + 'name' => 'hInput', + 'type' => '190924' + }, + '3' => { + 'name' => 'prolog', + 'type' => '191618' + }, + '4' => { 'name' => 'p', - 'type' => '64643' + 'type' => '210607' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'setSocket', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '101', - 'Virt' => 1, - 'VirtPos' => '18' + 'Private' => 1, + 'Return' => '191618', + 'ShortName' => 'formatMessage', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '86' }, - '21694949' => { - 'Class' => '21694021', - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender7cleanUpERNS_7helpers4PoolE', + '32768943' => { + 'Data' => 1, + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx7classes24ODBCAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ODBCAppenderRegistration', + 'Source' => 'odbcappender.cpp' + }, + '32793689' => { + 'Artificial' => 1, + 'Class' => '32768709', + 'Destructor' => 1, + 'Header' => 'odbcappender.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx2db12SQLExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '32789205' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'cleanUp', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '109', - 'Virt' => 1, - 'VirtPos' => '19' + 'ShortName' => 'SQLException', + 'Virt' => 1 }, - '21694990' => { - 'Class' => '21694021', - 'Const' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender15getDefaultDelayEv', + '32793690' => { + 'Artificial' => 1, + 'Class' => '32768709', + 'Destructor' => 1, + 'Header' => 'odbcappender.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx2db12SQLExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701119' + 'type' => '32789205' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getDefaultDelay', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '91', - 'Virt' => 1, - 'VirtPos' => '20' + 'ShortName' => 'SQLException', + 'Virt' => 1 }, - '21695029' => { - 'Class' => '21694021', - 'Const' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender14getDefaultPortEv', + '32793884' => { + 'Artificial' => 1, + 'Class' => '32768709', + 'Destructor' => 1, + 'Header' => 'odbcappender.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx2db12SQLExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701119' + 'type' => '32789205' } }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getDefaultPort', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '96', - 'Virt' => 1, - 'VirtPos' => '21' + 'ShortName' => 'SQLException', + 'Virt' => 1 }, - '21695068' => { - 'Class' => '21694021', - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '32795109' => { + 'Artificial' => 1, + 'Class' => '32766881', + 'Destructor' => 1, + 'Header' => 'odbcappender_priv.h', + 'InLine' => 1, + 'Line' => '118', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPriv11DataBindingD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '32785759' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'append', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '124', - 'Virt' => 1, - 'VirtPos' => '17' - }, - '21695642' => { - 'Data' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7classes29XMLSocketAppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'XMLSocketAppenderRegistration', - 'Source' => 'xmlsocketappender.cpp' - }, - '21698684' => { - 'Class' => '21694021', - 'Data' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender12DEFAULT_PORTE', - 'Return' => '50231', - 'ShortName' => 'DEFAULT_PORT', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '56' - }, - '21698704' => { - 'Class' => '21694021', - 'Data' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender26DEFAULT_RECONNECTION_DELAYE', - 'Return' => '50231', - 'ShortName' => 'DEFAULT_RECONNECTION_DELAY', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '59' + 'ShortName' => 'DataBinding' }, - '21698724' => { - 'Class' => '21694021', - 'Data' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender13MAX_EVENT_LENE', - 'Return' => '50239', - 'ShortName' => 'MAX_EVENT_LEN', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '61', - 'Value' => '1024' + '32795110' => { + 'Artificial' => 1, + 'Class' => '32766881', + 'Destructor' => 1, + 'Header' => 'odbcappender_priv.h', + 'InLine' => 1, + 'Line' => '118', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPriv11DataBindingD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32785759' + } + }, + 'ShortName' => 'DataBinding' }, - '21728519' => { + '32816265' => { 'Artificial' => 1, - 'Class' => '21694265', + 'Class' => '32766861', 'Destructor' => 1, + 'Header' => 'odbcappender_priv.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21698756' + 'type' => '32786938' } }, - 'ShortName' => 'XMLSocketAppenderPriv', - 'Source' => 'xmlsocketappender.cpp', + 'ShortName' => 'ODBCAppenderPriv', 'Virt' => 1 }, - '21728520' => { + '32816266' => { 'Artificial' => 1, - 'Class' => '21694265', + 'Class' => '32766861', 'Destructor' => 1, + 'Header' => 'odbcappender_priv.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21698756' + 'type' => '32786938' } }, - 'ShortName' => 'XMLSocketAppenderPriv', - 'Source' => 'xmlsocketappender.cpp', + 'ShortName' => 'ODBCAppenderPriv', 'Virt' => 1 }, - '21734655' => { + '32827866' => { 'Artificial' => 1, - 'Class' => '21694265', + 'Class' => '32766861', 'Destructor' => 1, + 'Header' => 'odbcappender_priv.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21698756' + 'type' => '32786938' } }, - 'ShortName' => 'XMLSocketAppenderPriv', - 'Source' => 'xmlsocketappender.cpp', + 'ShortName' => 'ODBCAppenderPriv', 'Virt' => 1 }, - '2173760' => { - 'Artificial' => 1, - 'Class' => '2137501', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141444' - } - }, - 'ShortName' => 'WideLife' - }, - '2173761' => { - 'Artificial' => 1, - 'Class' => '2137501', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141444' - } - }, - 'ShortName' => 'WideLife' - }, - '2174262' => { - 'Artificial' => 1, - 'Class' => '2137501', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141444' - } - }, - 'ShortName' => 'WideLife' - }, - '2174263' => { - 'Artificial' => 1, - 'Class' => '2137501', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141444' - } - }, - 'ShortName' => 'WideLife' - }, - '21743770' => { + '32845148' => { 'Artificial' => 1, - 'Class' => '21692147', + 'Class' => '32757731', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21698582' + 'type' => '32786827' } }, 'ShortName' => 'WideLife' }, - '21743771' => { + '32845149' => { 'Artificial' => 1, - 'Class' => '21692147', + 'Class' => '32757731', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21698582' + 'type' => '32786827' } }, 'ShortName' => 'WideLife' }, - '21743912' => { + '32845290' => { 'Artificial' => 1, - 'Class' => '21692147', + 'Class' => '32757731', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21698582' + 'type' => '32786827' } }, 'ShortName' => 'WideLife' }, - '21743913' => { + '32845291' => { 'Artificial' => 1, - 'Class' => '21692147', + 'Class' => '32757731', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21698582' + 'type' => '32786827' } }, 'ShortName' => 'WideLife' }, - '21763719' => { - 'Class' => '21694021', + '32862252' => { + 'Class' => '5661367', 'Destructor' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderD0Ev', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32788851' } }, - 'ShortName' => 'XMLSocketAppender', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '85', + 'ShortName' => 'ODBCAppender', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '143', 'Virt' => 1 }, - '21763817' => { - 'Class' => '21694021', + '32862350' => { + 'Class' => '5661367', 'Destructor' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderD1Ev', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32788851' } }, - 'ShortName' => 'XMLSocketAppender', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '85', + 'ShortName' => 'ODBCAppender', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '143', 'Virt' => 1 }, - '21764101' => { - 'Class' => '21694021', + '32862638' => { + 'Class' => '5661367', 'Destructor' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderD2Ev', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32788851' } }, - 'ShortName' => 'XMLSocketAppender', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '85', + 'ShortName' => 'ODBCAppender', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '143', 'Virt' => 1 }, - '21764288' => { - 'Class' => '21694021', + '32862792' => { + 'Class' => '5661367', 'Constructor' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32788851' + } + }, + 'ShortName' => 'ODBCAppender', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '121' + }, + '32870172' => { + 'Class' => '5661367', + 'Constructor' => 1, + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32788851' + } + }, + 'ShortName' => 'ODBCAppender', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '121' + }, + '32880734' => { + 'Class' => '32768709', + 'Constructor' => 1, + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC2ERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32789205' }, '1' => { - 'name' => 'host', - 'type' => '263006' + 'name' => 'src', + 'type' => '32789210' + } + }, + 'ShortName' => 'SQLException', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '81' + }, + '32880735' => { + 'Class' => '32768709', + 'Constructor' => 1, + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC1ERKS1_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32789205' }, - '2' => { - 'name' => 'port1', - 'type' => '50231' + '1' => { + 'name' => 'src', + 'type' => '32789210' } }, - 'ShortName' => 'XMLSocketAppender', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '77' + 'ShortName' => 'SQLException', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '81' }, - '21779191' => { - 'Class' => '21694021', + '32880859' => { + 'Class' => '32768709', 'Constructor' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC2EPKc', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32789205' }, - '2' => { - 'name' => 'host', - 'type' => '263006' + '1' => { + 'name' => 'msg', + 'type' => '191618' + } + }, + 'ShortName' => 'SQLException', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '76' + }, + '32880860' => { + 'Class' => '32768709', + 'Constructor' => 1, + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC1EPKc', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32789205' }, - '3' => { - 'name' => 'port1', - 'type' => '50231' + '1' => { + 'name' => 'msg', + 'type' => '191618' } }, - 'ShortName' => 'XMLSocketAppender', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '77' + 'ShortName' => 'SQLException', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '76' }, - '21793990' => { - 'Class' => '21694021', + '32881018' => { + 'Class' => '32768709', 'Constructor' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC1ESt10shared_ptrINS_7helpers11InetAddressEEi', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC2EsPvPKcRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32789205' }, '1' => { - 'name' => 'address1', - 'type' => '7592264' + 'name' => 'fHandleType', + 'type' => '190256' }, '2' => { - 'name' => 'port1', - 'type' => '50231' + 'name' => 'hInput', + 'type' => '190924' + }, + '3' => { + 'name' => 'prolog', + 'type' => '191618' + }, + '4' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'XMLSocketAppender', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '69' + 'ShortName' => 'SQLException', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '68' }, - '21810736' => { - 'Class' => '21694021', + '32881019' => { + 'Class' => '32768709', 'Constructor' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC2ESt10shared_ptrINS_7helpers11InetAddressEEi', + 'Header' => 'odbcappender.h', + 'MnglName' => '_ZN7log4cxx2db12SQLExceptionC1EsPvPKcRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32789205' + }, + '1' => { + 'name' => 'fHandleType', + 'type' => '190256' }, '2' => { - 'name' => 'address1', - 'type' => '7592264' + 'name' => 'hInput', + 'type' => '190924' }, '3' => { - 'name' => 'port1', - 'type' => '50231' + 'name' => 'prolog', + 'type' => '191618' + }, + '4' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'XMLSocketAppender', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '69' + 'ShortName' => 'SQLException', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '68' }, - '21827341' => { - 'Class' => '21694021', + '32881303' => { + 'Artificial' => 1, + 'Class' => '32766861', 'Constructor' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC1Ev', + 'Header' => 'odbcappender_priv.h', + 'InLine' => 1, + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32786938' } }, - 'ShortName' => 'XMLSocketAppender', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '63' + 'ShortName' => 'ODBCAppenderPriv' }, - '21841331' => { - 'Class' => '21694021', + '32881304' => { + 'Artificial' => 1, + 'Class' => '32766861', 'Constructor' => 1, - 'Header' => 'xmlsocketappender.h', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC2Ev', + 'Header' => 'odbcappender_priv.h', + 'InLine' => 1, + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701130' + 'type' => '32786938' } }, - 'ShortName' => 'XMLSocketAppender', - 'Source' => 'xmlsocketappender.cpp', - 'SourceLine' => '63' + 'ShortName' => 'ODBCAppenderPriv' }, - '21877885' => { + '32896107' => { 'Artificial' => 1, - 'Class' => '21694039', + 'Class' => '5661373', 'Destructor' => 1, - 'Header' => 'xmlsocketappender.h', + 'Header' => 'odbcappender.h', 'InLine' => 1, - 'Line' => '117', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD0Ev', + 'Line' => '145', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701236' + 'type' => '32789185' } }, - 'ShortName' => 'ClazzXMLSocketAppender', + 'ShortName' => 'ClazzODBCAppender', 'Virt' => 1 }, - '21877886' => { + '32896108' => { 'Artificial' => 1, - 'Class' => '21694039', + 'Class' => '5661373', 'Destructor' => 1, - 'Header' => 'xmlsocketappender.h', + 'Header' => 'odbcappender.h', 'InLine' => 1, - 'Line' => '117', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD1Ev', + 'Line' => '145', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701236' + 'type' => '32789185' } }, - 'ShortName' => 'ClazzXMLSocketAppender', + 'ShortName' => 'ClazzODBCAppender', 'Virt' => 1 }, - '21878027' => { + '32896253' => { 'Artificial' => 1, - 'Class' => '21694039', + 'Class' => '5661373', 'Destructor' => 1, - 'Header' => 'xmlsocketappender.h', + 'Header' => 'odbcappender.h', 'InLine' => 1, - 'Line' => '117', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD2Ev', + 'Line' => '145', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701236' + 'type' => '32789185' } }, - 'ShortName' => 'ClazzXMLSocketAppender', + 'ShortName' => 'ClazzODBCAppender', 'Virt' => 1 }, - '21878117' => { + '32896347' => { 'Artificial' => 1, - 'Class' => '21694039', + 'Class' => '5661373', 'Constructor' => 1, - 'Header' => 'xmlsocketappender.h', + 'Header' => 'odbcappender.h', 'InLine' => 1, - 'Line' => '117', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderC2Ev', + 'Line' => '145', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701236' + 'type' => '32789185' } }, - 'ShortName' => 'ClazzXMLSocketAppender' + 'ShortName' => 'ClazzODBCAppender' }, - '21878118' => { + '32896348' => { 'Artificial' => 1, - 'Class' => '21694039', + 'Class' => '5661373', 'Constructor' => 1, - 'Header' => 'xmlsocketappender.h', + 'Header' => 'odbcappender.h', 'InLine' => 1, - 'Line' => '117', - 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderC1Ev', + 'Line' => '145', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21701236' + 'type' => '32789185' } }, - 'ShortName' => 'ClazzXMLSocketAppender' + 'ShortName' => 'ClazzODBCAppender' }, - '2194670' => { - 'Class' => '62698', - 'Destructor' => 1, - 'Header' => 'class.h', - 'MnglName' => '_ZN7log4cxx7helpers5ClassD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141875' - } - }, - 'ShortName' => 'Class', - 'Source' => 'class.cpp', - 'SourceLine' => '97', - 'Virt' => 1 - }, - '2194671' => { - 'Class' => '62698', - 'Destructor' => 1, - 'Header' => 'class.h', - 'MnglName' => '_ZN7log4cxx7helpers5ClassD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141875' - } - }, - 'ShortName' => 'Class', - 'Source' => 'class.cpp', - 'SourceLine' => '97', - 'Virt' => 1 - }, - '2194765' => { - 'Class' => '62698', - 'Destructor' => 1, - 'Header' => 'class.h', - 'MnglName' => '_ZN7log4cxx7helpers5ClassD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141875' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Class', - 'Source' => 'class.cpp', - 'SourceLine' => '97', - 'Virt' => 1 - }, - '2194833' => { - 'Class' => '62698', - 'Constructor' => 1, - 'Header' => 'class.h', - 'MnglName' => '_ZN7log4cxx7helpers5ClassC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141875' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Class', - 'Source' => 'class.cpp', - 'SourceLine' => '93' - }, - '2194834' => { - 'Class' => '62698', - 'Constructor' => 1, - 'Header' => 'class.h', - 'MnglName' => '_ZN7log4cxx7helpers5ClassC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2141875' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Class', - 'Source' => 'class.cpp', - 'SourceLine' => '93' - }, - '2194877' => { - 'Line' => '87', - 'MnglName' => '_Z14libraryVersionv', - 'Return' => '53778', - 'ShortName' => 'libraryVersion', - 'Source' => 'class.cpp' - }, - '21970684' => { - 'Class' => '21970475', - 'Header' => 'syslogwriter.h', - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '33224160' => { + 'Artificial' => 1, + 'Class' => '1374860', + 'Header' => 'onlyonceerrorhandler.h', + 'InLine' => 2, + 'Line' => '46', + 'MnglName' => '_ZTch0_h0_NK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21971619' - }, - '1' => { - 'name' => 'source', - 'type' => '263006' + 'type' => '33237910' } }, - 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'syslogwriter.cpp', - 'SourceLine' => '65' - }, - '22008055' => { - 'Class' => '21970475', - 'Destructor' => 1, - 'Header' => 'syslogwriter.h', - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21971619' - } - }, - 'ShortName' => 'SyslogWriter', - 'Source' => 'syslogwriter.cpp', - 'SourceLine' => '63' - }, - '22010431' => { - 'Class' => '21970475', - 'Constructor' => 1, - 'Header' => 'syslogwriter.h', - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21971619' - }, - '1' => { - 'name' => 'syslogHost1', - 'type' => '263006' - }, - '2' => { - 'name' => 'syslogHostPort1', - 'type' => '50231' - } - }, - 'ShortName' => 'SyslogWriter', - 'Source' => 'syslogwriter.cpp', - 'SourceLine' => '39' - }, - '22010432' => { - 'Class' => '21970475', - 'Constructor' => 1, - 'Header' => 'syslogwriter.h', - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '21971619' - }, - '1' => { - 'name' => 'syslogHost1', - 'type' => '263006' - }, - '2' => { - 'name' => 'syslogHostPort1', - 'type' => '50231' - } - }, - 'ShortName' => 'SyslogWriter', - 'Source' => 'syslogwriter.cpp', - 'SourceLine' => '39' - }, - '22140084' => { - 'Class' => '22139963', - 'Const' => 1, - 'Header' => 'syslogappender.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender19ClazzSyslogAppender7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145915' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '22140123' => { - 'Class' => '22139963', - 'Const' => 1, - 'Header' => 'syslogappender.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145915' - } - }, - 'Return' => '22145804', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '22140162' => { - 'Artificial' => 1, - 'Class' => '22139963', - 'Header' => 'syslogappender.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZTch0_h0_NK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145915' - } - }, - 'Return' => '22145804', - 'ShortName' => '_ZTch0_h0_NK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv' + 'Return' => '1390312', + 'ShortName' => '_ZTch0_h0_NK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv' }, - '22140513' => { - 'Class' => '22139945', + '33224267' => { + 'Class' => '1374846', 'Const' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender8getClassEv', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145799' + 'type' => '33237875' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '38', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '27', 'Virt' => 1, 'VirtPos' => '2' }, - '22140552' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender14getStaticClassEv', - 'Return' => '64678', + '33224304' => { + 'Class' => '1374846', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '38', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '27', 'Static' => 1 }, - '22140569' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender13registerClassEv', - 'Return' => '64684', + '33224320' => { + 'Class' => '1374846', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '38', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '27', 'Static' => 1 }, - '22140586' => { - 'Class' => '22139945', + '33224336' => { + 'Class' => '1374846', 'Const' => 1, - 'Header' => 'syslogappender.h', + 'Header' => 'onlyonceerrorhandler.h', 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender4castERKNS_7helpers5ClassE', + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145799' + 'type' => '33237875' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '22140630' => { - 'Class' => '22139945', + '33224378' => { + 'Class' => '1374846', 'Const' => 1, - 'Header' => 'syslogappender.h', + 'Header' => 'onlyonceerrorhandler.h', 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender10instanceofERKNS_7helpers5ClassE', + 'Line' => '50', + 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145799' + 'type' => '33237875' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '22140853' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender5closeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145810' - } - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '70', - 'Virt' => 1, - 'VirtPos' => '10' - }, - '22140889' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender17getFacilityStringB5cxx11Ei', - 'Param' => { - '0' => { - 'name' => 'syslogFacility', - 'type' => '50231' - } - }, - 'Return' => '63706', - 'ShortName' => 'getFacilityString', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '104', - 'Static' => 1 - }, - '22140916' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender11getFacilityERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 's', - 'type' => '263006' - } - }, - 'Return' => '50231', - 'ShortName' => 'getFacility', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '178', - 'Static' => 1 - }, - '22140943' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '33224496' => { + 'Class' => '1374846', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '1390317' }, '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'p1', + 'type' => '11940831' } }, 'Return' => '1', - 'ShortName' => 'append', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '274', + 'ShortName' => 'setLogger', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '47', 'Virt' => 1, - 'VirtPos' => '17' + 'VirtPos' => '7' }, - '22140990' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender15activateOptionsERNS_7helpers4PoolE', + '33224534' => { + 'Class' => '1374846', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler15activateOptionsERNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '1390317' }, '1' => { 'name' => 'p1', - 'type' => '64643' + 'type' => '210607' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, 'Return' => '1', 'ShortName' => 'activateOptions', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '375', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '51', 'Virt' => 1, 'VirtPos' => '5' }, - '22141032' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '33224572' => { + 'Class' => '1374846', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '1390317' }, '1' => { - 'name' => 'option', - 'type' => '263006' + 'name' => 'p1', + 'type' => '210597' }, '2' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'p2', + 'type' => '210597' } }, 'Return' => '1', 'ShortName' => 'setOption', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '379', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '55', 'Virt' => 1, 'VirtPos' => '6' }, - '22141079' => { - 'Class' => '22139945', + '33224615' => { + 'Class' => '1374846', 'Const' => 1, - 'Header' => 'syslogappender.h', - 'InLine' => 2, - 'Line' => '106', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender14requiresLayoutEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145799' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'requiresLayout', - 'Virt' => 1, - 'VirtPos' => '16' - }, - '22141118' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender13setSyslogHostERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '33237875' }, '1' => { - 'name' => 'syslogHost1', - 'type' => '263006' + 'name' => 'message', + 'type' => '210597' + }, + '2' => { + 'name' => 'e', + 'type' => '215735' + }, + '3' => { + 'name' => 'p3', + 'type' => '190263' } }, 'Return' => '1', - 'ShortName' => 'setSyslogHost', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '399' + 'ShortName' => 'error', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '59', + 'Virt' => 1, + 'VirtPos' => '8' }, - '22141151' => { - 'Class' => '22139945', + '33224663' => { + 'Class' => '1374846', 'Const' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender13getSyslogHostB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145799' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getSyslogHost', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '461' - }, - '22141183' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender11setFacilityERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '33237875' }, '1' => { - 'name' => 'facilityName', - 'type' => '263006' + 'name' => 'message', + 'type' => '210597' + }, + '2' => { + 'name' => 'e', + 'type' => '215735' + }, + '3' => { + 'name' => 'errorCode', + 'type' => '190263' + }, + '4' => { + 'name' => 'p4', + 'type' => '576659' } }, 'Return' => '1', - 'ShortName' => 'setFacility', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '442' + 'ShortName' => 'error', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '69', + 'Virt' => 1, + 'VirtPos' => '10' }, - '22141216' => { - 'Class' => '22139945', + '33224716' => { + 'Class' => '1374846', 'Const' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender11getFacilityB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145799' - } - }, - 'Return' => '63706', - 'ShortName' => 'getFacility', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '466' - }, - '22141248' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19setFacilityPrintingEb', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '33237875' }, '1' => { - 'name' => 'facilityPrinting1', - 'type' => '50284' + 'name' => 'message', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'setFacilityPrinting', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '471' - }, - '22141281' => { - 'Class' => '22139945', - 'Const' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender19getFacilityPrintingEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145799' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getFacilityPrinting', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '476' + 'ShortName' => 'error', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '76', + 'Virt' => 1, + 'VirtPos' => '9' }, - '22141313' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19setMaxMessageLengthEi', + '33224754' => { + 'Class' => '1374846', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '1390317' }, '1' => { - 'name' => 'maxMessageLength1', - 'type' => '50231' + 'name' => 'p1', + 'type' => '3129701' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'setMaxMessageLength', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '481' - }, - '22141346' => { - 'Class' => '22139945', - 'Const' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender19getMaxMessageLengthEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145799' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getMaxMessageLength', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '486' + 'ShortName' => 'setAppender', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '86', + 'Virt' => 1, + 'VirtPos' => '11' }, - '22141378' => { - 'Class' => '22139945', - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender21initSyslogFacilityStrEv', + '33224792' => { + 'Class' => '1374846', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '1390317' + }, + '1' => { + 'name' => 'p1', + 'type' => '3129701' } }, - 'Protected' => 1, 'Return' => '1', - 'ShortName' => 'initSyslogFacilityStr', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '80' + 'ShortName' => 'setBackupAppender', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '91', + 'Virt' => 1, + 'VirtPos' => '12' }, - '22141498' => { + '33229254' => { 'Data' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7classes26SyslogAppenderRegistrationE', + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7classes32OnlyOnceErrorHandlerRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'SyslogAppenderRegistration', - 'Source' => 'syslogappender.cpp' - }, - '22181571' => { - 'Artificial' => 1, - 'Class' => '22140189', - 'Destructor' => 1, - 'Header' => 'syslogappender_priv.h', - 'InLine' => 1, - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22144721' - } - }, - 'ShortName' => 'SyslogAppenderPriv', - 'Virt' => 1 - }, - '22181572' => { - 'Artificial' => 1, - 'Class' => '22140189', - 'Destructor' => 1, - 'Header' => 'syslogappender_priv.h', - 'InLine' => 1, - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22144721' - } - }, - 'ShortName' => 'SyslogAppenderPriv', - 'Virt' => 1 - }, - '22187158' => { - 'Artificial' => 1, - 'Class' => '22140189', - 'Destructor' => 1, - 'Header' => 'syslogappender_priv.h', - 'InLine' => 1, - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22144721' - } - }, - 'ShortName' => 'SyslogAppenderPriv', - 'Virt' => 1 + 'Return' => '210733', + 'ShortName' => 'OnlyOnceErrorHandlerRegistration', + 'Source' => 'onlyonceerrorhandler.cpp' }, - '22199392' => { + '33243845' => { 'Artificial' => 1, - 'Class' => '22138053', + 'Class' => '33225233', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144596' + 'type' => '33237427' } }, 'ShortName' => 'WideLife' }, - '22199393' => { + '33243846' => { 'Artificial' => 1, - 'Class' => '22138053', + 'Class' => '33225233', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144596' + 'type' => '33237427' } }, 'ShortName' => 'WideLife' }, - '22199534' => { + '33243988' => { 'Artificial' => 1, - 'Class' => '22138053', + 'Class' => '33225233', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144596' + 'type' => '33237427' } }, 'ShortName' => 'WideLife' }, - '22199535' => { + '33243989' => { 'Artificial' => 1, - 'Class' => '22138053', + 'Class' => '33225233', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144596' + 'type' => '33237427' } }, 'ShortName' => 'WideLife' }, - '22265402' => { - 'Class' => '22139945', + '33245669' => { + 'Class' => '1374846', 'Destructor' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderD0Ev', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '1390317' } }, - 'ShortName' => 'SyslogAppender', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '64', + 'ShortName' => 'OnlyOnceErrorHandler', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '45', 'Virt' => 1 }, - '22265500' => { - 'Class' => '22139945', + '33245768' => { + 'Class' => '1374846', 'Destructor' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderD1Ev', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '1390317' } }, - 'ShortName' => 'SyslogAppender', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '64', + 'ShortName' => 'OnlyOnceErrorHandler', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '45', 'Virt' => 1 }, - '22265784' => { - 'Class' => '22139945', + '33247643' => { + 'Class' => '1374846', 'Destructor' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderD2Ev', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '1390317' } }, - 'ShortName' => 'SyslogAppender', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '64', + 'ShortName' => 'OnlyOnceErrorHandler', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '45', 'Virt' => 1 }, - '22265970' => { - 'Class' => '22139945', + '33251677' => { + 'Class' => '1374846', 'Constructor' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Header' => 'onlyonceerrorhandler.h', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandlerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' - }, - '1' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '2' => { - 'name' => 'syslogHost1', - 'type' => '263006' - }, - '3' => { - 'name' => 'syslogFacility1', - 'type' => '50231' + 'type' => '1390317' } }, - 'ShortName' => 'SyslogAppender', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '56' + 'ShortName' => 'OnlyOnceErrorHandler', + 'Source' => 'onlyonceerrorhandler.cpp', + 'SourceLine' => '40' }, - '22277936' => { - 'Class' => '22139945', - 'Constructor' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + '33255784' => { + 'Artificial' => 1, + 'Class' => '1374860', + 'Destructor' => 1, + 'Header' => 'onlyonceerrorhandler.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' - }, - '2' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '3' => { - 'name' => 'syslogHost1', - 'type' => '263006' - }, - '4' => { - 'name' => 'syslogFacility1', - 'type' => '50231' + 'type' => '33237900' } }, - 'ShortName' => 'SyslogAppender', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '56' + 'ShortName' => 'ClazzOnlyOnceErrorHandler', + 'Virt' => 1 }, - '22289784' => { - 'Class' => '22139945', - 'Constructor' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC1ERKSt10shared_ptrINS_6LayoutEEi', + '33255785' => { + 'Artificial' => 1, + 'Class' => '1374860', + 'Destructor' => 1, + 'Header' => 'onlyonceerrorhandler.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' - }, - '1' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '2' => { - 'name' => 'syslogFacility1', - 'type' => '50231' + 'type' => '33237900' } }, - 'ShortName' => 'SyslogAppender', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '49' + 'ShortName' => 'ClazzOnlyOnceErrorHandler', + 'Virt' => 1 }, - '22301679' => { - 'Class' => '22139945', - 'Constructor' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC2ERKSt10shared_ptrINS_6LayoutEEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145810' - }, - '2' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '3' => { - 'name' => 'syslogFacility1', - 'type' => '50231' - } - }, - 'ShortName' => 'SyslogAppender', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '49' - }, - '22313433' => { - 'Class' => '22139945', - 'Constructor' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '22145810' - } - }, - 'ShortName' => 'SyslogAppender', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '42' - }, - '22323780' => { - 'Class' => '22139945', - 'Constructor' => 1, - 'Header' => 'syslogappender.h', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC2Ev', + '33255930' => { + 'Artificial' => 1, + 'Class' => '1374860', + 'Destructor' => 1, + 'Header' => 'onlyonceerrorhandler.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145810' + 'type' => '33237900' } }, - 'ShortName' => 'SyslogAppender', - 'Source' => 'syslogappender.cpp', - 'SourceLine' => '42' + 'ShortName' => 'ClazzOnlyOnceErrorHandler', + 'Virt' => 1 }, - '22335192' => { + '33256025' => { 'Artificial' => 1, - 'Class' => '22140189', + 'Class' => '1374860', 'Constructor' => 1, - 'Header' => 'syslogappender_priv.h', + 'Header' => 'onlyonceerrorhandler.h', 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144721' - }, - '1' => { - 'name' => 'layout', - 'type' => '412075' - }, - '2' => { - 'name' => 'syslogHost', - 'type' => '263006' - }, - '3' => { - 'name' => 'syslogFacility', - 'type' => '50231' + 'type' => '33237900' } }, - 'ShortName' => 'SyslogAppenderPriv' + 'ShortName' => 'ClazzOnlyOnceErrorHandler' }, - '22335193' => { + '33256026' => { 'Artificial' => 1, - 'Class' => '22140189', + 'Class' => '1374860', 'Constructor' => 1, - 'Header' => 'syslogappender_priv.h', + 'Header' => 'onlyonceerrorhandler.h', 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144721' - }, - '1' => { - 'name' => 'layout', - 'type' => '412075' - }, - '2' => { - 'name' => 'syslogHost', - 'type' => '263006' - }, - '3' => { - 'name' => 'syslogFacility', - 'type' => '50231' + 'type' => '33237900' } }, - 'ShortName' => 'SyslogAppenderPriv' + 'ShortName' => 'ClazzOnlyOnceErrorHandler' }, - '22335278' => { - 'Artificial' => 1, - 'Class' => '22140189', - 'Constructor' => 1, - 'Header' => 'syslogappender_priv.h', - 'InLine' => 1, - 'Line' => '68', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC2ERKSt10shared_ptrINS_6LayoutEEi', + '3334446' => { + 'Class' => '3334333', + 'Const' => 1, + 'Header' => 'bufferedwriter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers14BufferedWriter19ClazzBufferedWriter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337580' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3334504' => { + 'Class' => '3334200', + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '36', + 'Static' => 1 + }, + '3334520' => { + 'Class' => '3334200', + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '36', + 'Static' => 1 + }, + '3334536' => { + 'Class' => '3334200', + 'Const' => 1, + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZNK7log4cxx7helpers14BufferedWriter8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337540' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '36', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '3334573' => { + 'Class' => '3334200', + 'Const' => 1, + 'Header' => 'bufferedwriter.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7helpers14BufferedWriter4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337540' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '3334615' => { + 'Class' => '3334200', + 'Const' => 1, + 'Header' => 'bufferedwriter.h', + 'InLine' => 2, + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7helpers14BufferedWriter10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337540' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3334759' => { + 'Class' => '3334200', + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter5closeERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '52', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '3334797' => { + 'Class' => '3334200', + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter5flushERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '58', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '3334835' => { + 'Class' => '3334200', + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + }, + '1' => { + 'name' => 'str', + 'type' => '210597' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '67', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '3335079' => { + 'Class' => '3116358', + 'Header' => 'writer.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Writer14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'writer.cpp', + 'SourceLine' => '25', + 'Static' => 1 + }, + '3335158' => { + 'Class' => '3116358', + 'Const' => 1, + 'Header' => 'writer.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx7helpers6Writer4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3359298' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '3336502' => { + 'Data' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7classes26BufferedWriterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'BufferedWriterRegistration', + 'Source' => 'bufferedwriter.cpp' + }, + '3338347' => { + 'Class' => '3116358', + 'Destructor' => 1, + 'Header' => 'writer.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers6WriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337139' + } + }, + 'Protected' => 1, + 'ShortName' => 'Writer', + 'Source' => 'writer.cpp', + 'SourceLine' => '31', + 'Virt' => 1 + }, + '3338348' => { + 'Class' => '3116358', + 'Destructor' => 1, + 'Header' => 'writer.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers6WriterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337139' + } + }, + 'Protected' => 1, + 'ShortName' => 'Writer', + 'Source' => 'writer.cpp', + 'SourceLine' => '31', + 'Virt' => 1 + }, + '3338374' => { + 'Class' => '3116358', + 'Constructor' => 1, + 'Header' => 'writer.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers6WriterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337139' + } + }, + 'Protected' => 1, + 'ShortName' => 'Writer', + 'Source' => 'writer.cpp', + 'SourceLine' => '27' + }, + '3338375' => { + 'Class' => '3116358', + 'Constructor' => 1, + 'Header' => 'writer.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers6WriterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337139' + } + }, + 'Protected' => 1, + 'ShortName' => 'Writer', + 'Source' => 'writer.cpp', + 'SourceLine' => '27' + }, + '3347536' => { + 'Artificial' => 1, + 'Class' => '3335214', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337149' + } + }, + 'ShortName' => 'WideLife' + }, + '3347537' => { + 'Artificial' => 1, + 'Class' => '3335214', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337149' + } + }, + 'ShortName' => 'WideLife' + }, + '3347678' => { + 'Artificial' => 1, + 'Class' => '3335214', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337149' + } + }, + 'ShortName' => 'WideLife' + }, + '3347679' => { + 'Artificial' => 1, + 'Class' => '3335214', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337149' + } + }, + 'ShortName' => 'WideLife' + }, + '3353073' => { + 'Class' => '3334200', + 'Destructor' => 1, + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + } + }, + 'ShortName' => 'BufferedWriter', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '48', + 'Virt' => 1 + }, + '3353074' => { + 'Class' => '3334200', + 'Destructor' => 1, + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + } + }, + 'ShortName' => 'BufferedWriter', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '48', + 'Virt' => 1 + }, + '3353168' => { + 'Class' => '3334200', + 'Destructor' => 1, + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + } + }, + 'ShortName' => 'BufferedWriter', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '48', + 'Virt' => 1 + }, + '3354880' => { + 'Class' => '3334200', + 'Constructor' => 1, + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterC2ERSt10shared_ptrINS0_6WriterEEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + }, + '1' => { + 'name' => 'out1', + 'type' => '3337129' + }, + '2' => { + 'name' => 'sz1', + 'type' => '190816' + } + }, + 'ShortName' => 'BufferedWriter', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '43' + }, + '3356691' => { + 'Class' => '3334200', + 'Constructor' => 1, + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterC2ERSt10shared_ptrINS0_6WriterEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + }, + '1' => { + 'name' => 'out1', + 'type' => '3337129' + } + }, + 'ShortName' => 'BufferedWriter', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '38' + }, + '3356692' => { + 'Class' => '3334200', + 'Constructor' => 1, + 'Header' => 'bufferedwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriterC1ERSt10shared_ptrINS0_6WriterEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337550' + }, + '1' => { + 'name' => 'out1', + 'type' => '3337129' + } + }, + 'ShortName' => 'BufferedWriter', + 'Source' => 'bufferedwriter.cpp', + 'SourceLine' => '38' + }, + '3359031' => { + 'Artificial' => 1, + 'Class' => '3334333', + 'Destructor' => 1, + 'Header' => 'bufferedwriter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337570' + } + }, + 'ShortName' => 'ClazzBufferedWriter', + 'Virt' => 1 + }, + '3359032' => { + 'Artificial' => 1, + 'Class' => '3334333', + 'Destructor' => 1, + 'Header' => 'bufferedwriter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337570' + } + }, + 'ShortName' => 'ClazzBufferedWriter', + 'Virt' => 1 + }, + '3359176' => { + 'Artificial' => 1, + 'Class' => '3334333', + 'Destructor' => 1, + 'Header' => 'bufferedwriter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337570' + } + }, + 'ShortName' => 'ClazzBufferedWriter', + 'Virt' => 1 + }, + '3359270' => { + 'Artificial' => 1, + 'Class' => '3334333', + 'Constructor' => 1, + 'Header' => 'bufferedwriter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337570' + } + }, + 'ShortName' => 'ClazzBufferedWriter' + }, + '3359271' => { + 'Artificial' => 1, + 'Class' => '3334333', + 'Constructor' => 1, + 'Header' => 'bufferedwriter.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337570' + } + }, + 'ShortName' => 'ClazzBufferedWriter' + }, + '33728780' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '94', + 'Static' => 1 + }, + '33729583' => { + 'Class' => '33729452', + 'InLine' => 2, + 'Line' => '64', + 'MnglName' => '_ZN7log4cxx20ConfiguratorWatchdog10doOnChangeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144721' - }, - '1' => { - 'name' => 'layout', - 'type' => '412075' - }, - '2' => { - 'name' => 'syslogFacility', - 'type' => '50231' + 'type' => '33743835' } }, - 'ShortName' => 'SyslogAppenderPriv' + 'Return' => '1', + 'ShortName' => 'doOnChange', + 'Source' => 'optionconverter.cpp', + 'Virt' => 1, + 'VirtPos' => '2' }, - '22335279' => { - 'Artificial' => 1, - 'Class' => '22140189', + '33729919' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3spi12ConfiguratorENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '1937382' + } + }, + 'Return' => '33644258', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '3118759' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } + }, + '33745393' => { + 'Class' => '5660980', 'Constructor' => 1, - 'Header' => 'syslogappender_priv.h', - 'InLine' => 1, - 'Line' => '68', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC1ERKSt10shared_ptrINS_6LayoutEEi', + 'Header' => 'propertyconfigurator.h', + 'Line' => '107', + 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144721' - }, - '1' => { - 'name' => 'layout', - 'type' => '412075' - }, - '2' => { - 'name' => 'syslogFacility', - 'type' => '50231' + 'type' => '33743043' } }, - 'ShortName' => 'SyslogAppenderPriv' + 'ShortName' => 'PropertyConfigurator', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '77' }, - '22335335' => { + '33749402' => { 'Artificial' => 1, - 'Class' => '22140189', - 'Constructor' => 1, - 'Header' => 'syslogappender_priv.h', + 'Class' => '33729452', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC2Ev', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx20ConfiguratorWatchdogD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144721' + 'type' => '33743835' } }, - 'ShortName' => 'SyslogAppenderPriv' + 'ShortName' => 'ConfiguratorWatchdog', + 'Source' => 'optionconverter.cpp', + 'Virt' => 1 }, - '22335336' => { + '33749403' => { 'Artificial' => 1, - 'Class' => '22140189', - 'Constructor' => 1, - 'Header' => 'syslogappender_priv.h', + 'Class' => '33729452', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC1Ev', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx20ConfiguratorWatchdogD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144721' + 'type' => '33743835' } }, - 'ShortName' => 'SyslogAppenderPriv' + 'ShortName' => 'ConfiguratorWatchdog', + 'Source' => 'optionconverter.cpp', + 'Virt' => 1 }, - '22345114' => { + '33750174' => { 'Artificial' => 1, - 'Class' => '22139963', + 'Class' => '33729452', 'Destructor' => 1, - 'Header' => 'syslogappender.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD0Ev', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx20ConfiguratorWatchdogD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145904' + 'type' => '33743835' } }, - 'ShortName' => 'ClazzSyslogAppender', + 'ShortName' => 'ConfiguratorWatchdog', + 'Source' => 'optionconverter.cpp', 'Virt' => 1 }, - '22345115' => { + '34036972' => { + 'Class' => '3116491', + 'Header' => 'outputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'outputstream.cpp', + 'SourceLine' => '25', + 'Static' => 1 + }, + '34036988' => { + 'Class' => '3116491', + 'Const' => 1, + 'Header' => 'outputstream.h', + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx7helpers12OutputStream8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3853772' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'outputstream.cpp', + 'SourceLine' => '25', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '34037067' => { + 'Class' => '3116491', + 'Const' => 1, + 'Header' => 'outputstream.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers12OutputStream10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3853772' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '34037173' => { + 'Class' => '3116491', + 'Header' => 'outputstream.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream5closeERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3835477' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'close', + 'VirtPos' => '5' + }, + '34037212' => { + 'Class' => '3116491', + 'Header' => 'outputstream.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream5flushERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3835477' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'flush', + 'VirtPos' => '6' + }, + '34037251' => { + 'Class' => '3116491', + 'Header' => 'outputstream.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream5writeERNS0_10ByteBufferERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3835477' + }, + '1' => { + 'name' => 'p1', + 'type' => '210612' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'write', + 'VirtPos' => '7' + }, + '34038234' => { + 'Data' => 1, + 'Line' => '25', + 'MnglName' => '_ZN7log4cxx7classes24OutputStreamRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'OutputStreamRegistration', + 'Source' => 'outputstream.cpp' + }, + '34042495' => { 'Artificial' => 1, - 'Class' => '22139963', + 'Class' => '34036427', 'Destructor' => 1, - 'Header' => 'syslogappender.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145904' + 'type' => '34038426' } }, - 'ShortName' => 'ClazzSyslogAppender', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '22345256' => { + '34042496' => { 'Artificial' => 1, - 'Class' => '22139963', + 'Class' => '34036427', 'Destructor' => 1, - 'Header' => 'syslogappender.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145904' + 'type' => '34038426' } }, - 'ShortName' => 'ClazzSyslogAppender', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '22345346' => { + '34042637' => { 'Artificial' => 1, - 'Class' => '22139963', + 'Class' => '34036427', 'Constructor' => 1, - 'Header' => 'syslogappender.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145904' + 'type' => '34038426' } }, - 'ShortName' => 'ClazzSyslogAppender' + 'ShortName' => 'WideLife' }, - '22345347' => { + '34042638' => { 'Artificial' => 1, - 'Class' => '22139963', + 'Class' => '34036427', 'Constructor' => 1, - 'Header' => 'syslogappender.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderC1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22145904' + 'type' => '34038426' } }, - 'ShortName' => 'ClazzSyslogAppender' + 'ShortName' => 'WideLife' }, - '22555651' => { - 'Class' => '22555530', - 'Const' => 1, - 'Header' => 'domconfigurator.h', - 'InLine' => 2, - 'Line' => '212', - 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator7getNameB5cxx11Ev', + '34043015' => { + 'Class' => '3116491', + 'Destructor' => 1, + 'Header' => 'outputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569457' + 'type' => '3835482' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'Protected' => 1, + 'ShortName' => 'OutputStream', + 'Source' => 'outputstream.cpp', + 'SourceLine' => '31', + 'Virt' => 1 }, - '22555691' => { - 'Class' => '22555530', - 'Const' => 1, - 'Header' => 'domconfigurator.h', - 'InLine' => 2, - 'Line' => '212', - 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv', + '34045198' => { + 'Artificial' => 1, + 'Class' => '3116500', + 'Destructor' => 1, + 'Header' => 'outputstream.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569457' + 'type' => '34038827' } }, - 'Return' => '22569353', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzOutputStream', + 'Virt' => 1 }, - '22555731' => { + '34045199' => { 'Artificial' => 1, - 'Class' => '22555530', - 'Header' => 'domconfigurator.h', - 'InLine' => 2, - 'Line' => '212', - 'MnglName' => '_ZTch0_h0_NK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv', + 'Class' => '3116500', + 'Destructor' => 1, + 'Header' => 'outputstream.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569457' + 'type' => '34038827' } }, - 'Return' => '22569353', - 'ShortName' => '_ZTch0_h0_NK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv' + 'ShortName' => 'ClazzOutputStream', + 'Virt' => 1 }, - '22555817' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator18findAppenderByNameERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERSt3mapISI_S5_INS_8AppenderEESt4lessISI_ESaISt4pairISJ_SN_EEE', + '34045343' => { + 'Artificial' => 1, + 'Class' => '3116500', + 'Destructor' => 1, + 'Header' => 'outputstream.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'element', - 'type' => '22563806' - }, - '4' => { - 'name' => 'doc', - 'type' => '22569381' - }, - '5' => { - 'name' => 'appenderName', - 'type' => '263006' - }, - '6' => { - 'name' => 'appenders', - 'type' => '22569387' + 'type' => '34038827' } }, - 'Protected' => 1, - 'Return' => '262988', - 'ShortName' => 'findAppenderByName', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '135' + 'ShortName' => 'ClazzOutputStream', + 'Virt' => 1 }, - '22555891' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator23findAppenderByReferenceERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + '34045437' => { + 'Artificial' => 1, + 'Class' => '3116500', + 'Constructor' => 1, + 'Header' => 'outputstream.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'appenderRef', - 'type' => '22563806' - }, - '4' => { - 'name' => 'doc', - 'type' => '22569381' - }, - '5' => { - 'name' => 'appenders', - 'offset' => '0', - 'type' => '22569387' + 'type' => '34038827' } }, - 'Protected' => 1, - 'Return' => '262988', - 'ShortName' => 'findAppenderByReference', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '169' + 'ShortName' => 'ClazzOutputStream' }, - '22555947' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator13parseAppenderERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + '34045438' => { + 'Artificial' => 1, + 'Class' => '3116500', + 'Constructor' => 1, + 'Header' => 'outputstream.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'appenderElement', - 'type' => '22563806' - }, - '4' => { - 'name' => 'doc', - 'type' => '22569381' - }, - '5' => { - 'name' => 'appenders', - 'type' => '22569387' + 'type' => '34038827' } }, - 'Protected' => 1, - 'Return' => '262988', - 'ShortName' => 'parseAppender', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '206' + 'ShortName' => 'ClazzOutputStream' }, - '22556003' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17parseErrorHandlerERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemRS5_INS_8AppenderEEP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_St4lessISM_ESaISt4pairIKSM_SC_EEE', + '34244658' => { + 'Class' => '3115683', + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '34244674' => { + 'Class' => '3115683', + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '34244690' => { + 'Class' => '3115683', + 'Const' => 1, + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'element', - 'type' => '22563806' - }, - '4' => { - 'name' => 'appender', - 'type' => '22569393' - }, - '5' => { - 'name' => 'doc', - 'type' => '22569381' - }, - '6' => { - 'name' => 'appenders', - 'type' => '22569387' + 'type' => '34249440' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'parseErrorHandler', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '326' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '2' }, - '22556061' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator12parseFiltersERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemRSt6vectorIS5_INS_3spi6FilterEESaISE_EE', + '34244727' => { + 'Class' => '3115683', + 'Const' => 1, + 'Header' => 'outputstreamwriter.h', + 'InLine' => 2, + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '34249440' }, '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'element', - 'type' => '22563806' - }, - '4' => { - 'name' => 'filters', - 'type' => '22566472' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'parseFilters', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '387' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '22556109' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator11parseLoggerERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + '34244769' => { + 'Class' => '3115683', + 'Const' => 1, + 'Header' => 'outputstreamwriter.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '34249440' }, '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'loggerElement', - 'type' => '22563806' - }, - '4' => { - 'name' => 'doc', - 'type' => '22569381' - }, - '5' => { - 'name' => 'appenders', - 'type' => '22569387' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'parseLogger', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '422' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '22556162' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator18parseLoggerFactoryERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elem', + '34244913' => { + 'Class' => '3115683', + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter5closeERNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '34249450' }, '1' => { 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'factoryElement', - 'type' => '22563806' + 'type' => '210607' } }, - 'Protected' => 1, 'Return' => '1', - 'ShortName' => 'parseLoggerFactory', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '451' + 'ShortName' => 'close', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '69', + 'Virt' => 1, + 'VirtPos' => '5' }, - '22556205' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator21parseTriggeringPolicyERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elem', + '34244952' => { + 'Class' => '3115683', + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter5flushERNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '34249450' }, '1' => { 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'layout_element', - 'type' => '22563806' + 'type' => '210607' } }, - 'Protected' => 1, - 'Return' => '648233', - 'ShortName' => 'parseTriggeringPolicy', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '603' + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '74', + 'Virt' => 1, + 'VirtPos' => '6' }, - '22556252' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator18parseRollingPolicyERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elem', + '34244991' => { + 'Class' => '3115683', + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '34249450' }, '1' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'str', + 'type' => '210597' }, '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'layout_element', - 'type' => '22563806' + 'name' => 'p', + 'type' => '210607' } }, - 'Protected' => 1, - 'Return' => '14545684', - 'ShortName' => 'parseRollingPolicy', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '658' + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '79', + 'Virt' => 1, + 'VirtPos' => '7' }, - '22556299' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator9parseRootERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + '34245065' => { + 'Class' => '3115683', + 'Const' => 1, + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZNK7log4cxx7helpers18OutputStreamWriter18getOutputStreamPtrEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'rootElement', - 'type' => '22563806' - }, - '4' => { - 'name' => 'doc', - 'type' => '22569381' - }, - '5' => { - 'name' => 'appenders', - 'type' => '22569387' + 'type' => '34249440' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'parseRoot', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '490' + 'Return' => '7857651', + 'ShortName' => 'getOutputStreamPtr', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '122' }, - '22556352' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator28parseChildrenOfLoggerElementERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemS5_INS_6LoggerEEbP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISL_ESaISt4pairIKSL_SN_EEE', + '34247834' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes30OutputStreamWriterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'OutputStreamWriterRegistration', + 'Source' => 'outputstreamwriter.cpp' + }, + '34259230' => { + 'Artificial' => 1, + 'Class' => '34245665', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'loggerElement', - 'type' => '22563806' - }, - '4' => { - 'name' => 'logger', - 'type' => '1150380' - }, - '5' => { - 'name' => 'isRoot', - 'type' => '50284' - }, - '6' => { - 'name' => 'doc', - 'type' => '22569381' - }, - '7' => { - 'name' => 'appenders', - 'type' => '22569387' + 'type' => '34248809' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'parseChildrenOfLoggerElement', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '504' + 'ShortName' => 'WideLife' }, - '22556415' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator11parseLayoutERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elem', + '34259231' => { + 'Artificial' => 1, + 'Class' => '34245665', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'layout_element', - 'type' => '22563806' + 'type' => '34248809' } }, - 'Protected' => 1, - 'Return' => '409175', - 'ShortName' => 'parseLayout', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '563' + 'ShortName' => 'WideLife' }, - '22556462' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator10parseLevelERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemS5_INS_6LoggerEEb', + '34259371' => { + 'Artificial' => 1, + 'Class' => '34245665', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'element', - 'type' => '22563806' - }, - '4' => { - 'name' => 'logger', - 'type' => '1150380' - }, - '5' => { - 'name' => 'isRoot', - 'type' => '50284' + 'type' => '34248809' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'parseLevel', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '700' + 'ShortName' => 'WideLife' }, - '22556515' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator12setParameterERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemRNS_6config14PropertySetterE', + '34259372' => { + 'Artificial' => 1, + 'Class' => '34245665', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'elem', - 'type' => '22563806' - }, - '4' => { - 'name' => 'propSetter', - 'type' => '22569399' + 'type' => '34248809' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'setParameter', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '769' + 'ShortName' => 'WideLife' }, - '22556563' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator5parseERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + '34264993' => { + 'Class' => '3115683', + 'Destructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '3' => { - 'name' => 'element', - 'type' => '22563806' - }, - '4' => { - 'name' => 'doc', - 'type' => '22569381' - }, - '5' => { - 'name' => 'appenders', - 'type' => '22569387' + 'type' => '34249450' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'parse', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '991' + 'ShortName' => 'OutputStreamWriter', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '65', + 'Virt' => 1 }, - '22556653' => { - 'Class' => '22555410', - 'Const' => 1, - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator8getClassEv', + '34264994' => { + 'Class' => '3115683', + 'Destructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569411' + 'type' => '34249450' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '94', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '22556693' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '94', - 'Static' => 1 + 'ShortName' => 'OutputStreamWriter', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '65', + 'Virt' => 1 }, - '22556710' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '94', - 'Static' => 1 + '34265087' => { + 'Class' => '3115683', + 'Destructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34249450' + } + }, + 'ShortName' => 'OutputStreamWriter', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '65', + 'Virt' => 1 }, - '22556727' => { - 'Class' => '22555410', - 'Const' => 1, - 'Header' => 'domconfigurator.h', - 'InLine' => 2, - 'Line' => '213', - 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator4castERKNS_7helpers5ClassE', + '34266769' => { + 'Class' => '3115683', + 'Constructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterC2ERSt10shared_ptrINS0_12OutputStreamEERS2_INS0_14CharsetEncoderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569411' + 'type' => '34249450' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'out1', + 'type' => '7877645' + }, + '2' => { + 'name' => 'enc1', + 'type' => '4995928' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'OutputStreamWriter', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '50' }, - '22556772' => { - 'Class' => '22555410', - 'Const' => 1, - 'Header' => 'domconfigurator.h', - 'InLine' => 2, - 'Line' => '215', - 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator10instanceofERKNS_7helpers5ClassE', + '34270024' => { + 'Class' => '3115683', + 'Constructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterC2ERSt10shared_ptrINS0_12OutputStreamEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569411' + 'type' => '34249450' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'out1', + 'type' => '7877645' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'OutputStreamWriter', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '41' }, - '22556859' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator9configureERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '34270025' => { + 'Class' => '3115683', + 'Constructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterC1ERSt10shared_ptrINS0_12OutputStreamEE', 'Param' => { '0' => { - 'name' => 'filename', - 'type' => '61535' + 'name' => 'this', + 'type' => '34249450' + }, + '1' => { + 'name' => 'out1', + 'type' => '7877645' } }, - 'Return' => '2699607', - 'ShortName' => 'configure', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '852', - 'Static' => 1 + 'ShortName' => 'OutputStreamWriter', + 'Source' => 'outputstreamwriter.cpp', + 'SourceLine' => '41' }, - '22556887' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator9configureERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '34274728' => { + 'Artificial' => 1, + 'Class' => '3115697', + 'Destructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD0Ev', 'Param' => { '0' => { - 'name' => 'filename', - 'type' => '646944' + 'name' => 'this', + 'type' => '34249470' } }, - 'Return' => '2699607', - 'ShortName' => 'configure', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '859', - 'Static' => 1 + 'ShortName' => 'ClazzOutputStreamWriter', + 'Virt' => 1 }, - '22556915' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17configureAndWatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '34274729' => { + 'Artificial' => 1, + 'Class' => '3115697', + 'Destructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD1Ev', 'Param' => { '0' => { - 'name' => 'filename', - 'type' => '61535' + 'name' => 'this', + 'type' => '34249470' } }, - 'Return' => '2699607', - 'ShortName' => 'configureAndWatch', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '883', - 'Static' => 1 + 'ShortName' => 'ClazzOutputStreamWriter', + 'Virt' => 1 }, - '22556943' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17configureAndWatchERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '34274873' => { + 'Artificial' => 1, + 'Class' => '3115697', + 'Destructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD2Ev', 'Param' => { '0' => { - 'name' => 'filename', - 'type' => '646944' + 'name' => 'this', + 'type' => '34249470' } }, - 'Return' => '2699607', - 'ShortName' => 'configureAndWatch', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '889', - 'Static' => 1 + 'ShortName' => 'ClazzOutputStreamWriter', + 'Virt' => 1 }, - '22556971' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17configureAndWatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEl', + '34274967' => { + 'Artificial' => 1, + 'Class' => '3115697', + 'Constructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterC2Ev', 'Param' => { '0' => { - 'name' => 'filename', - 'type' => '61535' - }, - '1' => { - 'name' => 'delay', - 'type' => '50244' + 'name' => 'this', + 'type' => '34249470' } }, - 'Return' => '2699607', - 'ShortName' => 'configureAndWatch', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '909', - 'Static' => 1 + 'ShortName' => 'ClazzOutputStreamWriter' }, - '22557004' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17configureAndWatchERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEEl', + '34274968' => { + 'Artificial' => 1, + 'Class' => '3115697', + 'Constructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterC1Ev', 'Param' => { '0' => { - 'name' => 'filename', - 'type' => '646944' - }, - '1' => { - 'name' => 'delay', - 'type' => '50244' + 'name' => 'this', + 'type' => '34249470' } }, - 'Return' => '2699607', - 'ShortName' => 'configureAndWatch', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '929', + 'ShortName' => 'ClazzOutputStreamWriter' + }, + '34464780' => { + 'Class' => '3120362', + 'Header' => 'patternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '26', 'Static' => 1 }, - '22557037' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator11doConfigureERKNS_4FileESt10shared_ptrINS_3spi16LoggerRepositoryEE', + '34464917' => { + 'Class' => '3120362', + 'Const' => 1, + 'Header' => 'patternconverter.h', + 'Line' => '74', + 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '6087834' }, '1' => { - 'name' => 'filename', - 'type' => '840075' + 'name' => 'p1', + 'type' => '575817' }, '2' => { - 'name' => 'repository1', - 'type' => '835664' + 'name' => 'p2', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'Return' => '2699607', - 'ShortName' => 'doConfigure', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '780', - 'Virt' => 1, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'format', 'VirtPos' => '5' }, - '22557088' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator12getAttributeERSt10shared_ptrINS_7helpers14CharsetDecoderEEP12apr_xml_elemRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '34464966' => { + 'Class' => '3120362', + 'Const' => 1, + 'Header' => 'patternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { - 'name' => 'utf8Decoder', - 'type' => '22569375' - }, - '1' => { - 'name' => 'element', - 'type' => '22563806' - }, - '2' => { - 'name' => 'attrName', - 'type' => '61535' + 'name' => 'this', + 'type' => '6087839' } }, - 'Protected' => 1, - 'Return' => '63706', - 'ShortName' => 'getAttribute', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '1117', - 'Static' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '45' }, - '22557126' => { - 'Class' => '22555410', - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator5substERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '34465079' => { + 'Data' => 1, + 'Line' => '26', + 'MnglName' => '_ZN7log4cxx7classes28PatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'PatternConverterRegistration', + 'Source' => 'patternconverter.cpp' + }, + '34476597' => { + 'Artificial' => 1, + 'Class' => '34463068', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' - }, - '1' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '34465761' } }, - 'Protected' => 1, - 'Return' => '63706', - 'ShortName' => 'subst', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '1103' + 'ShortName' => 'WideLife' }, - '22557390' => { - 'Class' => '22557273', - 'InLine' => 2, - 'Line' => '83', - 'MnglName' => '_ZN7log4cxx3xml11XMLWatchdog10doOnChangeEv', + '34476598' => { + 'Artificial' => 1, + 'Class' => '34463068', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22565103' + 'type' => '34465761' } }, - 'Return' => '1', - 'ShortName' => 'doOnChange', - 'Source' => 'domconfigurator.cpp', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '22557988' => { - 'Data' => 1, - 'Line' => '94', - 'MnglName' => '_ZN7log4cxx7classes27DOMConfiguratorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DOMConfiguratorRegistration', - 'Source' => 'domconfigurator.cpp' + 'ShortName' => 'WideLife' }, - '22558340' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7rolling27FilterBasedTriggeringPolicyENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', + '34476739' => { + 'Artificial' => 1, + 'Class' => '34463068', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEEC2Ev', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'name' => 'this', + 'type' => '34465761' } }, - 'Return' => '22513497', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '6058130' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'ShortName' => 'WideLife' }, - '22558472' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3spi6FilterENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', + '34476740' => { + 'Artificial' => 1, + 'Class' => '34463068', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEEC1Ev', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'name' => 'this', + 'type' => '34465761' } }, - 'Return' => '129326', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '150952' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'ShortName' => 'WideLife' }, - '22558516' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_16AppenderSkeletonENS_8AppenderELb0ELb0EEESt10shared_ptrIT_ERKS3_IT0_E', - 'NameSpace' => 'log4cxx', + '34481389' => { + 'Class' => '3120362', + 'Destructor' => 1, + 'Header' => 'patternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterD0Ev', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '264581' + 'name' => 'this', + 'type' => '6085855' } }, - 'Return' => '22507049', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '407542' - }, - '1' => { - 'key' => 'Type', - 'type' => '262983' - } - } + 'Protected' => 1, + 'ShortName' => 'PatternConverter', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '41', + 'Virt' => 1 }, - '22558560' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3spi12ErrorHandlerENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', + '34481487' => { + 'Class' => '3120362', + 'Destructor' => 1, + 'Header' => 'patternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterD1Ev', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '655477' + 'name' => 'this', + 'type' => '6085855' } }, - 'Return' => '379527', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '407466' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } + 'Protected' => 1, + 'ShortName' => 'PatternConverter', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '41', + 'Virt' => 1 }, - '22558604' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3spi18AppenderAttachableENS_8AppenderELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + '34482252' => { + 'Class' => '3120362', + 'Constructor' => 1, + 'Header' => 'patternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '264581' + 'name' => 'this', + 'type' => '6085855' + }, + '1' => { + 'name' => 'name', + 'type' => '210597' + }, + '2' => { + 'name' => 'style', + 'type' => '210597' } }, - 'Return' => '22503249', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '262822' - }, - '1' => { - 'key' => 'Type', - 'type' => '262983' - } - } + 'Protected' => 1, + 'ShortName' => 'PatternConverter', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '34' }, - '22558692' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3net12SMTPAppenderENS_8AppenderELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', + '34487989' => { + 'Class' => '3120362', + 'Constructor' => 1, + 'Header' => 'patternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterC1ESt10unique_ptrINS1_23PatternConverterPrivateESt14default_deleteIS3_EE', 'Param' => { '0' => { - 'name' => 'incoming', - 'type' => '264581' + 'name' => 'this', + 'type' => '6085855' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '2968054' } }, - 'Return' => '22499449', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '17104764' - }, - '1' => { - 'key' => 'Type', - 'type' => '262983' - } - } - }, - '22565108' => { - 'Class' => '22555410', - 'Data' => 1, - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator4xdogE', - 'Return' => '22565097', - 'ShortName' => 'xdog', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '91' + 'Protected' => 1, + 'ShortName' => 'PatternConverter', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '28' }, - '22573218' => { + '34493839' => { 'Artificial' => 1, - 'Class' => '22557273', + 'Class' => '3120376', 'Destructor' => 1, + 'Header' => 'patternconverter.h', 'InLine' => 1, - 'Line' => '72', - 'MnglName' => '_ZN7log4cxx3xml11XMLWatchdogD0Ev', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22565103' + 'type' => '34466205' } }, - 'ShortName' => 'XMLWatchdog', - 'Source' => 'domconfigurator.cpp', + 'ShortName' => 'ClazzPatternConverter', 'Virt' => 1 }, - '22573219' => { + '34493840' => { 'Artificial' => 1, - 'Class' => '22557273', + 'Class' => '3120376', 'Destructor' => 1, + 'Header' => 'patternconverter.h', 'InLine' => 1, - 'Line' => '72', - 'MnglName' => '_ZN7log4cxx3xml11XMLWatchdogD1Ev', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22565103' + 'type' => '34466205' } }, - 'ShortName' => 'XMLWatchdog', - 'Source' => 'domconfigurator.cpp', + 'ShortName' => 'ClazzPatternConverter', 'Virt' => 1 }, - '22573360' => { + '34493984' => { 'Artificial' => 1, - 'Class' => '22557273', + 'Class' => '3120376', 'Destructor' => 1, + 'Header' => 'patternconverter.h', 'InLine' => 1, - 'Line' => '72', - 'MnglName' => '_ZN7log4cxx3xml11XMLWatchdogD2Ev', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22565103' + 'type' => '34466205' } }, - 'ShortName' => 'XMLWatchdog', - 'Source' => 'domconfigurator.cpp', + 'ShortName' => 'ClazzPatternConverter', 'Virt' => 1 }, - '22641291' => { + '34494078' => { + 'Artificial' => 1, + 'Class' => '3120376', + 'Constructor' => 1, + 'Header' => 'patternconverter.h', + 'InLine' => 1, + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34466205' + } + }, + 'ShortName' => 'ClazzPatternConverter' + }, + '34494079' => { + 'Artificial' => 1, + 'Class' => '3120376', + 'Constructor' => 1, + 'Header' => 'patternconverter.h', + 'InLine' => 1, + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34466205' + } + }, + 'ShortName' => 'ClazzPatternConverter' + }, + '34964266' => { + 'Class' => '34964182', + 'Const' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39284344' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '34964305' => { + 'Class' => '34964157', + 'Header' => 'relativetimepatternconverter.h', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'p1', + 'type' => '575797' + } + }, + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'relativetimepatternconverter.cpp', + 'SourceLine' => '37', + 'Static' => 1 + }, + '34964950' => { + 'Class' => '34964866', + 'Const' => 1, + 'Header' => 'propertiespatternconverter.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '36823593' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '34964989' => { + 'Class' => '34964841', + 'Header' => 'propertiespatternconverter.h', + 'Line' => '64', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'propertiespatternconverter.cpp', + 'SourceLine' => '54', + 'Static' => 1 + }, + '34965121' => { + 'Class' => '34965037', + 'Const' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 2, + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661608' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '34965160' => { + 'Class' => '34965012', + 'Header' => 'throwableinformationpatternconverter.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'SourceLine' => '54', + 'Static' => 1 + }, + '34966350' => { + 'Artificial' => 1, + 'Class' => '3121199', + 'Header' => 'patternlayout.h', + 'InLine' => 2, + 'Line' => '451', + 'MnglName' => '_ZTch0_h0_NK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980451' + } + }, + 'Return' => '3132935', + 'ShortName' => '_ZTch0_h0_NK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv' + }, + '34966436' => { + 'Class' => '3121185', + 'Const' => 1, + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZNK7log4cxx13PatternLayout8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980156' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '94', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '34966475' => { + 'Class' => '3121185', + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayout14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '94', + 'Static' => 1 + }, + '34966509' => { + 'Class' => '3121185', + 'Const' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 2, + 'Line' => '452', + 'MnglName' => '_ZNK7log4cxx13PatternLayout4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980156' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '34966552' => { + 'Class' => '3121185', + 'Const' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 2, + 'Line' => '455', + 'MnglName' => '_ZNK7log4cxx13PatternLayout10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980156' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '34966714' => { + 'Class' => '3121185', + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayout20setConversionPatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + }, + '1' => { + 'name' => 'pattern', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setConversionPattern', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '114' + }, + '34966746' => { + 'Class' => '3121185', + 'Const' => 1, + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZNK7log4cxx13PatternLayout20getConversionPatternB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980156' + } + }, + 'Return' => '209661', + 'ShortName' => 'getConversionPattern', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '273' + }, + '34966778' => { + 'Class' => '3121185', + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayout15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '177', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '34966817' => { + 'Class' => '3121185', + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '141', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '34966861' => { + 'Class' => '3121185', + 'Const' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 2, + 'Line' => '520', + 'MnglName' => '_ZNK7log4cxx13PatternLayout16ignoresThrowableEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980156' + } + }, + 'Return' => '174077', + 'ShortName' => 'ignoresThrowable', + 'Virt' => 1, + 'VirtPos' => '11' + }, + '34966899' => { + 'Class' => '3121185', + 'Const' => 1, + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZNK7log4cxx13PatternLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980156' + }, + '1' => { + 'name' => 'output', + 'type' => '210592' + }, + '2' => { + 'name' => 'event', + 'type' => '576659' + }, + '3' => { + 'name' => 'pool', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '121', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '34966948' => { + 'Class' => '3121185', + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayout19getFormatSpecifiersB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + } + }, + 'Protected' => 1, + 'Return' => '3121008', + 'ShortName' => 'getFormatSpecifiers', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '217', + 'Virt' => 1, + 'VirtPos' => '12' + }, + '34966987' => { + 'Class' => '3121185', + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayout32createColorStartPatternConverterERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + }, + '1' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'Private' => 1, + 'Return' => '3121025', + 'ShortName' => 'createColorStartPatternConverter', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '278' + }, + '34967090' => { + 'Data' => 1, + 'Line' => '94', + 'MnglName' => '_ZN7log4cxx7classes25PatternLayoutRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'PatternLayoutRegistration', + 'Source' => 'patternlayout.cpp' + }, + '35050528' => { 'Artificial' => 1, - 'Class' => '22551918', + 'Class' => '34956498', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22565134' + 'type' => '34977202' } }, 'ShortName' => 'WideLife' }, - '22641292' => { + '35050529' => { 'Artificial' => 1, - 'Class' => '22551918', + 'Class' => '34956498', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22565134' + 'type' => '34977202' } }, 'ShortName' => 'WideLife' }, - '22641433' => { + '35050671' => { 'Artificial' => 1, - 'Class' => '22551918', + 'Class' => '34956498', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22565134' + 'type' => '34977202' } }, 'ShortName' => 'WideLife' }, - '22641434' => { + '35050672' => { 'Artificial' => 1, - 'Class' => '22551918', + 'Class' => '34956498', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22565134' + 'type' => '34977202' } }, 'ShortName' => 'WideLife' }, - '2270660' => { - 'Class' => '2270651', - 'Const' => 1, - 'Header' => 'patternconverter.h', - 'InLine' => 2, - 'Line' => '66', - 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2306546' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2270704' => { - 'Class' => '2270651', - 'Const' => 1, - 'Header' => 'patternconverter.h', - 'InLine' => 2, - 'Line' => '64', - 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2306546' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '2270748' => { - 'Class' => '2270651', - 'Header' => 'patternconverter.h', - 'Line' => '104', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter6appendERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_', - 'Param' => { - '0' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '1' => { - 'name' => 'src', - 'type' => '61535' - } - }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'append', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '55', - 'Static' => 1 - }, - '2270760' => { - 'Class' => '2270651', - 'Header' => 'patternconverter.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'patternconverter.cpp', - 'SourceLine' => '26', - 'Static' => 1 - }, - '2270933' => { - 'Class' => '2270812', - 'Const' => 1, - 'Header' => 'classnamepatternconverter.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2274564' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2271104' => { - 'Class' => '2270778', - 'Header' => 'classnamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'classnamepatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '2271121' => { - 'Class' => '2270778', - 'Header' => 'classnamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'classnamepatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '2271138' => { - 'Class' => '2270778', - 'Const' => 1, - 'Header' => 'classnamepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2274188' + '35228083' => { + 'Class' => '3121185', + 'Destructor' => 1, + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayoutD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + } + }, + 'ShortName' => 'PatternLayout', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '112', + 'Virt' => 1 + }, + '35228182' => { + 'Class' => '3121185', + 'Destructor' => 1, + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayoutD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + } + }, + 'ShortName' => 'PatternLayout', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '112', + 'Virt' => 1 + }, + '35236256' => { + 'Class' => '3121185', + 'Destructor' => 1, + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayoutD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + } + }, + 'ShortName' => 'PatternLayout', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '112', + 'Virt' => 1 + }, + '35251505' => { + 'Class' => '3121185', + 'Constructor' => 1, + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayoutC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + }, + '2' => { + 'name' => 'pattern', + 'type' => '210597' + } + }, + 'ShortName' => 'PatternLayout', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '105' + }, + '35258540' => { + 'Class' => '3121185', + 'Constructor' => 1, + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayoutC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + } + }, + 'ShortName' => 'PatternLayout', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '97' + }, + '35265193' => { + 'Class' => '3121185', + 'Constructor' => 1, + 'Header' => 'patternlayout.h', + 'MnglName' => '_ZN7log4cxx13PatternLayoutC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132940' + } + }, + 'ShortName' => 'PatternLayout', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '97' + }, + '35274192' => { + 'Artificial' => 1, + 'Class' => '3121199', + 'Destructor' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 1, + 'Line' => '451', + 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980441' + } + }, + 'ShortName' => 'ClazzPatternLayout', + 'Virt' => 1 + }, + '35274193' => { + 'Artificial' => 1, + 'Class' => '3121199', + 'Destructor' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 1, + 'Line' => '451', + 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980441' + } + }, + 'ShortName' => 'ClazzPatternLayout', + 'Virt' => 1 + }, + '35274340' => { + 'Artificial' => 1, + 'Class' => '3121199', + 'Destructor' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 1, + 'Line' => '451', + 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980441' + } + }, + 'ShortName' => 'ClazzPatternLayout', + 'Virt' => 1 + }, + '35274435' => { + 'Artificial' => 1, + 'Class' => '3121199', + 'Constructor' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 1, + 'Line' => '451', + 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980441' + } + }, + 'ShortName' => 'ClazzPatternLayout' + }, + '35274436' => { + 'Artificial' => 1, + 'Class' => '3121199', + 'Constructor' => 1, + 'Header' => 'patternlayout.h', + 'InLine' => 1, + 'Line' => '451', + 'MnglName' => '_ZN7log4cxx13PatternLayout18ClazzPatternLayoutC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34980441' + } + }, + 'ShortName' => 'ClazzPatternLayout' + }, + '35821653' => { + 'Class' => '3120638', + 'Constructor' => 1, + 'Header' => 'patternparser.h', + 'Line' => '69', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParserC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '35669241' + } + }, + 'Private' => 1, + 'ShortName' => 'PatternParser', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '33' + }, + '35821654' => { + 'Class' => '3120638', + 'Constructor' => 1, + 'Header' => 'patternparser.h', + 'Line' => '69', + 'MnglName' => '_ZN7log4cxx7pattern13PatternParserC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '35669241' + } + }, + 'Private' => 1, + 'ShortName' => 'PatternParser', + 'Source' => 'patternparser.cpp', + 'SourceLine' => '33' + }, + '3603350' => { + 'Class' => '208311', + 'Header' => 'bytebuffer.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer5clearEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4014802' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'classnamepatternconverter.cpp', - 'SourceLine' => '28', - 'Virt' => 1, - 'VirtPos' => '2' + 'Return' => '1', + 'ShortName' => 'clear', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '45' }, - '2271177' => { - 'Class' => '2270778', - 'Const' => 1, - 'Header' => 'classnamepatternconverter.h', - 'InLine' => 2, + '3603376' => { + 'Class' => '208311', + 'Header' => 'bytebuffer.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer4flipEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4014802' + } + }, + 'Return' => '1', + 'ShortName' => 'flip', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '51' + }, + '3603402' => { + 'Class' => '208311', + 'Header' => 'bytebuffer.h', 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter4castERKNS_7helpers5ClassE', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer4dataEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2274188' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '4014802' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '192483', + 'ShortName' => 'data', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '91' }, - '2271221' => { - 'Class' => '2270778', + '3603433' => { + 'Class' => '208311', 'Const' => 1, - 'Header' => 'classnamepatternconverter.h', - 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter10instanceofERKNS_7helpers5ClassE', + 'Header' => 'bytebuffer.h', + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer4dataEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2274188' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '4014812' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '191618', + 'ShortName' => 'data', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '96' }, - '2271265' => { - 'Class' => '2270778', - 'Header' => 'classnamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '3603464' => { + 'Class' => '208311', + 'Header' => 'bytebuffer.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer7currentEv', 'Param' => { '0' => { - 'name' => 'options', - 'type' => '2273842' + 'name' => 'this', + 'type' => '4014802' } }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'classnamepatternconverter.cpp', - 'SourceLine' => '37', - 'Static' => 1 + 'Return' => '192483', + 'ShortName' => 'current', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '101' }, - '2271293' => { - 'Class' => '2270778', + '3603495' => { + 'Class' => '208311', 'Const' => 1, - 'Header' => 'classnamepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Header' => 'bytebuffer.h', + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer7currentEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2274188' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '4014812' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'classnamepatternconverter.cpp', - 'SourceLine' => '49', - 'Virt' => 1, - 'VirtPos' => '7' + 'Return' => '191618', + 'ShortName' => 'current', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '106' }, - '2271394' => { - 'Class' => '2271385', + '3603526' => { + 'Class' => '208311', 'Const' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'Line' => '68', - 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', + 'Header' => 'bytebuffer.h', + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer5limitEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4014812' + } + }, + 'Return' => '190816', + 'ShortName' => 'limit', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '111' + }, + '3603557' => { + 'Class' => '208311', + 'Header' => 'bytebuffer.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer5limitEm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273423' + 'type' => '4014802' }, '1' => { - 'name' => 'obj', - 'type' => '652213' - }, - '2' => { - 'name' => 'output', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'newLimit', + 'type' => '190816' } }, 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'loggingeventpatternconverter.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'limit', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '69' }, - '2271444' => { - 'Class' => '2271385', + '3603588' => { + 'Class' => '208311', 'Const' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'Line' => '63', - 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Header' => 'bytebuffer.h', + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer8positionEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4014812' + } + }, + 'Return' => '190816', + 'ShortName' => 'position', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '116' + }, + '3603619' => { + 'Class' => '208311', + 'Const' => 1, + 'Header' => 'bytebuffer.h', + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx7helpers10ByteBuffer9remainingEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4014812' + } + }, + 'Return' => '190816', + 'ShortName' => 'remaining', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '121' + }, + '3603650' => { + 'Class' => '208311', + 'Header' => 'bytebuffer.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer8positionEm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273417' + 'type' => '4014802' }, '1' => { - 'name' => 'p1', - 'type' => '154261' - }, - '2' => { - 'name' => 'p2', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'name' => 'newPosition', + 'type' => '190816' } }, - 'PureVirt' => 1, 'Return' => '1', - 'ShortName' => 'format', - 'VirtPos' => '7' + 'ShortName' => 'position', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '57' }, - '2271534' => { - 'Class' => '2271385', - 'Const' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 2, + '3603681' => { + 'Class' => '208311', + 'Header' => 'bytebuffer.h', 'Line' => '55', - 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter10instanceofERKNS_7helpers5ClassE', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBuffer3putEc', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273423' + 'type' => '4014802' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'byte', + 'type' => '191030' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '174077', + 'ShortName' => 'put', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '80' }, - '2271578' => { - 'Class' => '2271385', + '3604256' => { + 'Class' => '3604142', 'Const' => 1, - 'Header' => 'loggingeventpatternconverter.h', + 'Header' => 'bytearrayinputstream.h', 'InLine' => 2, - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter4castERKNS_7helpers5ClassE', + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStream7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273423' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '3609580' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '3' }, - '2271622' => { - 'Class' => '2271385', - 'Header' => 'loggingeventpatternconverter.h', - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', + '3604314' => { + 'Class' => '3604026', + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'loggingeventpatternconverter.cpp', - 'SourceLine' => '28', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '39', + 'Static' => 1 + }, + '3604330' => { + 'Class' => '3604026', + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '39', 'Static' => 1 }, - '2271689' => { - 'Class' => '2271640', + '3604346' => { + 'Class' => '3604026', 'Const' => 1, - 'Header' => 'namepatternconverter.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter10instanceofERKNS_7helpers5ClassE', + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZNK7log4cxx7helpers20ByteArrayInputStream8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2306359' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '3609540' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '39', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '2' }, - '2271733' => { - 'Class' => '2271640', + '3604383' => { + 'Class' => '3604026', 'Const' => 1, - 'Header' => 'namepatternconverter.h', + 'Header' => 'bytearrayinputstream.h', 'InLine' => 2, 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter4castERKNS_7helpers5ClassE', + 'MnglName' => '_ZNK7log4cxx7helpers20ByteArrayInputStream4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2306359' + 'type' => '3609540' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '2271777' => { - 'Class' => '2271640', + '3604425' => { + 'Class' => '3604026', 'Const' => 1, - 'Header' => 'namepatternconverter.h', - 'Line' => '65', - 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'bytearrayinputstream.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7helpers20ByteArrayInputStream10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2306359' + 'type' => '3609540' }, '1' => { - 'name' => 'nameStart', - 'type' => '281' - }, - '2' => { - 'name' => 'buf', - 'type' => '409210' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'abbreviate', - 'Source' => 'namepatternconverter.cpp', - 'SourceLine' => '69' - }, - '2271789' => { - 'Class' => '2271640', - 'Header' => 'namepatternconverter.h', - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'namepatternconverter.cpp', - 'SourceLine' => '42', - 'Static' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '2272309' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '132', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent22getLocationInformationEv', + '3604534' => { + 'Class' => '3604026', + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream5closeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216376' + 'type' => '3609550' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '839402', - 'ShortName' => 'getLocationInformation', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '479' - }, - '2272349' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes37ClassNamePatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ClassNamePatternConverterRegistration', - 'Source' => 'classnamepatternconverter.cpp' + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '53', + 'Virt' => 1, + 'VirtPos' => '6' }, - '2277601' => { - 'Artificial' => 1, - 'Class' => '2270778', - 'Destructor' => 1, - 'Header' => 'classnamepatternconverter.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterD0Ev', + '3604568' => { + 'Class' => '3604026', + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream4readERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273989' + 'type' => '3609550' + }, + '1' => { + 'name' => 'dst', + 'type' => '210612' } }, - 'ShortName' => 'ClassNamePatternConverter', - 'Virt' => 1 + 'Return' => '190263', + 'ShortName' => 'read', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '58', + 'Virt' => 1, + 'VirtPos' => '5' }, - '2277602' => { - 'Artificial' => 1, - 'Class' => '2270778', - 'Destructor' => 1, - 'Header' => 'classnamepatternconverter.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterD2Ev', + '3605574' => { + 'Class' => '3605490', + 'Const' => 1, + 'Header' => 'inputstream.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx7helpers11InputStream16ClazzInputStream7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273989' + 'type' => '19804009' } }, - 'ShortName' => 'ClassNamePatternConverter', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '2277930' => { - 'Artificial' => 1, - 'Class' => '2270778', - 'Destructor' => 1, - 'Header' => 'classnamepatternconverter.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273989' - } - }, - 'ShortName' => 'ClassNamePatternConverter', - 'Virt' => 1 + '3605613' => { + 'Class' => '3605480', + 'Header' => 'inputstream.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers11InputStream14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'inputstream.cpp', + 'SourceLine' => '24', + 'Static' => 1 }, - '2284269' => { - 'Artificial' => 1, - 'Class' => '2269898', + '3605692' => { + 'Class' => '3605480', + 'Const' => 1, + 'Header' => 'inputstream.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7helpers11InputStream4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3625386' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '3606155' => { + 'Data' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7classes32ByteArrayInputStreamRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ByteArrayInputStreamRegistration', + 'Source' => 'bytearrayinputstream.cpp' + }, + '3610668' => { + 'Class' => '3605480', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEED2Ev', + 'Header' => 'inputstream.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers11InputStreamD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '3610663' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'ShortName' => 'InputStream', + 'Source' => 'inputstream.cpp', + 'SourceLine' => '30', + 'Virt' => 1 }, - '2284270' => { - 'Artificial' => 1, - 'Class' => '2269898', + '3610669' => { + 'Class' => '3605480', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEED0Ev', + 'Header' => 'inputstream.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers11InputStreamD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '3610663' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'ShortName' => 'InputStream', + 'Source' => 'inputstream.cpp', + 'SourceLine' => '30', + 'Virt' => 1 }, - '2285064' => { - 'Artificial' => 1, - 'Class' => '2269898', + '3610695' => { + 'Class' => '3605480', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_25ClassNamePatternConverterEEJEEEOT_DpOT0_', + 'Header' => 'inputstream.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers11InputStreamC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '2274011' + 'type' => '3610663' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '2246871' - } - } + 'Protected' => 1, + 'ShortName' => 'InputStream', + 'Source' => 'inputstream.cpp', + 'SourceLine' => '26' }, - '2285065' => { - 'Artificial' => 1, - 'Class' => '2269898', + '3610696' => { + 'Class' => '3605480', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_25ClassNamePatternConverterEEJEEEOT_DpOT0_', + 'Header' => 'inputstream.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers11InputStreamC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '2274011' + 'type' => '3610663' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { + 'Protected' => 1, + 'ShortName' => 'InputStream', + 'Source' => 'inputstream.cpp', + 'SourceLine' => '26' + }, + '36109188' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '114', + 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionC1Ei', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '2246871' + 'name' => 'this', + 'type' => '11525577' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' } } - }, - '2285561' => { + }, + '36110928' => { + 'Class' => '207830', + 'Destructor' => 1, + 'Header' => 'pool.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers4PoolD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + } + }, + 'ShortName' => 'Pool', + 'Source' => 'pool.cpp', + 'SourceLine' => '48' + }, + '36111075' => { + 'Class' => '207830', + 'Constructor' => 1, + 'Header' => 'pool.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers4PoolC2EP10apr_pool_tb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + }, + '1' => { + 'name' => 'p', + 'type' => '1930256' + }, + '2' => { + 'name' => 'release1', + 'type' => '174077' + } + }, + 'ShortName' => 'Pool', + 'Source' => 'pool.cpp', + 'SourceLine' => '43' + }, + '36111267' => { + 'Class' => '207830', + 'Constructor' => 1, + 'Header' => 'pool.h', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers4PoolC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + } + }, + 'ShortName' => 'Pool', + 'Source' => 'pool.cpp', + 'SourceLine' => '33' + }, + '3617507' => { 'Artificial' => 1, - 'Class' => '2269136', + 'Class' => '3604725', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273478' + 'type' => '3609134' } }, 'ShortName' => 'WideLife' }, - '2285562' => { + '3617508' => { 'Artificial' => 1, - 'Class' => '2269136', + 'Class' => '3604725', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273478' + 'type' => '3609134' } }, 'ShortName' => 'WideLife' }, - '2285703' => { + '3617650' => { 'Artificial' => 1, - 'Class' => '2269136', + 'Class' => '3604725', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273478' + 'type' => '3609134' } }, 'ShortName' => 'WideLife' }, - '2285704' => { + '3617651' => { 'Artificial' => 1, - 'Class' => '2269136', + 'Class' => '3604725', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273478' + 'type' => '3609134' } }, 'ShortName' => 'WideLife' }, - '2295662' => { - 'Class' => '2270778', - 'Constructor' => 1, - 'Header' => 'classnamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterC1ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273989' - }, - '1' => { - 'name' => 'options', - 'type' => '2273842' - } - }, - 'ShortName' => 'ClassNamePatternConverter', - 'Source' => 'classnamepatternconverter.cpp', - 'SourceLine' => '30' - }, - '2299871' => { - 'Class' => '2270778', - 'Constructor' => 1, - 'Header' => 'classnamepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterC2ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '3619115' => { + 'Class' => '3604026', + 'Destructor' => 1, + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273989' - }, - '2' => { - 'name' => 'options', - 'type' => '2273842' + 'type' => '3609550' } }, - 'ShortName' => 'ClassNamePatternConverter', - 'Source' => 'classnamepatternconverter.cpp', - 'SourceLine' => '30' + 'ShortName' => 'ByteArrayInputStream', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '48', + 'Virt' => 1 }, - '2304090' => { - 'Artificial' => 1, - 'Class' => '2271640', + '3619116' => { + 'Class' => '3604026', 'Destructor' => 1, - 'Header' => 'namepatternconverter.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterD2Ev', + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304040' + 'type' => '3609550' } }, - 'ShortName' => 'NamePatternConverter', + 'ShortName' => 'ByteArrayInputStream', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '48', 'Virt' => 1 }, - '2304091' => { - 'Artificial' => 1, - 'Class' => '2271640', + '3619211' => { + 'Class' => '3604026', 'Destructor' => 1, - 'Header' => 'namepatternconverter.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterD0Ev', + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304040' + 'type' => '3609550' } }, - 'ShortName' => 'NamePatternConverter', + 'ShortName' => 'ByteArrayInputStream', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '48', 'Virt' => 1 }, - '2304174' => { - 'Artificial' => 1, - 'Class' => '2271385', - 'Destructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterD2Ev', + '3620323' => { + 'Class' => '3604026', + 'Constructor' => 1, + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamC2ERKSt6vectorIhSaIhEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304124' + 'type' => '3609550' + }, + '1' => { + 'name' => 'bytes', + 'type' => '3609074' } }, - 'ShortName' => 'LoggingEventPatternConverter', - 'Virt' => 1 + 'ShortName' => 'ByteArrayInputStream', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '41' }, - '2304175' => { - 'Artificial' => 1, - 'Class' => '2271385', - 'Destructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterD0Ev', + '3620324' => { + 'Class' => '3604026', + 'Constructor' => 1, + 'Header' => 'bytearrayinputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStreamC1ERKSt6vectorIhSaIhEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304124' + 'type' => '3609550' + }, + '1' => { + 'name' => 'bytes', + 'type' => '3609074' } }, - 'ShortName' => 'LoggingEventPatternConverter', - 'Virt' => 1 + 'ShortName' => 'ByteArrayInputStream', + 'Source' => 'bytearrayinputstream.cpp', + 'SourceLine' => '41' }, - '2306098' => { + '3625117' => { 'Artificial' => 1, - 'Class' => '2270812', + 'Class' => '3604142', 'Destructor' => 1, - 'Header' => 'classnamepatternconverter.h', + 'Header' => 'bytearrayinputstream.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD0Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2274553' + 'type' => '3609570' } }, - 'ShortName' => 'ClazzClassNamePatternConverter', + 'ShortName' => 'ClazzByteArrayInputStream', 'Virt' => 1 }, - '2306099' => { + '3625118' => { 'Artificial' => 1, - 'Class' => '2270812', + 'Class' => '3604142', 'Destructor' => 1, - 'Header' => 'classnamepatternconverter.h', + 'Header' => 'bytearrayinputstream.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD1Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2274553' + 'type' => '3609570' } }, - 'ShortName' => 'ClazzClassNamePatternConverter', + 'ShortName' => 'ClazzByteArrayInputStream', 'Virt' => 1 }, - '2306240' => { + '3625263' => { 'Artificial' => 1, - 'Class' => '2270812', + 'Class' => '3604142', 'Destructor' => 1, - 'Header' => 'classnamepatternconverter.h', + 'Header' => 'bytearrayinputstream.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2274553' + 'type' => '3609570' } }, - 'ShortName' => 'ClazzClassNamePatternConverter', + 'ShortName' => 'ClazzByteArrayInputStream', 'Virt' => 1 }, - '2306330' => { + '3625358' => { 'Artificial' => 1, - 'Class' => '2270812', + 'Class' => '3604142', 'Constructor' => 1, - 'Header' => 'classnamepatternconverter.h', + 'Header' => 'bytearrayinputstream.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterC2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2274553' + 'type' => '3609570' } }, - 'ShortName' => 'ClazzClassNamePatternConverter' + 'ShortName' => 'ClazzByteArrayInputStream' }, - '2306331' => { + '3625359' => { 'Artificial' => 1, - 'Class' => '2270812', + 'Class' => '3604142', 'Constructor' => 1, - 'Header' => 'classnamepatternconverter.h', + 'Header' => 'bytearrayinputstream.h', 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterC1Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2274553' + 'type' => '3609570' } }, - 'ShortName' => 'ClazzClassNamePatternConverter' + 'ShortName' => 'ClazzByteArrayInputStream' }, - '23067718' => { - 'Class' => '22555410', - 'Destructor' => 1, - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorD0Ev', + '36347985' => { + 'Class' => '36347883', + 'InLine' => 2, + 'Line' => '30', + 'MnglName' => '_ZN14PropertyParser5parseERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN7log4cxx7helpers10PropertiesE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '36348075' + }, + '1' => { + 'name' => 'in', + 'type' => '210592' + }, + '2' => { + 'name' => 'properties', + 'type' => '575812' } }, - 'ShortName' => 'DOMConfigurator', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '130', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'parse', + 'Source' => 'properties.cpp' }, - '23067816' => { - 'Class' => '22555410', - 'Destructor' => 1, - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorD1Ev', + '36350988' => { + 'Constructor' => 1, + 'Header' => 'inputstreamreader.h', + 'Line' => '65', + 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderC1ERKSt10shared_ptrINS0_11InputStreamEERKS2_INS0_14CharsetDecoderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '19987780' + }, + '1' => { + 'name' => 'in', + 'type' => '19987480' + }, + '2' => { + 'name' => 'enc', + 'type' => '19987485' } - }, - 'ShortName' => 'DOMConfigurator', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '130', - 'Virt' => 1 + } }, - '23069609' => { - 'Class' => '22555410', + '36425031' => { + 'Class' => '562694', 'Destructor' => 1, - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorD2Ev', + 'Header' => 'properties.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7helpers10PropertiesD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '36347585' } }, - 'ShortName' => 'DOMConfigurator', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '130', - 'Virt' => 1 + 'ShortName' => 'Properties', + 'Source' => 'properties.cpp', + 'SourceLine' => '402' }, - '23071340' => { - 'Class' => '22555410', + '36425518' => { + 'Class' => '562694', 'Constructor' => 1, - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorC1Ev', + 'Header' => 'properties.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers10PropertiesC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '36347585' } }, - 'ShortName' => 'DOMConfigurator', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '125' + 'ShortName' => 'Properties', + 'Source' => 'properties.cpp', + 'SourceLine' => '398' }, - '23072362' => { - 'Class' => '22555410', - 'Constructor' => 1, - 'Header' => 'domconfigurator.h', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorC2Ev', + '36810873' => { + 'Class' => '34964841', + 'Header' => 'propertiespatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'propertiespatternconverter.cpp', + 'SourceLine' => '45', + 'Static' => 1 + }, + '36810889' => { + 'Class' => '34964841', + 'Header' => 'propertiespatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'propertiespatternconverter.cpp', + 'SourceLine' => '45', + 'Static' => 1 + }, + '36810905' => { + 'Class' => '34964841', + 'Const' => 1, + 'Header' => 'propertiespatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569359' + 'type' => '36823384' } }, - 'ShortName' => 'DOMConfigurator', - 'Source' => 'domconfigurator.cpp', - 'SourceLine' => '125' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'propertiespatternconverter.cpp', + 'SourceLine' => '45', + 'Virt' => 1, + 'VirtPos' => '2' }, - '23076769' => { - 'Artificial' => 1, - 'Class' => '22555530', - 'Destructor' => 1, - 'Header' => 'domconfigurator.h', - 'InLine' => 1, - 'Line' => '212', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD0Ev', + '36810942' => { + 'Class' => '34964841', + 'Const' => 1, + 'Header' => 'propertiespatternconverter.h', + 'InLine' => 2, + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569446' + 'type' => '36823384' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzDOMConfigurator', - 'Virt' => 1 + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '23076770' => { - 'Artificial' => 1, - 'Class' => '22555530', - 'Destructor' => 1, - 'Header' => 'domconfigurator.h', - 'InLine' => 1, - 'Line' => '212', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD1Ev', + '36810984' => { + 'Class' => '34964841', + 'Const' => 1, + 'Header' => 'propertiespatternconverter.h', + 'InLine' => 2, + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569446' + 'type' => '36823384' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzDOMConfigurator', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '23076911' => { - 'Artificial' => 1, - 'Class' => '22555530', - 'Destructor' => 1, - 'Header' => 'domconfigurator.h', - 'InLine' => 1, - 'Line' => '212', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD2Ev', + '36811099' => { + 'Class' => '34964841', + 'Const' => 1, + 'Header' => 'propertiespatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern26PropertiesPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569446' + 'type' => '36823384' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'ShortName' => 'ClazzDOMConfigurator', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'propertiespatternconverter.cpp', + 'SourceLine' => '70', + 'Virt' => 1, + 'VirtPos' => '7' }, - '23077001' => { + '36814079' => { + 'Data' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7classes38PropertiesPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'PropertiesPatternConverterRegistration', + 'Source' => 'propertiespatternconverter.cpp' + }, + '36827783' => { 'Artificial' => 1, - 'Class' => '22555530', - 'Constructor' => 1, - 'Header' => 'domconfigurator.h', + 'Class' => '34964841', + 'Destructor' => 1, + 'Header' => 'propertiespatternconverter.h', 'InLine' => 1, - 'Line' => '212', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569446' + 'type' => '36822815' } }, - 'ShortName' => 'ClazzDOMConfigurator' + 'ShortName' => 'PropertiesPatternConverter', + 'Virt' => 1 }, - '23077002' => { + '36827784' => { 'Artificial' => 1, - 'Class' => '22555530', - 'Constructor' => 1, - 'Header' => 'domconfigurator.h', + 'Class' => '34964841', + 'Destructor' => 1, + 'Header' => 'propertiespatternconverter.h', 'InLine' => 1, - 'Line' => '212', - 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorC1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22569446' + 'type' => '36822815' } }, - 'ShortName' => 'ClazzDOMConfigurator' + 'ShortName' => 'PropertiesPatternConverter', + 'Virt' => 1 }, - '23079464' => { + '36828056' => { 'Artificial' => 1, - 'Class' => '63066', + 'Class' => '34964841', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertiespatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '65882' + 'type' => '36822815' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertiesPatternConverter', + 'Virt' => 1 }, - '23079465' => { + '36842328' => { 'Artificial' => 1, - 'Class' => '62708', + 'Class' => '36810617', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEED1Ev', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '65825' + 'type' => '36822124' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertiesPatternConverterPrivate', + 'Source' => 'propertiespatternconverter.cpp', + 'Virt' => 1 }, - '23079466' => { + '36842329' => { 'Artificial' => 1, - 'Class' => '149841', + 'Class' => '36810617', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEED1Ev', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '153753' + 'type' => '36822124' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertiesPatternConverterPrivate', + 'Source' => 'propertiespatternconverter.cpp', + 'Virt' => 1 }, - '23079467' => { + '36844453' => { 'Artificial' => 1, - 'Class' => '151305', + 'Class' => '36810617', 'Destructor' => 1, - 'Header' => 'optionhandler.h', 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerD1Ev', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '179913' + 'type' => '36822124' } }, - 'ShortName' => 'OptionHandler', + 'ShortName' => 'PropertiesPatternConverterPrivate', + 'Source' => 'propertiespatternconverter.cpp', 'Virt' => 1 }, - '23079469' => { + '36850389' => { 'Artificial' => 1, - 'Class' => '261701', - 'Destructor' => 1, + 'Class' => '6072360', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_26PropertiesPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '264423' - } - }, - 'ShortName' => 'WideLife' - }, - '23079470' => { - 'Artificial' => 1, - 'Class' => '262822', - 'Destructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '322573' - } - }, - 'ShortName' => 'AppenderAttachable', - 'Virt' => 1 - }, - '23079471' => { - 'Artificial' => 1, - 'Class' => '406200', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '411451' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '36822759' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '36739379' + } + } }, - '23079473' => { + '36850390' => { 'Artificial' => 1, - 'Class' => '648882', - 'Destructor' => 1, + 'Class' => '6072360', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '655304' - } - }, - 'ShortName' => 'WideLife' - }, - '23079474' => { - 'Class' => '647671', - 'Destructor' => 1, - 'Header' => 'aprinitializer.h', - 'Line' => '91', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializerD1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_26PropertiesPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '652196' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '36822759' } }, - 'ShortName' => 'APRInitializer', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '94' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '36739379' + } + } }, - '23079475' => { + '36852069' => { 'Artificial' => 1, - 'Class' => '833512', + 'Class' => '36808280', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '842594' + 'type' => '36822013' } }, 'ShortName' => 'WideLife' }, - '23079477' => { - 'Artificial' => 1, - 'Class' => '262983', - 'Destructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx8AppenderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '843078' - } - }, - 'ShortName' => 'Appender', - 'Virt' => 1 - }, - '23079478' => { + '36852070' => { 'Artificial' => 1, - 'Class' => '1149270', + 'Class' => '36808280', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1153112' + 'type' => '36822013' } }, 'ShortName' => 'WideLife' }, - '23079480' => { + '36852213' => { 'Artificial' => 1, - 'Class' => '1248349', - 'Destructor' => 1, + 'Class' => '36808280', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1249992' + 'type' => '36822013' } }, 'ShortName' => 'WideLife' }, - '23079482' => { + '36852214' => { 'Artificial' => 1, - 'Class' => '1339722', - 'Destructor' => 1, + 'Class' => '36808280', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1342269' + 'type' => '36822013' } }, 'ShortName' => 'WideLife' }, - '23079484' => { - 'Artificial' => 1, - 'Class' => '1424934', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEED1Ev', + '36871098' => { + 'Class' => '34964841', + 'Constructor' => 1, + 'Header' => 'propertiespatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1427006' + 'type' => '36822815' + }, + '1' => { + 'name' => 'name1', + 'type' => '210597' + }, + '2' => { + 'name' => 'propertyName', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertiesPatternConverter', + 'Source' => 'propertiespatternconverter.cpp', + 'SourceLine' => '47' }, - '23079485' => { - 'Class' => '1338352', - 'Destructor' => 1, - 'Header' => 'bytebuffer.h', - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers10ByteBufferD1Ev', + '36878293' => { + 'Class' => '34964841', + 'Constructor' => 1, + 'Header' => 'propertiespatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1502730' + 'type' => '36822815' + }, + '2' => { + 'name' => 'name1', + 'type' => '210597' + }, + '3' => { + 'name' => 'propertyName', + 'type' => '210597' } }, - 'ShortName' => 'ByteBuffer', - 'Source' => 'bytebuffer.cpp', - 'SourceLine' => '41' + 'ShortName' => 'PropertiesPatternConverter', + 'Source' => 'propertiespatternconverter.cpp', + 'SourceLine' => '47' }, - '23079487' => { + '36890276' => { 'Artificial' => 1, - 'Class' => '1727446', + 'Class' => '34964866', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertiespatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEED1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1732038' + 'type' => '36823583' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertiesPatternConverter', + 'Virt' => 1 }, - '23079488' => { + '36890277' => { 'Artificial' => 1, - 'Class' => '1726009', + 'Class' => '34964866', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertiespatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEED1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1731721' + 'type' => '36823583' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertiesPatternConverter', + 'Virt' => 1 }, - '23079489' => { + '36890423' => { 'Artificial' => 1, - 'Class' => '1923331', + 'Class' => '34964866', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertiespatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEED1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1928291' + 'type' => '36823583' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertiesPatternConverter', + 'Virt' => 1 }, - '23079490' => { + '36890518' => { 'Artificial' => 1, - 'Class' => '1921760', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '34964866', + 'Constructor' => 1, + 'Header' => 'propertiespatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEED1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1927941' + 'type' => '36823583' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertiesPatternConverter' }, - '23079491' => { + '36890519' => { 'Artificial' => 1, - 'Class' => '2137501', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '34964866', + 'Constructor' => 1, + 'Header' => 'propertiespatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEED1Ev', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2141444' + 'type' => '36823583' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertiesPatternConverter' }, - '23079492' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEED1Ev', + '37455511' => { + 'Class' => '37455424', + 'Const' => 1, + 'Header' => 'stringtokenizer.h', + 'Line' => '33', + 'MnglName' => '_ZNK7log4cxx7helpers15StringTokenizer13hasMoreTokensEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '44914546' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'hasMoreTokens', + 'Source' => 'stringtokenizer.cpp', + 'SourceLine' => '46' }, - '23079493' => { - 'Artificial' => 1, - 'Class' => '2269136', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEED1Ev', + '37455542' => { + 'Class' => '37455424', + 'Header' => 'stringtokenizer.h', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizer9nextTokenB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273478' + 'type' => '37476454' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'nextToken', + 'Source' => 'stringtokenizer.cpp', + 'SourceLine' => '52' }, - '23079494' => { - 'Artificial' => 1, - 'Class' => '2271640', - 'Destructor' => 1, - 'Header' => 'namepatternconverter.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterD1Ev', + '37464890' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '66', + 'Static' => 1 + }, + '37464943' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'Line' => '207', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender19setTriggeringPolicyERKSt10shared_ptrINS0_16TriggeringPolicyEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304040' + 'type' => '37482507' + }, + '1' => { + 'name' => 'policy', + 'type' => '37486220' } }, - 'ShortName' => 'NamePatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setTriggeringPolicy', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '511' }, - '23079495' => { - 'Artificial' => 1, - 'Class' => '2271385', - 'Destructor' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterD1Ev', + '37464975' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'Line' => '202', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender16setRollingPolicyERKSt10shared_ptrINS0_13RollingPolicyEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2304124' + 'type' => '37482507' + }, + '1' => { + 'name' => 'policy', + 'type' => '37486225' } }, - 'ShortName' => 'LoggingEventPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setRollingPolicy', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '503' }, - '23079496' => { - 'Artificial' => 1, - 'Class' => '2427077', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEED1Ev', + '37465466' => { + 'Class' => '37465352', + 'InLine' => 2, + 'Line' => '65', + 'MnglName' => '_ZN7log4cxx16PropertyWatchdog10doOnChangeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2431976' + 'type' => '37480979' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'doOnChange', + 'Source' => 'propertyconfigurator.cpp', + 'Virt' => 1, + 'VirtPos' => '2' }, - '23079497' => { + '37465742' => { 'Artificial' => 1, - 'Class' => '2605520', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEED1Ev', + 'Class' => '5660989', + 'Header' => 'propertyconfigurator.h', + 'InLine' => 2, + 'Line' => '102', + 'MnglName' => '_ZTch0_h0_NK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2609171' + 'type' => '37484816' } }, - 'ShortName' => 'WideLife' + 'Return' => '5679478', + 'ShortName' => '_ZTch0_h0_NK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv' }, - '23079498' => { - 'Artificial' => 1, - 'Class' => '2698550', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEED1Ev', + '37465827' => { + 'Class' => '5660980', + 'Const' => 1, + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2701129' + 'type' => '37484511' } }, - 'ShortName' => 'WideLife' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '75', + 'Virt' => 1, + 'VirtPos' => '2' }, - '23079499' => { - 'Artificial' => 1, - 'Class' => '2841634', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEED1Ev', + '37465865' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '75', + 'Static' => 1 + }, + '37465897' => { + 'Class' => '5660980', + 'Const' => 1, + 'Header' => 'propertyconfigurator.h', + 'InLine' => 2, + 'Line' => '103', + 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2849039' + 'type' => '37484511' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '23079501' => { - 'Class' => '3105926', - 'Destructor' => 1, - 'Header' => 'cyclicbuffer.h', - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers12CyclicBufferD1Ev', + '37465940' => { + 'Class' => '5660980', + 'Const' => 1, + 'Header' => 'propertyconfigurator.h', + 'InLine' => 2, + 'Line' => '105', + 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '3108596' + 'type' => '37484511' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'CyclicBuffer', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '58' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '23079502' => { - 'Artificial' => 1, - 'Class' => '3214440', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEED1Ev', + '37466060' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11doConfigureERKNS_4FileESt10shared_ptrINS_3spi16LoggerRepositoryEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '3217186' + 'type' => '33743043' + }, + '1' => { + 'name' => 'configFileName', + 'type' => '575822' + }, + '2' => { + 'name' => 'hierarchy', + 'type' => '565552' } }, - 'ShortName' => 'WideLife' + 'Return' => '3117865', + 'ShortName' => 'doConfigure', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '87', + 'Virt' => 1, + 'VirtPos' => '5' }, - '23079503' => { - 'Artificial' => 1, - 'Class' => '3280617', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEED1Ev', + '37466134' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator17configureAndWatchERKNS_4FileE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '3282517' + 'name' => 'configFilename', + 'type' => '575822' } }, - 'ShortName' => 'WideLife' + 'Return' => '3117865', + 'ShortName' => 'configureAndWatch', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '133', + 'Static' => 1 }, - '23079504' => { - 'Artificial' => 1, - 'Class' => '3412693', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEED1Ev', + '37466160' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator17configureAndWatchERKNS_4FileEl', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '3417932' + 'name' => 'configFilename', + 'type' => '575822' + }, + '1' => { + 'name' => 'delay', + 'type' => '190282' } }, - 'ShortName' => 'WideLife' + 'Return' => '3117865', + 'ShortName' => 'configureAndWatch', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '140', + 'Static' => 1 }, - '23079505' => { - 'Artificial' => 1, - 'Class' => '3706549', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEED1Ev', + '37466191' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator9configureERNS_7helpers10PropertiesE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '3712664' + 'name' => 'properties', + 'type' => '575812' } }, - 'ShortName' => 'WideLife' + 'Return' => '3117865', + 'ShortName' => 'configure', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '128', + 'Static' => 1 }, - '23079506' => { - 'Artificial' => 1, - 'Class' => '4198594', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEED1Ev', + '37466217' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11doConfigureERNS_7helpers10PropertiesESt10shared_ptrINS_3spi16LoggerRepositoryEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4201379' + 'type' => '33743043' + }, + '1' => { + 'name' => 'properties', + 'type' => '575812' + }, + '2' => { + 'name' => 'hierarchy', + 'type' => '565552' } }, - 'ShortName' => 'WideLife' + 'Return' => '3117865', + 'ShortName' => 'doConfigure', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '159' }, - '23079507' => { - 'Artificial' => 1, - 'Class' => '4199656', - 'Destructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryD1Ev', + '37466258' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator22configureLoggerFactoryERNS_7helpers10PropertiesE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4216186' + 'type' => '33743043' + }, + '1' => { + 'name' => 'props', + 'type' => '575812' } }, - 'ShortName' => 'LoggerFactory', - 'Virt' => 1 + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'configureLoggerFactory', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '216' }, - '23079509' => { - 'Artificial' => 1, - 'Class' => '4279770', - 'Destructor' => 1, - 'Header' => 'repositoryselector.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorD1Ev', + '37466290' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator19configureRootLoggerERNS_7helpers10PropertiesERSt10shared_ptrINS_3spi16LoggerRepositoryEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4290270' + 'type' => '33743043' + }, + '1' => { + 'name' => 'props', + 'type' => '575812' + }, + '2' => { + 'name' => 'hierarchy', + 'type' => '37484536' } }, - 'ShortName' => 'RepositorySelector', - 'Virt' => 1 + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'configureRootLogger', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '239' }, - '23079511' => { - 'Artificial' => 1, - 'Class' => '4503848', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEED1Ev', + '37466327' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator21parseCatsAndRenderersERNS_7helpers10PropertiesERSt10shared_ptrINS_3spi16LoggerRepositoryEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4508709' + 'type' => '33743043' + }, + '1' => { + 'name' => 'props', + 'type' => '575812' + }, + '2' => { + 'name' => 'hierarchy', + 'type' => '37484536' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseCatsAndRenderers', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '269' }, - '23079512' => { - 'Artificial' => 1, - 'Class' => '407466', - 'Destructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerD1Ev', + '37466365' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator24parseAdditivityForLoggerERNS_7helpers10PropertiesERSt10shared_ptrINS_6LoggerEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4641332' + 'type' => '33743043' + }, + '1' => { + 'name' => 'props', + 'type' => '575812' + }, + '2' => { + 'name' => 'cat', + 'type' => '18750555' + }, + '3' => { + 'name' => 'loggerName', + 'type' => '210597' } }, - 'ShortName' => 'ErrorHandler', - 'Virt' => 1 + 'Protected' => 1, + 'Return' => '174077', + 'ShortName' => 'parseAdditivityForLogger', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '307' }, - '23079514' => { - 'Class' => '836407', - 'Destructor' => 1, - 'Header' => 'file.h', - 'Line' => '99', - 'MnglName' => '_ZN7log4cxx4FileD1Ev', + '37466412' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11parseLoggerERNS_7helpers10PropertiesERSt10shared_ptrINS_6LoggerEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESF_SF_b', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4730186' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '136' - }, - '23079515' => { - 'Artificial' => 1, - 'Class' => '4967526', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976549' + 'type' => '33743043' + }, + '1' => { + 'name' => 'props', + 'type' => '575812' + }, + '2' => { + 'name' => 'logger', + 'type' => '18750555' + }, + '3' => { + 'name' => 'p3', + 'type' => '210597' + }, + '4' => { + 'name' => 'loggerName', + 'type' => '210597' + }, + '5' => { + 'name' => 'value', + 'type' => '210597' + }, + '6' => { + 'name' => 'additivity', + 'offset' => '0', + 'type' => '174077' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseLogger', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '337' }, - '23079517' => { - 'Artificial' => 1, - 'Class' => '5375646', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEED1Ev', + '37466470' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator13parseAppenderERNS_7helpers10PropertiesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '5380071' + 'type' => '33743043' + }, + '1' => { + 'name' => 'props', + 'type' => '575812' + }, + '2' => { + 'name' => 'appenderName', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '946694', + 'ShortName' => 'parseAppender', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '420' }, - '23079518' => { - 'Artificial' => 1, - 'Class' => '5463903', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEED1Ev', + '37466512' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11registryPutERKSt10shared_ptrINS_8AppenderEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '5468073' + 'type' => '33743043' + }, + '1' => { + 'name' => 'appender', + 'type' => '3129701' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'registryPut', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '537' }, - '23079520' => { - 'Artificial' => 1, - 'Class' => '5576920', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEED1Ev', + '37466545' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator11registryGetERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '5581330' + 'type' => '33743043' + }, + '1' => { + 'name' => 'name', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'Return' => '946694', + 'ShortName' => 'registryGet', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '542' }, - '23079521' => { - 'Artificial' => 1, - 'Class' => '5676229', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEED1Ev', + '37466660' => { + 'Class' => '5660980', + 'Data' => 1, + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator4pdogE', + 'Private' => 1, + 'Return' => '37480974', + 'ShortName' => 'pdog', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '73' + }, + '37466695' => { + 'Data' => 1, + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx7classes32PropertyConfiguratorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'PropertyConfiguratorRegistration', + 'Source' => 'propertyconfigurator.cpp' + }, + '37467707' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7rolling16TriggeringPolicyENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '5680991' + 'name' => 'incoming', + 'type' => '1937382' } }, - 'ShortName' => 'WideLife' + 'Return' => '37348040', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5658455' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '23079524' => { - 'Artificial' => 1, - 'Class' => '6056799', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEED1Ev', + '37467751' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7rolling13RollingPolicyENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '6060547' + 'name' => 'incoming', + 'type' => '1937382' } }, - 'ShortName' => 'WideLife' + 'Return' => '37345597', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5658321' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '23079525' => { - 'Artificial' => 1, - 'Class' => '6291291', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEED1Ev', + '37467795' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7rolling19RollingFileAppenderENS_8AppenderELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '6299685' + 'name' => 'incoming', + 'type' => '955003' } }, - 'ShortName' => 'WideLife' + 'Return' => '37337329', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5657945' + }, + '1' => { + 'key' => 'Type', + 'type' => '567947' + } + } }, - '23079526' => { - 'Artificial' => 1, - 'Class' => '6294384', - 'Destructor' => 1, - 'Header' => 'rollingpolicy.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyD1Ev', + '37467839' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_6LayoutENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '6498579' + 'name' => 'incoming', + 'type' => '1937382' } }, - 'ShortName' => 'RollingPolicy', - 'Virt' => 1 + 'Return' => '1303626', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '1381112' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '23079527' => { - 'Artificial' => 1, - 'Class' => '6574897', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEED1Ev', + '37467883' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_8AppenderENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '6577056' + 'name' => 'incoming', + 'type' => '1937382' } }, - 'ShortName' => 'WideLife' + 'Return' => '871963', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '567947' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '23079528' => { - 'Artificial' => 1, - 'Class' => '6574137', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEED1Ev', + '37467927' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3spi13LoggerFactoryENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '6576791' + 'name' => 'incoming', + 'type' => '1937382' } }, - 'ShortName' => 'WideLife' + 'Return' => '3044559', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '565893' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '23079529' => { - 'Artificial' => 1, - 'Class' => '6675615', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEED1Ev', + '37486193' => { + 'Class' => '5657945', + 'Constructor' => 1, + 'Header' => 'rollingfileappender.h', + 'Line' => '90', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6679823' + 'type' => '37482507' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RollingFileAppender', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '72' }, - '23079530' => { - 'Artificial' => 1, - 'Class' => '6796981', + '37486235' => { 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEED1Ev', + 'Header' => 'stringtokenizer.h', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizerD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '6802765' + 'type' => '37476454' } - }, - 'ShortName' => 'WideLife' + } }, - '23079532' => { - 'Artificial' => 1, - 'Class' => '7064120', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEED1Ev', + '37486262' => { + 'Constructor' => 1, + 'Header' => 'stringtokenizer.h', + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizerC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7071999' + 'type' => '37476454' + }, + '1' => { + 'name' => 'str', + 'type' => '210597' + }, + '2' => { + 'name' => 'delim', + 'type' => '210597' } - }, - 'ShortName' => 'WideLife' + } }, - '23079533' => { - 'Artificial' => 1, - 'Class' => '7063354', + '37486486' => { 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEED1Ev', + 'Header' => 'properties.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7helpers10PropertiesD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7071516' + 'type' => '36347585' } - }, - 'ShortName' => 'WideLife' + } }, - '23079534' => { - 'Artificial' => 1, - 'Class' => '1149751', - 'Destructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryD1Ev', + '37486513' => { + 'Constructor' => 1, + 'Header' => 'fileinputstream.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC1ERKNS_4FileE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7331725' + 'type' => '13864893' + }, + '1' => { + 'name' => 'aFile', + 'type' => '575822' } - }, - 'ShortName' => 'LoggerRepository', - 'Virt' => 1 + } }, - '23079536' => { - 'Artificial' => 1, - 'Class' => '7416909', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEED1Ev', + '37486552' => { + 'Constructor' => 1, + 'Header' => 'properties.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers10PropertiesC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7421983' + 'type' => '36347585' } - }, - 'ShortName' => 'WideLife' + } }, - '23079538' => { + '37490427' => { 'Artificial' => 1, - 'Class' => '7591208', + 'Class' => '37465352', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEED1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx16PropertyWatchdogD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7595104' + 'type' => '37480979' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertyWatchdog', + 'Source' => 'propertyconfigurator.cpp', + 'Virt' => 1 }, - '23079539' => { + '37490428' => { 'Artificial' => 1, - 'Class' => '7714974', + 'Class' => '37465352', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEED1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx16PropertyWatchdogD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716735' + 'type' => '37480979' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertyWatchdog', + 'Source' => 'propertyconfigurator.cpp', + 'Virt' => 1 }, - '23079541' => { + '37490574' => { 'Artificial' => 1, - 'Class' => '7788283', + 'Class' => '37465352', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEED1Ev', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx16PropertyWatchdogD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791247' + 'type' => '37480979' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertyWatchdog', + 'Source' => 'propertyconfigurator.cpp', + 'Virt' => 1 }, - '23079542' => { + '37563923' => { 'Artificial' => 1, - 'Class' => '7871014', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA18_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872730' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '11524945' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '11524945' + } + } }, - '23079543' => { + '37563924' => { 'Artificial' => 1, - 'Class' => '7944099', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA18_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7946576' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '11524945' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '11524945' + } + } }, - '23079545' => { + '37564289' => { 'Artificial' => 1, - 'Class' => '8062891', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA14_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068308' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '9975533' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '9975533' + } + } }, - '23079546' => { + '37564290' => { 'Artificial' => 1, - 'Class' => '8256592', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA14_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260056' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '9975533' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '9975533' + } + } }, - '23079547' => { + '37564427' => { 'Artificial' => 1, - 'Class' => '8369341', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA5_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373220' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '9975507' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '9975507' + } + } }, - '23079548' => { + '37564428' => { 'Artificial' => 1, - 'Class' => '8368579', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA5_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373112' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '9975507' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '9975507' + } + } }, - '23079549' => { + '37564764' => { 'Artificial' => 1, - 'Class' => '8534185', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA17_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538419' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '37482013' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '37482013' + } + } }, - '23079550' => { + '37564765' => { 'Artificial' => 1, - 'Class' => '8636364', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA17_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640340' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '37482013' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '37482013' + } + } }, - '23079551' => { + '37564902' => { 'Artificial' => 1, - 'Class' => '8762643', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA19_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767008' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '33742792' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '33742792' + } + } }, - '23079552' => { + '37564903' => { 'Artificial' => 1, - 'Class' => '8870208', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA19_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8874404' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '33742792' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '33742792' + } + } }, - '23079553' => { + '37565123' => { 'Artificial' => 1, - 'Class' => '8969500', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA15_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8973195' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '21212615' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '21212615' + } + } }, - '23079554' => { + '37565124' => { 'Artificial' => 1, - 'Class' => '9079449', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA15_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9083804' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '21212615' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '21212615' + } + } }, - '23079555' => { + '37566634' => { 'Artificial' => 1, - 'Class' => '9234290', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA16_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244059' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '11940412' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '11940412' + } + } }, - '23079556' => { + '37566635' => { 'Artificial' => 1, - 'Class' => '9233545', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA16_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243997' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '11940412' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '11940412' + } + } }, - '23079557' => { + '37567570' => { 'Artificial' => 1, - 'Class' => '9232800', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA12_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243935' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '6657158' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '6657158' + } + } }, - '23079558' => { + '37567571' => { 'Artificial' => 1, - 'Class' => '9232010', - 'Destructor' => 1, + 'Class' => '3115821', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA12_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243873' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '6657158' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '6657158' + } + } }, - '23079559' => { + '37568634' => { 'Artificial' => 1, - 'Class' => '9231654', + 'Class' => '37457020', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243811' + 'type' => '37481005' } }, 'ShortName' => 'WideLife' }, - '23079560' => { + '37568635' => { 'Artificial' => 1, - 'Class' => '9231298', + 'Class' => '37457020', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243749' + 'type' => '37481005' } }, 'ShortName' => 'WideLife' }, - '23079561' => { + '37568777' => { 'Artificial' => 1, - 'Class' => '9230942', - 'Destructor' => 1, + 'Class' => '37457020', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243687' + 'type' => '37481005' } }, 'ShortName' => 'WideLife' }, - '23079562' => { + '37568778' => { 'Artificial' => 1, - 'Class' => '9230586', - 'Destructor' => 1, + 'Class' => '37457020', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243625' + 'type' => '37481005' } }, 'ShortName' => 'WideLife' }, - '23079563' => { - 'Artificial' => 1, - 'Class' => '9230230', + '37841620' => { + 'Class' => '5660980', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEED1Ev', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243563' + 'type' => '33743043' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertyConfigurator', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '82', + 'Virt' => 1 }, - '23079564' => { - 'Artificial' => 1, - 'Class' => '9229874', + '37841720' => { + 'Class' => '5660980', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEED1Ev', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243501' + 'type' => '33743043' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertyConfigurator', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '82', + 'Virt' => 1 }, - '23079565' => { - 'Artificial' => 1, - 'Class' => '9229518', + '37842872' => { + 'Class' => '5660980', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEED1Ev', + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243439' + 'type' => '33743043' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertyConfigurator', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '82', + 'Virt' => 1 }, - '23079566' => { - 'Artificial' => 1, - 'Class' => '9229162', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEED1Ev', + '37845337' => { + 'Class' => '5660980', + 'Constructor' => 1, + 'Header' => 'propertyconfigurator.h', + 'MnglName' => '_ZN7log4cxx20PropertyConfiguratorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243377' + 'type' => '33743043' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertyConfigurator', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '77' }, - '23079567' => { + '37846654' => { 'Artificial' => 1, - 'Class' => '9228806', + 'Class' => '3118759', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'configurator.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEED1Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243315' + 'type' => '7412106' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'Configurator', + 'Virt' => 1 }, - '23079568' => { + '37846655' => { 'Artificial' => 1, - 'Class' => '9228450', + 'Class' => '3118759', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'configurator.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEED1Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243253' + 'type' => '7412106' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'Configurator', + 'Virt' => 1 }, - '23079569' => { + '37850206' => { 'Artificial' => 1, - 'Class' => '9227210', + 'Class' => '5660989', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertyconfigurator.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9243146' - } - }, - 'ShortName' => 'WideLife' - }, - '23079571' => { - 'Class' => '9350773', - 'Destructor' => 1, - 'Header' => 'locale.h', - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers6LocaleD1Ev', + 'Line' => '102', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9351630' + 'type' => '37484806' } }, - 'ShortName' => 'Locale', - 'Source' => 'locale.cpp', - 'SourceLine' => '62' + 'ShortName' => 'ClazzPropertyConfigurator', + 'Virt' => 1 }, - '23079572' => { + '37850207' => { 'Artificial' => 1, - 'Class' => '9425144', + 'Class' => '5660989', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertyconfigurator.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEED1Ev', + 'Line' => '102', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425610' + 'type' => '37484806' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertyConfigurator', + 'Virt' => 1 }, - '23079573' => { + '37850353' => { 'Artificial' => 1, - 'Class' => '9524830', + 'Class' => '5660989', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertyconfigurator.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEED1Ev', + 'Line' => '102', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9529935' + 'type' => '37484806' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertyConfigurator', + 'Virt' => 1 }, - '23079575' => { + '37850448' => { 'Artificial' => 1, - 'Class' => '9677060', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '5660989', + 'Constructor' => 1, + 'Header' => 'propertyconfigurator.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEED1Ev', + 'Line' => '102', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9686022' + 'type' => '37484806' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertyConfigurator' }, - '23079576' => { + '37850449' => { 'Artificial' => 1, - 'Class' => '9948965', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '5660989', + 'Constructor' => 1, + 'Header' => 'propertyconfigurator.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEED1Ev', + 'Line' => '102', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953157' + 'type' => '37484806' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertyConfigurator' }, - '23079577' => { - 'Artificial' => 1, - 'Class' => '10058446', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEED1Ev', + '38046661' => { + 'Class' => '558708', + 'Const' => 1, + 'Header' => 'resourcebundle.h', + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10062285' + 'type' => '38051621' } }, - 'ShortName' => 'WideLife' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'resourcebundle.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '2' }, - '23079578' => { - 'Artificial' => 1, - 'Class' => '10208425', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEED1Ev', + '38046698' => { + 'Class' => '558708', + 'Header' => 'resourcebundle.h', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'resourcebundle.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '38046772' => { + 'Class' => '558708', + 'Const' => 1, + 'Header' => 'resourcebundle.h', + 'InLine' => 2, + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10215608' + 'type' => '38051621' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '23079580' => { - 'Artificial' => 1, - 'Class' => '10407495', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEED1Ev', + '38046814' => { + 'Class' => '558708', + 'Const' => 1, + 'Header' => 'resourcebundle.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10411013' + 'type' => '38051621' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '23079581' => { - 'Artificial' => 1, - 'Class' => '10502617', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEED1Ev', + '38047825' => { + 'Class' => '38047712', + 'Const' => 1, + 'Header' => 'propertyresourcebundle.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundle7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10504509' + 'type' => '38050469' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '23079582' => { - 'Class' => '405355', - 'Destructor' => 1, - 'Header' => 'loglog.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers6LogLogD1Ev', + '38047928' => { + 'Class' => '38047695', + 'Header' => 'propertyresourcebundle.h', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'propertyresourcebundle.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '38047944' => { + 'Class' => '38047695', + 'Header' => 'propertyresourcebundle.h', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'propertyresourcebundle.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '38047960' => { + 'Class' => '38047695', + 'Const' => 1, + 'Header' => 'propertyresourcebundle.h', + 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10504208' + 'type' => '38050449' } }, - 'ShortName' => 'LogLog', - 'Source' => 'loglog.cpp', - 'SourceLine' => '60' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'propertyresourcebundle.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '2' }, - '23079584' => { - 'Artificial' => 1, - 'Class' => '10635454', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEED1Ev', + '38047997' => { + 'Class' => '38047695', + 'Const' => 1, + 'Header' => 'propertyresourcebundle.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10640129' + 'type' => '38050449' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '23079585' => { - 'Artificial' => 1, - 'Class' => '10912549', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEED1Ev', + '38048039' => { + 'Class' => '38047695', + 'Const' => 1, + 'Header' => 'propertyresourcebundle.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10915700' + 'type' => '38050449' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '23079586' => { - 'Artificial' => 1, - 'Class' => '11009482', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEED1Ev', + '38048112' => { + 'Class' => '38047695', + 'Const' => 1, + 'Header' => 'propertyresourcebundle.h', + 'MnglName' => '_ZNK7log4cxx7helpers22PropertyResourceBundle9getStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11014643' + 'type' => '38050449' + }, + '1' => { + 'name' => 'key', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getString', + 'Source' => 'propertyresourcebundle.cpp', + 'SourceLine' => '36', + 'Virt' => 1, + 'VirtPos' => '5' }, - '23079587' => { - 'Class' => '650212', - 'Destructor' => 1, - 'Header' => 'mdc.h', - 'Line' => '60', - 'MnglName' => '_ZN7log4cxx3MDCD1Ev', + '38049381' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes34PropertyResourceBundleRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'PropertyResourceBundleRegistration', + 'Source' => 'propertyresourcebundle.cpp' + }, + '38051732' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '104', + 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11157448' + 'type' => '11525597' + }, + '1' => { + 'name' => 'key', + 'type' => '210597' } - }, - 'ShortName' => 'MDC', - 'Source' => 'mdc.cpp', - 'SourceLine' => '37' + } }, - '23079591' => { - 'Class' => '11311328', + '38052744' => { + 'Artificial' => 1, + 'Class' => '38047695', 'Destructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '585', - 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferD1Ev', + 'Header' => 'propertyresourcebundle.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313854' + 'type' => '38050429' } }, - 'ShortName' => 'MessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '403' + 'ShortName' => 'PropertyResourceBundle', + 'Virt' => 1 }, - '23079592' => { - 'Class' => '11310329', + '38052745' => { + 'Artificial' => 1, + 'Class' => '38047695', 'Destructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '414', - 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferD1Ev', + 'Header' => 'propertyresourcebundle.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313519' + 'type' => '38050429' } }, - 'ShortName' => 'WideMessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '241' + 'ShortName' => 'PropertyResourceBundle', + 'Virt' => 1 }, - '23079593' => { - 'Class' => '11309345', + '38053587' => { + 'Artificial' => 1, + 'Class' => '38047695', 'Destructor' => 1, - 'Header' => 'messagebuffer.h', - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferD1Ev', + 'Header' => 'propertyresourcebundle.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11313156' + 'type' => '38050429' } }, - 'ShortName' => 'CharMessageBuffer', - 'Source' => 'messagebuffer.cpp', - 'SourceLine' => '97' + 'ShortName' => 'PropertyResourceBundle', + 'Virt' => 1 }, - '23079594' => { + '38057956' => { 'Artificial' => 1, - 'Class' => '11522056', + 'Class' => '38047346', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11525724' + 'type' => '38049968' } }, 'ShortName' => 'WideLife' }, - '23079595' => { + '38057957' => { 'Artificial' => 1, - 'Class' => '11648036', + 'Class' => '38047346', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11652206' + 'type' => '38049968' } }, 'ShortName' => 'WideLife' }, - '23079596' => { + '38058097' => { 'Artificial' => 1, - 'Class' => '11765058', - 'Destructor' => 1, + 'Class' => '38047346', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769760' + 'type' => '38049968' } }, 'ShortName' => 'WideLife' }, - '23079597' => { + '38058098' => { 'Artificial' => 1, - 'Class' => '11764701', - 'Destructor' => 1, + 'Class' => '38047346', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769318' + 'type' => '38049968' } }, 'ShortName' => 'WideLife' }, - '23079598' => { - 'Artificial' => 1, - 'Class' => '11764344', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEED1Ev', + '38062157' => { + 'Class' => '38047695', + 'Constructor' => 1, + 'Header' => 'propertyresourcebundle.h', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleC2ESt10shared_ptrINS0_11InputStreamEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769255' + 'type' => '38050429' + }, + '1' => { + 'name' => 'inStream', + 'type' => '5648504' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertyResourceBundle', + 'Source' => 'propertyresourcebundle.cpp', + 'SourceLine' => '31' }, - '23079599' => { + '38064021' => { 'Artificial' => 1, - 'Class' => '11763987', + 'Class' => '558708', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'resourcebundle.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEED1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11769192' + 'type' => '38063981' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ResourceBundle', + 'Virt' => 1 }, - '23079600' => { + '38064022' => { 'Artificial' => 1, - 'Class' => '11763227', + 'Class' => '558708', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'resourcebundle.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEED1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11768733' + 'type' => '38063981' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ResourceBundle', + 'Virt' => 1 }, - '23079601' => { + '38064804' => { 'Artificial' => 1, - 'Class' => '11916053', + 'Class' => '558708', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'resourcebundle.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEED1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '11919812' + 'type' => '38063981' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ResourceBundle', + 'Virt' => 1 }, - '23079602' => { - 'Class' => '649599', - 'Destructor' => 1, - 'Header' => 'ndc.h', - 'Line' => '100', - 'MnglName' => '_ZN7log4cxx3NDCD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12035700' - } - }, - 'ShortName' => 'NDC', - 'Source' => 'ndc.cpp', - 'SourceLine' => '30' - }, - '23079603' => { - 'Artificial' => 1, - 'Class' => '12169566', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12174126' - } - }, - 'ShortName' => 'WideLife' - }, - '23079604' => { - 'Artificial' => 1, - 'Class' => '12306429', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12310096' - } - }, - 'ShortName' => 'WideLife' - }, - '23079605' => { - 'Artificial' => 1, - 'Class' => '12461328', - 'Destructor' => 1, - 'Header' => 'odbcappender_priv.h', - 'InLine' => 1, - 'Line' => '118', - 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPriv11DataBindingD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12466896' - } - }, - 'ShortName' => 'DataBinding' - }, - '23079606' => { - 'Artificial' => 1, - 'Class' => '12459309', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12467625' - } - }, - 'ShortName' => 'WideLife' - }, - '23079608' => { + '38065549' => { 'Artificial' => 1, - 'Class' => '12654538', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '12657742' - } - }, - 'ShortName' => 'WideLife' - }, - '23079609' => { - 'Artificial' => 1, - 'Class' => '13041530', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '558708', + 'Constructor' => 1, + 'Header' => 'resourcebundle.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEED1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13043342' + 'type' => '38063981' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ResourceBundle' }, - '23079611' => { + '38065550' => { 'Artificial' => 1, - 'Class' => '13114827', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '558708', + 'Constructor' => 1, + 'Header' => 'resourcebundle.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEED1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundleC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13117127' + 'type' => '38063981' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ResourceBundle' }, - '23079612' => { + '38067769' => { 'Artificial' => 1, - 'Class' => '13213314', + 'Class' => '38047712', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertyresourcebundle.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEED1Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '13215701' + 'type' => '38050459' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertyResourceBundle', + 'Virt' => 1 }, - '23079614' => { + '38067770' => { 'Artificial' => 1, - 'Class' => '13378749', + 'Class' => '38047712', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertyresourcebundle.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '13384924' - } - }, - 'ShortName' => 'WideLife' - }, - '23079615' => { - 'Class' => '62082', - 'Destructor' => 1, - 'Header' => 'pool.h', - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers4PoolD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14006506' - } - }, - 'ShortName' => 'Pool', - 'Source' => 'pool.cpp', - 'SourceLine' => '48' - }, - '23079616' => { - 'Class' => '832974', - 'Destructor' => 1, - 'Header' => 'properties.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7helpers10PropertiesD1Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14094232' + 'type' => '38050459' } }, - 'ShortName' => 'Properties', - 'Source' => 'properties.cpp', - 'SourceLine' => '402' + 'ShortName' => 'ClazzPropertyResourceBundle', + 'Virt' => 1 }, - '23079617' => { + '38067914' => { 'Artificial' => 1, - 'Class' => '14278020', + 'Class' => '38047712', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertyresourcebundle.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEED1Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14282406' + 'type' => '38050459' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertyResourceBundle', + 'Virt' => 1 }, - '23079618' => { + '38068008' => { 'Artificial' => 1, - 'Class' => '14542055', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '38047712', + 'Constructor' => 1, + 'Header' => 'propertyresourcebundle.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEED1Ev', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '14552831' + 'type' => '38050459' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzPropertyResourceBundle' }, - '23079619' => { + '38068009' => { 'Artificial' => 1, - 'Class' => '2699638', - 'Destructor' => 1, - 'Header' => 'configurator.h', + 'Class' => '38047712', + 'Constructor' => 1, + 'Header' => 'propertyresourcebundle.h', 'InLine' => 1, 'Line' => '38', - 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorD1Ev', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2701296' + 'type' => '38050459' } }, - 'ShortName' => 'Configurator', - 'Virt' => 1 + 'ShortName' => 'ClazzPropertyResourceBundle' }, - '23079620' => { - 'Artificial' => 1, - 'Class' => '15036533', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEED1Ev', + '3830782' => { + 'Class' => '3830668', + 'Const' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStream7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834366' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3830840' => { + 'Class' => '3830598', + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '32', + 'Static' => 1 + }, + '3830856' => { + 'Class' => '3830598', + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '32', + 'Static' => 1 + }, + '3830872' => { + 'Class' => '3830598', + 'Const' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834326' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '32', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '3830909' => { + 'Class' => '3830598', + 'Const' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'InLine' => 2, + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834326' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '3830951' => { + 'Class' => '3830598', + 'Const' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'InLine' => 2, + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834326' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '3831055' => { + 'Class' => '3830598', + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream5closeERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834336' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '42', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '3831094' => { + 'Class' => '3830598', + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream5flushERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834336' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '46', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '3831133' => { + 'Class' => '3830598', + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834336' + }, + '1' => { + 'name' => 'buf', + 'type' => '210612' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '50', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '3831177' => { + 'Class' => '3830598', + 'Const' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZNK7log4cxx7helpers21ByteArrayOutputStream11toByteArrayEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834326' + } + }, + 'Return' => '3547258', + 'ShortName' => 'toByteArray', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '58' + }, + '3832206' => { + 'Class' => '3116491', + 'Header' => 'outputstream.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStream14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'outputstream.cpp', + 'SourceLine' => '25', + 'Static' => 1 + }, + '3832285' => { + 'Class' => '3116491', + 'Const' => 1, + 'Header' => 'outputstream.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx7helpers12OutputStream4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3853772' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '3832748' => { + 'Data' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7classes33ByteArrayOutputStreamRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ByteArrayOutputStreamRegistration', + 'Source' => 'bytearrayoutputstream.cpp' + }, + '3835487' => { + 'Class' => '3116491', + 'Destructor' => 1, + 'Header' => 'outputstream.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3835482' + } + }, + 'Protected' => 1, + 'ShortName' => 'OutputStream', + 'Source' => 'outputstream.cpp', + 'SourceLine' => '31', + 'Virt' => 1 + }, + '3835488' => { + 'Class' => '3116491', + 'Destructor' => 1, + 'Header' => 'outputstream.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3835482' + } + }, + 'Protected' => 1, + 'ShortName' => 'OutputStream', + 'Source' => 'outputstream.cpp', + 'SourceLine' => '31', + 'Virt' => 1 + }, + '3835514' => { + 'Class' => '3116491', + 'Constructor' => 1, + 'Header' => 'outputstream.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3835482' + } + }, + 'Protected' => 1, + 'ShortName' => 'OutputStream', + 'Source' => 'outputstream.cpp', + 'SourceLine' => '27' + }, + '3835515' => { + 'Class' => '3116491', + 'Constructor' => 1, + 'Header' => 'outputstream.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers12OutputStreamC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3835482' + } + }, + 'Protected' => 1, + 'ShortName' => 'OutputStream', + 'Source' => 'outputstream.cpp', + 'SourceLine' => '27' + }, + '38404856' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3spi13OptionHandlerENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '15038814' + 'name' => 'incoming', + 'type' => '1937382' } }, - 'ShortName' => 'WideLife' + 'Return' => '38345228', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '566161' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '23079621' => { + '38454741' => { 'Artificial' => 1, - 'Class' => '14545351', + 'Class' => '5659045', 'Destructor' => 1, 'Header' => 'propertysetter.h', 'InLine' => 1, 'Line' => '62', - 'MnglName' => '_ZN7log4cxx6config14PropertySetterD1Ev', + 'MnglName' => '_ZN7log4cxx6config14PropertySetterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '15132089' + 'type' => '38405184' } }, 'ShortName' => 'PropertySetter' }, - '23079622' => { - 'Artificial' => 1, - 'Class' => '15231870', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15233628' - } - }, - 'ShortName' => 'WideLife' - }, - '23079623' => { - 'Artificial' => 1, - 'Class' => '15368595', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15372328' - } - }, - 'ShortName' => 'WideLife' - }, - '23079624' => { - 'Artificial' => 1, - 'Class' => '15477748', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15479856' - } - }, - 'ShortName' => 'WideLife' - }, - '23079625' => { - 'Artificial' => 1, - 'Class' => '15766329', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '15777019' - } - }, - 'ShortName' => 'WideLife' - }, - '23079626' => { - 'Artificial' => 1, - 'Class' => '16112027', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16114614' - } - }, - 'ShortName' => 'WideLife' - }, - '23079627' => { + '38454742' => { 'Artificial' => 1, - 'Class' => '16276108', + 'Class' => '5659045', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'propertysetter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEED1Ev', + 'Line' => '62', + 'MnglName' => '_ZN7log4cxx6config14PropertySetterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16284333' + 'type' => '38405184' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertySetter' }, - '23079629' => { - 'Artificial' => 1, - 'Class' => '16418202', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEED1Ev', + '38454804' => { + 'Class' => '5659045', + 'Constructor' => 1, + 'Header' => 'propertysetter.h', + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx6config14PropertySetterC2ERKSt10shared_ptrINS_7helpers6ObjectEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16421276' + 'type' => '38405184' + }, + '1' => { + 'name' => 'obj1', + 'type' => '575817' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PropertySetter', + 'Source' => 'propertysetter.cpp', + 'SourceLine' => '34' }, - '23079630' => { - 'Artificial' => 1, - 'Class' => '16587397', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEED1Ev', + '3846178' => { + 'Artificial' => 1, + 'Class' => '3831318', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3833905' + } + }, + 'ShortName' => 'WideLife' + }, + '3846179' => { + 'Artificial' => 1, + 'Class' => '3831318', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3833905' + } + }, + 'ShortName' => 'WideLife' + }, + '3846321' => { + 'Artificial' => 1, + 'Class' => '3831318', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3833905' + } + }, + 'ShortName' => 'WideLife' + }, + '3846322' => { + 'Artificial' => 1, + 'Class' => '3831318', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3833905' + } + }, + 'ShortName' => 'WideLife' + }, + '3849864' => { + 'Class' => '3830598', + 'Destructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834336' + } + }, + 'ShortName' => 'ByteArrayOutputStream', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '38', + 'Virt' => 1 + }, + '3849865' => { + 'Class' => '3830598', + 'Destructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834336' + } + }, + 'ShortName' => 'ByteArrayOutputStream', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '38', + 'Virt' => 1 + }, + '3849960' => { + 'Class' => '3830598', + 'Destructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834336' + } + }, + 'ShortName' => 'ByteArrayOutputStream', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '38', + 'Virt' => 1 + }, + '3851058' => { + 'Class' => '3830598', + 'Constructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834336' + } + }, + 'ShortName' => 'ByteArrayOutputStream', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '34' + }, + '3851059' => { + 'Class' => '3830598', + 'Constructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStreamC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834336' + } + }, + 'ShortName' => 'ByteArrayOutputStream', + 'Source' => 'bytearrayoutputstream.cpp', + 'SourceLine' => '34' + }, + '3853503' => { + 'Artificial' => 1, + 'Class' => '3830668', + 'Destructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834356' + } + }, + 'ShortName' => 'ClazzByteArrayOutputStream', + 'Virt' => 1 + }, + '3853504' => { + 'Artificial' => 1, + 'Class' => '3830668', + 'Destructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834356' + } + }, + 'ShortName' => 'ClazzByteArrayOutputStream', + 'Virt' => 1 + }, + '3853649' => { + 'Artificial' => 1, + 'Class' => '3830668', + 'Destructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834356' + } + }, + 'ShortName' => 'ClazzByteArrayOutputStream', + 'Virt' => 1 + }, + '3853744' => { + 'Artificial' => 1, + 'Class' => '3830668', + 'Constructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834356' + } + }, + 'ShortName' => 'ClazzByteArrayOutputStream' + }, + '3853745' => { + 'Artificial' => 1, + 'Class' => '3830668', + 'Constructor' => 1, + 'Header' => 'bytearrayoutputstream.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3834356' + } + }, + 'ShortName' => 'ClazzByteArrayOutputStream' + }, + '38611283' => { + 'Class' => '19984687', + 'Header' => 'reader.h', + 'MnglName' => '_ZN7log4cxx7helpers6Reader13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'reader.cpp', + 'SourceLine' => '23', + 'Static' => 1 + }, + '38611299' => { + 'Class' => '19984687', + 'Const' => 1, + 'Header' => 'reader.h', + 'MnglName' => '_ZNK7log4cxx7helpers6Reader8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16591564' + 'type' => '20011083' } }, - 'ShortName' => 'WideLife' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'reader.cpp', + 'SourceLine' => '23', + 'Virt' => 1, + 'VirtPos' => '2' }, - '23079632' => { - 'Artificial' => 1, - 'Class' => '16919987', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEED1Ev', + '38611378' => { + 'Class' => '19984687', + 'Const' => 1, + 'Header' => 'reader.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers6Reader10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16923301' + 'type' => '20011083' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '23079633' => { - 'Artificial' => 1, - 'Class' => '16999454', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEED1Ev', + '38611484' => { + 'Class' => '19984687', + 'Header' => 'reader.h', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7helpers6Reader5closeERNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17002913' + 'type' => '19988758' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'close', + 'VirtPos' => '5' }, - '23079634' => { - 'Artificial' => 1, - 'Class' => '17102520', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEED1Ev', + '38611523' => { + 'Class' => '19984687', + 'Header' => 'reader.h', + 'Line' => '60', + 'MnglName' => '_ZN7log4cxx7helpers6Reader4readB5cxx11ERNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17110035' + 'type' => '19988758' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'PureVirt' => 1, + 'Return' => '209661', + 'ShortName' => 'read', + 'VirtPos' => '6' + }, + '38612504' => { + 'Data' => 1, + 'Line' => '23', + 'MnglName' => '_ZN7log4cxx7classes18ReaderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ReaderRegistration', + 'Source' => 'reader.cpp' }, - '23079635' => { + '38616756' => { 'Artificial' => 1, - 'Class' => '17101754', + 'Class' => '38610738', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17109927' + 'type' => '38612687' } }, 'ShortName' => 'WideLife' }, - '23079636' => { - 'Artificial' => 1, - 'Class' => '9238623', - 'Destructor' => 1, - 'Header' => 'triggeringeventevaluator.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17110173' - } - }, - 'ShortName' => 'TriggeringEventEvaluator', - 'Virt' => 1 - }, - '23079640' => { + '38616757' => { 'Artificial' => 1, - 'Class' => '17581769', + 'Class' => '38610738', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17585965' + 'type' => '38612687' } }, 'ShortName' => 'WideLife' }, - '23079642' => { - 'Class' => '14540867', - 'Destructor' => 1, - 'Header' => 'stringtokenizer.h', - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizerD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '17672658' - } - }, - 'ShortName' => 'StringTokenizer', - 'Source' => 'stringtokenizer.cpp', - 'SourceLine' => '42' - }, - '23079643' => { + '38616898' => { 'Artificial' => 1, - 'Class' => '17841293', - 'Destructor' => 1, + 'Class' => '38610738', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17843289' + 'type' => '38612687' } }, 'ShortName' => 'WideLife' }, - '23079644' => { + '38616899' => { 'Artificial' => 1, - 'Class' => '17920903', - 'Destructor' => 1, + 'Class' => '38610738', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17922899' + 'type' => '38612687' } }, 'ShortName' => 'WideLife' }, - '23079645' => { - 'Class' => '17988084', + '38617276' => { + 'Class' => '19984687', 'Destructor' => 1, - 'Header' => 'threadlocal.h', - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocalD1Ev', + 'Header' => 'reader.h', + 'MnglName' => '_ZN7log4cxx7helpers6ReaderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '17988668' + 'type' => '19988763' } }, - 'ShortName' => 'ThreadLocal', - 'Source' => 'threadlocal.cpp', - 'SourceLine' => '44' + 'Protected' => 1, + 'ShortName' => 'Reader', + 'Source' => 'reader.cpp', + 'SourceLine' => '29', + 'Virt' => 1 }, - '23079646' => { + '38619459' => { 'Artificial' => 1, - 'Class' => '18058133', + 'Class' => '19984696', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'reader.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEED1Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18061800' + 'type' => '38613088' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzReader', + 'Virt' => 1 }, - '23079647' => { + '38619460' => { 'Artificial' => 1, - 'Class' => '18160821', + 'Class' => '19984696', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'reader.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEED1Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18164350' + 'type' => '38613088' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzReader', + 'Virt' => 1 }, - '23079649' => { + '38619604' => { 'Artificial' => 1, - 'Class' => '18298896', + 'Class' => '19984696', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'reader.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEED1Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18303132' + 'type' => '38613088' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzReader', + 'Virt' => 1 }, - '23079650' => { - 'Class' => '648250', - 'Destructor' => 1, - 'Header' => 'threadspecificdata.h', + '38619698' => { + 'Artificial' => 1, + 'Class' => '19984696', + 'Constructor' => 1, + 'Header' => 'reader.h', + 'InLine' => 1, 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificDataD1Ev', + 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18300888' + 'type' => '38613088' } }, - 'ShortName' => 'ThreadSpecificData', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '40' + 'ShortName' => 'ClazzReader' }, - '23079652' => { + '38619699' => { 'Artificial' => 1, - 'Class' => '18543791', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '19984696', + 'Constructor' => 1, + 'Header' => 'reader.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEED1Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Reader11ClazzReaderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18545248' + 'type' => '38613088' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzReader' }, - '23079653' => { - 'Class' => '833040', - 'Destructor' => 1, - 'Header' => 'threadutility.h', - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtilityD1Ev', + '38929604' => { + 'Class' => '38929497', + 'Const' => 1, + 'Header' => 'relativetimedateformat.h', + 'MnglName' => '_ZNK7log4cxx7helpers22RelativeTimeDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '38940803' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'date', + 'type' => '1914488' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ThreadUtility', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '67' + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'relativetimedateformat.cpp', + 'SourceLine' => '29', + 'Virt' => 1, + 'VirtPos' => '5' }, - '23079654' => { + '38942193' => { 'Artificial' => 1, - 'Class' => '18674473', + 'Class' => '38929497', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'relativetimedateformat.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEED1Ev', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18678834' + 'type' => '38940783' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RelativeTimeDateFormat', + 'Virt' => 1 }, - '23079656' => { + '38942194' => { 'Artificial' => 1, - 'Class' => '18952473', + 'Class' => '38929497', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'relativetimedateformat.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEED1Ev', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '18961750' + 'type' => '38940783' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RelativeTimeDateFormat', + 'Virt' => 1 }, - '23079657' => { + '38942344' => { 'Artificial' => 1, - 'Class' => '19209938', + 'Class' => '38929497', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'relativetimedateformat.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEED1Ev', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213510' + 'type' => '38940783' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RelativeTimeDateFormat', + 'Virt' => 1 }, - '23079658' => { - 'Artificial' => 1, - 'Class' => '19208559', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEED1Ev', + '38942601' => { + 'Class' => '38929497', + 'Constructor' => 1, + 'Header' => 'relativetimedateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19213281' + 'type' => '38940783' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RelativeTimeDateFormat', + 'Source' => 'relativetimedateformat.cpp', + 'SourceLine' => '24' }, - '23079659' => { - 'Artificial' => 1, - 'Class' => '19529953', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEED1Ev', + '38942602' => { + 'Class' => '38929497', + 'Constructor' => 1, + 'Header' => 'relativetimedateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers22RelativeTimeDateFormatC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19532559' + 'type' => '38940783' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RelativeTimeDateFormat', + 'Source' => 'relativetimedateformat.cpp', + 'SourceLine' => '24' }, - '23079660' => { - 'Artificial' => 1, - 'Class' => '19595957', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEED1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '19598487' - } - }, - 'ShortName' => 'WideLife' + '39272369' => { + 'Class' => '34964157', + 'Header' => 'relativetimepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'relativetimepatternconverter.cpp', + 'SourceLine' => '29', + 'Static' => 1 }, - '23079661' => { - 'Artificial' => 1, - 'Class' => '19731536', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEED1Ev', + '39272385' => { + 'Class' => '34964157', + 'Header' => 'relativetimepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'relativetimepatternconverter.cpp', + 'SourceLine' => '29', + 'Static' => 1 + }, + '39272401' => { + 'Class' => '34964157', + 'Const' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '19738845' + 'type' => '39284179' } }, - 'ShortName' => 'WideLife' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'relativetimepatternconverter.cpp', + 'SourceLine' => '29', + 'Virt' => 1, + 'VirtPos' => '2' }, - '23079662' => { - 'Artificial' => 1, - 'Class' => '20012826', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEED1Ev', + '39272438' => { + 'Class' => '34964157', + 'Const' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20017671' + 'type' => '39284179' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '23079663' => { - 'Artificial' => 1, - 'Class' => '20162113', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEED1Ev', + '39272480' => { + 'Class' => '34964157', + 'Const' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20167880' + 'type' => '39284179' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '39272584' => { + 'Class' => '34964157', + 'Const' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern28RelativeTimePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39284179' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'relativetimepatternconverter.cpp', + 'SourceLine' => '44', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '39275497' => { + 'Data' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7classes40RelativeTimePatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'RelativeTimePatternConverterRegistration', + 'Source' => 'relativetimepatternconverter.cpp' }, - '23079665' => { + '39288480' => { 'Artificial' => 1, - 'Class' => '20255184', + 'Class' => '34964157', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'relativetimepatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEED1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20256819' + 'type' => '39283838' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'RelativeTimePatternConverter', + 'Virt' => 1 }, - '23079666' => { + '39288481' => { 'Artificial' => 1, - 'Class' => '20347354', + 'Class' => '34964157', 'Destructor' => 1, - 'Header' => 'datagramsocket_priv.h', + 'Header' => 'relativetimepatternconverter.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivD1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20349783' + 'type' => '39283838' } }, - 'ShortName' => 'DatagramSocketPriv' + 'ShortName' => 'RelativeTimePatternConverter', + 'Virt' => 1 }, - '23079667' => { + '39288750' => { 'Artificial' => 1, - 'Class' => '20348552', + 'Class' => '34964157', 'Destructor' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39283838' + } + }, + 'ShortName' => 'RelativeTimePatternConverter', + 'Virt' => 1 + }, + '39295642' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEED1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_28RelativeTimePatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20350946' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '39283668' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '39211304' + } + } + }, + '39295643' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_28RelativeTimePatternConverterEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '39283668' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '39211304' + } + } }, - '23079669' => { + '39296070' => { 'Artificial' => 1, - 'Class' => '20762246', + 'Class' => '39270123', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '20764197' + 'type' => '39283392' } }, 'ShortName' => 'WideLife' }, - '23079670' => { + '39296071' => { 'Artificial' => 1, - 'Class' => '21022416', + 'Class' => '39270123', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21029221' + 'type' => '39283392' } }, 'ShortName' => 'WideLife' }, - '23079672' => { + '39296213' => { 'Artificial' => 1, - 'Class' => '21559968', - 'Destructor' => 1, + 'Class' => '39270123', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21562650' + 'type' => '39283392' } }, 'ShortName' => 'WideLife' }, - '23079673' => { + '39296214' => { 'Artificial' => 1, - 'Class' => '21692147', - 'Destructor' => 1, + 'Class' => '39270123', + 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEED1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21698582' + 'type' => '39283392' } }, 'ShortName' => 'WideLife' }, - '23079675' => { - 'Class' => '21970475', + '39301491' => { + 'Class' => '34964157', + 'Constructor' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39283838' + } + }, + 'ShortName' => 'RelativeTimePatternConverter', + 'Source' => 'relativetimepatternconverter.cpp', + 'SourceLine' => '31' + }, + '39304516' => { + 'Class' => '34964157', + 'Constructor' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39283838' + } + }, + 'ShortName' => 'RelativeTimePatternConverter', + 'Source' => 'relativetimepatternconverter.cpp', + 'SourceLine' => '31' + }, + '39309271' => { + 'Artificial' => 1, + 'Class' => '34964182', 'Destructor' => 1, - 'Header' => 'syslogwriter.h', + 'Header' => 'relativetimepatternconverter.h', + 'InLine' => 1, 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriterD1Ev', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '21971619' + 'type' => '39284334' } }, - 'ShortName' => 'SyslogWriter', - 'Source' => 'syslogwriter.cpp', - 'SourceLine' => '63' + 'ShortName' => 'ClazzRelativeTimePatternConverter', + 'Virt' => 1 + }, + '39309272' => { + 'Artificial' => 1, + 'Class' => '34964182', + 'Destructor' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39284334' + } + }, + 'ShortName' => 'ClazzRelativeTimePatternConverter', + 'Virt' => 1 + }, + '39309417' => { + 'Artificial' => 1, + 'Class' => '34964182', + 'Destructor' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39284334' + } + }, + 'ShortName' => 'ClazzRelativeTimePatternConverter', + 'Virt' => 1 + }, + '39309512' => { + 'Artificial' => 1, + 'Class' => '34964182', + 'Constructor' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39284334' + } + }, + 'ShortName' => 'ClazzRelativeTimePatternConverter' + }, + '39309513' => { + 'Artificial' => 1, + 'Class' => '34964182', + 'Constructor' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39284334' + } + }, + 'ShortName' => 'ClazzRelativeTimePatternConverter' + }, + '39531855' => { + 'Class' => '558708', + 'Header' => 'resourcebundle.h', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'resourcebundle.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '39531992' => { + 'Class' => '558708', + 'Const' => 1, + 'Header' => 'resourcebundle.h', + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle9getStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '38051616' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + } + }, + 'PureVirt' => 1, + 'Return' => '209661', + 'ShortName' => 'getString', + 'VirtPos' => '5' + }, + '39532034' => { + 'Class' => '558708', + 'Header' => 'resourcebundle.h', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle9getBundleERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS0_6LocaleE', + 'Param' => { + '0' => { + 'name' => 'baseName', + 'type' => '210597' + }, + '1' => { + 'name' => 'locale', + 'type' => '24495764' + } + }, + 'Return' => '18600155', + 'ShortName' => 'getBundle', + 'Source' => 'resourcebundle.cpp', + 'SourceLine' => '30', + 'Static' => 1 + }, + '39534830' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes26ResourceBundleRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ResourceBundleRegistration', + 'Source' => 'resourcebundle.cpp' + }, + '39534847' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7helpers22PropertyResourceBundleENS1_6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '1937382' + } + }, + 'Return' => '39463358', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '38047695' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '23079676' => { + '39538160' => { + 'Constructor' => 1, + 'Header' => 'propertyresourcebundle.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers22PropertyResourceBundleC1ESt10shared_ptrINS0_11InputStreamEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '38050429' + }, + '1' => { + 'name' => 'inStream', + 'type' => '5648504' + } + } + }, + '39577872' => { 'Artificial' => 1, - 'Class' => '22138053', + 'Class' => '39533046', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22144596' + 'type' => '39535719' } }, 'ShortName' => 'WideLife' }, - '23079678' => { + '39577873' => { 'Artificial' => 1, - 'Class' => '22551918', + 'Class' => '39533046', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEED1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '22565134' + 'type' => '39535719' } }, 'ShortName' => 'WideLife' }, - '2350794' => { - 'Class' => '62571', - 'Constructor' => 1, - 'Header' => 'classregistration.h', - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers17ClassRegistrationC2EPFRKNS0_5ClassEvE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2350468' - }, - '1' => { - 'name' => 'accessor', - 'type' => '62616' - } - }, - 'ShortName' => 'ClassRegistration', - 'Source' => 'classregistration.cpp', - 'SourceLine' => '24' - }, - '2350795' => { - 'Class' => '62571', - 'Constructor' => 1, - 'Header' => 'classregistration.h', - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers17ClassRegistrationC1EPFRKNS0_5ClassEvE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2350468' - }, - '1' => { - 'name' => 'accessor', - 'type' => '62616' - } - }, - 'ShortName' => 'ClassRegistration', - 'Source' => 'classregistration.cpp', - 'SourceLine' => '24' - }, - '2429048' => { - 'Class' => '2428927', - 'Const' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2433197' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2429410' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '30', - 'Static' => 1 - }, - '2429427' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '30', - 'Static' => 1 - }, - '2429444' => { - 'Class' => '2428893', - 'Const' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432816' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '30', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '2429483' => { - 'Class' => '2428893', - 'Const' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432816' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '2429527' => { - 'Class' => '2428893', - 'Const' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432816' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2429608' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '154', - 'Static' => 1 - }, - '2429635' => { - 'Class' => '2428893', - 'Const' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432816' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '161', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '2429686' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13setFatalColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - }, - '1' => { - 'name' => 'color', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setFatalColor', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '200' - }, - '2429718' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'Line' => '64', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13setErrorColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - }, - '1' => { - 'name' => 'color', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setErrorColor', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '204' - }, - '2429750' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'Line' => '65', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter12setWarnColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - }, - '1' => { - 'name' => 'color', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setWarnColor', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '208' - }, - '2429782' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'Line' => '66', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter12setInfoColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - }, - '1' => { - 'name' => 'color', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setInfoColor', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '212' - }, - '2429814' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13setDebugColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - }, - '1' => { - 'name' => 'color', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setDebugColor', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '216' - }, - '2429846' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'Line' => '68', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13setTraceColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - }, - '1' => { - 'name' => 'color', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setTraceColor', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '220' - }, - '2429878' => { - 'Class' => '2428893', - 'Header' => 'colorstartpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter10parseColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - }, - '1' => { - 'name' => 'color', - 'type' => '263006' - }, - '2' => { - 'name' => 'result', - 'type' => '2433139' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'parseColor', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '224' - }, - '2430421' => { - 'Data' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7classes38ColorStartPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ColorStartPatternConverterRegistration', - 'Source' => 'colorstartpatternconverter.cpp' - }, - '2436209' => { - 'Artificial' => 1, - 'Class' => '2428893', - 'Destructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - } - }, - 'ShortName' => 'ColorStartPatternConverter', - 'Virt' => 1 - }, - '2436210' => { - 'Artificial' => 1, - 'Class' => '2428893', - 'Destructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - } - }, - 'ShortName' => 'ColorStartPatternConverter', - 'Virt' => 1 - }, - '2436477' => { - 'Artificial' => 1, - 'Class' => '2428893', - 'Destructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - } - }, - 'ShortName' => 'ColorStartPatternConverter', - 'Virt' => 1 - }, - '2446371' => { - 'Artificial' => 1, - 'Class' => '2429090', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '135', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432101' - } - }, - 'ShortName' => 'ColorPatternConverterPrivate', - 'Source' => 'colorstartpatternconverter.cpp', - 'Virt' => 1 - }, - '2446372' => { - 'Artificial' => 1, - 'Class' => '2429090', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '135', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432101' - } - }, - 'ShortName' => 'ColorPatternConverterPrivate', - 'Source' => 'colorstartpatternconverter.cpp', - 'Virt' => 1 - }, - '2451543' => { - 'Artificial' => 1, - 'Class' => '2429090', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '135', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432101' - } - }, - 'ShortName' => 'ColorPatternConverterPrivate', - 'Source' => 'colorstartpatternconverter.cpp', - 'Virt' => 1 - }, - '2460656' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_26ColorStartPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '2432607' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { + '39578014' => { + 'Artificial' => 1, + 'Class' => '39533046', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEEC2Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '2403870' + 'name' => 'this', + 'type' => '39535719' } - } - }, - '2460657' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_26ColorStartPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '2432607' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { + }, + 'ShortName' => 'WideLife' + }, + '39578015' => { + 'Artificial' => 1, + 'Class' => '39533046', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEEC1Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '2403870' + 'name' => 'this', + 'type' => '39535719' } - } - }, - '2461766' => { - 'Artificial' => 1, - 'Class' => '2427077', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2431976' - } - }, - 'ShortName' => 'WideLife' - }, - '2461767' => { - 'Artificial' => 1, - 'Class' => '2427077', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2431976' - } - }, - 'ShortName' => 'WideLife' - }, - '2461908' => { - 'Artificial' => 1, - 'Class' => '2427077', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2431976' - } - }, - 'ShortName' => 'WideLife' - }, - '2461909' => { - 'Artificial' => 1, - 'Class' => '2427077', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2431976' - } - }, - 'ShortName' => 'WideLife' - }, - '2488371' => { - 'Class' => '2428893', - 'Constructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - } - }, - 'ShortName' => 'ColorStartPatternConverter', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '148' - }, - '2502310' => { - 'Class' => '2428893', - 'Constructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2432585' - } - }, - 'ShortName' => 'ColorStartPatternConverter', - 'Source' => 'colorstartpatternconverter.cpp', - 'SourceLine' => '148' - }, - '2532847' => { - 'Artificial' => 1, - 'Class' => '2428623', - 'Destructor' => 1, - 'Header' => 'patternconverter_priv.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2430545' - } - }, - 'ShortName' => 'PatternConverterPrivate', - 'Virt' => 1 - }, - '2532848' => { - 'Artificial' => 1, - 'Class' => '2428623', - 'Destructor' => 1, - 'Header' => 'patternconverter_priv.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2430545' - } - }, - 'ShortName' => 'PatternConverterPrivate', - 'Virt' => 1 - }, - '2534220' => { - 'Artificial' => 1, - 'Class' => '2428623', - 'Destructor' => 1, - 'Header' => 'patternconverter_priv.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2430545' - } - }, - 'ShortName' => 'PatternConverterPrivate', - 'Virt' => 1 - }, - '2535563' => { - 'Artificial' => 1, - 'Class' => '2428623', - 'Constructor' => 1, - 'Header' => 'patternconverter_priv.h', - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2430545' - }, - '1' => { - 'name' => '_name', - 'type' => '263006' - }, - '2' => { - 'name' => '_style', - 'type' => '263006' - } - }, - 'ShortName' => 'PatternConverterPrivate' - }, - '2535564' => { - 'Artificial' => 1, - 'Class' => '2428623', - 'Constructor' => 1, - 'Header' => 'patternconverter_priv.h', - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2430545' - }, - '1' => { - 'name' => '_name', - 'type' => '263006' - }, - '2' => { - 'name' => '_style', - 'type' => '263006' - } - }, - 'ShortName' => 'PatternConverterPrivate' - }, - '2536473' => { - 'Artificial' => 1, - 'Class' => '2428927', - 'Destructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2433186' - } - }, - 'ShortName' => 'ClazzColorStartPatternConverter', - 'Virt' => 1 - }, - '2536474' => { - 'Artificial' => 1, - 'Class' => '2428927', - 'Destructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2433186' - } - }, - 'ShortName' => 'ClazzColorStartPatternConverter', - 'Virt' => 1 - }, - '2536615' => { - 'Artificial' => 1, - 'Class' => '2428927', - 'Destructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2433186' - } - }, - 'ShortName' => 'ClazzColorStartPatternConverter', - 'Virt' => 1 - }, - '2536705' => { - 'Artificial' => 1, - 'Class' => '2428927', - 'Constructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2433186' - } - }, - 'ShortName' => 'ClazzColorStartPatternConverter' - }, - '2536706' => { - 'Artificial' => 1, - 'Class' => '2428927', - 'Constructor' => 1, - 'Header' => 'colorstartpatternconverter.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2433186' - } - }, - 'ShortName' => 'ClazzColorStartPatternConverter' - }, - '2607305' => { - 'Class' => '2607184', - 'Const' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609900' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2607434' => { - 'Class' => '2607150', - 'Header' => 'colorendpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'colorendpatternconverter.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '2607451' => { - 'Class' => '2607150', - 'Header' => 'colorendpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'colorendpatternconverter.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '2607468' => { - 'Class' => '2607150', - 'Const' => 1, - 'Header' => 'colorendpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609578' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'colorendpatternconverter.cpp', - 'SourceLine' => '29', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '2607507' => { - 'Class' => '2607150', - 'Const' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609578' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '2607551' => { - 'Class' => '2607150', - 'Const' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609578' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2607632' => { - 'Class' => '2607150', - 'Header' => 'colorendpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'colorendpatternconverter.cpp', - 'SourceLine' => '37', - 'Static' => 1 - }, - '2607660' => { - 'Class' => '2607150', - 'Const' => 1, - 'Header' => 'colorendpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609578' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'colorendpatternconverter.cpp', - 'SourceLine' => '44', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '2608060' => { - 'Data' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7classes36ColorEndPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ColorEndPatternConverterRegistration', - 'Source' => 'colorendpatternconverter.cpp' - }, - '260951' => { - 'Class' => '260830', - 'Const' => 1, - 'Header' => 'appenderattachableimpl.h', - 'InLine' => 2, - 'Line' => '54', - 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImpl7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265143' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '261125' => { - 'Class' => '260723', - 'Header' => 'appenderattachableimpl.h', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '261142' => { - 'Class' => '260723', - 'Header' => 'appenderattachableimpl.h', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '261159' => { - 'Class' => '260723', - 'Const' => 1, - 'Header' => 'appenderattachableimpl.h', - 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265103' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '29', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '261198' => { - 'Class' => '260723', - 'Const' => 1, - 'Header' => 'appenderattachableimpl.h', - 'InLine' => 2, - 'Line' => '55', - 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265103' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '261242' => { - 'Class' => '260723', - 'Const' => 1, - 'Header' => 'appenderattachableimpl.h', - 'InLine' => 2, - 'Line' => '58', - 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265103' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '261286' => { - 'Class' => '260723', - 'Header' => 'appenderattachableimpl.h', - 'Line' => '64', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl11addAppenderESt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - }, - '1' => { - 'name' => 'newAppender', - 'type' => '263000' - } - }, - 'Return' => '1', - 'ShortName' => 'addAppender', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '49', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '2612901' => { - 'Artificial' => 1, - 'Class' => '2607150', - 'Destructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609479' - } - }, - 'ShortName' => 'ColorEndPatternConverter', - 'Virt' => 1 - }, - '2612902' => { - 'Artificial' => 1, - 'Class' => '2607150', - 'Destructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609479' - } - }, - 'ShortName' => 'ColorEndPatternConverter', - 'Virt' => 1 - }, - '2613166' => { - 'Artificial' => 1, - 'Class' => '2607150', - 'Destructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609479' - } - }, - 'ShortName' => 'ColorEndPatternConverter', - 'Virt' => 1 - }, - '261326' => { - 'Class' => '260723', - 'Header' => 'appenderattachableimpl.h', - 'Line' => '69', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl21appendLoopOnAppendersERKSt10shared_ptrINS_3spi12LoggingEventEERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '50231', - 'ShortName' => 'appendLoopOnAppenders', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '67' - }, - '261367' => { - 'Class' => '260723', - 'Const' => 1, - 'Header' => 'appenderattachableimpl.h', - 'Line' => '75', - 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl15getAllAppendersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265103' - } - }, - 'Return' => '262971', - 'ShortName' => 'getAllAppenders', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '86', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '261406' => { - 'Class' => '260723', - 'Const' => 1, - 'Header' => 'appenderattachableimpl.h', - 'Line' => '80', - 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265103' - }, - '1' => { - 'name' => 'name', - 'type' => '263006' - } - }, - 'Return' => '262988', - 'ShortName' => 'getAppender', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '92', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '261450' => { - 'Class' => '260723', - 'Const' => 1, - 'Header' => 'appenderattachableimpl.h', - 'Line' => '86', - 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl10isAttachedESt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265103' - }, - '1' => { - 'name' => 'appender', - 'type' => '263000' - } - }, - 'Return' => '50284', - 'ShortName' => 'isAttached', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '116', - 'Virt' => 1, - 'VirtPos' => '8' - }, - '261494' => { - 'Class' => '260723', - 'Header' => 'appenderattachableimpl.h', - 'Line' => '91', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl18removeAllAppendersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - } - }, - 'Return' => '1', - 'ShortName' => 'removeAllAppenders', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '130', - 'Virt' => 1, - 'VirtPos' => '9' - }, - '261529' => { - 'Class' => '260723', - 'Header' => 'appenderattachableimpl.h', - 'Line' => '96', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl14removeAppenderESt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - }, - '1' => { - 'name' => 'appender', - 'type' => '263000' - } - }, - 'Return' => '1', - 'ShortName' => 'removeAppender', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '145', - 'Virt' => 1, - 'VirtPos' => '10' - }, - '261569' => { - 'Class' => '260723', - 'Header' => 'appenderattachableimpl.h', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - }, - '1' => { - 'name' => 'name', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'removeAppender', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '162', - 'Virt' => 1, - 'VirtPos' => '11' - }, - '2622755' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_24ColorEndPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '2609501' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { + }, + 'ShortName' => 'WideLife' + }, + '39640663' => { + 'Artificial' => 1, + 'Class' => '558717', + 'Destructor' => 1, + 'Header' => 'resourcebundle.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD0Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '2585102' + 'name' => 'this', + 'type' => '39537017' } - } - }, - '2622756' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_24ColorEndPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '2609501' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { + }, + 'ShortName' => 'ClazzResourceBundle', + 'Virt' => 1 + }, + '39640664' => { + 'Artificial' => 1, + 'Class' => '558717', + 'Destructor' => 1, + 'Header' => 'resourcebundle.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD1Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '2585102' + 'name' => 'this', + 'type' => '39537017' } - } - }, - '2623171' => { - 'Artificial' => 1, - 'Class' => '2605520', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609171' - } - }, - 'ShortName' => 'WideLife' - }, - '2623172' => { - 'Artificial' => 1, - 'Class' => '2605520', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609171' - } - }, - 'ShortName' => 'WideLife' - }, - '2623312' => { - 'Artificial' => 1, - 'Class' => '2605520', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609171' - } - }, - 'ShortName' => 'WideLife' - }, - '2623313' => { - 'Artificial' => 1, - 'Class' => '2605520', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609171' - } - }, - 'ShortName' => 'WideLife' - }, - '2628463' => { - 'Class' => '2607150', - 'Constructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609479' - } - }, - 'ShortName' => 'ColorEndPatternConverter', - 'Source' => 'colorendpatternconverter.cpp', - 'SourceLine' => '31' - }, - '262910' => { - 'Class' => '262822', - 'Header' => 'appenderattachable.h', - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '46', - 'Static' => 1 - }, - '262953' => { - 'Data' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7classes34AppenderAttachableImplRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'AppenderAttachableImplRegistration', - 'Source' => 'appenderattachableimpl.cpp' - }, - '2632580' => { - 'Class' => '2607150', - 'Constructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609479' - } - }, - 'ShortName' => 'ColorEndPatternConverter', - 'Source' => 'colorendpatternconverter.cpp', - 'SourceLine' => '31' - }, - '2638615' => { - 'Artificial' => 1, - 'Class' => '2607184', - 'Destructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609889' - } - }, - 'ShortName' => 'ClazzColorEndPatternConverter', - 'Virt' => 1 - }, - '2638616' => { - 'Artificial' => 1, - 'Class' => '2607184', - 'Destructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609889' - } - }, - 'ShortName' => 'ClazzColorEndPatternConverter', - 'Virt' => 1 - }, - '2638756' => { - 'Artificial' => 1, - 'Class' => '2607184', - 'Destructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609889' - } - }, - 'ShortName' => 'ClazzColorEndPatternConverter', - 'Virt' => 1 - }, - '2638846' => { - 'Artificial' => 1, - 'Class' => '2607184', - 'Constructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609889' - } - }, - 'ShortName' => 'ClazzColorEndPatternConverter' - }, - '2638847' => { - 'Artificial' => 1, - 'Class' => '2607184', - 'Constructor' => 1, - 'Header' => 'colorendpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2609889' - } - }, - 'ShortName' => 'ClazzColorEndPatternConverter' - }, - '2699778' => { - 'Class' => '2699656', - 'Const' => 1, - 'Header' => 'configurator.h', - 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx3spi12Configurator17ClazzConfigurator7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701347' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2699836' => { - 'Class' => '2699638', - 'Header' => 'configurator.h', - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx3spi12Configurator14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'configurator.cpp', - 'SourceLine' => '26', - 'Static' => 1 - }, - '2699853' => { - 'Class' => '2699638', - 'Header' => 'configurator.h', - 'MnglName' => '_ZN7log4cxx3spi12Configurator13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'configurator.cpp', - 'SourceLine' => '26', - 'Static' => 1 - }, - '2699870' => { - 'Class' => '2699638', - 'Const' => 1, - 'Header' => 'configurator.h', - 'MnglName' => '_ZNK7log4cxx3spi12Configurator8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701285' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'configurator.cpp', - 'SourceLine' => '26', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '2699909' => { - 'Class' => '2699638', - 'Header' => 'configurator.h', - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx3spi12Configurator11doConfigureERKNS_4FileESt10shared_ptrINS0_16LoggerRepositoryEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701290' - }, - '1' => { - 'name' => 'p1', - 'type' => '840075' - }, - '2' => { - 'name' => 'p2', - 'type' => '835664' - } - }, - 'PureVirt' => 1, - 'Return' => '2699607', - 'ShortName' => 'doConfigure', - 'VirtPos' => '5' - }, - '2700138' => { - 'Data' => 1, - 'Line' => '26', - 'MnglName' => '_ZN7log4cxx7classes24ConfiguratorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ConfiguratorRegistration', - 'Source' => 'configurator.cpp' - }, - '2704645' => { - 'Artificial' => 1, - 'Class' => '2698550', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701129' - } - }, - 'ShortName' => 'WideLife' - }, - '2704646' => { - 'Artificial' => 1, - 'Class' => '2698550', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701129' - } - }, - 'ShortName' => 'WideLife' - }, - '2704786' => { - 'Artificial' => 1, - 'Class' => '2698550', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701129' - } - }, - 'ShortName' => 'WideLife' - }, - '2704787' => { - 'Artificial' => 1, - 'Class' => '2698550', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701129' - } - }, - 'ShortName' => 'WideLife' - }, - '2705144' => { - 'Class' => '2699638', - 'Constructor' => 1, - 'Header' => 'configurator.h', - 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701296' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Configurator', - 'Source' => 'configurator.cpp', - 'SourceLine' => '31' - }, - '2705187' => { - 'Class' => '2699638', - 'Constructor' => 1, - 'Header' => 'configurator.h', - 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701296' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Configurator', - 'Source' => 'configurator.cpp', - 'SourceLine' => '31' - }, - '2706979' => { - 'Artificial' => 1, - 'Class' => '2699656', - 'Destructor' => 1, - 'Header' => 'configurator.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701336' - } - }, - 'ShortName' => 'ClazzConfigurator', - 'Virt' => 1 - }, - '2706980' => { - 'Artificial' => 1, - 'Class' => '2699656', - 'Destructor' => 1, - 'Header' => 'configurator.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701336' - } - }, - 'ShortName' => 'ClazzConfigurator', - 'Virt' => 1 - }, - '2707120' => { - 'Artificial' => 1, - 'Class' => '2699656', - 'Destructor' => 1, - 'Header' => 'configurator.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701336' - } - }, - 'ShortName' => 'ClazzConfigurator', - 'Virt' => 1 - }, - '2707210' => { - 'Artificial' => 1, - 'Class' => '2699656', - 'Constructor' => 1, - 'Header' => 'configurator.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701336' - } - }, - 'ShortName' => 'ClazzConfigurator' - }, - '2707211' => { - 'Artificial' => 1, - 'Class' => '2699656', - 'Constructor' => 1, - 'Header' => 'configurator.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2701336' - } - }, - 'ShortName' => 'ClazzConfigurator' - }, - '2843963' => { - 'Class' => '2843842', - 'Const' => 1, - 'Header' => 'consoleappender.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx15ConsoleAppender20ClazzConsoleAppender7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850984' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2844002' => { - 'Class' => '2843842', - 'Const' => 1, - 'Header' => 'consoleappender.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850984' - } - }, - 'Return' => '1153327', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '2844041' => { - 'Artificial' => 1, - 'Class' => '2843842', - 'Header' => 'consoleappender.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZTch0_h0_NK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850984' - } - }, - 'Return' => '1153327', - 'ShortName' => '_ZTch0_h0_NK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv' - }, - '2844279' => { - 'Class' => '1150404', - 'Const' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZNK7log4cxx15ConsoleAppender8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850890' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '41', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '2844318' => { - 'Class' => '1150404', - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '41', - 'Static' => 1 - }, - '2844335' => { - 'Class' => '1150404', - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '41', - 'Static' => 1 - }, - '2844352' => { - 'Class' => '1150404', - 'Const' => 1, - 'Header' => 'consoleappender.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx15ConsoleAppender4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850890' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '2844396' => { - 'Class' => '1150404', - 'Const' => 1, - 'Header' => 'consoleappender.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx15ConsoleAppender10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850890' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2844609' => { - 'Class' => '1150404', - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender9setTargetERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - }, - '1' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setTarget', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '83' - }, - '2844641' => { - 'Class' => '1150404', - 'Const' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZNK7log4cxx15ConsoleAppender9getTargetB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850890' - } - }, - 'Return' => '63706', - 'ShortName' => 'getTarget', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '103' - }, - '2844672' => { - 'Class' => '1150404', - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '115', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '2844713' => { - 'Class' => '1150404', - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '133', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '2844759' => { - 'Class' => '1150404', - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender12getSystemOutB5cxx11Ev', - 'Return' => '263006', - 'ShortName' => 'getSystemOut', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '71', - 'Static' => 1 - }, - '2844776' => { - 'Class' => '1150404', - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender12getSystemErrB5cxx11Ev', - 'Return' => '263006', - 'ShortName' => 'getSystemErr', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '77', - 'Static' => 1 - }, - '2844793' => { - 'Class' => '1150404', - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender10targetWarnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - }, - '1' => { - 'name' => 'val', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'targetWarn', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '108' - }, - '2844840' => { - 'Data' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7classes27ConsoleAppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ConsoleAppenderRegistration', - 'Source' => 'consoleappender.cpp' - }, - '2845122' => { - 'Class' => '2844858', - 'Const' => 1, - 'Header' => 'writerappender.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx14WriterAppender10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3029741' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '2845166' => { - 'Class' => '2844858', - 'Const' => 1, - 'Header' => 'writerappender.h', - 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx14WriterAppender4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3029741' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '2845210' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '156', - 'MnglName' => '_ZN7log4cxx14WriterAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '19739829' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '307', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '2845222' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '168', - 'MnglName' => '_ZN7log4cxx14WriterAppender9setWriterERKSt10shared_ptrINS_7helpers6WriterEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '19739829' - }, - '1' => { - 'name' => 'newWriter', - 'type' => '19739869' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'setWriter', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '291' - }, - '2845234' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx14WriterAppender15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '19739829' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '63', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '2845246' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx14WriterAppender14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '32', - 'Static' => 1 - }, - '286874' => { - 'Artificial' => 1, - 'Class' => '261701', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '264423' - } - }, - 'ShortName' => 'WideLife' - }, - '286875' => { - 'Artificial' => 1, - 'Class' => '261701', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '264423' - } - }, - 'ShortName' => 'WideLife' - }, - '287016' => { - 'Artificial' => 1, - 'Class' => '261701', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '264423' - } - }, - 'ShortName' => 'WideLife' - }, - '287017' => { - 'Artificial' => 1, - 'Class' => '261701', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '264423' - } - }, - 'ShortName' => 'WideLife' - }, - '2876550' => { - 'Artificial' => 1, - 'Class' => '2844068', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849164' - } - }, - 'ShortName' => 'ConsoleAppenderPriv', - 'Source' => 'consoleappender.cpp', - 'Virt' => 1 - }, - '2876551' => { - 'Artificial' => 1, - 'Class' => '2844068', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849164' - } - }, - 'ShortName' => 'ConsoleAppenderPriv', - 'Source' => 'consoleappender.cpp', - 'Virt' => 1 - }, - '2882458' => { - 'Artificial' => 1, - 'Class' => '2844068', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849164' - } - }, - 'ShortName' => 'ConsoleAppenderPriv', - 'Source' => 'consoleappender.cpp', - 'Virt' => 1 - }, - '2890937' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA11_KcJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '2461124' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '2461124' - } - } - }, - '2890938' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA11_KcJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '2461124' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '2461124' - } - } - }, - '2891905' => { - 'Artificial' => 1, - 'Class' => '2841634', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849039' - } - }, - 'ShortName' => 'WideLife' - }, - '2891906' => { - 'Artificial' => 1, - 'Class' => '2841634', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849039' - } - }, - 'ShortName' => 'WideLife' - }, - '2892047' => { - 'Artificial' => 1, - 'Class' => '2841634', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849039' - } - }, - 'ShortName' => 'WideLife' - }, - '2892048' => { - 'Artificial' => 1, - 'Class' => '2841634', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849039' - } - }, - 'ShortName' => 'WideLife' - }, - '2916276' => { - 'Class' => '1150404', - 'Destructor' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppenderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - } - }, - 'ShortName' => 'ConsoleAppender', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '66', - 'Virt' => 1 - }, - '2916374' => { - 'Class' => '1150404', - 'Destructor' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppenderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - } - }, - 'ShortName' => 'ConsoleAppender', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '66', - 'Virt' => 1 - }, - '2916658' => { - 'Class' => '1150404', - 'Destructor' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppenderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - } - }, - 'ShortName' => 'ConsoleAppender', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '66', - 'Virt' => 1 - }, - '2916845' => { - 'Class' => '1150404', - 'Constructor' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - }, - '1' => { - 'name' => 'layout', - 'type' => '412075' - }, - '2' => { - 'name' => 'target', - 'type' => '263006' - } - }, - 'ShortName' => 'ConsoleAppender', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '57' - }, - '2931211' => { - 'Class' => '1150404', - 'Constructor' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - }, - '2' => { - 'name' => 'layout', - 'type' => '412075' - }, - '3' => { - 'name' => 'target', - 'type' => '263006' - } - }, - 'ShortName' => 'ConsoleAppender', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '57' - }, - '2945461' => { - 'Class' => '1150404', - 'Constructor' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC1ERKSt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - }, - '1' => { - 'name' => 'layout', - 'type' => '412075' - } - }, - 'ShortName' => 'ConsoleAppender', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '48' - }, - '2963909' => { - 'Class' => '1150404', - 'Constructor' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC2ERKSt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - }, - '2' => { - 'name' => 'layout', - 'type' => '412075' - } - }, - 'ShortName' => 'ConsoleAppender', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '48' - }, - '2982331' => { - 'Class' => '1150404', - 'Constructor' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - } - }, - 'ShortName' => 'ConsoleAppender', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '43' - }, - '2995242' => { - 'Class' => '1150404', - 'Constructor' => 1, - 'Header' => 'consoleappender.h', - 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850862' - } - }, - 'ShortName' => 'ConsoleAppender', - 'Source' => 'consoleappender.cpp', - 'SourceLine' => '43' - }, - '3009265' => { - 'Artificial' => 1, - 'Class' => '2844868', - 'Destructor' => 1, - 'Header' => 'writerappender_priv.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849470' - } - }, - 'ShortName' => 'WriterAppenderPriv', - 'Virt' => 1 - }, - '3009266' => { - 'Artificial' => 1, - 'Class' => '2844868', - 'Destructor' => 1, - 'Header' => 'writerappender_priv.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849470' - } - }, - 'ShortName' => 'WriterAppenderPriv', - 'Virt' => 1 - }, - '3014511' => { - 'Artificial' => 1, - 'Class' => '2844868', - 'Destructor' => 1, - 'Header' => 'writerappender_priv.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849470' - } - }, - 'ShortName' => 'WriterAppenderPriv', - 'Virt' => 1 - }, - '3019715' => { - 'Artificial' => 1, - 'Class' => '2844868', - 'Constructor' => 1, - 'Header' => 'writerappender_priv.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849470' - } - }, - 'ShortName' => 'WriterAppenderPriv' - }, - '3019716' => { - 'Artificial' => 1, - 'Class' => '2844868', - 'Constructor' => 1, - 'Header' => 'writerappender_priv.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849470' - } - }, - 'ShortName' => 'WriterAppenderPriv' - }, - '3029480' => { - 'Artificial' => 1, - 'Class' => '2843842', - 'Destructor' => 1, - 'Header' => 'consoleappender.h', - 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850973' - } - }, - 'ShortName' => 'ClazzConsoleAppender', - 'Virt' => 1 - }, - '3029481' => { - 'Artificial' => 1, - 'Class' => '2843842', - 'Destructor' => 1, - 'Header' => 'consoleappender.h', - 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850973' - } - }, - 'ShortName' => 'ClazzConsoleAppender', - 'Virt' => 1 - }, - '3029622' => { - 'Artificial' => 1, - 'Class' => '2843842', - 'Destructor' => 1, - 'Header' => 'consoleappender.h', - 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850973' - } - }, - 'ShortName' => 'ClazzConsoleAppender', - 'Virt' => 1 - }, - '3029712' => { - 'Artificial' => 1, - 'Class' => '2843842', - 'Constructor' => 1, - 'Header' => 'consoleappender.h', - 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850973' - } - }, - 'ShortName' => 'ClazzConsoleAppender' - }, - '3029713' => { - 'Artificial' => 1, - 'Class' => '2843842', - 'Constructor' => 1, - 'Header' => 'consoleappender.h', - 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2850973' - } - }, - 'ShortName' => 'ClazzConsoleAppender' - }, - '3106151' => { - 'Class' => '3105926', - 'Header' => 'cyclicbuffer.h', - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx7helpers12CyclicBuffer3addERKSt10shared_ptrINS_3spi12LoggingEventEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3108596' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - } - }, - 'Return' => '1', - 'ShortName' => 'add', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '65' - }, - '3106184' => { - 'Class' => '3105926', - 'Header' => 'cyclicbuffer.h', - 'Line' => '62', - 'MnglName' => '_ZN7log4cxx7helpers12CyclicBuffer3getEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3108596' - }, - '1' => { - 'name' => 'i', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '151288', - 'ShortName' => 'get', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '90' - }, - '3106220' => { - 'Class' => '3105926', - 'Const' => 1, - 'Header' => 'cyclicbuffer.h', - 'Line' => '64', - 'MnglName' => '_ZNK7log4cxx7helpers12CyclicBuffer10getMaxSizeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3108613' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getMaxSize', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '174' - }, - '3106251' => { - 'Class' => '3105926', - 'Header' => 'cyclicbuffer.h', - 'Line' => '70', - 'MnglName' => '_ZN7log4cxx7helpers12CyclicBuffer3getEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3108596' - } - }, - 'Return' => '151288', - 'ShortName' => 'get', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '104' - }, - '3106282' => { - 'Class' => '3105926', - 'Const' => 1, - 'Header' => 'cyclicbuffer.h', - 'Line' => '77', - 'MnglName' => '_ZNK7log4cxx7helpers12CyclicBuffer6lengthEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3108613' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'length', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '179' - }, - '3106313' => { - 'Class' => '3105926', - 'Header' => 'cyclicbuffer.h', - 'Line' => '83', - 'MnglName' => '_ZN7log4cxx7helpers12CyclicBuffer6resizeEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3108596' - }, - '1' => { - 'name' => 'newSize', - 'type' => '50231' - } - }, - 'Return' => '1', - 'ShortName' => 'resize', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '127' - }, - '3148503' => { - 'Class' => '3105926', - 'Destructor' => 1, - 'Header' => 'cyclicbuffer.h', - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers12CyclicBufferD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3108596' - } - }, - 'ShortName' => 'CyclicBuffer', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '58' - }, - '3150274' => { - 'Class' => '3105926', - 'Constructor' => 1, - 'Header' => 'cyclicbuffer.h', - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx7helpers12CyclicBufferC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3108596' - }, - '1' => { - 'name' => 'maxSize1', - 'type' => '50231' - } - }, - 'ShortName' => 'CyclicBuffer', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '45' - }, - '3150275' => { - 'Class' => '3105926', - 'Constructor' => 1, - 'Header' => 'cyclicbuffer.h', - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx7helpers12CyclicBufferC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3108596' - }, - '1' => { - 'name' => 'maxSize1', - 'type' => '50231' - } - }, - 'ShortName' => 'CyclicBuffer', - 'Source' => 'cyclicbuffer.cpp', - 'SourceLine' => '45' - }, - '316767' => { - 'Class' => '260723', - 'Destructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - } - }, - 'ShortName' => 'AppenderAttachableImpl', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '44', - 'Virt' => 1 - }, - '316865' => { - 'Class' => '260723', - 'Destructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - } - }, - 'ShortName' => 'AppenderAttachableImpl', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '44', - 'Virt' => 1 - }, - '318688' => { - 'Class' => '260723', - 'Destructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - } - }, - 'ShortName' => 'AppenderAttachableImpl', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '44', - 'Virt' => 1 - }, - '320461' => { - 'Class' => '260723', - 'Constructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplC1ERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - }, - '1' => { - 'name' => 'pool', - 'type' => '64643' - } - }, - 'ShortName' => 'AppenderAttachableImpl', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '39' - }, - '3214937' => { - 'Class' => '3214816', - 'Const' => 1, - 'Header' => 'date.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7helpers4Date9ClazzDate7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217540' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '3214976' => { - 'Class' => '3214816', - 'Const' => 1, - 'Header' => 'date.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7helpers4Date9ClazzDate11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217540' - } - }, - 'Return' => '3217495', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '3215080' => { - 'Class' => '3214798', - 'Const' => 1, - 'Header' => 'date.h', - 'MnglName' => '_ZNK7log4cxx7helpers4Date8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217518' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'date.cpp', - 'SourceLine' => '29', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '3215119' => { - 'Class' => '3214798', - 'Header' => 'date.h', - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers4Date14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'date.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '3215136' => { - 'Class' => '3214798', - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4Date13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'date.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '3215153' => { - 'Class' => '3214798', - 'Const' => 1, - 'Header' => 'date.h', - 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7helpers4Date4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217518' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '3215197' => { - 'Class' => '3214798', - 'Const' => 1, - 'Header' => 'date.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7helpers4Date10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217518' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '3215369' => { - 'Class' => '3214798', - 'Const' => 1, - 'Header' => 'date.h', - 'Line' => '57', - 'MnglName' => '_ZNK7log4cxx7helpers4Date13getNextSecondEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217518' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '649587', - 'ShortName' => 'getNextSecond', - 'Source' => 'date.cpp', - 'SourceLine' => '58' - }, - '3215400' => { - 'Class' => '3214798', - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4Date21getMicrosecondsPerDayEv', - 'Return' => '649587', - 'ShortName' => 'getMicrosecondsPerDay', - 'Source' => 'date.cpp', - 'SourceLine' => '47', - 'Static' => 1 - }, - '3215417' => { - 'Class' => '3214798', - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4Date24getMicrosecondsPerSecondEv', - 'Return' => '649587', - 'ShortName' => 'getMicrosecondsPerSecond', - 'Source' => 'date.cpp', - 'SourceLine' => '52', - 'Static' => 1 - }, - '3215434' => { - 'Class' => '3214798', - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4Date17getCurrentTimeStdEv', - 'Return' => '649587', - 'ShortName' => 'getCurrentTimeStd', - 'Source' => 'date.cpp', - 'SourceLine' => '71', - 'Static' => 1 - }, - '3215451' => { - 'Class' => '3214798', - 'Header' => 'date.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7helpers4Date11currentTimeEv', - 'Return' => '649587', - 'ShortName' => 'currentTime', - 'Source' => 'date.cpp', - 'SourceLine' => '67', - 'Static' => 1 - }, - '3215468' => { - 'Class' => '3214798', - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4Date25setGetCurrentTimeFunctionESt8functionIFlvEE', - 'Param' => { - '0' => { - 'name' => 'fn', - 'type' => '3215018' - } - }, - 'Return' => '1', - 'ShortName' => 'setGetCurrentTimeFunction', - 'Source' => 'date.cpp', - 'SourceLine' => '63', - 'Static' => 1 - }, - '321566' => { - 'Class' => '260723', - 'Constructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImplC2ERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265081' - }, - '2' => { - 'name' => 'pool', - 'type' => '64643' - } - }, - 'ShortName' => 'AppenderAttachableImpl', - 'Source' => 'appenderattachableimpl.cpp', - 'SourceLine' => '39' - }, - '3216211' => { - 'Data' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7classes16DateRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DateRegistration', - 'Source' => 'date.cpp' - }, - '3222055' => { - 'Artificial' => 1, - 'Class' => '3214440', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217186' - } - }, - 'ShortName' => 'WideLife' - }, - '3222056' => { - 'Artificial' => 1, - 'Class' => '3214440', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217186' - } - }, - 'ShortName' => 'WideLife' - }, - '3222196' => { - 'Artificial' => 1, - 'Class' => '3214440', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217186' - } - }, - 'ShortName' => 'WideLife' - }, - '3222197' => { - 'Artificial' => 1, - 'Class' => '3214440', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217186' - } - }, - 'ShortName' => 'WideLife' - }, - '3223634' => { - 'Class' => '3214798', - 'Destructor' => 1, - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4DateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217501' - } - }, - 'ShortName' => 'Date', - 'Source' => 'date.cpp', - 'SourceLine' => '43', - 'Virt' => 1 - }, - '3223635' => { - 'Class' => '3214798', - 'Destructor' => 1, - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4DateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217501' - } - }, - 'ShortName' => 'Date', - 'Source' => 'date.cpp', - 'SourceLine' => '43', - 'Virt' => 1 - }, - '3223728' => { - 'Class' => '3214798', - 'Destructor' => 1, - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4DateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217501' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Date', - 'Source' => 'date.cpp', - 'SourceLine' => '43', - 'Virt' => 1 - }, - '3223852' => { - 'Class' => '3214798', - 'Constructor' => 1, - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4DateC2El', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217501' - }, - '1' => { - 'name' => 't', - 'type' => '649587' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'Date', - 'Source' => 'date.cpp', - 'SourceLine' => '39' - }, - '3223853' => { - 'Class' => '3214798', - 'Constructor' => 1, - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4DateC1El', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217501' - }, - '1' => { - 'name' => 't', - 'type' => '649587' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'Date', - 'Source' => 'date.cpp', - 'SourceLine' => '39' - }, - '3223973' => { - 'Class' => '3214798', - 'Constructor' => 1, - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4DateC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217501' - } - }, - 'ShortName' => 'Date', - 'Source' => 'date.cpp', - 'SourceLine' => '35' - }, - '3223974' => { - 'Class' => '3214798', - 'Constructor' => 1, - 'Header' => 'date.h', - 'MnglName' => '_ZN7log4cxx7helpers4DateC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217501' - } - }, - 'ShortName' => 'Date', - 'Source' => 'date.cpp', - 'SourceLine' => '35' - }, - '322623' => { - 'Artificial' => 1, - 'Class' => '262822', - 'Constructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '322573' - } - }, - 'ShortName' => 'AppenderAttachable' - }, - '322624' => { - 'Artificial' => 1, - 'Class' => '262822', - 'Constructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '322573' - } - }, - 'ShortName' => 'AppenderAttachable' - }, - '3226422' => { - 'Artificial' => 1, - 'Class' => '3214816', - 'Destructor' => 1, - 'Header' => 'date.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217529' - } - }, - 'ShortName' => 'ClazzDate', - 'Virt' => 1 - }, - '3226423' => { - 'Artificial' => 1, - 'Class' => '3214816', - 'Destructor' => 1, - 'Header' => 'date.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217529' - } - }, - 'ShortName' => 'ClazzDate', - 'Virt' => 1 - }, - '3226563' => { - 'Artificial' => 1, - 'Class' => '3214816', - 'Destructor' => 1, - 'Header' => 'date.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217529' - } - }, - 'ShortName' => 'ClazzDate', - 'Virt' => 1 - }, - '3226653' => { - 'Artificial' => 1, - 'Class' => '3214816', - 'Constructor' => 1, - 'Header' => 'date.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217529' - } - }, - 'ShortName' => 'ClazzDate' - }, - '3226654' => { - 'Artificial' => 1, - 'Class' => '3214816', - 'Constructor' => 1, - 'Header' => 'date.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3217529' - } - }, - 'ShortName' => 'ClazzDate' - }, - '324590' => { - 'Artificial' => 1, - 'Class' => '260830', - 'Destructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'InLine' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265132' - } - }, - 'ShortName' => 'ClazzAppenderAttachableImpl', - 'Virt' => 1 - }, - '324591' => { - 'Artificial' => 1, - 'Class' => '260830', - 'Destructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'InLine' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265132' - } - }, - 'ShortName' => 'ClazzAppenderAttachableImpl', - 'Virt' => 1 - }, - '324732' => { - 'Artificial' => 1, - 'Class' => '260830', - 'Destructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'InLine' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265132' - } - }, - 'ShortName' => 'ClazzAppenderAttachableImpl', - 'Virt' => 1 - }, - '324822' => { - 'Artificial' => 1, - 'Class' => '260830', - 'Constructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'InLine' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265132' - } - }, - 'ShortName' => 'ClazzAppenderAttachableImpl' - }, - '324823' => { - 'Artificial' => 1, - 'Class' => '260830', - 'Constructor' => 1, - 'Header' => 'appenderattachableimpl.h', - 'InLine' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '265132' - } - }, - 'ShortName' => 'ClazzAppenderAttachableImpl' - }, - '324948' => { - 'Artificial' => 1, - 'Class' => '262822', - 'Destructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '322573' - } - }, - 'ShortName' => 'AppenderAttachable', - 'Virt' => 1 - }, - '324949' => { - 'Artificial' => 1, - 'Class' => '262822', - 'Destructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '322573' - } - }, - 'ShortName' => 'AppenderAttachable', - 'Virt' => 1 - }, - '3281113' => { - 'Class' => '3280993', - 'Const' => 1, - 'Header' => 'dateformat.h', - 'InLine' => 2, - 'Line' => '36', - 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat15ClazzDateFormat7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282724' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '3281179' => { - 'Class' => '1574388', - 'Header' => 'dateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormat13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '26', - 'Static' => 1 - }, - '3281196' => { - 'Class' => '1574388', - 'Const' => 1, - 'Header' => 'dateformat.h', - 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1622208' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '26', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '3281360' => { - 'Class' => '1574388', - 'Const' => 1, - 'Header' => 'dateformat.h', - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1622202' - }, - '1' => { - 'name' => 'p1', - 'type' => '409210' - }, - '2' => { - 'name' => 'p2', - 'type' => '649587' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'format', - 'VirtPos' => '5' - }, - '3281410' => { - 'Class' => '1574388', - 'Header' => 'dateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282684' - }, - '1' => { - 'name' => 'p1', - 'type' => '1576811' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setTimeZone', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '30', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '3281450' => { - 'Class' => '1574388', - 'Const' => 1, - 'Header' => 'dateformat.h', - 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1622208' - }, - '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'n', - 'type' => '50231' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'numberFormat', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '32', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '3282387' => { - 'Data' => 1, - 'Line' => '26', - 'MnglName' => '_ZN7log4cxx7classes22DateFormatRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DateFormatRegistration', - 'Source' => 'dateformat.cpp' - }, - '3285915' => { - 'Artificial' => 1, - 'Class' => '3280617', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282517' - } - }, - 'ShortName' => 'WideLife' - }, - '3285916' => { - 'Artificial' => 1, - 'Class' => '3280617', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282517' - } - }, - 'ShortName' => 'WideLife' - }, - '3286056' => { - 'Artificial' => 1, - 'Class' => '3280617', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282517' - } - }, - 'ShortName' => 'WideLife' - }, - '3286057' => { - 'Artificial' => 1, - 'Class' => '3280617', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282517' - } - }, - 'ShortName' => 'WideLife' - }, - '3286396' => { - 'Class' => '1574388', - 'Constructor' => 1, - 'Header' => 'dateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormatC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282684' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DateFormat', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '37' - }, - '3286397' => { - 'Class' => '1574388', - 'Constructor' => 1, - 'Header' => 'dateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormatC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282684' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DateFormat', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '37' - }, - '3286760' => { - 'Class' => '1574388', - 'Destructor' => 1, - 'Header' => 'dateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormatD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282684' - } - }, - 'ShortName' => 'DateFormat', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '28', - 'Virt' => 1 - }, - '3286761' => { - 'Class' => '1574388', - 'Destructor' => 1, - 'Header' => 'dateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormatD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282684' - } - }, - 'ShortName' => 'DateFormat', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '28', - 'Virt' => 1 - }, - '3286855' => { - 'Class' => '1574388', - 'Destructor' => 1, - 'Header' => 'dateformat.h', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormatD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282684' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DateFormat', - 'Source' => 'dateformat.cpp', - 'SourceLine' => '28', - 'Virt' => 1 - }, - '3288888' => { - 'Artificial' => 1, - 'Class' => '3280993', - 'Destructor' => 1, - 'Header' => 'dateformat.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282713' - } - }, - 'ShortName' => 'ClazzDateFormat', - 'Virt' => 1 - }, - '3288889' => { - 'Artificial' => 1, - 'Class' => '3280993', - 'Destructor' => 1, - 'Header' => 'dateformat.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282713' - } - }, - 'ShortName' => 'ClazzDateFormat', - 'Virt' => 1 - }, - '3289029' => { - 'Artificial' => 1, - 'Class' => '3280993', - 'Destructor' => 1, - 'Header' => 'dateformat.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282713' - } - }, - 'ShortName' => 'ClazzDateFormat', - 'Virt' => 1 - }, - '3289119' => { - 'Artificial' => 1, - 'Class' => '3280993', - 'Constructor' => 1, - 'Header' => 'dateformat.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282713' - } - }, - 'ShortName' => 'ClazzDateFormat' - }, - '3289120' => { - 'Artificial' => 1, - 'Class' => '3280993', - 'Constructor' => 1, - 'Header' => 'dateformat.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3282713' - } - }, - 'ShortName' => 'ClazzDateFormat' - }, - '3413945' => { - 'Class' => '3413936', - 'Header' => 'timezone.h', - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7helpers8TimeZone11getTimeZoneERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'id', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '1574533', - 'ShortName' => 'getTimeZone', - 'Source' => 'timezone.cpp', - 'SourceLine' => '201', - 'Static' => 1 - }, - '3414893' => { - 'Class' => '3414773', - 'Const' => 1, - 'Header' => 'datepatternconverter.h', - 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3422047' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '3415153' => { - 'Class' => '3414755', - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter13getDateFormatERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'options', - 'type' => '3421940' - } - }, - 'Private' => 1, - 'Return' => '1574504', - 'ShortName' => 'getDateFormat', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '61', - 'Static' => 1 - }, - '3415179' => { - 'Class' => '3414755', - 'Header' => 'datepatternconverter.h', - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '50', - 'Static' => 1 - }, - '3415196' => { - 'Class' => '3414755', - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '50', - 'Static' => 1 - }, - '3415213' => { - 'Class' => '3414755', - 'Const' => 1, - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3420278' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '50', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '3415252' => { - 'Class' => '3414755', - 'Const' => 1, - 'Header' => 'datepatternconverter.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3420278' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '3415296' => { - 'Class' => '3414755', - 'Const' => 1, - 'Header' => 'datepatternconverter.h', - 'InLine' => 2, - 'Line' => '50', - 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3420278' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '3415425' => { - 'Class' => '3414755', - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'options', - 'type' => '2273842' - } - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '133', - 'Static' => 1 - }, - '3415453' => { - 'Class' => '3414755', - 'Const' => 1, - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3420278' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '139', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '3415504' => { - 'Class' => '3414755', - 'Const' => 1, - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3420278' - }, - '1' => { - 'name' => 'obj', - 'type' => '652213' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '150', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '3415555' => { - 'Class' => '3414755', - 'Const' => 1, - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_7helpers4DateEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3420278' - }, - '1' => { - 'name' => 'date', - 'type' => '3421958' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '177' - }, - '3415807' => { - 'Class' => '407370', - 'Header' => 'loggingevent.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '168', - 'Static' => 1 - }, - '3415819' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '127', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent12getTimeStampEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10216376' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '649587', - 'ShortName' => 'getTimeStamp', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '474' - }, - '3415863' => { - 'Data' => 1, - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7classes32DatePatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DatePatternConverterRegistration', - 'Source' => 'datepatternconverter.cpp' - }, - '3415881' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_3spi12LoggingEventENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', - 'NameSpace' => 'log4cxx', - 'Param' => { - '0' => { - 'name' => 'incoming', - 'type' => '655477' - } - }, - 'Return' => '132916', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '407370' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } - }, - '3415925' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7helpers4DateENS1_6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', - 'Param' => { - '0' => { - 'name' => 'incoming', - 'type' => '655477' - } - }, - 'Return' => '3367291', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '3214798' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } - }, - '3439481' => { - 'Artificial' => 1, - 'Class' => '3413610', - 'Destructor' => 1, - 'Header' => 'absolutetimedateformat.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418714' - } - }, - 'ShortName' => 'AbsoluteTimeDateFormat', - 'Virt' => 1 - }, - '3439482' => { - 'Artificial' => 1, - 'Class' => '3413610', - 'Destructor' => 1, - 'Header' => 'absolutetimedateformat.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418714' - } - }, - 'ShortName' => 'AbsoluteTimeDateFormat', - 'Virt' => 1 - }, - '3439623' => { - 'Artificial' => 1, - 'Class' => '3413610', - 'Destructor' => 1, - 'Header' => 'absolutetimedateformat.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418714' - } - }, - 'ShortName' => 'AbsoluteTimeDateFormat', - 'Virt' => 1 - }, - '3439725' => { - 'Artificial' => 1, - 'Class' => '3413757', - 'Destructor' => 1, - 'Header' => 'datetimedateformat.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418825' - } - }, - 'ShortName' => 'DateTimeDateFormat', - 'Virt' => 1 - }, - '3439726' => { - 'Artificial' => 1, - 'Class' => '3413757', - 'Destructor' => 1, - 'Header' => 'datetimedateformat.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418825' - } - }, - 'ShortName' => 'DateTimeDateFormat', - 'Virt' => 1 - }, - '3439867' => { - 'Artificial' => 1, - 'Class' => '3413757', - 'Destructor' => 1, - 'Header' => 'datetimedateformat.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418825' - } - }, - 'ShortName' => 'DateTimeDateFormat', - 'Virt' => 1 - }, - '3439969' => { - 'Artificial' => 1, - 'Class' => '3413463', - 'Destructor' => 1, - 'Header' => 'iso8601dateformat.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418603' - } - }, - 'ShortName' => 'ISO8601DateFormat', - 'Virt' => 1 - }, - '3439970' => { - 'Artificial' => 1, - 'Class' => '3413463', - 'Destructor' => 1, - 'Header' => 'iso8601dateformat.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418603' - } - }, - 'ShortName' => 'ISO8601DateFormat', - 'Virt' => 1 - }, - '3440111' => { - 'Artificial' => 1, - 'Class' => '3413463', - 'Destructor' => 1, - 'Header' => 'iso8601dateformat.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418603' - } - }, - 'ShortName' => 'ISO8601DateFormat', - 'Virt' => 1 - }, - '3469115' => { - 'Artificial' => 1, - 'Class' => '3414935', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418057' - } - }, - 'ShortName' => 'DatePatternConverterPrivate', - 'Source' => 'datepatternconverter.cpp', - 'Virt' => 1 - }, - '3469116' => { - 'Artificial' => 1, - 'Class' => '3414935', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418057' - } - }, - 'ShortName' => 'DatePatternConverterPrivate', - 'Source' => 'datepatternconverter.cpp', - 'Virt' => 1 - }, - '3471162' => { - 'Artificial' => 1, - 'Class' => '3414935', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418057' - } - }, - 'ShortName' => 'DatePatternConverterPrivate', - 'Source' => 'datepatternconverter.cpp', - 'Virt' => 1 - }, - '3478717' => { - 'Artificial' => 1, - 'Class' => '3412693', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3417932' - } - }, - 'ShortName' => 'WideLife' - }, - '3478718' => { - 'Artificial' => 1, - 'Class' => '3412693', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3417932' - } - }, - 'ShortName' => 'WideLife' - }, - '3478859' => { - 'Artificial' => 1, - 'Class' => '3412693', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3417932' - } - }, - 'ShortName' => 'WideLife' - }, - '3478860' => { - 'Artificial' => 1, - 'Class' => '3412693', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3417932' - } - }, - 'ShortName' => 'WideLife' - }, - '3533401' => { - 'Class' => '3414755', - 'Destructor' => 1, - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3419459' - } - }, - 'ShortName' => 'DatePatternConverter', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '59', - 'Virt' => 1 - }, - '3533499' => { - 'Class' => '3414755', - 'Destructor' => 1, - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3419459' - } - }, - 'ShortName' => 'DatePatternConverter', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '59', - 'Virt' => 1 - }, - '3533691' => { - 'Class' => '3414755', - 'Destructor' => 1, - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3419459' - } - }, - 'ShortName' => 'DatePatternConverter', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '59', - 'Virt' => 1 - }, - '3533894' => { - 'Class' => '3414755', - 'Constructor' => 1, - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterC1ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3419459' - }, - '1' => { - 'name' => 'options', - 'type' => '2273842' - } - }, - 'ShortName' => 'DatePatternConverter', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '52' - }, - '3546143' => { - 'Class' => '3414755', - 'Constructor' => 1, - 'Header' => 'datepatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterC2ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3419459' - }, - '2' => { - 'name' => 'options', - 'type' => '2273842' - } - }, - 'ShortName' => 'DatePatternConverter', - 'Source' => 'datepatternconverter.cpp', - 'SourceLine' => '52' - }, - '3562581' => { - 'Artificial' => 1, - 'Class' => '3413463', - 'Constructor' => 1, - 'Header' => 'iso8601dateformat.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418603' - } - }, - 'ShortName' => 'ISO8601DateFormat' - }, - '3562582' => { - 'Artificial' => 1, - 'Class' => '3413463', - 'Constructor' => 1, - 'Header' => 'iso8601dateformat.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418603' - } - }, - 'ShortName' => 'ISO8601DateFormat' - }, - '3562628' => { - 'Artificial' => 1, - 'Class' => '3413757', - 'Constructor' => 1, - 'Header' => 'datetimedateformat.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418825' - } - }, - 'ShortName' => 'DateTimeDateFormat' - }, - '3562629' => { - 'Artificial' => 1, - 'Class' => '3413757', - 'Constructor' => 1, - 'Header' => 'datetimedateformat.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418825' - } - }, - 'ShortName' => 'DateTimeDateFormat' - }, - '3562675' => { - 'Artificial' => 1, - 'Class' => '3413610', - 'Constructor' => 1, - 'Header' => 'absolutetimedateformat.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418714' - } - }, - 'ShortName' => 'AbsoluteTimeDateFormat' - }, - '3562676' => { - 'Artificial' => 1, - 'Class' => '3413610', - 'Constructor' => 1, - 'Header' => 'absolutetimedateformat.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3418714' - } - }, - 'ShortName' => 'AbsoluteTimeDateFormat' - }, - '3563575' => { - 'Artificial' => 1, - 'Class' => '3414773', - 'Destructor' => 1, - 'Header' => 'datepatternconverter.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3422036' - } - }, - 'ShortName' => 'ClazzDatePatternConverter', - 'Virt' => 1 - }, - '3563576' => { - 'Artificial' => 1, - 'Class' => '3414773', - 'Destructor' => 1, - 'Header' => 'datepatternconverter.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3422036' - } - }, - 'ShortName' => 'ClazzDatePatternConverter', - 'Virt' => 1 - }, - '3563717' => { - 'Artificial' => 1, - 'Class' => '3414773', - 'Destructor' => 1, - 'Header' => 'datepatternconverter.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3422036' - } - }, - 'ShortName' => 'ClazzDatePatternConverter', - 'Virt' => 1 - }, - '3563807' => { - 'Artificial' => 1, - 'Class' => '3414773', - 'Constructor' => 1, - 'Header' => 'datepatternconverter.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3422036' - } - }, - 'ShortName' => 'ClazzDatePatternConverter' - }, - '3563808' => { - 'Artificial' => 1, - 'Class' => '3414773', - 'Constructor' => 1, - 'Header' => 'datepatternconverter.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3422036' - } - }, - 'ShortName' => 'ClazzDatePatternConverter' - }, - '3708635' => { - 'Class' => '3708514', - 'Const' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 2, - 'Line' => '116', - 'MnglName' => '_ZNK7log4cxx2db10DBAppender15ClazzDBAppender7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715841' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '3708674' => { - 'Class' => '3708514', - 'Const' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 2, - 'Line' => '116', - 'MnglName' => '_ZNK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715841' - } - }, - 'Return' => '3715754', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '3708713' => { - 'Artificial' => 1, - 'Class' => '3708514', - 'Header' => 'dbappender.h', - 'InLine' => 2, - 'Line' => '116', - 'MnglName' => '_ZTch0_h0_NK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715841' - } - }, - 'Return' => '3715754', - 'ShortName' => '_ZTch0_h0_NK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv' - }, - '3709033' => { - 'Class' => '3708496', - 'Const' => 1, - 'Header' => 'dbappender.h', - 'MnglName' => '_ZNK7log4cxx2db10DBAppender8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715749' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '47', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '3709072' => { - 'Class' => '3708496', - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppender14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '47', - 'Static' => 1 - }, - '3709089' => { - 'Class' => '3708496', - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '47', - 'Static' => 1 - }, - '3709106' => { - 'Class' => '3708496', - 'Const' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 2, - 'Line' => '117', - 'MnglName' => '_ZNK7log4cxx2db10DBAppender4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715749' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '3709150' => { - 'Class' => '3708496', - 'Const' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 2, - 'Line' => '120', - 'MnglName' => '_ZNK7log4cxx2db10DBAppender10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715749' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '3709274' => { - 'Class' => '3708496', - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715760' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '120', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '3709320' => { - 'Class' => '3708496', - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppender15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715760' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '147', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '3709361' => { - 'Class' => '3708496', - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715760' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'append', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '211', - 'Virt' => 1, - 'VirtPos' => '17' - }, - '3709407' => { - 'Class' => '3708496', - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppender5closeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715760' - } - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '112', - 'Virt' => 1, - 'VirtPos' => '10' - }, - '3709443' => { - 'Class' => '3708496', - 'Const' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 2, - 'Line' => '156', - 'MnglName' => '_ZNK7log4cxx2db10DBAppender14requiresLayoutEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715749' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'requiresLayout', - 'Virt' => 1, - 'VirtPos' => '16' - }, - '3709638' => { - 'Data' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7classes22DBAppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DBAppenderRegistration', - 'Source' => 'dbappender.cpp' - }, - '3709780' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7pattern28LoggingEventPatternConverterENS1_16PatternConverterELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', - 'Param' => { - '0' => { - 'name' => 'incoming', - 'type' => '2273656' - } - }, - 'Return' => '3644262', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '2271385' - }, - '1' => { - 'key' => 'Type', - 'type' => '2270651' - } - } - }, - '3771195' => { - 'Artificial' => 1, - 'Class' => '3708740', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx2db10DBAppender14DBAppenderPrivD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3714254' - } - }, - 'ShortName' => 'DBAppenderPriv', - 'Source' => 'dbappender.cpp', - 'Virt' => 1 - }, - '3771196' => { - 'Artificial' => 1, - 'Class' => '3708740', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx2db10DBAppender14DBAppenderPrivD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3714254' - } - }, - 'ShortName' => 'DBAppenderPriv', - 'Source' => 'dbappender.cpp', - 'Virt' => 1 - }, - '3780199' => { - 'Artificial' => 1, - 'Class' => '3708740', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx2db10DBAppender14DBAppenderPrivD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3714254' - } - }, - 'ShortName' => 'DBAppenderPriv', - 'Source' => 'dbappender.cpp', - 'Virt' => 1 - }, - '3800650' => { - 'Artificial' => 1, - 'Class' => '3706549', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3712664' - } - }, - 'ShortName' => 'WideLife' - }, - '3800651' => { - 'Artificial' => 1, - 'Class' => '3706549', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3712664' - } - }, - 'ShortName' => 'WideLife' - }, - '3800792' => { - 'Artificial' => 1, - 'Class' => '3706549', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3712664' - } - }, - 'ShortName' => 'WideLife' - }, - '3800793' => { - 'Artificial' => 1, - 'Class' => '3706549', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3712664' - } - }, - 'ShortName' => 'WideLife' - }, - '3854371' => { - 'Class' => '3708496', - 'Destructor' => 1, - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppenderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715760' - } - }, - 'ShortName' => 'DBAppender', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '107', - 'Virt' => 1 - }, - '3854469' => { - 'Class' => '3708496', - 'Destructor' => 1, - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppenderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715760' - } - }, - 'ShortName' => 'DBAppender', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '107', - 'Virt' => 1 - }, - '3854753' => { - 'Class' => '3708496', - 'Destructor' => 1, - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppenderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715760' - } - }, - 'ShortName' => 'DBAppender', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '107', - 'Virt' => 1 - }, - '3854903' => { - 'Class' => '3708496', - 'Constructor' => 1, - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715760' - } - }, - 'ShortName' => 'DBAppender', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '102' - }, - '3869334' => { - 'Class' => '3708496', - 'Constructor' => 1, - 'Header' => 'dbappender.h', - 'MnglName' => '_ZN7log4cxx2db10DBAppenderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715760' - } - }, - 'ShortName' => 'DBAppender', - 'Source' => 'dbappender.cpp', - 'SourceLine' => '102' - }, - '3952931' => { - 'Artificial' => 1, - 'Class' => '3708514', - 'Destructor' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 1, - 'Line' => '116', - 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715830' - } - }, - 'ShortName' => 'ClazzDBAppender', - 'Virt' => 1 - }, - '3952932' => { - 'Artificial' => 1, - 'Class' => '3708514', - 'Destructor' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 1, - 'Line' => '116', - 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715830' - } - }, - 'ShortName' => 'ClazzDBAppender', - 'Virt' => 1 - }, - '3953073' => { - 'Artificial' => 1, - 'Class' => '3708514', - 'Destructor' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 1, - 'Line' => '116', - 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715830' - } - }, - 'ShortName' => 'ClazzDBAppender', - 'Virt' => 1 - }, - '3953163' => { - 'Artificial' => 1, - 'Class' => '3708514', - 'Constructor' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 1, - 'Line' => '116', - 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715830' - } - }, - 'ShortName' => 'ClazzDBAppender' - }, - '3953164' => { - 'Artificial' => 1, - 'Class' => '3708514', - 'Constructor' => 1, - 'Header' => 'dbappender.h', - 'InLine' => 1, - 'Line' => '116', - 'MnglName' => '_ZN7log4cxx2db10DBAppender15ClazzDBAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3715830' - } - }, - 'ShortName' => 'ClazzDBAppender' - }, - '4043968' => { - 'Class' => '832974', - 'Header' => 'properties.h', - 'Line' => '126', - 'MnglName' => '_ZN7log4cxx7helpers10Properties4loadESt10shared_ptrINS0_11InputStreamEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14094232' - }, - '1' => { - 'name' => 'inStream', - 'type' => '4044621' - } - }, - 'Return' => '1', - 'ShortName' => 'load', - 'Source' => 'properties.cpp', - 'SourceLine' => '430' - }, - '4044000' => { - 'Class' => '832974', - 'Header' => 'properties.h', - 'Line' => '135', - 'MnglName' => '_ZN7log4cxx7helpers10Properties11setPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14094232' - }, - '1' => { - 'name' => 'key', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '63706', - 'ShortName' => 'setProperty', - 'Source' => 'properties.cpp', - 'SourceLine' => '407' - }, - '4044041' => { - 'Class' => '832974', - 'Header' => 'properties.h', - 'Line' => '143', - 'MnglName' => '_ZN7log4cxx7helpers10Properties3putERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14094232' - }, - '1' => { - 'name' => 'key', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '63706', - 'ShortName' => 'put', - 'Source' => 'properties.cpp', - 'SourceLine' => '412' - }, - '4044082' => { - 'Class' => '832974', - 'Const' => 1, - 'Header' => 'properties.h', - 'Line' => '152', - 'MnglName' => '_ZNK7log4cxx7helpers10Properties11getPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14094255' - }, - '1' => { - 'name' => 'key', - 'type' => '263006' - } - }, - 'Return' => '63706', - 'ShortName' => 'getProperty', - 'Source' => 'properties.cpp', - 'SourceLine' => '419' - }, - '4044118' => { - 'Class' => '832974', - 'Const' => 1, - 'Header' => 'properties.h', - 'Line' => '159', - 'MnglName' => '_ZNK7log4cxx7helpers10Properties3getERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14094255' - }, - '1' => { - 'name' => 'key', - 'type' => '263006' - } - }, - 'Return' => '63706', - 'ShortName' => 'get', - 'Source' => 'properties.cpp', - 'SourceLine' => '424' - }, - '4044154' => { - 'Class' => '832974', - 'Const' => 1, - 'Header' => 'properties.h', - 'Line' => '169', - 'MnglName' => '_ZNK7log4cxx7helpers10Properties13propertyNamesB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14094255' - } - }, - 'Return' => '2242385', - 'ShortName' => 'propertyNames', - 'Source' => 'properties.cpp', - 'SourceLine' => '440' - }, - '4045605' => { - 'Class' => '4045566', - 'Header' => 'defaultconfigurator.h', - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx19DefaultConfigurator9configureESt10shared_ptrINS_3spi16LoggerRepositoryEE', - 'Param' => { - '0' => { - 'name' => 'repository', - 'type' => '835664' - } - }, - 'Return' => '1', - 'ShortName' => 'configure', - 'Source' => 'defaultconfigurator.cpp', - 'SourceLine' => '51', - 'Static' => 1 - }, - '4045628' => { - 'Class' => '4045566', - 'Header' => 'defaultconfigurator.h', - 'Line' => '66', - 'MnglName' => '_ZN7log4cxx19DefaultConfigurator24setConfigurationFileNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'path', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setConfigurationFileName', - 'Source' => 'defaultconfigurator.cpp', - 'SourceLine' => '38', - 'Static' => 1 - }, - '4045651' => { - 'Class' => '4045566', - 'Header' => 'defaultconfigurator.h', - 'Line' => '72', - 'MnglName' => '_ZN7log4cxx19DefaultConfigurator28setConfigurationWatchSecondsEi', - 'Param' => { - '0' => { - 'name' => 'seconds', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '1', - 'ShortName' => 'setConfigurationWatchSeconds', - 'Source' => 'defaultconfigurator.cpp', - 'SourceLine' => '44', - 'Static' => 1 - }, - '4045674' => { - 'Class' => '4045566', - 'Header' => 'defaultconfigurator.h', - 'Line' => '99', - 'MnglName' => '_ZN7log4cxx19DefaultConfigurator17configureFromFileERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EESB_', - 'Param' => { - '0' => { - 'name' => 'directories', - 'type' => '2273842' - }, - '1' => { - 'name' => 'filenames', - 'type' => '2273842' - } - }, - 'Return' => '4008782', - 'ShortName' => 'configureFromFile', - 'Source' => 'defaultconfigurator.cpp', - 'SourceLine' => '174', - 'Static' => 1 - }, - '4045706' => { - 'Class' => '4045566', - 'Header' => 'defaultconfigurator.h', - 'Line' => '103', - 'MnglName' => '_ZN7log4cxx19DefaultConfigurator24getConfigurationFileNameB5cxx11Ev', - 'Private' => 1, - 'Return' => '262804', - 'ShortName' => 'getConfigurationFileName', - 'Source' => 'defaultconfigurator.cpp', - 'SourceLine' => '137', - 'Static' => 1 - }, - '4045722' => { - 'Class' => '4045566', - 'Header' => 'defaultconfigurator.h', - 'Line' => '104', - 'MnglName' => '_ZN7log4cxx19DefaultConfigurator20getConfiguratorClassB5cxx11Ev', - 'Private' => 1, - 'Return' => '262804', - 'ShortName' => 'getConfiguratorClass', - 'Source' => 'defaultconfigurator.cpp', - 'SourceLine' => '124', - 'Static' => 1 - }, - '4045738' => { - 'Class' => '4045566', - 'Header' => 'defaultconfigurator.h', - 'Line' => '105', - 'MnglName' => '_ZN7log4cxx19DefaultConfigurator26getConfigurationWatchDelayEv', - 'Private' => 1, - 'Return' => '50231', - 'ShortName' => 'getConfigurationWatchDelay', - 'Source' => 'defaultconfigurator.cpp', - 'SourceLine' => '150', - 'Static' => 1 - }, - '4045754' => { - 'Class' => '4045566', - 'Header' => 'defaultconfigurator.h', - 'Line' => '106', - 'MnglName' => '_ZN7log4cxx19DefaultConfigurator11tryLoadFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'filename', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '2699607', - 'ShortName' => 'tryLoadFile', - 'Source' => 'defaultconfigurator.cpp', - 'SourceLine' => '160', - 'Static' => 1 - }, - '4045983' => { - 'Class' => '836407', - 'Header' => 'file.h', - 'Line' => '95', - 'MnglName' => '_ZN7log4cxx4FileaSERKS0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'src', - 'type' => '840075' - } - }, - 'Return' => '4048096', - 'ShortName' => 'operator=', - 'Source' => 'file.cpp', - 'SourceLine' => '122' - }, - '4046051' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '106', - 'MnglName' => '_ZNK7log4cxx4File6existsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '50284', - 'ShortName' => 'exists', - 'Source' => 'file.cpp', - 'SourceLine' => '195' - }, - '4046087' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '112', - 'MnglName' => '_ZNK7log4cxx4File6lengthERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'pool', - 'type' => '64643' - } - }, - 'Return' => '50486', - 'ShortName' => 'length', - 'Source' => 'file.cpp', - 'SourceLine' => '232' - }, - '4046123' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '118', - 'MnglName' => '_ZNK7log4cxx4File12lastModifiedERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'pool', - 'type' => '64643' - } - }, - 'Return' => '649587', - 'ShortName' => 'lastModified', - 'Source' => 'file.cpp', - 'SourceLine' => '247' - }, - '4046159' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '123', - 'MnglName' => '_ZNK7log4cxx4File7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Source' => 'file.cpp', - 'SourceLine' => '156' - }, - '4046190' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '128', - 'MnglName' => '_ZNK7log4cxx4File7getPathB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - } - }, - 'Return' => '63706', - 'ShortName' => 'getPath', - 'Source' => 'file.cpp', - 'SourceLine' => '145' - }, - '4046221' => { - 'Class' => '836407', - 'Header' => 'file.h', - 'Line' => '132', - 'MnglName' => '_ZN7log4cxx4File7setPathERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'newName', - 'type' => '263006' - } - }, - 'Return' => '4048096', - 'ShortName' => 'setPath', - 'Source' => 'file.cpp', - 'SourceLine' => '150' - }, - '4046257' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '142', - 'MnglName' => '_ZNK7log4cxx4File4openEPP10apr_file_tiiRNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'file', - 'type' => '4781406' - }, - '2' => { - 'name' => 'flags', - 'type' => '50231' - }, - '3' => { - 'name' => 'perm', - 'type' => '50231' - }, - '4' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '838230', - 'ShortName' => 'open', - 'Source' => 'file.cpp', - 'SourceLine' => '187' - }, - '4046308' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '150', - 'MnglName' => '_ZNK7log4cxx4File4listB5cxx11ERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '2242385', - 'ShortName' => 'list', - 'Source' => 'file.cpp', - 'SourceLine' => '262' - }, - '4046344' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '157', - 'MnglName' => '_ZNK7log4cxx4File10deleteFileERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '50284', - 'ShortName' => 'deleteFile', - 'Source' => 'file.cpp', - 'SourceLine' => '216' - }, - '4046380' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '164', - 'MnglName' => '_ZNK7log4cxx4File8renameToERKS0_RNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'dest', - 'type' => '840075' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '50284', - 'ShortName' => 'renameTo', - 'Source' => 'file.cpp', - 'SourceLine' => '223' - }, - '4046421' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '171', - 'MnglName' => '_ZNK7log4cxx4File9getParentB5cxx11ERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '1' => 'rdx' - }, - 'Return' => '63706', - 'ShortName' => 'getParent', - 'Source' => 'file.cpp', - 'SourceLine' => '305' - }, - '4046457' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '177', - 'MnglName' => '_ZNK7log4cxx4File6mkdirsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '50284', - 'ShortName' => 'mkdirs', - 'Source' => 'file.cpp', - 'SourceLine' => '332' - }, - '4046493' => { - 'Class' => '836407', - 'Header' => 'file.h', - 'Line' => '183', - 'MnglName' => '_ZN7log4cxx4File13setAutoDeleteEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'autoDelete', - 'type' => '50284' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setAutoDelete', - 'Source' => 'file.cpp', - 'SourceLine' => '339' - }, - '4046525' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '191', - 'MnglName' => '_ZNK7log4cxx4File13getAutoDeleteEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAutoDelete', - 'Source' => 'file.cpp', - 'SourceLine' => '343' - }, - '4046569' => { - 'Class' => '836407', - 'Header' => 'file.h', - 'Line' => '195', - 'MnglName' => '_ZN7log4cxx4File18convertBackSlashesEPc', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '51958' - } - }, - 'Private' => 1, - 'Return' => '51958', - 'ShortName' => 'convertBackSlashes', - 'Source' => 'file.cpp', - 'SourceLine' => '203', - 'Static' => 1 - }, - '4046595' => { - 'Class' => '836407', - 'Const' => 1, - 'Header' => 'file.h', - 'Line' => '196', - 'MnglName' => '_ZNK7log4cxx4File7getPathERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730209' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Private' => 1, - 'Return' => '51958', - 'ShortName' => 'getPath', - 'Source' => 'file.cpp', - 'SourceLine' => '169' - }, - '405478' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog11getInstanceEv', - 'Private' => 1, - 'Return' => '410967', - 'ShortName' => 'getInstance', - 'Source' => 'loglog.cpp', - 'SourceLine' => '62', - 'Static' => 1 - }, - '405527' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '58', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog20setInternalDebuggingEb', - 'Param' => { - '0' => { - 'name' => 'debugEnabled1', - 'type' => '50284' - } - }, - 'Return' => '1', - 'ShortName' => 'setInternalDebugging', - 'Source' => 'loglog.cpp', - 'SourceLine' => '69', - 'Static' => 1 - }, - '405550' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog5debugERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'debug', - 'Source' => 'loglog.cpp', - 'SourceLine' => '77', - 'Static' => 1 - }, - '405573' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog5debugERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exception', - 'Param' => { - '0' => { - 'name' => 'msg', - 'type' => '263006' - }, - '1' => { - 'name' => 'e', - 'type' => '66067' - } - }, - 'Return' => '1', - 'ShortName' => 'debug', - 'Source' => 'loglog.cpp', - 'SourceLine' => '93', - 'Static' => 1 - }, - '405601' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'loglog.cpp', - 'SourceLine' => '108', - 'Static' => 1 - }, - '405624' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exception', - 'Param' => { - '0' => { - 'name' => 'msg', - 'type' => '263006' - }, - '1' => { - 'name' => 'e', - 'type' => '66067' - } - }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'loglog.cpp', - 'SourceLine' => '119', - 'Static' => 1 - }, - '405652' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '88', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog12setQuietModeEb', - 'Param' => { - '0' => { - 'name' => 'quietMode1', - 'type' => '50284' - } - }, - 'Return' => '1', - 'ShortName' => 'setQuietMode', - 'Source' => 'loglog.cpp', - 'SourceLine' => '130', - 'Static' => 1 - }, - '405675' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '93', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog4warnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'warn', - 'Source' => 'loglog.cpp', - 'SourceLine' => '138', - 'Static' => 1 - }, - '405698' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '97', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog4warnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exception', - 'Param' => { - '0' => { - 'name' => 'msg', - 'type' => '263006' - }, - '1' => { - 'name' => 'e', - 'type' => '66067' - } - }, - 'Return' => '1', - 'ShortName' => 'warn', - 'Source' => 'loglog.cpp', - 'SourceLine' => '148', - 'Static' => 1 - }, - '405726' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '100', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog4emitERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'emit', - 'Source' => 'loglog.cpp', - 'SourceLine' => '159', - 'Static' => 1 - }, - '405749' => { - 'Class' => '405355', - 'Header' => 'loglog.h', - 'Line' => '101', - 'MnglName' => '_ZN7log4cxx7helpers6LogLog4emitERKSt9exception', - 'Param' => { - '0' => { - 'name' => 'ex', - 'type' => '66067' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'emit', - 'Source' => 'loglog.cpp', - 'SourceLine' => '169', - 'Static' => 1 - }, - '405797' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper4trimERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 's', - 'type' => '263006' - } - }, - 'Return' => '63706', - 'ShortName' => 'trim', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '75', - 'Static' => 1 - }, - '405824' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper10startsWithERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 's', - 'type' => '263006' - }, - '1' => { - 'name' => 'prefix', - 'type' => '263006' - } - }, - 'Return' => '50284', - 'ShortName' => 'startsWith', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '88', - 'Static' => 1 - }, - '405856' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8endsWithERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 's', - 'type' => '263006' - }, - '1' => { - 'name' => 'suffix', - 'type' => '263006' - } - }, - 'Return' => '50284', - 'ShortName' => 'endsWith', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '98', - 'Static' => 1 - }, - '405888' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper16equalsIgnoreCaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcSB_', - 'Param' => { - '0' => { - 'name' => 's1', - 'type' => '263006' - }, - '1' => { - 'name' => 'upper', - 'type' => '410979' - }, - '2' => { - 'name' => 'lower', - 'type' => '410979' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'equalsIgnoreCase', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '31', - 'Static' => 1 - }, - '405925' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper16equalsIgnoreCaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_', - 'Param' => { - '0' => { - 'name' => 's1', - 'type' => '263006' - }, - '1' => { - 'name' => 'upper', - 'type' => '263006' - }, - '2' => { - 'name' => 'lower', - 'type' => '263006' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '50284', - 'ShortName' => 'equalsIgnoreCase', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '46', - 'Static' => 1 - }, - '405962' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper5toIntERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 's', - 'type' => '263006' - } - }, - 'Return' => '50231', - 'ShortName' => 'toInt', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '109', - 'Static' => 1 - }, - '405989' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper7toInt64ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 's', - 'type' => '263006' - } - }, - 'Return' => '53742', - 'ShortName' => 'toInt64', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '120', - 'Static' => 1 - }, - '406016' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8toStringEiRNS0_4PoolERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'n', - 'type' => '50231' - }, - '1' => { - 'name' => 'pool', - 'type' => '64643' - }, - '2' => { - 'name' => 'dst', - 'type' => '409210' - } - }, - 'Return' => '1', - 'ShortName' => 'toString', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '131', - 'Static' => 1 - }, - '406049' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8toStringElRNS0_4PoolERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'n', - 'type' => '53742' - }, - '1' => { - 'name' => 'pool', - 'type' => '64643' - }, - '2' => { - 'name' => 'dst', - 'type' => '409210' - } - }, - 'Return' => '1', - 'ShortName' => 'toString', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '153', - 'Static' => 1 - }, - '406082' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8toStringEmRNS0_4PoolERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'n', - 'type' => '50486' - }, - '1' => { - 'name' => 'pool', - 'type' => '64643' - }, - '2' => { - 'name' => 'dst', - 'type' => '409210' - } - }, - 'Return' => '1', - 'ShortName' => 'toString', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '163', - 'Static' => 1 - }, - '4061062' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA36_KcJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '4049318' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '4049318' - } - } - }, - '4061063' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA36_KcJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '4049318' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '4049318' - } - } - }, - '406115' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8toStringEbRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'val', - 'type' => '50284' - }, - '1' => { - 'name' => 'dst', - 'type' => '409210' - } - }, - 'Return' => '1', - 'ShortName' => 'toString', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '140', - 'Static' => 1 - }, - '4061224' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA20_KcJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '4049296' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '4049296' - } - } - }, - '4061225' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA20_KcJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '4049296' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '4049296' - } - } - }, - '406143' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper11toLowerCaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 's', - 'type' => '263006' - } - }, - 'Return' => '63706', - 'ShortName' => 'toLowerCase', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '67', - 'Static' => 1 - }, - '406170' => { - 'Class' => '405784', - 'Header' => 'stringhelper.h', - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx7helpers12StringHelper6formatERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_SaIS7_EE', - 'Param' => { - '0' => { - 'name' => 'pattern', - 'type' => '263006' - }, - '1' => { - 'name' => 'params', - 'type' => '2273842' - } - }, - 'Return' => '63706', - 'ShortName' => 'format', - 'Source' => 'stringhelper.cpp', - 'SourceLine' => '172', - 'Static' => 1 - }, - '4062094' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA22_KcJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '4049274' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '4049274' - } - } - }, - '4062095' => { - 'Artificial' => 1, - 'Class' => '1149270', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA22_KcJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1153112' - }, - '1' => { - 'name' => 'arg0', - 'type' => '4049274' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '4049274' - } - } - }, - '407332' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '180', - 'MnglName' => '_ZN7log4cxx5Level9toLevelLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'sArg', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '409192', - 'ShortName' => 'toLevelLS', - 'Source' => 'level.cpp', - 'SourceLine' => '92', - 'Static' => 1 - }, - '407344' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '222', - 'MnglName' => '_ZN7log4cxx5Level6getAllEv', - 'Private' => 1, - 'Return' => '409192', - 'ShortName' => 'getAll', - 'Source' => 'level.cpp', - 'SourceLine' => '76', - 'Static' => 1 - }, - '407379' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '100', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent8getLevelEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10216376' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '412081', - 'ShortName' => 'getLevel', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '449' - }, - '407957' => { - 'Class' => '407836', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'InLine' => 2, - 'Line' => '56', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton21ClazzAppenderSkeleton7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412139' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '408128' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412030' - }, - '1' => { - 'name' => 'p1', - 'type' => '154261' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' - } - }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'append', - 'VirtPos' => '17' - }, - '408173' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton12doAppendImplERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'pool1', - 'type' => '64643' - } - }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'doAppendImpl', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '98' - }, - '408210' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '31', - 'Static' => 1 - }, - '408227' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '31', - 'Static' => 1 - }, - '408244' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '31', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '408283' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'InLine' => 2, - 'Line' => '57', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '408327' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'InLine' => 2, - 'Line' => '61', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '408493' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'Line' => '71', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton8finalizeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - } - }, - 'Return' => '1', - 'ShortName' => 'finalize', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '53' - }, - '408520' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'InLine' => 2, - 'Line' => '78', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '408560' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '156', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '408605' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'newFilter', - 'type' => '151283' - } - }, - 'Return' => '1', - 'ShortName' => 'addFilter', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '65', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '408645' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton12clearFiltersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - } - }, - 'Return' => '1', - 'ShortName' => 'clearFilters', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '80', - 'Virt' => 1, - 'VirtPos' => '9' - }, - '408680' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton15getErrorHandlerEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '407517', - 'ShortName' => 'getErrorHandler', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '166' - }, - '408711' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton9getFilterEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '151271', - 'ShortName' => 'getFilter', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '171', - 'Virt' => 1, - 'VirtPos' => '8' - }, - '408750' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton14getFirstFilterEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '151283', - 'ShortName' => 'getFirstFilter', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '176' - }, - '408781' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton9getLayoutEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '409175', - 'ShortName' => 'getLayout', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '181', - 'Virt' => 1, - 'VirtPos' => '14' - }, - '408820' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '186', - 'Virt' => 1, - 'VirtPos' => '12' - }, - '408859' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton12getThresholdEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '409204', - 'ShortName' => 'getThreshold', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '191' - }, - '408890' => { - 'Class' => '407542', - 'Const' => 1, - 'Header' => 'appenderskeleton.h', - 'Line' => '140', - 'MnglName' => '_ZNK7log4cxx16AppenderSkeleton21isAsSevereAsThresholdERKSt10shared_ptrINS_5LevelEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412070' - }, - '1' => { - 'name' => 'level', - 'type' => '412081' - } - }, - 'Return' => '50284', - 'ShortName' => 'isAsSevereAsThreshold', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '86' - }, - '408926' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'pool1', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'doAppend', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '91', - 'Virt' => 1, - 'VirtPos' => '11' - }, - '408971' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'Line' => '153', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton15setErrorHandlerESt10shared_ptrINS_3spi12ErrorHandlerEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'errorHandler1', - 'type' => '407517' - } - }, - 'Return' => '1', - 'ShortName' => 'setErrorHandler', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '134' - }, - '409003' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'Line' => '159', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'layout1', - 'type' => '409187' - } - }, - 'Return' => '1', - 'ShortName' => 'setLayout', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '196', - 'Virt' => 1, - 'VirtPos' => '13' - }, - '409043' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'name1', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setName', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '201', - 'Virt' => 1, - 'VirtPos' => '15' - }, - '409083' => { - 'Class' => '407542', - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton12setThresholdERKSt10shared_ptrINS_5LevelEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'threshold1', - 'type' => '412081' - } - }, - 'Return' => '1', - 'ShortName' => 'setThreshold', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '150' - }, - '409135' => { - 'Data' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7classes28AppenderSkeletonRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'AppenderSkeletonRegistration', - 'Source' => 'appenderskeleton.cpp' - }, - '409162' => { - 'Class' => '262983', - 'Header' => 'appender.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx8Appender14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '44', - 'Static' => 1 - }, - '4199704' => { - 'Class' => '4199656', - 'Header' => 'loggerfactory.h', - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '47', - 'Static' => 1 - }, - '4199866' => { - 'Class' => '4199746', - 'Const' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactory7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201843' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '4199940' => { - 'Class' => '4199728', - 'Header' => 'defaultloggerfactory.h', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'defaultloggerfactory.cpp', - 'SourceLine' => '23', - 'Static' => 1 - }, - '4199957' => { - 'Class' => '4199728', - 'Header' => 'defaultloggerfactory.h', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'defaultloggerfactory.cpp', - 'SourceLine' => '23', - 'Static' => 1 - }, - '4199974' => { - 'Class' => '4199728', - 'Const' => 1, - 'Header' => 'defaultloggerfactory.h', - 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201799' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'defaultloggerfactory.cpp', - 'SourceLine' => '23', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '4200013' => { - 'Class' => '4199728', - 'Const' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201799' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '4200057' => { - 'Class' => '4199728', - 'Const' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201799' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '4200101' => { - 'Class' => '4199728', - 'Const' => 1, - 'Header' => 'defaultloggerfactory.h', - 'MnglName' => '_ZNK7log4cxx20DefaultLoggerFactory21makeNewLoggerInstanceERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201799' - }, - '1' => { - 'name' => 'pool', - 'type' => '64643' - }, - '2' => { - 'name' => 'name', - 'type' => '263006' - } - }, - 'Return' => '1150380', - 'ShortName' => 'makeNewLoggerInstance', - 'Source' => 'defaultloggerfactory.cpp', - 'SourceLine' => '25', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '4200204' => { - 'Data' => 1, - 'Line' => '23', - 'MnglName' => '_ZN7log4cxx7classes32DefaultLoggerFactoryRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DefaultLoggerFactoryRegistration', - 'Source' => 'defaultloggerfactory.cpp' - }, - '4204842' => { - 'Artificial' => 1, - 'Class' => '4199728', - 'Destructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201810' - } - }, - 'ShortName' => 'DefaultLoggerFactory', - 'Virt' => 1 - }, - '4204843' => { - 'Artificial' => 1, - 'Class' => '4199728', - 'Destructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201810' - } - }, - 'ShortName' => 'DefaultLoggerFactory', - 'Virt' => 1 - }, - '4205079' => { - 'Artificial' => 1, - 'Class' => '4199728', - 'Destructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201810' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'DefaultLoggerFactory', - 'Virt' => 1 - }, - '4210995' => { - 'Artificial' => 1, - 'Class' => '4198594', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201379' - } - }, - 'ShortName' => 'WideLife' - }, - '4210996' => { - 'Artificial' => 1, - 'Class' => '4198594', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201379' - } - }, - 'ShortName' => 'WideLife' - }, - '4211136' => { - 'Artificial' => 1, - 'Class' => '4198594', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201379' - } - }, - 'ShortName' => 'WideLife' - }, - '4211137' => { - 'Artificial' => 1, - 'Class' => '4198594', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201379' - } - }, - 'ShortName' => 'WideLife' - }, - '4215926' => { - 'Artificial' => 1, - 'Class' => '4199746', - 'Destructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201832' - } - }, - 'ShortName' => 'ClazzDefaultLoggerFactory', - 'Virt' => 1 - }, - '4215927' => { - 'Artificial' => 1, - 'Class' => '4199746', - 'Destructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201832' - } - }, - 'ShortName' => 'ClazzDefaultLoggerFactory', - 'Virt' => 1 - }, - '4216067' => { - 'Artificial' => 1, - 'Class' => '4199746', - 'Destructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201832' - } - }, - 'ShortName' => 'ClazzDefaultLoggerFactory', - 'Virt' => 1 - }, - '4216157' => { - 'Artificial' => 1, - 'Class' => '4199746', - 'Constructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201832' - } - }, - 'ShortName' => 'ClazzDefaultLoggerFactory' - }, - '4216158' => { - 'Artificial' => 1, - 'Class' => '4199746', - 'Constructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201832' - } - }, - 'ShortName' => 'ClazzDefaultLoggerFactory' - }, - '4216233' => { - 'Artificial' => 1, - 'Class' => '4199656', - 'Destructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4216186' - } - }, - 'ShortName' => 'LoggerFactory', - 'Virt' => 1 - }, - '4216234' => { - 'Artificial' => 1, - 'Class' => '4199656', - 'Destructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4216186' - } - }, - 'ShortName' => 'LoggerFactory', - 'Virt' => 1 - }, - '4279534' => { - 'Class' => '4279448', - 'Header' => 'defaultrepositoryselector.h', - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelector19getLoggerRepositoryEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4283466' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '835664', - 'ShortName' => 'getLoggerRepository', - 'Source' => 'defaultrepositoryselector.cpp', - 'SourceLine' => '37', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '4279657' => { - 'Class' => '4279448', - 'Const' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx3spi25DefaultRepositorySelector10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4290404' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '4279701' => { - 'Class' => '4279448', - 'Const' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'InLine' => 2, - 'Line' => '36', - 'MnglName' => '_ZNK7log4cxx3spi25DefaultRepositorySelector4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4290404' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '4284320' => { - 'Class' => '4279448', - 'Destructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4283466' - } - }, - 'ShortName' => 'DefaultRepositorySelector', - 'Source' => 'defaultrepositoryselector.cpp', - 'SourceLine' => '35', - 'Virt' => 1 - }, - '4284419' => { - 'Class' => '4279448', - 'Destructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4283466' - } - }, - 'ShortName' => 'DefaultRepositorySelector', - 'Source' => 'defaultrepositoryselector.cpp', - 'SourceLine' => '35', - 'Virt' => 1 - }, - '4285525' => { - 'Class' => '4279448', - 'Destructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4283466' - } - }, - 'ShortName' => 'DefaultRepositorySelector', - 'Source' => 'defaultrepositoryselector.cpp', - 'SourceLine' => '35', - 'Virt' => 1 - }, - '4286591' => { - 'Class' => '4279448', - 'Constructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorC1ESt10shared_ptrINS0_16LoggerRepositoryEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4283466' - }, - '1' => { - 'name' => 'repository1', - 'type' => '4279765' - } - }, - 'ShortName' => 'DefaultRepositorySelector', - 'Source' => 'defaultrepositoryselector.cpp', - 'SourceLine' => '29' - }, - '4288479' => { - 'Class' => '4279448', - 'Constructor' => 1, - 'Header' => 'defaultrepositoryselector.h', - 'MnglName' => '_ZN7log4cxx3spi25DefaultRepositorySelectorC2ESt10shared_ptrINS0_16LoggerRepositoryEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4283466' - }, - '2' => { - 'name' => 'repository1', - 'type' => '4279765' - } - }, - 'ShortName' => 'DefaultRepositorySelector', - 'Source' => 'defaultrepositoryselector.cpp', - 'SourceLine' => '29' - }, - '4290320' => { - 'Artificial' => 1, - 'Class' => '4279770', - 'Constructor' => 1, - 'Header' => 'repositoryselector.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4290270' - } - }, - 'ShortName' => 'RepositorySelector' - }, - '4290321' => { - 'Artificial' => 1, - 'Class' => '4279770', - 'Constructor' => 1, - 'Header' => 'repositoryselector.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4290270' - } - }, - 'ShortName' => 'RepositorySelector' - }, - '4290540' => { - 'Artificial' => 1, - 'Class' => '4279770', - 'Destructor' => 1, - 'Header' => 'repositoryselector.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4290270' - } - }, - 'ShortName' => 'RepositorySelector', - 'Virt' => 1 - }, - '4290541' => { - 'Artificial' => 1, - 'Class' => '4279770', - 'Destructor' => 1, - 'Header' => 'repositoryselector.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4290270' - } - }, - 'ShortName' => 'RepositorySelector', - 'Virt' => 1 - }, - '430219' => { - 'Artificial' => 1, - 'Class' => '406200', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '411451' - } - }, - 'ShortName' => 'WideLife' - }, - '430220' => { - 'Artificial' => 1, - 'Class' => '406200', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '411451' - } - }, - 'ShortName' => 'WideLife' - }, - '430361' => { - 'Artificial' => 1, - 'Class' => '406200', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '411451' - } - }, - 'ShortName' => 'WideLife' - }, - '430362' => { - 'Artificial' => 1, - 'Class' => '406200', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '411451' - } - }, - 'ShortName' => 'WideLife' - }, - '4355158' => { - 'Class' => '832107', - 'Header' => 'exception.h', - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '854512' - }, - '1' => { - 'name' => 'src', - 'type' => '4359639' - } - }, - 'Return' => '4359645', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '69' - }, - '4355194' => { - 'Class' => '832107', - 'Const' => 1, - 'Header' => 'exception.h', - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx7helpers9Exception4whatEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359657' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '51127', - 'ShortName' => 'what', - 'Source' => 'exception.cpp', - 'SourceLine' => '80', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '4355786' => { - 'Class' => '4355699', - 'Header' => 'exception.h', - 'Line' => '279', - 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359684' - }, - '1' => { - 'name' => 'src', - 'type' => '4359689' - } - }, - 'Return' => '4359695', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '494' - }, - '4355951' => { - 'Class' => '4355859', - 'Header' => 'exception.h', - 'Line' => '264', - 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359707' - }, - '1' => { - 'name' => 'src', - 'type' => '4359712' - } - }, - 'Return' => '4359718', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '478' - }, - '4356171' => { - 'Class' => '4356024', - 'Header' => 'exception.h', - 'Line' => '96', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - }, - '1' => { - 'name' => 'src', - 'type' => '4360057' - } - }, - 'Return' => '4360063', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '167' - }, - '4356207' => { - 'Class' => '4356024', - 'Header' => 'exception.h', - 'Line' => '98', - 'MnglName' => '_ZN7log4cxx7helpers11IOException13formatMessageB5cxx11Ei', - 'Param' => { - '0' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'Private' => 1, - 'Return' => '63706', - 'ShortName' => 'formatMessage', - 'Source' => 'exception.cpp', - 'SourceLine' => '173', - 'Static' => 1 - }, - '4356359' => { - 'Class' => '4356269', - 'Header' => 'exception.h', - 'Line' => '250', - 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359730' - }, - '1' => { - 'name' => 'src', - 'type' => '4359735' - } - }, - 'Return' => '4359741', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '463' - }, - '4356555' => { - 'Class' => '4356432', - 'Header' => 'exception.h', - 'Line' => '218', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - }, - '1' => { - 'name' => 'src', - 'type' => '4359804' - } - }, - 'Return' => '4359810', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '418' - }, - '4356713' => { - 'Class' => '4356628', - 'Header' => 'exception.h', - 'Line' => '238', - 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359753' - }, - '1' => { - 'name' => 'src', - 'type' => '4359758' - } - }, - 'Return' => '4359764', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '448' - }, - '4356876' => { - 'Class' => '4356786', - 'Header' => 'exception.h', - 'Line' => '230', - 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359776' - }, - '1' => { - 'name' => 'src', - 'type' => '4359781' - } - }, - 'Return' => '4359787', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '433' - }, - '4357034' => { - 'Class' => '4356949', - 'Header' => 'exception.h', - 'Line' => '206', - 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359822' - }, - '1' => { - 'name' => 'src', - 'type' => '4359827' - } - }, - 'Return' => '4359833', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '399' - }, - '4357192' => { - 'Class' => '4357107', - 'Header' => 'exception.h', - 'Line' => '198', - 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359845' - }, - '1' => { - 'name' => 'src', - 'type' => '4359850' - } - }, - 'Return' => '4359856', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '382' - }, - '4357708' => { - 'Class' => '4357618', - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359914' - }, - '1' => { - 'name' => 'src', - 'type' => '4359919' - } - }, - 'Return' => '4359925', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '325' - }, - '4357869' => { - 'Class' => '4357781', - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359937' - }, - '1' => { - 'name' => 'src', - 'type' => '4359942' - } - }, - 'Return' => '4359948', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '246' - }, - '4357905' => { - 'Class' => '4357781', - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers19TranscoderException13formatMessageB5cxx11Ei', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '838230' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '63706', - 'ShortName' => 'formatMessage', - 'Source' => 'exception.cpp', - 'SourceLine' => '252', - 'Static' => 1 - }, - '4358090' => { - 'Class' => '4357967', - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - }, - '1' => { - 'name' => 'src', - 'type' => '4359965' - } - }, - 'Return' => '4359971', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '301' - }, - '4358127' => { - 'Class' => '4357967', - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadException13formatMessageB5cxx11Ei', - 'Param' => { - '0' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'Private' => 1, - 'Return' => '63706', - 'ShortName' => 'formatMessage', - 'Source' => 'exception.cpp', - 'SourceLine' => '307', - 'Static' => 1 - }, - '4358308' => { - 'Class' => '4358190', - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - }, - '1' => { - 'name' => 'src', - 'type' => '4359988' - } - }, - 'Return' => '4359994', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '272' - }, - '4358345' => { - 'Class' => '4358190', - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedException13formatMessageB5cxx11Ei', - 'Param' => { - '0' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'Private' => 1, - 'Return' => '63706', - 'ShortName' => 'formatMessage', - 'Source' => 'exception.cpp', - 'SourceLine' => '278', - 'Static' => 1 - }, - '4358496' => { - 'Class' => '4358408', - 'Header' => 'exception.h', - 'Line' => '116', - 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360006' - }, - '1' => { - 'name' => 'src', - 'type' => '4360011' - } - }, - 'Return' => '4360017', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '224' - }, - '4358532' => { - 'Class' => '4358408', - 'Header' => 'exception.h', - 'Line' => '118', - 'MnglName' => '_ZN7log4cxx7helpers13PoolException13formatMessageB5cxx11Ei', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '838230' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '63706', - 'ShortName' => 'formatMessage', - 'Source' => 'exception.cpp', - 'SourceLine' => '230', - 'Static' => 1 - }, - '4358682' => { - 'Class' => '4358594', - 'Header' => 'exception.h', - 'Line' => '106', - 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360029' - }, - '1' => { - 'name' => 'src', - 'type' => '4360034' - } - }, - 'Return' => '4360040', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '200' - }, - '4358718' => { - 'Class' => '4358594', - 'Header' => 'exception.h', - 'Line' => '108', - 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceException13formatMessageERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '63706', - 'ShortName' => 'formatMessage', - 'Source' => 'exception.cpp', - 'SourceLine' => '206', - 'Static' => 1 - }, - '4359246' => { - 'Class' => '4359158', - 'Header' => 'exception.h', - 'Line' => '72', - 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360098' - }, - '1' => { - 'name' => 'src', - 'type' => '4360103' - } - }, - 'Return' => '4360109', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '124' - }, - '4360423' => { - 'Artificial' => 1, - 'Class' => '4359158', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360098' - } - }, - 'ShortName' => 'NullPointerException', - 'Virt' => 1 - }, - '4360424' => { - 'Artificial' => 1, - 'Class' => '4359158', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360098' - } - }, - 'ShortName' => 'NullPointerException', - 'Virt' => 1 - }, - '4360659' => { - 'Artificial' => 1, - 'Class' => '4359158', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360098' - } - }, - 'ShortName' => 'NullPointerException', - 'Virt' => 1 - }, - '4361287' => { - 'Artificial' => 1, - 'Class' => '4358594', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '101', - 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360029' - } - }, - 'ShortName' => 'MissingResourceException', - 'Virt' => 1 - }, - '4361288' => { - 'Artificial' => 1, - 'Class' => '4358594', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '101', - 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360029' - } - }, - 'ShortName' => 'MissingResourceException', - 'Virt' => 1 - }, - '4361476' => { - 'Artificial' => 1, - 'Class' => '4358594', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '101', - 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360029' - } - }, - 'ShortName' => 'MissingResourceException', - 'Virt' => 1 - }, - '4361625' => { - 'Artificial' => 1, - 'Class' => '4358408', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '111', - 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360006' - } - }, - 'ShortName' => 'PoolException', - 'Virt' => 1 - }, - '4361626' => { - 'Artificial' => 1, - 'Class' => '4358408', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '111', - 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360006' - } - }, - 'ShortName' => 'PoolException', - 'Virt' => 1 - }, - '4361814' => { - 'Artificial' => 1, - 'Class' => '4358408', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '111', - 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360006' - } - }, - 'ShortName' => 'PoolException', - 'Virt' => 1 - }, - '4361963' => { - 'Artificial' => 1, - 'Class' => '4358190', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '122', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - } - }, - 'ShortName' => 'InterruptedException', - 'Virt' => 1 - }, - '4361964' => { - 'Artificial' => 1, - 'Class' => '4358190', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '122', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - } - }, - 'ShortName' => 'InterruptedException', - 'Virt' => 1 - }, - '4362152' => { - 'Artificial' => 1, - 'Class' => '4358190', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '122', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - } - }, - 'ShortName' => 'InterruptedException', - 'Virt' => 1 - }, - '4362301' => { - 'Artificial' => 1, - 'Class' => '4357967', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '133', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - } - }, - 'ShortName' => 'ThreadException', - 'Virt' => 1 - }, - '4362302' => { - 'Artificial' => 1, - 'Class' => '4357967', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '133', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - } - }, - 'ShortName' => 'ThreadException', - 'Virt' => 1 - }, - '4362490' => { - 'Artificial' => 1, - 'Class' => '4357967', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '133', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - } - }, - 'ShortName' => 'ThreadException', - 'Virt' => 1 - }, - '4362639' => { - 'Artificial' => 1, - 'Class' => '4357781', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '145', - 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359937' - } - }, - 'ShortName' => 'TranscoderException', - 'Virt' => 1 - }, - '4362640' => { - 'Artificial' => 1, - 'Class' => '4357781', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '145', - 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359937' - } - }, - 'ShortName' => 'TranscoderException', - 'Virt' => 1 - }, - '4362828' => { - 'Artificial' => 1, - 'Class' => '4357781', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '145', - 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359937' - } - }, - 'ShortName' => 'TranscoderException', - 'Virt' => 1 - }, - '4362977' => { - 'Artificial' => 1, - 'Class' => '4357618', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '155', - 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359914' - } - }, - 'ShortName' => 'IllegalMonitorStateException', - 'Virt' => 1 - }, - '4362978' => { - 'Artificial' => 1, - 'Class' => '4357618', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '155', - 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359914' - } - }, - 'ShortName' => 'IllegalMonitorStateException', - 'Virt' => 1 - }, - '4363166' => { - 'Artificial' => 1, - 'Class' => '4357618', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '155', - 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359914' - } - }, - 'ShortName' => 'IllegalMonitorStateException', - 'Virt' => 1 - }, - '4363991' => { - 'Artificial' => 1, - 'Class' => '4357107', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '193', - 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359845' - } - }, - 'ShortName' => 'NoSuchElementException', - 'Virt' => 1 - }, - '4363992' => { - 'Artificial' => 1, - 'Class' => '4357107', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '193', - 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359845' - } - }, - 'ShortName' => 'NoSuchElementException', - 'Virt' => 1 - }, - '4364180' => { - 'Artificial' => 1, - 'Class' => '4357107', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '193', - 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359845' - } - }, - 'ShortName' => 'NoSuchElementException', - 'Virt' => 1 - }, - '4364329' => { - 'Artificial' => 1, - 'Class' => '4356949', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '201', - 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359822' - } - }, - 'ShortName' => 'IllegalStateException', - 'Virt' => 1 - }, - '4364330' => { - 'Artificial' => 1, - 'Class' => '4356949', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '201', - 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359822' - } - }, - 'ShortName' => 'IllegalStateException', - 'Virt' => 1 - }, - '4364518' => { - 'Artificial' => 1, - 'Class' => '4356949', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '201', - 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359822' - } - }, - 'ShortName' => 'IllegalStateException', - 'Virt' => 1 - }, - '4364667' => { - 'Artificial' => 1, - 'Class' => '4356786', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '225', - 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359776' - } - }, - 'ShortName' => 'ConnectException', - 'Virt' => 1 - }, - '4364668' => { - 'Artificial' => 1, - 'Class' => '4356786', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '225', - 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359776' - } - }, - 'ShortName' => 'ConnectException', - 'Virt' => 1 - }, - '4364950' => { - 'Artificial' => 1, - 'Class' => '4356786', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '225', - 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359776' - } - }, - 'ShortName' => 'ConnectException', - 'Virt' => 1 - }, - '4365193' => { - 'Artificial' => 1, - 'Class' => '4356628', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '233', - 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359753' - } - }, - 'ShortName' => 'ClosedChannelException', - 'Virt' => 1 - }, - '4365194' => { - 'Artificial' => 1, - 'Class' => '4356628', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '233', - 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359753' - } - }, - 'ShortName' => 'ClosedChannelException', - 'Virt' => 1 - }, - '4365476' => { - 'Artificial' => 1, - 'Class' => '4356628', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '233', - 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359753' - } - }, - 'ShortName' => 'ClosedChannelException', - 'Virt' => 1 - }, - '4365719' => { - 'Artificial' => 1, - 'Class' => '4356269', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '245', - 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359730' - } - }, - 'ShortName' => 'BindException', - 'Virt' => 1 - }, - '4365720' => { - 'Artificial' => 1, - 'Class' => '4356269', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '245', - 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359730' - } - }, - 'ShortName' => 'BindException', - 'Virt' => 1 - }, - '4366002' => { - 'Artificial' => 1, - 'Class' => '4356269', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '245', - 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359730' - } - }, - 'ShortName' => 'BindException', - 'Virt' => 1 - }, - '4366247' => { - 'Artificial' => 1, - 'Class' => '4355699', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '274', - 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359684' - } - }, - 'ShortName' => 'SocketTimeoutException', - 'Virt' => 1 - }, - '4366248' => { - 'Artificial' => 1, - 'Class' => '4355699', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '274', - 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359684' - } - }, - 'ShortName' => 'SocketTimeoutException', - 'Virt' => 1 - }, - '4366533' => { - 'Artificial' => 1, - 'Class' => '4355699', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '274', - 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359684' - } - }, - 'ShortName' => 'SocketTimeoutException', - 'Virt' => 1 - }, - '4372956' => { - 'Class' => '4355699', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359684' - }, - '1' => { - 'name' => 'src', - 'type' => '4359689' - } - }, - 'ShortName' => 'SocketTimeoutException', - 'Source' => 'exception.cpp', - 'SourceLine' => '489' - }, - '4372957' => { - 'Class' => '4355699', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359684' - }, - '1' => { - 'name' => 'src', - 'type' => '4359689' - } - }, - 'ShortName' => 'SocketTimeoutException', - 'Source' => 'exception.cpp', - 'SourceLine' => '489' - }, - '4373069' => { - 'Class' => '4355699', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359684' - } - }, - 'ShortName' => 'SocketTimeoutException', - 'Source' => 'exception.cpp', - 'SourceLine' => '484' - }, - '4373070' => { - 'Class' => '4355699', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359684' - } - }, - 'ShortName' => 'SocketTimeoutException', - 'Source' => 'exception.cpp', - 'SourceLine' => '484' - }, - '4375154' => { - 'Artificial' => 1, - 'Class' => '4355859', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '259', - 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359707' - } - }, - 'ShortName' => 'InterruptedIOException', - 'Virt' => 1 - }, - '4375155' => { - 'Artificial' => 1, - 'Class' => '4355859', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '259', - 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359707' - } - }, - 'ShortName' => 'InterruptedIOException', - 'Virt' => 1 - }, - '4375392' => { - 'Artificial' => 1, - 'Class' => '4355859', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '259', - 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359707' - } - }, - 'ShortName' => 'InterruptedIOException', - 'Virt' => 1 - }, - '4375687' => { - 'Class' => '4355859', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359707' - }, - '1' => { - 'name' => 'src', - 'type' => '4359712' - } - }, - 'ShortName' => 'InterruptedIOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '473' - }, - '4375688' => { - 'Class' => '4355859', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359707' - }, - '1' => { - 'name' => 'src', - 'type' => '4359712' - } - }, - 'ShortName' => 'InterruptedIOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '473' - }, - '4375813' => { - 'Class' => '4355859', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359707' - }, - '1' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'ShortName' => 'InterruptedIOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '469' - }, - '4375814' => { - 'Class' => '4355859', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22InterruptedIOExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359707' - }, - '1' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'ShortName' => 'InterruptedIOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '469' - }, - '4376036' => { - 'Class' => '4356269', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359730' - }, - '1' => { - 'name' => 'src', - 'type' => '4359735' - } - }, - 'ShortName' => 'BindException', - 'Source' => 'exception.cpp', - 'SourceLine' => '458' - }, - '4376037' => { - 'Class' => '4356269', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359730' - }, - '1' => { - 'name' => 'src', - 'type' => '4359735' - } - }, - 'ShortName' => 'BindException', - 'Source' => 'exception.cpp', - 'SourceLine' => '458' - }, - '4376162' => { - 'Class' => '4356269', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359730' - }, - '1' => { - 'name' => 'status', - 'type' => '838230' - } - }, - 'ShortName' => 'BindException', - 'Source' => 'exception.cpp', - 'SourceLine' => '454' - }, - '4376163' => { - 'Class' => '4356269', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359730' - }, - '1' => { - 'name' => 'status', - 'type' => '838230' - } - }, - 'ShortName' => 'BindException', - 'Source' => 'exception.cpp', - 'SourceLine' => '454' - }, - '4376385' => { - 'Class' => '4356628', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359753' - }, - '1' => { - 'name' => 'src', - 'type' => '4359758' - } - }, - 'ShortName' => 'ClosedChannelException', - 'Source' => 'exception.cpp', - 'SourceLine' => '443' - }, - '4376386' => { - 'Class' => '4356628', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359753' - }, - '1' => { - 'name' => 'src', - 'type' => '4359758' - } - }, - 'ShortName' => 'ClosedChannelException', - 'Source' => 'exception.cpp', - 'SourceLine' => '443' - }, - '4376498' => { - 'Class' => '4356628', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359753' - } - }, - 'ShortName' => 'ClosedChannelException', - 'Source' => 'exception.cpp', - 'SourceLine' => '439' - }, - '4376499' => { - 'Class' => '4356628', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359753' - } - }, - 'ShortName' => 'ClosedChannelException', - 'Source' => 'exception.cpp', - 'SourceLine' => '439' - }, - '4378679' => { - 'Class' => '4356786', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359776' - }, - '1' => { - 'name' => 'src', - 'type' => '4359781' - } - }, - 'ShortName' => 'ConnectException', - 'Source' => 'exception.cpp', - 'SourceLine' => '428' - }, - '4378680' => { - 'Class' => '4356786', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359776' - }, - '1' => { - 'name' => 'src', - 'type' => '4359781' - } - }, - 'ShortName' => 'ConnectException', - 'Source' => 'exception.cpp', - 'SourceLine' => '428' - }, - '4378805' => { - 'Class' => '4356786', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359776' - }, - '1' => { - 'name' => 'status', - 'type' => '838230' - } - }, - 'ShortName' => 'ConnectException', - 'Source' => 'exception.cpp', - 'SourceLine' => '424' - }, - '4378806' => { - 'Class' => '4356786', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359776' - }, - '1' => { - 'name' => 'status', - 'type' => '838230' - } - }, - 'ShortName' => 'ConnectException', - 'Source' => 'exception.cpp', - 'SourceLine' => '424' - }, - '4378930' => { - 'Artificial' => 1, - 'Class' => '4356432', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '212', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - } - }, - 'ShortName' => 'SocketException', - 'Virt' => 1 - }, - '4378931' => { - 'Artificial' => 1, - 'Class' => '4356432', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '212', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - } - }, - 'ShortName' => 'SocketException', - 'Virt' => 1 - }, - '4379166' => { - 'Artificial' => 1, - 'Class' => '4356432', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '212', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - } - }, - 'ShortName' => 'SocketException', - 'Virt' => 1 - }, - '4379460' => { - 'Class' => '4356432', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - }, - '1' => { - 'name' => 'src', - 'type' => '4359804' - } - }, - 'ShortName' => 'SocketException', - 'Source' => 'exception.cpp', - 'SourceLine' => '413' - }, - '4379461' => { - 'Class' => '4356432', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - }, - '1' => { - 'name' => 'src', - 'type' => '4359804' - } - }, - 'ShortName' => 'SocketException', - 'Source' => 'exception.cpp', - 'SourceLine' => '413' - }, - '4379586' => { - 'Class' => '4356432', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - }, - '1' => { - 'name' => 'status', - 'type' => '838230' - } - }, - 'ShortName' => 'SocketException', - 'Source' => 'exception.cpp', - 'SourceLine' => '409' - }, - '4379587' => { - 'Class' => '4356432', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - }, - '1' => { - 'name' => 'status', - 'type' => '838230' - } - }, - 'ShortName' => 'SocketException', - 'Source' => 'exception.cpp', - 'SourceLine' => '409' - }, - '4379712' => { - 'Class' => '4356432', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - }, - '1' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'ShortName' => 'SocketException', - 'Source' => 'exception.cpp', - 'SourceLine' => '405' - }, - '4379713' => { - 'Class' => '4356432', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359799' - }, - '1' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'ShortName' => 'SocketException', - 'Source' => 'exception.cpp', - 'SourceLine' => '405' - }, - '4379837' => { - 'Artificial' => 1, - 'Class' => '4356024', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - } - }, - 'ShortName' => 'IOException', - 'Virt' => 1 - }, - '4379838' => { - 'Artificial' => 1, - 'Class' => '4356024', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - } - }, - 'ShortName' => 'IOException', - 'Virt' => 1 - }, - '4380026' => { - 'Artificial' => 1, - 'Class' => '4356024', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - } - }, - 'ShortName' => 'IOException', - 'Virt' => 1 - }, - '4380273' => { - 'Class' => '4356949', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359822' - }, - '1' => { - 'name' => 'src', - 'type' => '4359827' - } - }, - 'ShortName' => 'IllegalStateException', - 'Source' => 'exception.cpp', - 'SourceLine' => '394' - }, - '4380274' => { - 'Class' => '4356949', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359822' - }, - '1' => { - 'name' => 'src', - 'type' => '4359827' - } - }, - 'ShortName' => 'IllegalStateException', - 'Source' => 'exception.cpp', - 'SourceLine' => '394' - }, - '4380386' => { - 'Class' => '4356949', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359822' - } - }, - 'ShortName' => 'IllegalStateException', - 'Source' => 'exception.cpp', - 'SourceLine' => '389' - }, - '4380387' => { - 'Class' => '4356949', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers21IllegalStateExceptionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359822' - } - }, - 'ShortName' => 'IllegalStateException', - 'Source' => 'exception.cpp', - 'SourceLine' => '389' - }, - '4380602' => { - 'Class' => '4357107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359845' - }, - '1' => { - 'name' => 'src', - 'type' => '4359850' - } - }, - 'ShortName' => 'NoSuchElementException', - 'Source' => 'exception.cpp', - 'SourceLine' => '377' - }, - '4380603' => { - 'Class' => '4357107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359845' - }, - '1' => { - 'name' => 'src', - 'type' => '4359850' - } - }, - 'ShortName' => 'NoSuchElementException', - 'Source' => 'exception.cpp', - 'SourceLine' => '377' - }, - '4380715' => { - 'Class' => '4357107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359845' - } - }, - 'ShortName' => 'NoSuchElementException', - 'Source' => 'exception.cpp', - 'SourceLine' => '372' - }, - '4380716' => { - 'Class' => '4357107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359845' - } - }, - 'ShortName' => 'NoSuchElementException', - 'Source' => 'exception.cpp', - 'SourceLine' => '372' - }, - '4382523' => { - 'Class' => '2137863', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142290' - }, - '1' => { - 'name' => 'src', - 'type' => '2142295' - } - }, - 'ShortName' => 'ClassNotFoundException', - 'Source' => 'exception.cpp', - 'SourceLine' => '352' - }, - '4382524' => { - 'Class' => '2137863', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142290' - }, - '1' => { - 'name' => 'src', - 'type' => '2142295' - } - }, - 'ShortName' => 'ClassNotFoundException', - 'Source' => 'exception.cpp', - 'SourceLine' => '352' - }, - '4382649' => { - 'Class' => '2137863', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142290' - }, - '1' => { - 'name' => 'className', - 'type' => '263006' - } - }, - 'ShortName' => 'ClassNotFoundException', - 'Source' => 'exception.cpp', - 'SourceLine' => '347' - }, - '4382650' => { - 'Class' => '2137863', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142290' - }, - '1' => { - 'name' => 'className', - 'type' => '263006' - } - }, - 'ShortName' => 'ClassNotFoundException', - 'Source' => 'exception.cpp', - 'SourceLine' => '347' - }, - '4384173' => { - 'Class' => '2138051', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142313' - }, - '1' => { - 'name' => 'src', - 'type' => '2142318' - } - }, - 'ShortName' => 'InstantiationException', - 'Source' => 'exception.cpp', - 'SourceLine' => '336' - }, - '4384174' => { - 'Class' => '2138051', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142313' - }, - '1' => { - 'name' => 'src', - 'type' => '2142318' - } - }, - 'ShortName' => 'InstantiationException', - 'Source' => 'exception.cpp', - 'SourceLine' => '336' - }, - '4384299' => { - 'Class' => '2138051', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142313' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'InstantiationException', - 'Source' => 'exception.cpp', - 'SourceLine' => '331' - }, - '4384300' => { - 'Class' => '2138051', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2142313' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'InstantiationException', - 'Source' => 'exception.cpp', - 'SourceLine' => '331' - }, - '4384522' => { - 'Class' => '4357618', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359914' - }, - '1' => { - 'name' => 'src', - 'type' => '4359919' - } - }, - 'ShortName' => 'IllegalMonitorStateException', - 'Source' => 'exception.cpp', - 'SourceLine' => '320' - }, - '4384523' => { - 'Class' => '4357618', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359914' - }, - '1' => { - 'name' => 'src', - 'type' => '4359919' - } - }, - 'ShortName' => 'IllegalMonitorStateException', - 'Source' => 'exception.cpp', - 'SourceLine' => '320' - }, - '4384648' => { - 'Class' => '4357618', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359914' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'IllegalMonitorStateException', - 'Source' => 'exception.cpp', - 'SourceLine' => '315' - }, - '4384649' => { - 'Class' => '4357618', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers28IllegalMonitorStateExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359914' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'IllegalMonitorStateException', - 'Source' => 'exception.cpp', - 'SourceLine' => '315' - }, - '4386402' => { - 'Class' => '4357967', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - }, - '1' => { - 'name' => 'src', - 'type' => '4359965' - } - }, - 'ShortName' => 'ThreadException', - 'Source' => 'exception.cpp', - 'SourceLine' => '296' - }, - '4386403' => { - 'Class' => '4357967', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - }, - '1' => { - 'name' => 'src', - 'type' => '4359965' - } - }, - 'ShortName' => 'ThreadException', - 'Source' => 'exception.cpp', - 'SourceLine' => '296' - }, - '4386528' => { - 'Class' => '4357967', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - }, - '1' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'ShortName' => 'ThreadException', - 'Source' => 'exception.cpp', - 'SourceLine' => '291' - }, - '4386529' => { - 'Class' => '4357967', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - }, - '1' => { - 'name' => 'msg', - 'type' => '263006' - } - }, - 'ShortName' => 'ThreadException', - 'Source' => 'exception.cpp', - 'SourceLine' => '291' - }, - '4386654' => { - 'Class' => '4357967', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'ThreadException', - 'Source' => 'exception.cpp', - 'SourceLine' => '286' - }, - '4386655' => { - 'Class' => '4357967', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers15ThreadExceptionC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359960' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'ThreadException', - 'Source' => 'exception.cpp', - 'SourceLine' => '286' - }, - '4389709' => { - 'Class' => '4358190', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - }, - '1' => { - 'name' => 'src', - 'type' => '4359988' - } - }, - 'ShortName' => 'InterruptedException', - 'Source' => 'exception.cpp', - 'SourceLine' => '267' - }, - '4389710' => { - 'Class' => '4358190', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - }, - '1' => { - 'name' => 'src', - 'type' => '4359988' - } - }, - 'ShortName' => 'InterruptedException', - 'Source' => 'exception.cpp', - 'SourceLine' => '267' - }, - '4389835' => { - 'Class' => '4358190', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'InterruptedException', - 'Source' => 'exception.cpp', - 'SourceLine' => '262' - }, - '4389836' => { - 'Class' => '4358190', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'InterruptedException', - 'Source' => 'exception.cpp', - 'SourceLine' => '262' - }, - '4391249' => { - 'Class' => '4358190', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - } - }, - 'ShortName' => 'InterruptedException', - 'Source' => 'exception.cpp', - 'SourceLine' => '258' - }, - '4391250' => { - 'Class' => '4358190', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20InterruptedExceptionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359983' - } - }, - 'ShortName' => 'InterruptedException', - 'Source' => 'exception.cpp', - 'SourceLine' => '258' - }, - '4392193' => { - 'Class' => '4357781', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359937' - }, - '1' => { - 'name' => 'src', - 'type' => '4359942' - } - }, - 'ShortName' => 'TranscoderException', - 'Source' => 'exception.cpp', - 'SourceLine' => '241' - }, - '4392194' => { - 'Class' => '4357781', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359937' - }, - '1' => { - 'name' => 'src', - 'type' => '4359942' - } - }, - 'ShortName' => 'TranscoderException', - 'Source' => 'exception.cpp', - 'SourceLine' => '241' - }, - '4392318' => { - 'Class' => '4357781', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359937' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'TranscoderException', - 'Source' => 'exception.cpp', - 'SourceLine' => '236' - }, - '4392319' => { - 'Class' => '4357781', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers19TranscoderExceptionC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4359937' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'TranscoderException', - 'Source' => 'exception.cpp', - 'SourceLine' => '236' - }, - '4394568' => { - 'Class' => '4358408', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360006' - }, - '1' => { - 'name' => 'src', - 'type' => '4360011' - } - }, - 'ShortName' => 'PoolException', - 'Source' => 'exception.cpp', - 'SourceLine' => '219' - }, - '4394569' => { - 'Class' => '4358408', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360006' - }, - '1' => { - 'name' => 'src', - 'type' => '4360011' - } - }, - 'ShortName' => 'PoolException', - 'Source' => 'exception.cpp', - 'SourceLine' => '219' - }, - '4394693' => { - 'Class' => '4358408', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360006' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'PoolException', - 'Source' => 'exception.cpp', - 'SourceLine' => '214' - }, - '4394694' => { - 'Class' => '4358408', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers13PoolExceptionC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360006' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'PoolException', - 'Source' => 'exception.cpp', - 'SourceLine' => '214' - }, - '4398062' => { - 'Class' => '4358594', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360029' - }, - '1' => { - 'name' => 'src', - 'type' => '4360034' - } - }, - 'ShortName' => 'MissingResourceException', - 'Source' => 'exception.cpp', - 'SourceLine' => '195' - }, - '4398063' => { - 'Class' => '4358594', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360029' - }, - '1' => { - 'name' => 'src', - 'type' => '4360034' - } - }, - 'ShortName' => 'MissingResourceException', - 'Source' => 'exception.cpp', - 'SourceLine' => '195' - }, - '4398187' => { - 'Class' => '4358594', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360029' - }, - '1' => { - 'name' => 'key', - 'type' => '263006' - } - }, - 'ShortName' => 'MissingResourceException', - 'Source' => 'exception.cpp', - 'SourceLine' => '189' - }, - '4398188' => { - 'Class' => '4358594', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers24MissingResourceExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360029' - }, - '1' => { - 'name' => 'key', - 'type' => '263006' - } - }, - 'ShortName' => 'MissingResourceException', - 'Source' => 'exception.cpp', - 'SourceLine' => '189' - }, - '4405892' => { - 'Class' => '4356024', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - }, - '1' => { - 'name' => 'src', - 'type' => '4360057' - } - }, - 'ShortName' => 'IOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '162' - }, - '4405893' => { - 'Class' => '4356024', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - }, - '1' => { - 'name' => 'src', - 'type' => '4360057' - } - }, - 'ShortName' => 'IOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '162' - }, - '4406017' => { - 'Class' => '4356024', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'IOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '157' - }, - '4406018' => { - 'Class' => '4356024', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'IOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '157' - }, - '4406142' => { - 'Class' => '4356024', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'IOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '151' - }, - '4406143' => { - 'Class' => '4356024', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'IOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '151' - }, - '4407554' => { - 'Class' => '4356024', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - } - }, - 'ShortName' => 'IOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '146' - }, - '4407555' => { - 'Class' => '4356024', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360052' - } - }, - 'ShortName' => 'IOException', - 'Source' => 'exception.cpp', - 'SourceLine' => '146' - }, - '4407768' => { - 'Class' => '834615', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845710' - }, - '1' => { - 'name' => 'src', - 'type' => '845715' - } - }, - 'ShortName' => 'IllegalArgumentException', - 'Source' => 'exception.cpp', - 'SourceLine' => '135' - }, - '4407769' => { - 'Class' => '834615', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845710' - }, - '1' => { - 'name' => 'src', - 'type' => '845715' - } - }, - 'ShortName' => 'IllegalArgumentException', - 'Source' => 'exception.cpp', - 'SourceLine' => '135' - }, - '4407893' => { - 'Class' => '834615', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845710' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'IllegalArgumentException', - 'Source' => 'exception.cpp', - 'SourceLine' => '130' - }, - '4407894' => { - 'Class' => '834615', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845710' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'IllegalArgumentException', - 'Source' => 'exception.cpp', - 'SourceLine' => '130' - }, - '4408114' => { - 'Class' => '4359158', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360098' - }, - '1' => { - 'name' => 'src', - 'type' => '4360103' - } - }, - 'ShortName' => 'NullPointerException', - 'Source' => 'exception.cpp', - 'SourceLine' => '119' - }, - '4408115' => { - 'Class' => '4359158', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360098' - }, - '1' => { - 'name' => 'src', - 'type' => '4360103' - } - }, - 'ShortName' => 'NullPointerException', - 'Source' => 'exception.cpp', - 'SourceLine' => '119' - }, - '4408239' => { - 'Class' => '4359158', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360098' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'NullPointerException', - 'Source' => 'exception.cpp', - 'SourceLine' => '114' - }, - '4408240' => { - 'Class' => '4359158', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers20NullPointerExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4360098' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'NullPointerException', - 'Source' => 'exception.cpp', - 'SourceLine' => '114' - }, - '4410325' => { - 'Class' => '834777', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845733' - }, - '1' => { - 'name' => 'src', - 'type' => '845738' - } - }, - 'ShortName' => 'RuntimeException', - 'Source' => 'exception.cpp', - 'SourceLine' => '95' - }, - '4410326' => { - 'Class' => '834777', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845733' - }, - '1' => { - 'name' => 'src', - 'type' => '845738' - } - }, - 'ShortName' => 'RuntimeException', - 'Source' => 'exception.cpp', - 'SourceLine' => '95' - }, - '4410450' => { - 'Class' => '834777', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845733' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'RuntimeException', - 'Source' => 'exception.cpp', - 'SourceLine' => '90' - }, - '4410451' => { - 'Class' => '834777', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845733' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'RuntimeException', - 'Source' => 'exception.cpp', - 'SourceLine' => '90' - }, - '4410575' => { - 'Class' => '834777', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845733' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'RuntimeException', - 'Source' => 'exception.cpp', - 'SourceLine' => '85' - }, - '4410576' => { - 'Class' => '834777', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845733' - }, - '1' => { - 'name' => 'stat', - 'type' => '838230' - } - }, - 'ShortName' => 'RuntimeException', - 'Source' => 'exception.cpp', - 'SourceLine' => '85' - }, - '4412464' => { - 'Class' => '832107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '854512' - }, - '1' => { - 'name' => 'src', - 'type' => '4359639' - } - }, - 'ShortName' => 'Exception', - 'Source' => 'exception.cpp', - 'SourceLine' => '59' - }, - '4412465' => { - 'Class' => '832107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '854512' - }, - '1' => { - 'name' => 'src', - 'type' => '4359639' - } - }, - 'ShortName' => 'Exception', - 'Source' => 'exception.cpp', - 'SourceLine' => '59' - }, - '4412719' => { - 'Class' => '832107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC2EPKc', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '854512' - }, - '1' => { - 'name' => 'm', - 'type' => '51127' - } - }, - 'ShortName' => 'Exception', - 'Source' => 'exception.cpp', - 'SourceLine' => '48' - }, - '4412720' => { - 'Class' => '832107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC1EPKc', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '854512' - }, - '1' => { - 'name' => 'm', - 'type' => '51127' - } - }, - 'ShortName' => 'Exception', - 'Source' => 'exception.cpp', - 'SourceLine' => '48' - }, - '4413001' => { - 'Class' => '832107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '854512' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'Exception', - 'Source' => 'exception.cpp', - 'SourceLine' => '30' - }, - '4413002' => { - 'Class' => '832107', - 'Constructor' => 1, - 'Header' => 'exception.h', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '854512' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'Exception', - 'Source' => 'exception.cpp', - 'SourceLine' => '30' - }, - '4505100' => { - 'Class' => '407466', - 'Const' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 2, - 'Line' => '65', - 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4643925' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '4505144' => { - 'Class' => '407466', - 'Const' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 2, - 'Line' => '62', - 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4643925' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '4505188' => { - 'Class' => '407466', - 'Header' => 'errorhandler.h', - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '43', - 'Static' => 1 - }, - '4505335' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'Line' => '652', - 'MnglName' => '_ZNK7log4cxx6Logger19getLoggerRepositoryEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9687264' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '4544193', - 'ShortName' => 'getLoggerRepository', - 'Source' => 'logger.cpp', - 'SourceLine' => '246' - }, - '4505349' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'Line' => '659', - 'MnglName' => '_ZNK7log4cxx6Logger7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9687264' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getName', - 'Source' => 'logger.cpp', - 'SourceLine' => '570' - }, - '4505617' => { - 'Class' => '4505496', - 'Const' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509589' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '4505656' => { - 'Class' => '4505496', - 'Const' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509589' - } - }, - 'Return' => '4509515', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '4505695' => { - 'Artificial' => 1, - 'Class' => '4505496', - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZTch0_h0_NK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509589' - } - }, - 'Return' => '4509515', - 'ShortName' => '_ZTch0_h0_NK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv' - }, - '4505791' => { - 'Class' => '4505376', - 'Const' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509549' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '33', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '4505830' => { - 'Class' => '4505376', - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '33', - 'Static' => 1 - }, - '4505847' => { - 'Class' => '4505376', - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '33', - 'Static' => 1 - }, - '4505864' => { - 'Class' => '4505376', - 'Const' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509549' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '4505908' => { - 'Class' => '4505376', - 'Const' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 2, - 'Line' => '51', - 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509549' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '4506032' => { - 'Class' => '4505376', - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - }, - '1' => { - 'name' => 'logger', - 'type' => '4509554' - } - }, - 'Return' => '1', - 'ShortName' => 'setLogger', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '49', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '4506072' => { - 'Class' => '4505376', - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '119', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '4506112' => { - 'Class' => '4505376', - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '263006' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '123', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '4506157' => { - 'Class' => '4505376', - 'Const' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509549' - }, - '1' => { - 'name' => 'message', - 'type' => '263006' - }, - '2' => { - 'name' => 'e', - 'type' => '66067' - }, - '3' => { - 'name' => 'errorCode', - 'type' => '50231' - } - }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '56', - 'Virt' => 1, - 'VirtPos' => '8' - }, - '4506207' => { - 'Class' => '4505376', - 'Const' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS_3spi12LoggingEventEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509549' - }, - '1' => { - 'name' => 'message', - 'type' => '263006' - }, - '2' => { - 'name' => 'e', - 'type' => '66067' - }, - '3' => { - 'name' => 'p3', - 'type' => '50231' - }, - '4' => { - 'name' => 'p4', - 'type' => '154261' - } - }, - 'Reg' => { - '3' => 'rcx', - '4' => 'r8' - }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '63', - 'Virt' => 1, - 'VirtPos' => '10' - }, - '4506262' => { - 'Class' => '4505376', - 'Const' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 2, - 'Line' => '94', - 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509549' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'error', - 'Virt' => 1, - 'VirtPos' => '9' - }, - '4506302' => { - 'Class' => '4505376', - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - }, - '1' => { - 'name' => 'primary1', - 'type' => '1151508' - } - }, - 'Return' => '1', - 'ShortName' => 'setAppender', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '96', - 'Virt' => 1, - 'VirtPos' => '11' - }, - '4506342' => { - 'Class' => '4505376', - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - }, - '1' => { - 'name' => 'backup1', - 'type' => '1151508' - } - }, - 'Return' => '1', - 'ShortName' => 'setBackupAppender', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '103', - 'Virt' => 1, - 'VirtPos' => '12' - }, - '4506396' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'Line' => '231', - 'MnglName' => '_ZN7log4cxx9Hierarchy11addAppenderESt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'appender', - 'type' => '262988' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'addAppender', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '486' - }, - '4506886' => { - 'Data' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx7classes32FallbackErrorHandlerRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FallbackErrorHandlerRegistration', - 'Source' => 'fallbackerrorhandler.cpp' - }, - '4530072' => { - 'Artificial' => 1, - 'Class' => '4503848', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4508709' - } - }, - 'ShortName' => 'WideLife' - }, - '4530073' => { - 'Artificial' => 1, - 'Class' => '4503848', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4508709' - } - }, - 'ShortName' => 'WideLife' - }, - '4530214' => { - 'Artificial' => 1, - 'Class' => '4503848', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4508709' - } - }, - 'ShortName' => 'WideLife' - }, - '4530215' => { - 'Artificial' => 1, - 'Class' => '4503848', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4508709' - } - }, - 'ShortName' => 'WideLife' - }, - '4633696' => { - 'Class' => '4505376', - 'Destructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - } - }, - 'ShortName' => 'FallbackErrorHandler', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '47', - 'Virt' => 1 - }, - '4633794' => { - 'Class' => '4505376', - 'Destructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - } - }, - 'ShortName' => 'FallbackErrorHandler', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '47', - 'Virt' => 1 - }, - '4636351' => { - 'Class' => '4505376', - 'Destructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - } - }, - 'ShortName' => 'FallbackErrorHandler', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '47', - 'Virt' => 1 - }, - '4638781' => { - 'Class' => '4505376', - 'Constructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - } - }, - 'ShortName' => 'FallbackErrorHandler', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '42' - }, - '4640138' => { - 'Class' => '4505376', - 'Constructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandlerC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509521' - } - }, - 'ShortName' => 'FallbackErrorHandler', - 'Source' => 'fallbackerrorhandler.cpp', - 'SourceLine' => '42' - }, - '4641382' => { - 'Artificial' => 1, - 'Class' => '407466', - 'Constructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '58', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4641332' - } - }, - 'ShortName' => 'ErrorHandler' - }, - '4641383' => { - 'Artificial' => 1, - 'Class' => '407466', - 'Constructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '58', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4641332' - } - }, - 'ShortName' => 'ErrorHandler' - }, - '4643594' => { - 'Artificial' => 1, - 'Class' => '4505496', - 'Destructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509578' - } - }, - 'ShortName' => 'ClazzFallbackErrorHandler', - 'Virt' => 1 - }, - '4643595' => { - 'Artificial' => 1, - 'Class' => '4505496', - 'Destructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509578' - } - }, - 'ShortName' => 'ClazzFallbackErrorHandler', - 'Virt' => 1 - }, - '4643736' => { - 'Artificial' => 1, - 'Class' => '4505496', - 'Destructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509578' - } - }, - 'ShortName' => 'ClazzFallbackErrorHandler', - 'Virt' => 1 - }, - '4643826' => { - 'Artificial' => 1, - 'Class' => '4505496', - 'Constructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509578' - } - }, - 'ShortName' => 'ClazzFallbackErrorHandler' - }, - '4643827' => { - 'Artificial' => 1, - 'Class' => '4505496', - 'Constructor' => 1, - 'Header' => 'fallbackerrorhandler.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4509578' - } - }, - 'ShortName' => 'ClazzFallbackErrorHandler' - }, - '4643891' => { - 'Artificial' => 1, - 'Class' => '407466', - 'Destructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4641332' - } - }, - 'ShortName' => 'ErrorHandler', - 'Virt' => 1 - }, - '4643892' => { - 'Artificial' => 1, - 'Class' => '407466', - 'Destructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4641332' - } - }, - 'ShortName' => 'ErrorHandler', - 'Virt' => 1 - }, - '467215' => { - 'Class' => '407542', - 'Destructor' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeletonD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - } - }, - 'ShortName' => 'AppenderSkeleton', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '51', - 'Virt' => 1 - }, - '467313' => { - 'Class' => '407542', - 'Destructor' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeletonD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - } - }, - 'ShortName' => 'AppenderSkeleton', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '51', - 'Virt' => 1 - }, - '467644' => { - 'Class' => '407542', - 'Destructor' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeletonD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - } - }, - 'ShortName' => 'AppenderSkeleton', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '51', - 'Virt' => 1 - }, - '468042' => { - 'Class' => '407542', - 'Constructor' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC1ERKSt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'layout1', - 'type' => '412075' - } - }, - 'ShortName' => 'AppenderSkeleton', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '45' - }, - '473952' => { - 'Class' => '407542', - 'Constructor' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC2ERKSt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '2' => { - 'name' => 'layout1', - 'type' => '412075' - } - }, - 'ShortName' => 'AppenderSkeleton', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '45' - }, - '4786207' => { - 'Class' => '836407', - 'Destructor' => 1, - 'Header' => 'file.h', - 'Line' => '99', - 'MnglName' => '_ZN7log4cxx4FileD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '136' - }, - '4788333' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '91', - 'MnglName' => '_ZN7log4cxx4FileC2ERKS0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'src', - 'type' => '840075' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '117' - }, - '4788334' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '91', - 'MnglName' => '_ZN7log4cxx4FileC1ERKS0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'src', - 'type' => '840075' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '117' - }, - '4792567' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '62', - 'MnglName' => '_ZN7log4cxx4FileC2EPKw', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'name1', - 'type' => '51285' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '92' - }, - '4792568' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '62', - 'MnglName' => '_ZN7log4cxx4FileC1EPKw', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'name1', - 'type' => '51285' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '92' - }, - '4798135' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx4FileC2ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'name1', - 'type' => '646944' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '87' - }, - '4798136' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx4FileC1ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'name1', - 'type' => '646944' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '87' - }, - '479917' => { - 'Class' => '407542', - 'Constructor' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - } - }, - 'ShortName' => 'AppenderSkeleton', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '39' - }, - '4803703' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx4FileC2EPKc', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'name1', - 'type' => '51127' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '81' - }, - '4803704' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx4FileC1EPKc', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'name1', - 'type' => '51127' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '81' - }, - '4809271' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx4FileC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'name1', - 'type' => '61535' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '76' - }, - '4809272' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx4FileC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - }, - '1' => { - 'name' => 'name1', - 'type' => '61535' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '76' - }, - '4814827' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx4FileC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '49' - }, - '4814828' => { - 'Class' => '836407', - 'Constructor' => 1, - 'Header' => 'file.h', - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx4FileC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4730186' - } - }, - 'ShortName' => 'File', - 'Source' => 'file.cpp', - 'SourceLine' => '49' - }, - '485814' => { - 'Class' => '407542', - 'Constructor' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - } - }, - 'ShortName' => 'AppenderSkeleton', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '39' - }, - '491778' => { - 'Class' => '407542', - 'Constructor' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC1ESt10unique_ptrINS0_23AppenderSkeletonPrivateESt14default_deleteIS2_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '374474' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'AppenderSkeleton', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '33' - }, - '492934' => { - 'Class' => '407542', - 'Constructor' => 1, - 'Header' => 'appenderskeleton.h', - 'MnglName' => '_ZN7log4cxx16AppenderSkeletonC2ESt10unique_ptrINS0_23AppenderSkeletonPrivateESt14default_deleteIS2_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412036' - }, - '2' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '374474' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'AppenderSkeleton', - 'Source' => 'appenderskeleton.cpp', - 'SourceLine' => '33' - }, - '495138' => { - 'Artificial' => 1, - 'Class' => '407560', - 'Destructor' => 1, - 'Header' => 'appenderskeleton_priv.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '410426' - } - }, - 'ShortName' => 'AppenderSkeletonPrivate', - 'Virt' => 1 - }, - '495139' => { - 'Artificial' => 1, - 'Class' => '407560', - 'Destructor' => 1, - 'Header' => 'appenderskeleton_priv.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '410426' - } - }, - 'ShortName' => 'AppenderSkeletonPrivate', - 'Virt' => 1 - }, - '4970347' => { - 'Class' => '4970226', - 'Const' => 1, - 'Header' => 'fileappender.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx12FileAppender17ClazzFileAppender7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978401' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '4970386' => { - 'Class' => '4970226', - 'Const' => 1, - 'Header' => 'fileappender.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978401' - } - }, - 'Return' => '4978278', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '4970425' => { - 'Artificial' => 1, - 'Class' => '4970226', - 'Header' => 'fileappender.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZTch0_h0_NK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978401' - } - }, - 'Return' => '4978278', - 'ShortName' => '_ZTch0_h0_NK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv' - }, - '4970687' => { - 'Class' => '4970208', - 'Const' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZNK7log4cxx12FileAppender8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978273' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '36', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '4970726' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx12FileAppender14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '36', - 'Static' => 1 - }, - '4970743' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '36', - 'Static' => 1 - }, - '4970760' => { - 'Class' => '4970208', - 'Const' => 1, - 'Header' => 'fileappender.h', - 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx12FileAppender4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978273' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '4970804' => { - 'Class' => '4970208', - 'Const' => 1, - 'Header' => 'fileappender.h', - 'InLine' => 2, - 'Line' => '51', - 'MnglName' => '_ZNK7log4cxx12FileAppender10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978273' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '4971089' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppender7setFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'file', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setFile', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '92', - 'Virt' => 1, - 'VirtPos' => '23' - }, - '4971130' => { - 'Class' => '4970208', - 'Const' => 1, - 'Header' => 'fileappender.h', - 'Line' => '109', - 'MnglName' => '_ZNK7log4cxx12FileAppender9getAppendEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978273' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAppend', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '378' - }, - '4971162' => { - 'Class' => '4970208', - 'Const' => 1, - 'Header' => 'fileappender.h', - 'Line' => '112', - 'MnglName' => '_ZNK7log4cxx12FileAppender7getFileB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978273' - } - }, - 'Return' => '63706', - 'ShortName' => 'getFile', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '358' - }, - '4971194' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppender15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '149', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '4971235' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'Line' => '143', - 'MnglName' => '_ZN7log4cxx12FileAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '114', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '4971281' => { - 'Class' => '4970208', - 'Const' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZNK7log4cxx12FileAppender13getBufferedIOEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978273' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getBufferedIO', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '363' - }, - '4971313' => { - 'Class' => '4970208', - 'Const' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZNK7log4cxx12FileAppender13getBufferSizeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978273' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getBufferSize', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '368' - }, - '4971345' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppender9setAppendEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'fileAppend1', - 'type' => '50284' - } - }, - 'Return' => '1', - 'ShortName' => 'setAppend', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '86' - }, - '4971377' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppender13setBufferedIOEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'bufferedIO1', - 'type' => '50284' - } - }, - 'Return' => '1', - 'ShortName' => 'setBufferedIO', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '103' - }, - '4971409' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppender13setBufferSizeEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'bufferSize1', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setBufferSize', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '373' - }, - '4971442' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppender25stripDuplicateBackslashesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '263006' - } - }, - 'Return' => '63706', - 'ShortName' => 'stripDuplicateBackslashes', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '202', - 'Static' => 1 - }, - '4971469' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'Line' => '196', - 'MnglName' => '_ZN7log4cxx12FileAppender23activateOptionsInternalERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'activateOptionsInternal', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '155' - }, - '4971501' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'Line' => '218', - 'MnglName' => '_ZN7log4cxx12FileAppender15setFileInternalERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbmRNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'filename', - 'type' => '263006' - }, - '2' => { - 'name' => 'append1', - 'type' => '50284' - }, - '3' => { - 'name' => 'bufferedIO1', - 'type' => '50284' - }, - '4' => { - 'name' => 'bufferSize1', - 'type' => '50486' - }, - '5' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'setFileInternal', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '265' - }, - '4971554' => { - 'Class' => '4970208', - 'Header' => 'fileappender.h', - 'Line' => '222', - 'MnglName' => '_ZN7log4cxx12FileAppender15setFileInternalERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'file', - 'type' => '263006' - } - }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'setFileInternal', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '98' - }, - '4971720' => { - 'Data' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7classes24FileAppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FileAppenderRegistration', - 'Source' => 'fileappender.cpp' - }, - '4972090' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '123', - 'MnglName' => '_ZN7log4cxx14WriterAppender11closeWriterEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '19739829' - } - }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'closeWriter', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '180' - }, - '4972102' => { - 'Class' => '2844858', - 'Const' => 1, - 'Header' => 'writerappender.h', - 'Line' => '139', - 'MnglName' => '_ZNK7log4cxx14WriterAppender11getEncodingB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '3029741' - } - }, - 'Private' => 1, - 'Return' => '63706', - 'ShortName' => 'getEncoding', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '243' - }, - '4972114' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx14WriterAppender17setImmediateFlushEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '19739829' - }, - '1' => { - 'name' => 'value', - 'type' => '50284' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setImmediateFlush', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '320' - }, - '4972126' => { - 'Class' => '2844858', - 'Header' => 'writerappender.h', - 'Line' => '194', - 'MnglName' => '_ZN7log4cxx14WriterAppender17setWriterInternalERKSt10shared_ptrINS_7helpers6WriterEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '19739829' - }, - '1' => { - 'name' => 'newWriter', - 'type' => '19739869' - } - }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'setWriterInternal', - 'Source' => 'writerappender.cpp', - 'SourceLine' => '297' - }, - '499085' => { - 'Artificial' => 1, - 'Class' => '407560', - 'Destructor' => 1, - 'Header' => 'appenderskeleton_priv.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '410426' - } - }, - 'ShortName' => 'AppenderSkeletonPrivate', - 'Virt' => 1 - }, - '5003918' => { - 'Artificial' => 1, - 'Class' => '4970452', - 'Destructor' => 1, - 'Header' => 'fileappender_priv.h', - 'InLine' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976674' - } - }, - 'ShortName' => 'FileAppenderPriv', - 'Virt' => 1 - }, - '5003919' => { - 'Artificial' => 1, - 'Class' => '4970452', - 'Destructor' => 1, - 'Header' => 'fileappender_priv.h', - 'InLine' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976674' - } - }, - 'ShortName' => 'FileAppenderPriv', - 'Virt' => 1 - }, - '5009826' => { - 'Artificial' => 1, - 'Class' => '4970452', - 'Destructor' => 1, - 'Header' => 'fileappender_priv.h', - 'InLine' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976674' - } - }, - 'ShortName' => 'FileAppenderPriv', - 'Virt' => 1 - }, - '5019339' => { - 'Artificial' => 1, - 'Class' => '4967526', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976549' - } - }, - 'ShortName' => 'WideLife' - }, - '5019340' => { - 'Artificial' => 1, - 'Class' => '4967526', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976549' - } - }, - 'ShortName' => 'WideLife' - }, - '5019481' => { - 'Artificial' => 1, - 'Class' => '4967526', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976549' - } - }, - 'ShortName' => 'WideLife' - }, - '5019482' => { - 'Artificial' => 1, - 'Class' => '4967526', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976549' - } - }, - 'ShortName' => 'WideLife' - }, - '503104' => { - 'Artificial' => 1, - 'Class' => '407560', - 'Constructor' => 1, - 'Header' => 'appenderskeleton_priv.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '410426' - } - }, - 'ShortName' => 'AppenderSkeletonPrivate' - }, - '503105' => { - 'Artificial' => 1, - 'Class' => '407560', - 'Constructor' => 1, - 'Header' => 'appenderskeleton_priv.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '410426' - } - }, - 'ShortName' => 'AppenderSkeletonPrivate' - }, - '504591' => { - 'Artificial' => 1, - 'Class' => '407836', - 'Destructor' => 1, - 'Header' => 'appenderskeleton.h', - 'InLine' => 1, - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412128' - } - }, - 'ShortName' => 'ClazzAppenderSkeleton', - 'Virt' => 1 - }, - '504592' => { - 'Artificial' => 1, - 'Class' => '407836', - 'Destructor' => 1, - 'Header' => 'appenderskeleton.h', - 'InLine' => 1, - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412128' - } - }, - 'ShortName' => 'ClazzAppenderSkeleton', - 'Virt' => 1 - }, - '504733' => { - 'Artificial' => 1, - 'Class' => '407836', - 'Destructor' => 1, - 'Header' => 'appenderskeleton.h', - 'InLine' => 1, - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412128' - } - }, - 'ShortName' => 'ClazzAppenderSkeleton', - 'Virt' => 1 - }, - '504823' => { - 'Artificial' => 1, - 'Class' => '407836', - 'Constructor' => 1, - 'Header' => 'appenderskeleton.h', - 'InLine' => 1, - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412128' - } - }, - 'ShortName' => 'ClazzAppenderSkeleton' - }, - '504824' => { - 'Artificial' => 1, - 'Class' => '407836', - 'Constructor' => 1, - 'Header' => 'appenderskeleton.h', - 'InLine' => 1, - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '412128' - } - }, - 'ShortName' => 'ClazzAppenderSkeleton' - }, - '5067808' => { - 'Class' => '4970208', - 'Destructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '81', - 'Virt' => 1 - }, - '5067906' => { - 'Class' => '4970208', - 'Destructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '81', - 'Virt' => 1 - }, - '5068190' => { - 'Class' => '4970208', - 'Destructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '81', - 'Virt' => 1 - }, - '5068352' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC1ESt10unique_ptrINS0_16FileAppenderPrivESt14default_deleteIS2_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'priv', - 'type' => '4926802' - } - }, - 'Protected' => 1, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '76' - }, - '5070459' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC2ESt10unique_ptrINS0_16FileAppenderPrivESt14default_deleteIS2_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '2' => { - 'name' => 'priv', - 'type' => '4926802' - } - }, - 'Protected' => 1, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '76' - }, - '5072507' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '2' => { - 'name' => 'fileName1', - 'type' => '263006' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '69' - }, - '5086103' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '2' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '3' => { - 'name' => 'fileName1', - 'type' => '263006' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '69' - }, - '5099607' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '2' => { - 'name' => 'fileName1', - 'type' => '263006' - }, - '3' => { - 'name' => 'append1', - 'type' => '50284' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '58' - }, - '5113234' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '2' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '3' => { - 'name' => 'fileName1', - 'type' => '263006' - }, - '4' => { - 'name' => 'append1', - 'type' => '50284' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '58' - }, - '5126793' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '1' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '2' => { - 'name' => 'fileName1', - 'type' => '263006' - }, - '3' => { - 'name' => 'append1', - 'type' => '50284' - }, - '4' => { - 'name' => 'bufferedIO1', - 'type' => '50284' - }, - '5' => { - 'name' => 'bufferSize1', - 'type' => '50231' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '45' - }, - '5140467' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - }, - '2' => { - 'name' => 'layout1', - 'type' => '412075' - }, - '3' => { - 'name' => 'fileName1', - 'type' => '263006' - }, - '4' => { - 'name' => 'append1', - 'type' => '50284' - }, - '5' => { - 'name' => 'bufferedIO1', - 'type' => '50284' - }, - '6' => { - 'name' => 'bufferSize1', - 'offset' => '0', - 'type' => '50231' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '45' - }, - '5153996' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '40' - }, - '5169032' => { - 'Class' => '4970208', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'MnglName' => '_ZN7log4cxx12FileAppenderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978284' - } - }, - 'ShortName' => 'FileAppender', - 'Source' => 'fileappender.cpp', - 'SourceLine' => '40' - }, - '5185164' => { - 'Artificial' => 1, - 'Class' => '4970452', - 'Constructor' => 1, - 'Header' => 'fileappender_priv.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivC2ESt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976674' - }, - '1' => { - 'name' => '_layout', - 'type' => '409175' - }, - '2' => { - 'name' => '_fileName', - 'type' => '263006' - }, - '3' => { - 'name' => '_fileAppend', - 'type' => '50284' - }, - '4' => { - 'name' => '_bufferedIO', - 'type' => '50284' - }, - '5' => { - 'name' => '_bufferSize', - 'type' => '50231' - } - }, - 'ShortName' => 'FileAppenderPriv' - }, - '5185165' => { - 'Artificial' => 1, - 'Class' => '4970452', - 'Constructor' => 1, - 'Header' => 'fileappender_priv.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx12FileAppender16FileAppenderPrivC1ESt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4976674' - }, - '1' => { - 'name' => '_layout', - 'type' => '409175' - }, - '2' => { - 'name' => '_fileName', - 'type' => '263006' - }, - '3' => { - 'name' => '_fileAppend', - 'type' => '50284' - }, - '4' => { - 'name' => '_bufferedIO', - 'type' => '50284' - }, - '5' => { - 'name' => '_bufferSize', - 'type' => '50231' - } - }, - 'ShortName' => 'FileAppenderPriv' - }, - '5195710' => { - 'Artificial' => 1, - 'Class' => '2844868', - 'Constructor' => 1, - 'Header' => 'writerappender_priv.h', - 'InLine' => 1, - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC2ERKSt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849470' - }, - '1' => { - 'name' => 'layout1', - 'type' => '412075' - } - }, - 'ShortName' => 'WriterAppenderPriv' - }, - '5195711' => { - 'Artificial' => 1, - 'Class' => '2844868', - 'Constructor' => 1, - 'Header' => 'writerappender_priv.h', - 'InLine' => 1, - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC1ERKSt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2849470' - }, - '1' => { - 'name' => 'layout1', - 'type' => '412075' - } - }, - 'ShortName' => 'WriterAppenderPriv' - }, - '5203750' => { - 'Artificial' => 1, - 'Class' => '407560', - 'Constructor' => 1, - 'Header' => 'appenderskeleton_priv.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC2ESt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '410426' - }, - '1' => { - 'name' => 'lay', - 'type' => '409175' - } - }, - 'ShortName' => 'AppenderSkeletonPrivate' - }, - '5203751' => { - 'Artificial' => 1, - 'Class' => '407560', - 'Constructor' => 1, - 'Header' => 'appenderskeleton_priv.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC1ESt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '410426' - }, - '1' => { - 'name' => 'lay', - 'type' => '409175' - } - }, - 'ShortName' => 'AppenderSkeletonPrivate' - }, - '5205496' => { - 'Artificial' => 1, - 'Class' => '4970226', - 'Destructor' => 1, - 'Header' => 'fileappender.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978390' - } - }, - 'ShortName' => 'ClazzFileAppender', - 'Virt' => 1 - }, - '5205497' => { - 'Artificial' => 1, - 'Class' => '4970226', - 'Destructor' => 1, - 'Header' => 'fileappender.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978390' - } - }, - 'ShortName' => 'ClazzFileAppender', - 'Virt' => 1 - }, - '5205638' => { - 'Artificial' => 1, - 'Class' => '4970226', - 'Destructor' => 1, - 'Header' => 'fileappender.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978390' - } - }, - 'ShortName' => 'ClazzFileAppender', - 'Virt' => 1 - }, - '5205728' => { - 'Artificial' => 1, - 'Class' => '4970226', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978390' - } - }, - 'ShortName' => 'ClazzFileAppender' - }, - '5205729' => { - 'Artificial' => 1, - 'Class' => '4970226', - 'Constructor' => 1, - 'Header' => 'fileappender.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx12FileAppender17ClazzFileAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4978390' - } - }, - 'ShortName' => 'ClazzFileAppender' - }, - '5276103' => { - 'Class' => '5276064', - 'Header' => 'filedatepatternconverter.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7pattern24FileDatePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'options', - 'type' => '2273842' - } - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'filedatepatternconverter.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '5375068' => { - 'Class' => '5374947', - 'Const' => 1, - 'Header' => 'fileinputstream.h', - 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7helpers15FileInputStream20ClazzFileInputStream7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380326' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '5375130' => { - 'Class' => '5374838', - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '40', - 'Static' => 1 - }, - '5375147' => { - 'Class' => '5374838', - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '40', - 'Static' => 1 - }, - '5375164' => { - 'Class' => '5374838', - 'Const' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZNK7log4cxx7helpers15FileInputStream8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380275' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '40', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '5375203' => { - 'Class' => '5374838', - 'Const' => 1, - 'Header' => 'fileinputstream.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7helpers15FileInputStream4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380275' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '5375247' => { - 'Class' => '5374838', - 'Const' => 1, - 'Header' => 'fileinputstream.h', - 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7helpers15FileInputStream10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380275' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '5375425' => { - 'Class' => '5374838', - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream5closeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - } - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '92', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '5375461' => { - 'Class' => '5374838', - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream4readERNS0_10ByteBufferE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - }, - '1' => { - 'name' => 'buf', - 'type' => '1340866' - } - }, - 'Return' => '50231', - 'ShortName' => 'read', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '107', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '5375571' => { - 'Class' => '5374838', - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream4openERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - }, - '1' => { - 'name' => 'filename', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'open', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '56' - }, - '5377986' => { - 'Data' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7classes27FileInputStreamRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FileInputStreamRegistration', - 'Source' => 'fileinputstream.cpp' - }, - '5386039' => { - 'Artificial' => 1, - 'Class' => '5375646', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380071' - } - }, - 'ShortName' => 'WideLife' - }, - '5386040' => { - 'Artificial' => 1, - 'Class' => '5375646', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380071' - } - }, - 'ShortName' => 'WideLife' - }, - '5386180' => { - 'Artificial' => 1, - 'Class' => '5375646', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380071' - } - }, - 'ShortName' => 'WideLife' - }, - '5386181' => { - 'Artificial' => 1, - 'Class' => '5375646', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380071' - } - }, - 'ShortName' => 'WideLife' - }, - '5387659' => { - 'Class' => '5374838', - 'Destructor' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - } - }, - 'ShortName' => 'FileInputStream', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '83', - 'Virt' => 1 - }, - '5387660' => { - 'Class' => '5374838', - 'Destructor' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - } - }, - 'ShortName' => 'FileInputStream', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '83', - 'Virt' => 1 - }, - '5387753' => { - 'Class' => '5374838', - 'Destructor' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - } - }, - 'ShortName' => 'FileInputStream', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '83', - 'Virt' => 1 - }, - '5388504' => { - 'Class' => '5374838', - 'Constructor' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC2ERKNS_4FileE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - }, - '1' => { - 'name' => 'aFile', - 'type' => '840075' - } - }, - 'ShortName' => 'FileInputStream', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '69' - }, - '5388505' => { - 'Class' => '5374838', - 'Constructor' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC1ERKNS_4FileE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - }, - '1' => { - 'name' => 'aFile', - 'type' => '840075' - } - }, - 'ShortName' => 'FileInputStream', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '69' - }, - '5390267' => { - 'Class' => '5374838', - 'Constructor' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC2EPKc', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - }, - '1' => { - 'name' => 'filename', - 'type' => '410979' - } - }, - 'ShortName' => 'FileInputStream', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '48' - }, - '5390268' => { - 'Class' => '5374838', - 'Constructor' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC1EPKc', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - }, - '1' => { - 'name' => 'filename', - 'type' => '410979' - } - }, - 'ShortName' => 'FileInputStream', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '48' - }, - '5392989' => { - 'Class' => '5374838', - 'Constructor' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - }, - '1' => { - 'name' => 'filename', - 'type' => '263006' - } - }, - 'ShortName' => 'FileInputStream', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '42' - }, - '5392990' => { - 'Class' => '5374838', - 'Constructor' => 1, - 'Header' => 'fileinputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStreamC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380286' - }, - '1' => { - 'name' => 'filename', - 'type' => '263006' - } - }, - 'ShortName' => 'FileInputStream', - 'Source' => 'fileinputstream.cpp', - 'SourceLine' => '42' - }, - '5395820' => { - 'Artificial' => 1, - 'Class' => '5374947', - 'Destructor' => 1, - 'Header' => 'fileinputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380315' - } - }, - 'ShortName' => 'ClazzFileInputStream', - 'Virt' => 1 - }, - '5395821' => { - 'Artificial' => 1, - 'Class' => '5374947', - 'Destructor' => 1, - 'Header' => 'fileinputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380315' - } - }, - 'ShortName' => 'ClazzFileInputStream', - 'Virt' => 1 - }, - '5395961' => { - 'Artificial' => 1, - 'Class' => '5374947', - 'Destructor' => 1, - 'Header' => 'fileinputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380315' - } - }, - 'ShortName' => 'ClazzFileInputStream', - 'Virt' => 1 - }, - '5396051' => { - 'Artificial' => 1, - 'Class' => '5374947', - 'Constructor' => 1, - 'Header' => 'fileinputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380315' - } - }, - 'ShortName' => 'ClazzFileInputStream' - }, - '5396052' => { - 'Artificial' => 1, - 'Class' => '5374947', - 'Constructor' => 1, - 'Header' => 'fileinputstream.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5380315' - } - }, - 'ShortName' => 'ClazzFileInputStream' - }, - '5465700' => { - 'Class' => '5465579', - 'Const' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468908' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '5465829' => { - 'Class' => '5465545', - 'Header' => 'filelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'filelocationpatternconverter.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '5465846' => { - 'Class' => '5465545', - 'Header' => 'filelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'filelocationpatternconverter.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '5465863' => { - 'Class' => '5465545', - 'Const' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468580' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'filelocationpatternconverter.cpp', - 'SourceLine' => '27', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '5465902' => { - 'Class' => '5465545', - 'Const' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468580' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '5465946' => { - 'Class' => '5465545', - 'Const' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468580' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '5466027' => { - 'Class' => '5465545', - 'Header' => 'filelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'filelocationpatternconverter.cpp', - 'SourceLine' => '35', - 'Static' => 1 - }, - '5466055' => { - 'Class' => '5465545', - 'Const' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468580' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' - } - }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'filelocationpatternconverter.cpp', - 'SourceLine' => '42', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '5466944' => { - 'Data' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7classes40FileLocationPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FileLocationPatternConverterRegistration', - 'Source' => 'filelocationpatternconverter.cpp' - }, - '5471909' => { - 'Artificial' => 1, - 'Class' => '5465545', - 'Destructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468381' - } - }, - 'ShortName' => 'FileLocationPatternConverter', - 'Virt' => 1 - }, - '5471910' => { - 'Artificial' => 1, - 'Class' => '5465545', - 'Destructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468381' - } - }, - 'ShortName' => 'FileLocationPatternConverter', - 'Virt' => 1 - }, - '5472174' => { - 'Artificial' => 1, - 'Class' => '5465545', - 'Destructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468381' - } - }, - 'ShortName' => 'FileLocationPatternConverter', - 'Virt' => 1 - }, - '5479022' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_28FileLocationPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '5468403' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '5442682' - } - } - }, - '5479023' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_28FileLocationPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '5468403' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '5442682' - } - } - }, - '5479438' => { - 'Artificial' => 1, - 'Class' => '5463903', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468073' - } - }, - 'ShortName' => 'WideLife' - }, - '5479439' => { - 'Artificial' => 1, - 'Class' => '5463903', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468073' - } - }, - 'ShortName' => 'WideLife' - }, - '5479579' => { - 'Artificial' => 1, - 'Class' => '5463903', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468073' - } - }, - 'ShortName' => 'WideLife' - }, - '5479580' => { - 'Artificial' => 1, - 'Class' => '5463903', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468073' - } - }, - 'ShortName' => 'WideLife' - }, - '5486582' => { - 'Class' => '5465545', - 'Constructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468381' - } - }, - 'ShortName' => 'FileLocationPatternConverter', - 'Source' => 'filelocationpatternconverter.cpp', - 'SourceLine' => '29' - }, - '5490699' => { - 'Class' => '5465545', - 'Constructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468381' - } - }, - 'ShortName' => 'FileLocationPatternConverter', - 'Source' => 'filelocationpatternconverter.cpp', - 'SourceLine' => '29' - }, - '5496734' => { - 'Artificial' => 1, - 'Class' => '5465579', - 'Destructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468897' - } - }, - 'ShortName' => 'ClazzFileLocationPatternConverter', - 'Virt' => 1 - }, - '5496735' => { - 'Artificial' => 1, - 'Class' => '5465579', - 'Destructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468897' - } - }, - 'ShortName' => 'ClazzFileLocationPatternConverter', - 'Virt' => 1 - }, - '5496875' => { - 'Artificial' => 1, - 'Class' => '5465579', - 'Destructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468897' - } - }, - 'ShortName' => 'ClazzFileLocationPatternConverter', - 'Virt' => 1 - }, - '5496965' => { - 'Artificial' => 1, - 'Class' => '5465579', - 'Constructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468897' - } - }, - 'ShortName' => 'ClazzFileLocationPatternConverter' - }, - '5496966' => { - 'Artificial' => 1, - 'Class' => '5465579', - 'Constructor' => 1, - 'Header' => 'filelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5468897' - } - }, - 'ShortName' => 'ClazzFileLocationPatternConverter' - }, - '5576280' => { - 'Class' => '5576159', - 'Const' => 1, - 'Header' => 'fileoutputstream.h', - 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream21ClazzFileOutputStream7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581585' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '5576342' => { - 'Class' => '4967496', - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '40', - 'Static' => 1 - }, - '5576359' => { - 'Class' => '4967496', - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '40', - 'Static' => 1 - }, - '5576376' => { - 'Class' => '4967496', - 'Const' => 1, - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581534' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '40', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '5576415' => { - 'Class' => '4967496', - 'Const' => 1, - 'Header' => 'fileoutputstream.h', - 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581534' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '5576459' => { - 'Class' => '4967496', - 'Const' => 1, - 'Header' => 'fileoutputstream.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581534' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '5576615' => { - 'Class' => '4967496', - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream5closeERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '90', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '5576656' => { - 'Class' => '4967496', - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream5flushERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'flush', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '105', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '5576697' => { - 'Class' => '4967496', - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - }, - '1' => { - 'name' => 'buf', - 'type' => '1340866' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' - } - }, - 'Reg' => { - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'write', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '109', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '5576743' => { - 'Class' => '4967496', - 'Const' => 1, - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZNK7log4cxx7helpers16FileOutputStream10getFilePtrEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581534' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '4781412', - 'ShortName' => 'getFilePtr', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '136' - }, - '5576840' => { - 'Class' => '4967496', - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream4openERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'filename', - 'type' => '263006' - }, - '1' => { - 'name' => 'append', - 'type' => '50284' - }, - '2' => { - 'name' => 'pool', - 'type' => '64643' - } - }, - 'Private' => 1, - 'Return' => '4781412', - 'ShortName' => 'open', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '54', - 'Static' => 1 - }, - '5579260' => { - 'Data' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7classes28FileOutputStreamRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FileOutputStreamRegistration', - 'Source' => 'fileoutputstream.cpp' - }, - '5587300' => { - 'Artificial' => 1, - 'Class' => '5576920', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581330' - } - }, - 'ShortName' => 'WideLife' - }, - '5587301' => { - 'Artificial' => 1, - 'Class' => '5576920', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581330' - } - }, - 'ShortName' => 'WideLife' - }, - '5587441' => { - 'Artificial' => 1, - 'Class' => '5576920', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581330' - } - }, - 'ShortName' => 'WideLife' - }, - '5587442' => { - 'Artificial' => 1, - 'Class' => '5576920', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581330' - } - }, - 'ShortName' => 'WideLife' - }, - '5589536' => { - 'Class' => '4967496', - 'Destructor' => 1, - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - } - }, - 'ShortName' => 'FileOutputStream', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '82', - 'Virt' => 1 - }, - '5589537' => { - 'Class' => '4967496', - 'Destructor' => 1, - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - } - }, - 'ShortName' => 'FileOutputStream', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '82', - 'Virt' => 1 - }, - '5589630' => { - 'Class' => '4967496', - 'Destructor' => 1, - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - } - }, - 'ShortName' => 'FileOutputStream', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '82', - 'Virt' => 1 - }, - '5590830' => { - 'Class' => '4967496', - 'Constructor' => 1, - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamC2EPKcb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - }, - '1' => { - 'name' => 'filename', - 'type' => '410979' - }, - '2' => { - 'name' => 'append', - 'type' => '50284' - } - }, - 'ShortName' => 'FileOutputStream', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '48' - }, - '5590831' => { - 'Class' => '4967496', - 'Constructor' => 1, - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamC1EPKcb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - }, - '1' => { - 'name' => 'filename', - 'type' => '410979' - }, - '2' => { - 'name' => 'append', - 'type' => '50284' - } - }, - 'ShortName' => 'FileOutputStream', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '48' - }, - '5593926' => { - 'Class' => '4967496', - 'Constructor' => 1, - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - }, - '1' => { - 'name' => 'filename', - 'type' => '263006' - }, - '2' => { - 'name' => 'append', - 'type' => '50284' - } - }, - 'ShortName' => 'FileOutputStream', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '42' - }, - '5593927' => { - 'Class' => '4967496', - 'Constructor' => 1, - 'Header' => 'fileoutputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStreamC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581545' - }, - '1' => { - 'name' => 'filename', - 'type' => '263006' - }, - '2' => { - 'name' => 'append', - 'type' => '50284' - } - }, - 'ShortName' => 'FileOutputStream', - 'Source' => 'fileoutputstream.cpp', - 'SourceLine' => '42' - }, - '5597072' => { - 'Artificial' => 1, - 'Class' => '5576159', - 'Destructor' => 1, - 'Header' => 'fileoutputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581574' - } - }, - 'ShortName' => 'ClazzFileOutputStream', - 'Virt' => 1 - }, - '5597073' => { - 'Artificial' => 1, - 'Class' => '5576159', - 'Destructor' => 1, - 'Header' => 'fileoutputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581574' - } - }, - 'ShortName' => 'ClazzFileOutputStream', - 'Virt' => 1 - }, - '5597213' => { - 'Artificial' => 1, - 'Class' => '5576159', - 'Destructor' => 1, - 'Header' => 'fileoutputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581574' - } - }, - 'ShortName' => 'ClazzFileOutputStream', - 'Virt' => 1 - }, - '5597303' => { - 'Artificial' => 1, - 'Class' => '5576159', - 'Constructor' => 1, - 'Header' => 'fileoutputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581574' - } - }, - 'ShortName' => 'ClazzFileOutputStream' - }, - '5597304' => { - 'Artificial' => 1, - 'Class' => '5576159', - 'Constructor' => 1, - 'Header' => 'fileoutputstream.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5581574' - } - }, - 'ShortName' => 'ClazzFileOutputStream' - }, - '5677784' => { - 'Class' => '5677663', - 'Const' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction21ClazzFileRenameAction7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681599' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '5678111' => { - 'Class' => '5677645', - 'Header' => 'filerenameaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'filerenameaction.cpp', - 'SourceLine' => '40', - 'Static' => 1 - }, - '5678128' => { - 'Class' => '5677645', - 'Header' => 'filerenameaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'filerenameaction.cpp', - 'SourceLine' => '40', - 'Static' => 1 - }, - '5678145' => { - 'Class' => '5677645', - 'Const' => 1, - 'Header' => 'filerenameaction.h', - 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681530' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'filerenameaction.cpp', - 'SourceLine' => '40', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '5678184' => { - 'Class' => '5677645', - 'Const' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681530' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '5678228' => { - 'Class' => '5677645', - 'Const' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681530' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '5678324' => { - 'Class' => '5677645', - 'Const' => 1, - 'Header' => 'filerenameaction.h', - 'MnglName' => '_ZNK7log4cxx7rolling16FileRenameAction7executeERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681530' - }, - '1' => { - 'name' => 'pool1', - 'type' => '64643' - } - }, - 'Return' => '50284', - 'ShortName' => 'execute', - 'Source' => 'filerenameaction.cpp', - 'SourceLine' => '49', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '5679308' => { - 'Data' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7classes28FileRenameActionRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FileRenameActionRegistration', - 'Source' => 'filerenameaction.cpp' - }, - '5682180' => { - 'Artificial' => 1, - 'Class' => '5677645', - 'Destructor' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681496' - } - }, - 'ShortName' => 'FileRenameAction', - 'Virt' => 1 - }, - '5682181' => { - 'Artificial' => 1, - 'Class' => '5677645', - 'Destructor' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681496' - } - }, - 'ShortName' => 'FileRenameAction', - 'Virt' => 1 - }, - '5682385' => { - 'Artificial' => 1, - 'Class' => '5677645', - 'Destructor' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681496' - } - }, - 'ShortName' => 'FileRenameAction', - 'Virt' => 1 - }, - '5686909' => { - 'Artificial' => 1, - 'Class' => '5677826', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681116' - } - }, - 'ShortName' => 'FileRenameActionPrivate', - 'Source' => 'filerenameaction.cpp', - 'Virt' => 1 - }, - '5686910' => { - 'Artificial' => 1, - 'Class' => '5677826', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681116' - } - }, - 'ShortName' => 'FileRenameActionPrivate', - 'Source' => 'filerenameaction.cpp', - 'Virt' => 1 - }, - '5687140' => { - 'Artificial' => 1, - 'Class' => '5677826', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681116' - } - }, - 'ShortName' => 'FileRenameActionPrivate', - 'Source' => 'filerenameaction.cpp', - 'Virt' => 1 - }, - '5688657' => { - 'Artificial' => 1, - 'Class' => '5676229', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5680991' - } - }, - 'ShortName' => 'WideLife' - }, - '5688658' => { - 'Artificial' => 1, - 'Class' => '5676229', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5680991' - } - }, - 'ShortName' => 'WideLife' - }, - '5688798' => { - 'Artificial' => 1, - 'Class' => '5676229', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5680991' - } - }, - 'ShortName' => 'WideLife' - }, - '5688799' => { - 'Artificial' => 1, - 'Class' => '5676229', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5680991' - } - }, - 'ShortName' => 'WideLife' - }, - '5689382' => { - 'Class' => '5677645', - 'Constructor' => 1, - 'Header' => 'filerenameaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionC1ERKNS_4FileES4_b', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681496' - }, - '1' => { - 'name' => 'toRename', - 'type' => '840075' - }, - '2' => { - 'name' => 'renameTo', - 'type' => '840075' - }, - '3' => { - 'name' => 'renameEmptyFile1', - 'type' => '50284' - } - }, - 'ShortName' => 'FileRenameAction', - 'Source' => 'filerenameaction.cpp', - 'SourceLine' => '42' - }, - '5692885' => { - 'Class' => '5677645', - 'Constructor' => 1, - 'Header' => 'filerenameaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameActionC2ERKNS_4FileES4_b', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681496' - }, - '2' => { - 'name' => 'toRename', - 'type' => '840075' - }, - '3' => { - 'name' => 'renameTo', - 'type' => '840075' - }, - '4' => { - 'name' => 'renameEmptyFile1', - 'type' => '50284' - } - }, - 'ShortName' => 'FileRenameAction', - 'Source' => 'filerenameaction.cpp', - 'SourceLine' => '42' - }, - '5698707' => { - 'Artificial' => 1, - 'Class' => '5677663', - 'Destructor' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681588' - } - }, - 'ShortName' => 'ClazzFileRenameAction', - 'Virt' => 1 - }, - '5698708' => { - 'Artificial' => 1, - 'Class' => '5677663', - 'Destructor' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681588' - } - }, - 'ShortName' => 'ClazzFileRenameAction', - 'Virt' => 1 - }, - '5698848' => { - 'Artificial' => 1, - 'Class' => '5677663', - 'Destructor' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681588' - } - }, - 'ShortName' => 'ClazzFileRenameAction', - 'Virt' => 1 - }, - '5698938' => { - 'Artificial' => 1, - 'Class' => '5677663', - 'Constructor' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681588' - } - }, - 'ShortName' => 'ClazzFileRenameAction' - }, - '5698939' => { - 'Artificial' => 1, - 'Class' => '5677663', - 'Constructor' => 1, - 'Header' => 'filerenameaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5681588' - } - }, - 'ShortName' => 'ClazzFileRenameAction' - }, - '5837850' => { - 'Class' => '648210', - 'Header' => 'filewatchdog.h', - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog10doOnChangeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652179' - } - }, - 'Protected' => 1, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'doOnChange', - 'VirtPos' => '2' - }, - '5837886' => { - 'Class' => '648210', - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog17checkAndConfigureEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'checkAndConfigure', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '90' - }, - '5837913' => { - 'Class' => '648210', - 'Header' => 'filewatchdog.h', - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog4fileEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '840075', - 'ShortName' => 'file', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '85' - }, - '5837944' => { - 'Class' => '648210', - 'Header' => 'filewatchdog.h', - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog8setDelayEl', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - }, - '1' => { - 'name' => 'delay1', - 'type' => '50244' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setDelay', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '159' - }, - '5837976' => { - 'Class' => '648210', - 'Header' => 'filewatchdog.h', - 'Line' => '62', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog5startEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'Return' => '1', - 'ShortName' => 'start', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '144' - }, - '5838030' => { - 'Class' => '648210', - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog9is_activeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'is_active', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '68' - }, - '5838061' => { - 'Class' => '648210', - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog3runEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'run', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '121' - }, - '5838088' => { - 'Class' => '648210', - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog14is_interruptedEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'is_interrupted', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '154' - }, - '5844802' => { - 'Class' => '648210', - 'Data' => 1, - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog13DEFAULT_DELAYE', - 'Return' => '50244', - 'ShortName' => 'DEFAULT_DELAY', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '31' - }, - '5911207' => { - 'Class' => '648210', - 'Destructor' => 1, - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'ShortName' => 'FileWatchdog', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '61', - 'Virt' => 1 - }, - '5911208' => { - 'Class' => '648210', - 'Destructor' => 1, - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'ShortName' => 'FileWatchdog', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '61', - 'Virt' => 1 - }, - '5911302' => { - 'Class' => '648210', - 'Destructor' => 1, - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'ShortName' => 'FileWatchdog', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '61', - 'Virt' => 1 - }, - '5912281' => { - 'Class' => '648210', - 'Constructor' => 1, - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogC2ERKNS_4FileE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - }, - '1' => { - 'name' => 'file1', - 'type' => '840075' - } - }, - 'Protected' => 1, - 'ShortName' => 'FileWatchdog', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '56' - }, - '5912282' => { - 'Class' => '648210', - 'Constructor' => 1, - 'Header' => 'filewatchdog.h', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdogC1ERKNS_4FileE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - }, - '1' => { - 'name' => 'file1', - 'type' => '840075' - } - }, - 'Protected' => 1, - 'ShortName' => 'FileWatchdog', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '56' - }, - '5978826' => { - 'Class' => '150952', - 'Header' => 'filter.h', - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi6Filter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '45', - 'Static' => 1 - }, - '5978843' => { - 'Class' => '150952', - 'Const' => 1, - 'Header' => 'filter.h', - 'Line' => '77', - 'MnglName' => '_ZNK7log4cxx3spi6Filter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '184092' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '45', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '5979033' => { - 'Class' => '150952', - 'Header' => 'filter.h', - 'MnglName' => '_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5980620' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'filter.cpp', - 'SourceLine' => '48', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '5979073' => { - 'Class' => '150952', - 'Header' => 'filter.h', - 'MnglName' => '_ZN7log4cxx3spi6Filter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5980620' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '263006' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'filter.cpp', - 'SourceLine' => '52', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '5979118' => { - 'Class' => '150952', - 'Const' => 1, - 'Header' => 'filter.h', - 'Line' => '130', - 'MnglName' => '_ZNK7log4cxx3spi6Filter6decideERKSt10shared_ptrINS0_12LoggingEventEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '184086' - }, - '1' => { - 'name' => 'p1', - 'type' => '154261' - } - }, - 'PureVirt' => 1, - 'Return' => '151101', - 'ShortName' => 'decide', - 'VirtPos' => '7' - }, - '5985694' => { - 'Class' => '150952', - 'Destructor' => 1, - 'Header' => 'filter.h', - 'MnglName' => '_ZN7log4cxx3spi6FilterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5980620' - } - }, - 'ShortName' => 'Filter', - 'Source' => 'filter.cpp', - 'SourceLine' => '36', - 'Virt' => 1 - }, - '5985793' => { - 'Class' => '150952', - 'Destructor' => 1, - 'Header' => 'filter.h', - 'MnglName' => '_ZN7log4cxx3spi6FilterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5980620' - } - }, - 'ShortName' => 'Filter', - 'Source' => 'filter.cpp', - 'SourceLine' => '36', - 'Virt' => 1 - }, - '5986119' => { - 'Class' => '150952', - 'Destructor' => 1, - 'Header' => 'filter.h', - 'MnglName' => '_ZN7log4cxx3spi6FilterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5980620' - } - }, - 'ShortName' => 'Filter', - 'Source' => 'filter.cpp', - 'SourceLine' => '36', - 'Virt' => 1 - }, - '5986512' => { - 'Class' => '150952', - 'Constructor' => 1, - 'Header' => 'filter.h', - 'MnglName' => '_ZN7log4cxx3spi6FilterC1ESt10unique_ptrINS1_13FilterPrivateESt14default_deleteIS3_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5980620' - }, - '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '127906' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Filter', - 'Source' => 'filter.cpp', - 'SourceLine' => '30' - }, - '5987649' => { - 'Class' => '150952', - 'Constructor' => 1, - 'Header' => 'filter.h', - 'MnglName' => '_ZN7log4cxx3spi6FilterC2ESt10unique_ptrINS1_13FilterPrivateESt14default_deleteIS3_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5980620' - }, - '2' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '127906' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Filter', - 'Source' => 'filter.cpp', - 'SourceLine' => '30' - }, - '5988873' => { - 'Class' => '150952', - 'Constructor' => 1, - 'Header' => 'filter.h', - 'MnglName' => '_ZN7log4cxx3spi6FilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5980620' - } - }, - 'ShortName' => 'Filter', - 'Source' => 'filter.cpp', - 'SourceLine' => '26' - }, - '5989585' => { - 'Class' => '150952', - 'Constructor' => 1, - 'Header' => 'filter.h', - 'MnglName' => '_ZN7log4cxx3spi6FilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '5980620' - } - }, - 'ShortName' => 'Filter', - 'Source' => 'filter.cpp', - 'SourceLine' => '26' - }, - '6058359' => { - 'Class' => '6058239', - 'Const' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060893' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6058398' => { - 'Class' => '6058239', - 'Const' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060893' - } - }, - 'Return' => '6060813', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '6058437' => { - 'Artificial' => 1, - 'Class' => '6058239', - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060893' - } - }, - 'Return' => '6060813', - 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv' - }, - '6058511' => { - 'Class' => '6058130', - 'Const' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060847' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '26', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '6058550' => { - 'Class' => '6058130', - 'Header' => 'filterbasedtriggeringpolicy.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '26', - 'Static' => 1 - }, - '6058567' => { - 'Class' => '6058130', - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '26', - 'Static' => 1 - }, - '6058584' => { - 'Class' => '6058130', - 'Const' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '54', - 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060847' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '6058628' => { - 'Class' => '6058130', - 'Const' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 2, - 'Line' => '57', - 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060847' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6058766' => { - 'Class' => '6058130', - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - }, - '1' => { - 'name' => 'p1', - 'type' => '264877' - }, - '2' => { - 'name' => 'event', - 'type' => '154261' - }, - '3' => { - 'name' => 'p3', - 'type' => '263006' - }, - '4' => { - 'name' => 'p4', - 'type' => '50486' - } - }, - 'Reg' => { - '1' => 'rsi', - '3' => 'rcx', - '4' => 'r8' - }, - 'Return' => '50284', - 'ShortName' => 'isTriggeringEvent', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '52', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '6058825' => { - 'Class' => '6058130', - 'Header' => 'filterbasedtriggeringpolicy.h', - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy9addFilterERKSt10shared_ptrINS_3spi6FilterEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - }, - '1' => { - 'name' => 'newFilter', - 'type' => '154255' - } - }, - 'Return' => '1', - 'ShortName' => 'addFilter', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '85' - }, - '6058857' => { - 'Class' => '6058130', - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy12clearFiltersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - } - }, - 'Return' => '1', - 'ShortName' => 'clearFilters', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '99' - }, - '6058884' => { - 'Class' => '6058130', - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy9getFilterEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '6060870', - 'ShortName' => 'getFilter', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '106' - }, - '6058915' => { - 'Class' => '6058130', - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '114', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '6058956' => { - 'Class' => '6058130', - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '263006' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '122', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '6059048' => { - 'Class' => '6059004', - 'Const' => 1, - 'Header' => 'triggeringpolicy.h', - 'InLine' => 2, - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx7rolling16TriggeringPolicy10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6090106' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6059092' => { - 'Class' => '6059004', - 'Const' => 1, - 'Header' => 'triggeringpolicy.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx7rolling16TriggeringPolicy4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6090106' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '6059136' => { - 'Class' => '6059004', - 'Header' => 'triggeringpolicy.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'triggeringpolicy.cpp', - 'SourceLine' => '24', - 'Static' => 1 - }, - '6059167' => { - 'Data' => 1, - 'Line' => '26', - 'MnglName' => '_ZN7log4cxx7classes39FilterBasedTriggeringPolicyRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FilterBasedTriggeringPolicyRegistration', - 'Source' => 'filterbasedtriggeringpolicy.cpp' - }, - '6066262' => { - 'Artificial' => 1, - 'Class' => '6056799', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060547' - } - }, - 'ShortName' => 'WideLife' - }, - '6066263' => { - 'Artificial' => 1, - 'Class' => '6056799', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060547' - } - }, - 'ShortName' => 'WideLife' - }, - '6066404' => { - 'Artificial' => 1, - 'Class' => '6056799', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060547' - } - }, - 'ShortName' => 'WideLife' - }, - '6066405' => { - 'Artificial' => 1, - 'Class' => '6056799', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060547' - } - }, - 'ShortName' => 'WideLife' - }, - '6081849' => { - 'Class' => '6058130', - 'Destructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - } - }, - 'ShortName' => 'FilterBasedTriggeringPolicy', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '47', - 'Virt' => 1 - }, - '6081947' => { - 'Class' => '6058130', - 'Destructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - } - }, - 'ShortName' => 'FilterBasedTriggeringPolicy', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '47', - 'Virt' => 1 - }, - '6083753' => { - 'Class' => '6058130', - 'Destructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - } - }, - 'ShortName' => 'FilterBasedTriggeringPolicy', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '47', - 'Virt' => 1 - }, - '6085490' => { - 'Class' => '6058130', - 'Constructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - } - }, - 'ShortName' => 'FilterBasedTriggeringPolicy', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '41' - }, - '6086604' => { - 'Class' => '6058130', - 'Constructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060819' - } - }, - 'ShortName' => 'FilterBasedTriggeringPolicy', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'SourceLine' => '41' - }, - '6087663' => { - 'Artificial' => 1, - 'Class' => '6059004', - 'Constructor' => 1, - 'Header' => 'triggeringpolicy.h', - 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6087613' - } - }, - 'ShortName' => 'TriggeringPolicy' - }, - '6087664' => { - 'Artificial' => 1, - 'Class' => '6059004', - 'Constructor' => 1, - 'Header' => 'triggeringpolicy.h', - 'InLine' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6087613' - } - }, - 'ShortName' => 'TriggeringPolicy' - }, - '6089845' => { - 'Artificial' => 1, - 'Class' => '6058239', - 'Destructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060882' - } - }, - 'ShortName' => 'ClazzFilterBasedTriggeringPolicy', - 'Virt' => 1 - }, - '6089846' => { - 'Artificial' => 1, - 'Class' => '6058239', - 'Destructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060882' - } - }, - 'ShortName' => 'ClazzFilterBasedTriggeringPolicy', - 'Virt' => 1 - }, - '6089987' => { - 'Artificial' => 1, - 'Class' => '6058239', - 'Destructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060882' - } - }, - 'ShortName' => 'ClazzFilterBasedTriggeringPolicy', - 'Virt' => 1 - }, - '6090077' => { - 'Artificial' => 1, - 'Class' => '6058239', - 'Constructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060882' - } - }, - 'ShortName' => 'ClazzFilterBasedTriggeringPolicy' - }, - '6090078' => { - 'Artificial' => 1, - 'Class' => '6058239', - 'Constructor' => 1, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6060882' - } - }, - 'ShortName' => 'ClazzFilterBasedTriggeringPolicy' - }, - '62191' => { - 'Class' => '62082', - 'Header' => 'pool.h', - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers4Pool10getAPRPoolEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14006506' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '64702', - 'ShortName' => 'getAPRPool', - 'Source' => 'pool.cpp', - 'SourceLine' => '57' - }, - '62222' => { - 'Class' => '62082', - 'Header' => 'pool.h', - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7helpers4Pool6createEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14006506' - } - }, - 'Return' => '64702', - 'ShortName' => 'create', - 'Source' => 'pool.cpp', - 'SourceLine' => '62' - }, - '62253' => { - 'Class' => '62082', - 'Header' => 'pool.h', - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7helpers4Pool6pallocEm', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14006506' - }, - '1' => { - 'name' => 'size', - 'type' => '50486' - } - }, - 'Return' => '50560', - 'ShortName' => 'palloc', - 'Source' => 'pool.cpp', - 'SourceLine' => '75' - }, - '62289' => { - 'Class' => '62082', - 'Header' => 'pool.h', - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers4Pool9pstrallocEm', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14006506' - }, - '1' => { - 'name' => 'size', - 'type' => '50486' - } - }, - 'Return' => '51958', - 'ShortName' => 'pstralloc', - 'Source' => 'pool.cpp', - 'SourceLine' => '80' - }, - '62325' => { - 'Class' => '62082', - 'Header' => 'pool.h', - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7helpers4Pool4itoaEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14006506' - }, - '1' => { - 'name' => 'n', - 'type' => '50231' - } - }, - 'Return' => '51958', - 'ShortName' => 'itoa', - 'Source' => 'pool.cpp', - 'SourceLine' => '85' - }, - '62361' => { - 'Class' => '62082', - 'Header' => 'pool.h', - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7helpers4Pool8pstrndupEPKcm', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14006506' - }, - '1' => { - 'name' => 's', - 'type' => '51127' - }, - '2' => { - 'name' => 'len', - 'type' => '50486' - } - }, - 'Return' => '51958', - 'ShortName' => 'pstrndup', - 'Source' => 'pool.cpp', - 'SourceLine' => '90' - }, - '62402' => { - 'Class' => '62082', - 'Header' => 'pool.h', - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7helpers4Pool7pstrdupEPKc', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14006506' - }, - '1' => { - 'name' => 's', - 'type' => '51127' - } - }, - 'Return' => '51958', - 'ShortName' => 'pstrdup', - 'Source' => 'pool.cpp', - 'SourceLine' => '95' - }, - '62438' => { - 'Class' => '62082', - 'Header' => 'pool.h', - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers4Pool7pstrdupERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '14006506' - }, - '1' => { - 'name' => 's', - 'type' => '61535' - } - }, - 'Return' => '51958', - 'ShortName' => 'pstrdup', - 'Source' => 'pool.cpp', - 'SourceLine' => '100' - }, - '6292929' => { - 'Class' => '6292740', - 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'InLine' => 2, - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6507898' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6292974' => { - 'Class' => '6292740', - 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6507898' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '6293019' => { - 'Class' => '6292740', - 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'Line' => '120', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase14formatFileNameERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6507898' - }, - '1' => { - 'name' => 'obj', - 'type' => '652213' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'pool', - 'type' => '64643' - } - }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'formatFileName', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '112' - }, - '6293031' => { - 'Class' => '6292740', - 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'Line' => '101', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase32getCreateIntermediateDirectoriesEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6507898' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getCreateIntermediateDirectories', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '174' - }, - '6293043' => { - 'Class' => '6292740', - 'Header' => 'rollingpolicybase.h', - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16285734' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Private' => 1, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '50', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '6293055' => { - 'Class' => '6292740', - 'Const' => 1, - 'Header' => 'rollingpolicybase.h', - 'Line' => '123', - 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase26getIntegerPatternConverterEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6507898' - } - }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '2271807', - 'ShortName' => 'getIntegerPatternConverter', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '132' - }, - '6293067' => { - 'Class' => '6292740', - 'Header' => 'rollingpolicybase.h', - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16285734' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'rollingpolicybase.cpp', - 'SourceLine' => '67', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '6293247' => { - 'Class' => '6293126', - 'Const' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 2, - 'Line' => '73', - 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6304013' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6293287' => { - 'Class' => '6293126', - 'Const' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 2, - 'Line' => '73', - 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6304013' - } - }, - 'Return' => '6303909', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '6293327' => { - 'Artificial' => 1, - 'Class' => '6293126', - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 2, - 'Line' => '73', - 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6304013' - } - }, - 'Return' => '6303909', - 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv' - }, - '6293598' => { - 'Class' => '6293085', - 'Const' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303943' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '53', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '6293638' => { - 'Class' => '6293085', - 'Header' => 'fixedwindowrollingpolicy.h', - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '53', - 'Static' => 1 - }, - '6293655' => { - 'Class' => '6293085', - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '53', - 'Static' => 1 - }, - '6293672' => { - 'Class' => '6293085', - 'Const' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 2, - 'Line' => '74', - 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303943' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '6293717' => { - 'Class' => '6293085', - 'Const' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 2, - 'Line' => '77', - 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303943' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6293762' => { - 'Class' => '6293085', - 'Const' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy5purgeEiiRNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303943' - }, - '1' => { - 'name' => 'lowIndex', - 'type' => '50231' - }, - '2' => { - 'name' => 'highIndex', - 'type' => '50231' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '50284', - 'ShortName' => 'purge', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '257' - }, - '6293889' => { - 'Class' => '6293085', - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '102', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '6293930' => { - 'Class' => '6293085', - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '72', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '6294003' => { - 'Class' => '6293085', - 'Const' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'Line' => '117', - 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy11getMaxIndexEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303943' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getMaxIndex', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '235' - }, - '6294034' => { - 'Class' => '6293085', - 'Const' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy11getMinIndexEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303943' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getMinIndex', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '244' - }, - '6294065' => { - 'Class' => '6293085', - 'Header' => 'fixedwindowrollingpolicy.h', - 'Line' => '121', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy11setMaxIndexEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - }, - '1' => { - 'name' => 'maxIndex1', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setMaxIndex', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '62' - }, - '6294097' => { - 'Class' => '6293085', - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy11setMinIndexEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - }, - '1' => { - 'name' => 'minIndex1', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setMinIndex', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '67' - }, - '6294129' => { - 'Class' => '6293085', - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - }, - '1' => { - 'name' => 'currentActiveFile', - 'type' => '263006' - }, - '2' => { - 'name' => 'append', - 'type' => '50291' - }, - '3' => { - 'name' => 'pool', - 'type' => '64643' - } - }, - 'Return' => '6294348', - 'ShortName' => 'initialize', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '130', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '6294184' => { - 'Class' => '6293085', - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - }, - '1' => { - 'name' => 'currentActiveFile', - 'type' => '263006' - }, - '2' => { - 'name' => 'append', - 'type' => '50291' - }, - '3' => { - 'name' => 'pool', - 'type' => '64643' - } - }, - 'Return' => '6294348', - 'ShortName' => 'rollover', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '160', - 'Virt' => 1, - 'VirtPos' => '8' - }, - '6294239' => { - 'Class' => '6293085', - 'Const' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy19getFormatSpecifiersB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303943' - } - }, - 'Protected' => 1, - 'Return' => '3708324', - 'ShortName' => 'getFormatSpecifiers', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '375', - 'Virt' => 1, - 'VirtPos' => '9' - }, - '6294292' => { - 'Class' => '6294282', - 'Header' => 'gzcompressaction.h', - 'Line' => '64', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction32setThrowIOExceptionOnForkFailureEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803287' - }, - '1' => { - 'name' => 'throwIO', - 'type' => '50284' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setThrowIOExceptionOnForkFailure', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '176' - }, - '6294320' => { - 'Class' => '6294310', - 'Header' => 'zipcompressaction.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction32setThrowIOExceptionOnForkFailureEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '20168402' - }, - '1' => { - 'name' => 'throwIO', - 'type' => '50284' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setThrowIOExceptionOnForkFailure', - 'Source' => 'zipcompressaction.cpp', - 'SourceLine' => '152' - }, - '6294471' => { - 'Class' => '6294384', - 'Header' => 'rollingpolicy.h', - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'rollingpolicy.cpp', - 'SourceLine' => '23', - 'Static' => 1 - }, - '6295474' => { - 'Data' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7classes36FixedWindowRollingPolicyRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FixedWindowRollingPolicyRegistration', - 'Source' => 'fixedwindowrollingpolicy.cpp' - }, - '63538' => { - 'Class' => '63470', - 'Const' => 1, - 'Header' => 'object.h', - 'Line' => '109', - 'MnglName' => '_ZNK7log4cxx7helpers6Object8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245438' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '41', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '63577' => { - 'Class' => '63470', - 'Const' => 1, - 'Header' => 'object.h', - 'Line' => '110', - 'MnglName' => '_ZNK7log4cxx7helpers6Object10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66136' - }, - '1' => { - 'name' => 'p1', - 'type' => '64678' - } - }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'VirtPos' => '3' - }, - '63621' => { - 'Class' => '63470', - 'Const' => 1, - 'Header' => 'object.h', - 'Line' => '111', - 'MnglName' => '_ZNK7log4cxx7helpers6Object4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66136' - }, - '1' => { - 'name' => 'p1', - 'type' => '64678' - } - }, - 'PureVirt' => 1, - 'Return' => '54166', - 'ShortName' => 'cast', - 'VirtPos' => '4' - }, - '63665' => { - 'Class' => '63470', - 'Header' => 'object.h', - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx7helpers6Object14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '41', - 'Static' => 1 - }, - '6367985' => { - 'Artificial' => 1, - 'Class' => '6293354', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6299810' - } - }, - 'ShortName' => 'FixedWindowRollingPolicyPrivate', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'Virt' => 1 - }, - '6367986' => { - 'Artificial' => 1, - 'Class' => '6293354', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6299810' - } - }, - 'ShortName' => 'FixedWindowRollingPolicyPrivate', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'Virt' => 1 - }, - '63682' => { - 'Class' => '63470', - 'Header' => 'object.h', - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx7helpers6Object13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '41', - 'Static' => 1 - }, - '6371249' => { - 'Artificial' => 1, - 'Class' => '6293354', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6299810' - } - }, - 'ShortName' => 'FixedWindowRollingPolicyPrivate', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'Virt' => 1 - }, - '6381793' => { - 'Artificial' => 1, - 'Class' => '6291291', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6299685' - } - }, - 'ShortName' => 'WideLife' - }, - '6381794' => { - 'Artificial' => 1, - 'Class' => '6291291', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6299685' - } - }, - 'ShortName' => 'WideLife' - }, - '6381935' => { - 'Artificial' => 1, - 'Class' => '6291291', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6299685' - } - }, - 'ShortName' => 'WideLife' - }, - '6381936' => { - 'Artificial' => 1, - 'Class' => '6291291', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6299685' - } - }, - 'ShortName' => 'WideLife' - }, - '64049' => { - 'Class' => '63928', - 'Const' => 1, - 'Header' => 'action.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx7rolling6Action11ClazzAction7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66125' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '64147' => { - 'Class' => '63730', - 'Header' => 'action.h', - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7rolling6Action14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'action.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '64164' => { - 'Class' => '63730', - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6Action13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'action.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '64181' => { - 'Class' => '63730', - 'Const' => 1, - 'Header' => 'action.h', - 'MnglName' => '_ZNK7log4cxx7rolling6Action8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66062' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'action.cpp', - 'SourceLine' => '27', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '64220' => { - 'Class' => '63730', - 'Const' => 1, - 'Header' => 'action.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7rolling6Action4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66062' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '64264' => { - 'Class' => '63730', - 'Const' => 1, - 'Header' => 'action.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7rolling6Action10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66062' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '64444' => { - 'Class' => '63730', - 'Const' => 1, - 'Header' => 'action.h', - 'Line' => '58', - 'MnglName' => '_ZNK7log4cxx7rolling6Action7executeERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66056' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'execute', - 'VirtPos' => '5' - }, - '64488' => { - 'Class' => '63730', - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6Action3runERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - }, - '1' => { - 'name' => 'pool1', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'run', - 'Source' => 'action.cpp', - 'SourceLine' => '44' - }, - '64521' => { - 'Class' => '63730', - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6Action5closeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - } - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'action.cpp', - 'SourceLine' => '67' - }, - '64548' => { - 'Class' => '63730', - 'Const' => 1, - 'Header' => 'action.h', - 'MnglName' => '_ZNK7log4cxx7rolling6Action10isCompleteEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66062' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'isComplete', - 'Source' => 'action.cpp', - 'SourceLine' => '77' - }, - '64579' => { - 'Class' => '63730', - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6Action15reportExceptionERKSt9exception', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - }, - '1' => { - 'name' => 'p1', - 'type' => '66067' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'reportException', - 'Source' => 'action.cpp', - 'SourceLine' => '87' - }, - '64624' => { - 'Data' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7classes18ActionRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ActionRegistration', - 'Source' => 'action.cpp' - }, - '647826' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer10initializeEv', - 'Return' => '649587', - 'ShortName' => 'initialize', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '129', - 'Static' => 1 - }, - '647843' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer11getRootPoolEv', - 'Return' => '64702', - 'ShortName' => 'getRootPool', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '134', - 'Static' => 1 - }, - '647860' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer9getTlsKeyEv', - 'Return' => '652173', - 'ShortName' => 'getTlsKey', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '139', - 'Static' => 1 - }, - '647891' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer15registerCleanupEPNS0_12FileWatchdogE', - 'Param' => { - '0' => { - 'name' => 'watchdog', - 'type' => '652179' - } - }, - 'Return' => '1', - 'ShortName' => 'registerCleanup', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '144', - 'Static' => 1 - }, - '647914' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '58', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer17unregisterCleanupEPNS0_12FileWatchdogE', - 'Param' => { - '0' => { - 'name' => 'watchdog', - 'type' => '652179' - } - }, - 'Return' => '1', - 'ShortName' => 'unregisterCleanup', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '151', - 'Static' => 1 - }, - '647937' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer13unregisterAllEv', - 'Return' => '1', - 'ShortName' => 'unregisterAll', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '116', - 'Static' => 1 - }, - '648044' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer9addObjectEmRKSt10shared_ptrINS0_6ObjectEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652196' - }, - '1' => { - 'name' => 'key', - 'type' => '50486' - }, - '2' => { - 'name' => 'pObject', - 'type' => '652213' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'addObject', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '168' - }, - '648080' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '83', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer15findOrAddObjectEmSt8functionIFSt10shared_ptrINS0_6ObjectEEvEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652196' - }, - '1' => { - 'name' => 'key', - 'type' => '50486' - }, - '2' => { - 'name' => 'creator', - 'type' => '566100' - } - }, - 'Private' => 1, - 'Return' => '652213', - 'ShortName' => 'findOrAddObject', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '174' - }, - '648120' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '84', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer13stopWatchDogsEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652196' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'stopWatchDogs', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '104' - }, - '648159' => { - 'Class' => '647671', - 'Header' => 'aprinitializer.h', - 'Line' => '88', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer11getInstanceEv', - 'Private' => 1, - 'Return' => '652207', - 'ShortName' => 'getInstance', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '121', - 'Static' => 1 - }, - '648220' => { - 'Class' => '648210', - 'Header' => 'filewatchdog.h', - 'Line' => '67', - 'MnglName' => '_ZN7log4cxx7helpers12FileWatchdog4stopEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652185' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'stop', - 'Source' => 'filewatchdog.cpp', - 'SourceLine' => '73' - }, - '648327' => { - 'Class' => '648250', - 'Header' => 'threadspecificdata.h', - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData14getCurrentDataEv', - 'Return' => '652648', - 'ShortName' => 'getCurrentData', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '61', - 'Static' => 1 - }, - '648344' => { - 'Class' => '648250', - 'Header' => 'threadspecificdata.h', - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData7recycleEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18300888' - } - }, - 'Return' => '1', - 'ShortName' => 'recycle', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '75' - }, - '648371' => { - 'Class' => '648250', - 'Header' => 'threadspecificdata.h', - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData3putERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '263006' - }, - '1' => { - 'name' => 'val', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'put', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '98', - 'Static' => 1 - }, - '648400' => { - 'Class' => '648250', - 'Header' => 'threadspecificdata.h', - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData4pushERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'val', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'push', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '116', - 'Static' => 1 - }, - '648423' => { - 'Class' => '648250', - 'Header' => 'threadspecificdata.h', - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData7inheritERKSt5stackISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ESt5dequeISA_SaISA_EEE', - 'Param' => { - '0' => { - 'name' => 'src', - 'type' => '652654' - } - }, - 'Return' => '1', - 'ShortName' => 'inherit', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '143', - 'Static' => 1 - }, - '648446' => { - 'Class' => '648250', - 'Header' => 'threadspecificdata.h', - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData8getStackB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18300888' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '652660', - 'ShortName' => 'getStack', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '45' - }, - '648477' => { - 'Class' => '648250', - 'Header' => 'threadspecificdata.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData6getMapB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '18300888' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '652666', - 'ShortName' => 'getMap', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '50' - }, - '648508' => { - 'Class' => '648250', - 'Header' => 'threadspecificdata.h', - 'Line' => '57', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData16getDataNoThreadsEv', - 'Private' => 1, - 'Return' => '652672', - 'ShortName' => 'getDataNoThreads', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '55', - 'Static' => 1 - }, - '648524' => { - 'Class' => '648250', - 'Header' => 'threadspecificdata.h', - 'Line' => '58', - 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificData17createCurrentDataEv', - 'Private' => 1, - 'Return' => '652648', - 'ShortName' => 'createCurrentData', - 'Source' => 'threadspecificdata.cpp', - 'SourceLine' => '160', - 'Static' => 1 - }, - '6489164' => { - 'Class' => '6293085', - 'Destructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - } - }, - 'ShortName' => 'FixedWindowRollingPolicy', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '60', - 'Virt' => 1 - }, - '6489262' => { - 'Class' => '6293085', - 'Destructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - } - }, - 'ShortName' => 'FixedWindowRollingPolicy', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '60', - 'Virt' => 1 - }, - '6489523' => { - 'Class' => '6293085', - 'Destructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - } - }, - 'ShortName' => 'FixedWindowRollingPolicy', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '60', - 'Virt' => 1 - }, - '6489653' => { - 'Class' => '6293085', - 'Constructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - } - }, - 'ShortName' => 'FixedWindowRollingPolicy', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '55' - }, - '6494201' => { - 'Class' => '6293085', - 'Constructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicyC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6303915' - } - }, - 'ShortName' => 'FixedWindowRollingPolicy', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'SourceLine' => '55' - }, - '649677' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '107', - 'MnglName' => '_ZN7log4cxx3NDC5clearEv', - 'Return' => '1', - 'ShortName' => 'clear', - 'Source' => 'ndc.cpp', - 'SourceLine' => '46', - 'Static' => 1 - }, - '649709' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '120', - 'MnglName' => '_ZN7log4cxx3NDC10cloneStackB5cxx11Ev', - 'Return' => '652355', - 'ShortName' => 'cloneStack', - 'Source' => 'ndc.cpp', - 'SourceLine' => '63', - 'Static' => 1 - }, - '649726' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '134', - 'MnglName' => '_ZN7log4cxx3NDC7inheritEPSt5stackISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_ESt5dequeIS9_SaIS9_EEE', - 'Param' => { - '0' => { - 'name' => 'stack', - 'type' => '652355' - } - }, - 'Return' => '1', - 'ShortName' => 'inherit', - 'Source' => 'ndc.cpp', - 'SourceLine' => '80', - 'Static' => 1 - }, - '649749' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '142', - 'MnglName' => '_ZN7log4cxx3NDC3getERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'dest', - 'type' => '409210' - } - }, - 'Return' => '50284', - 'ShortName' => 'get', - 'Source' => 'ndc.cpp', - 'SourceLine' => '90', - 'Static' => 1 - }, - '649777' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '147', - 'MnglName' => '_ZN7log4cxx3NDC8getDepthEv', - 'Return' => '50231', - 'ShortName' => 'getDepth', - 'Source' => 'ndc.cpp', - 'SourceLine' => '110', - 'Static' => 1 - }, - '649794' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '153', - 'MnglName' => '_ZN7log4cxx3NDC5emptyEv', - 'Return' => '50284', - 'ShortName' => 'empty', - 'Source' => 'ndc.cpp', - 'SourceLine' => '227', - 'Static' => 1 - }, - '649811' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '162', - 'MnglName' => '_ZN7log4cxx3NDC3popB5cxx11Ev', - 'Return' => '63706', - 'ShortName' => 'pop', - 'Source' => 'ndc.cpp', - 'SourceLine' => '128', - 'Static' => 1 - }, - '649829' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '168', - 'MnglName' => '_ZN7log4cxx3NDC3popERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'dst', - 'type' => '650733' - } - }, - 'Return' => '50284', - 'ShortName' => 'pop', - 'Source' => 'ndc.cpp', - 'SourceLine' => '150', - 'Static' => 1 - }, - '649857' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '177', - 'MnglName' => '_ZN7log4cxx3NDC4peekB5cxx11Ev', - 'Return' => '63706', - 'ShortName' => 'peek', - 'Source' => 'ndc.cpp', - 'SourceLine' => '172', - 'Static' => 1 - }, - '6498629' => { - 'Artificial' => 1, - 'Class' => '6294384', - 'Constructor' => 1, - 'Header' => 'rollingpolicy.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6498579' - } - }, - 'ShortName' => 'RollingPolicy' - }, - '6498630' => { - 'Artificial' => 1, - 'Class' => '6294384', - 'Constructor' => 1, - 'Header' => 'rollingpolicy.h', - 'InLine' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6498579' - } - }, - 'ShortName' => 'RollingPolicy' - }, - '649874' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '183', - 'MnglName' => '_ZN7log4cxx3NDC4peekERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'dst', - 'type' => '650733' - } - }, - 'Return' => '50284', - 'ShortName' => 'peek', - 'Source' => 'ndc.cpp', - 'SourceLine' => '191', - 'Static' => 1 - }, - '649902' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '191', - 'MnglName' => '_ZN7log4cxx3NDC4pushERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'message', - 'type' => '61535' - } - }, - 'Return' => '1', - 'ShortName' => 'push', - 'Source' => 'ndc.cpp', - 'SourceLine' => '216', - 'Static' => 1 - }, - '649925' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '198', - 'MnglName' => '_ZN7log4cxx3NDC6pushLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'message', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'pushLS', - 'Source' => 'ndc.cpp', - 'SourceLine' => '211', - 'Static' => 1 - }, - '649948' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '206', - 'MnglName' => '_ZN7log4cxx3NDC6removeEv', - 'Return' => '1', - 'ShortName' => 'remove', - 'Source' => 'ndc.cpp', - 'SourceLine' => '222', - 'Static' => 1 - }, - '6499841' => { - 'Artificial' => 1, - 'Class' => '6292750', - 'Destructor' => 1, - 'Header' => 'rollingpolicybase_priv.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6297196' - } - }, - 'ShortName' => 'RollingPolicyBasePrivate', - 'Virt' => 1 - }, - '6499842' => { - 'Artificial' => 1, - 'Class' => '6292750', - 'Destructor' => 1, - 'Header' => 'rollingpolicybase_priv.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6297196' - } - }, - 'ShortName' => 'RollingPolicyBasePrivate', - 'Virt' => 1 - }, - '649994' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '220', - 'MnglName' => '_ZN7log4cxx3NDC4pushERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'message', - 'type' => '646944' - } - }, - 'Return' => '1', - 'ShortName' => 'push', - 'Source' => 'ndc.cpp', - 'SourceLine' => '252', - 'Static' => 1 - }, - '650017' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '226', - 'MnglName' => '_ZN7log4cxx3NDC4peekERNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'dst', - 'type' => '650739' - } - }, - 'Return' => '50284', - 'ShortName' => 'peek', - 'Source' => 'ndc.cpp', - 'SourceLine' => '280', - 'Static' => 1 - }, - '650045' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '232', - 'MnglName' => '_ZN7log4cxx3NDC3popERNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'dst', - 'type' => '650739' - } - }, - 'Return' => '50284', - 'ShortName' => 'pop', - 'Source' => 'ndc.cpp', - 'SourceLine' => '258', - 'Static' => 1 - }, - '650142' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '292', - 'MnglName' => '_ZN7log4cxx3NDC10getMessageERSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_E', - 'Param' => { - '0' => { - 'name' => 'ctx', - 'type' => '652373' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '409210', - 'ShortName' => 'getMessage', - 'Source' => 'ndc.cpp', - 'SourceLine' => '36', - 'Static' => 1 - }, - '650182' => { - 'Class' => '649599', - 'Header' => 'ndc.h', - 'Line' => '293', - 'MnglName' => '_ZN7log4cxx3NDC14getFullMessageERSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_E', - 'Param' => { - '0' => { - 'name' => 'ctx', - 'type' => '652373' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '409210', - 'ShortName' => 'getFullMessage', - 'Source' => 'ndc.cpp', - 'SourceLine' => '41', - 'Static' => 1 - }, - '650295' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '70', - 'MnglName' => '_ZN7log4cxx3MDC3putERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '61535' - }, - '1' => { - 'name' => 'value', - 'type' => '61535' - } - }, - 'Return' => '1', - 'ShortName' => 'put', - 'Source' => 'mdc.cpp', - 'SourceLine' => '48', - 'Static' => 1 - }, - '6503069' => { - 'Artificial' => 1, - 'Class' => '6292750', - 'Destructor' => 1, - 'Header' => 'rollingpolicybase_priv.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6297196' - } - }, - 'ShortName' => 'RollingPolicyBasePrivate', - 'Virt' => 1 - }, - '650324' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3MDC5putLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '263006' - }, - '1' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'putLS', - 'Source' => 'mdc.cpp', - 'SourceLine' => '43', - 'Static' => 1 - }, - '650352' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '86', - 'MnglName' => '_ZN7log4cxx3MDC3getERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '61535' - } - }, - 'Return' => '36898', - 'ShortName' => 'get', - 'Source' => 'mdc.cpp', - 'SourceLine' => '77', - 'Static' => 1 - }, - '650380' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '93', - 'MnglName' => '_ZN7log4cxx3MDC3getERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS6_', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '263006' - }, - '1' => { - 'name' => 'value', - 'type' => '409210' - } - }, - 'Return' => '50284', - 'ShortName' => 'get', - 'Source' => 'mdc.cpp', - 'SourceLine' => '55', - 'Static' => 1 - }, - '650413' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '101', - 'MnglName' => '_ZN7log4cxx3MDC6removeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '61535' - } - }, - 'Return' => '36898', - 'ShortName' => 'remove', - 'Source' => 'mdc.cpp', - 'SourceLine' => '112', - 'Static' => 1 - }, - '650478' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '119', - 'MnglName' => '_ZN7log4cxx3MDC3putERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEES8_', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '646944' - }, - '1' => { - 'name' => 'value', - 'type' => '646944' - } - }, - 'Return' => '1', - 'ShortName' => 'put', - 'Source' => 'mdc.cpp', - 'SourceLine' => '162', - 'Static' => 1 - }, - '650507' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx3MDC3getERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '646944' - } - }, - 'Return' => '555309', - 'ShortName' => 'get', - 'Source' => 'mdc.cpp', - 'SourceLine' => '148', - 'Static' => 1 - }, - '650535' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '134', - 'MnglName' => '_ZN7log4cxx3MDC6removeERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '646944' - } - }, - 'Return' => '555309', - 'ShortName' => 'remove', - 'Source' => 'mdc.cpp', - 'SourceLine' => '170', - 'Static' => 1 - }, - '650563' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '211', - 'MnglName' => '_ZN7log4cxx3MDC6removeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS6_', - 'Param' => { - '0' => { - 'name' => 'key', - 'type' => '263006' - }, - '1' => { - 'name' => 'value', - 'type' => '409210' - } - }, - 'Return' => '50284', - 'ShortName' => 'remove', - 'Source' => 'mdc.cpp', - 'SourceLine' => '91', - 'Static' => 1 - }, - '650596' => { - 'Class' => '650212', - 'Header' => 'mdc.h', - 'Line' => '219', - 'MnglName' => '_ZN7log4cxx3MDC5clearEv', - 'Return' => '1', - 'ShortName' => 'clear', - 'Source' => 'mdc.cpp', - 'SourceLine' => '127', - 'Static' => 1 - }, - '6506258' => { - 'Artificial' => 1, - 'Class' => '6292750', - 'Constructor' => 1, - 'Header' => 'rollingpolicybase_priv.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6297196' - } - }, - 'ShortName' => 'RollingPolicyBasePrivate' - }, - '6506259' => { - 'Artificial' => 1, - 'Class' => '6292750', - 'Constructor' => 1, - 'Header' => 'rollingpolicybase_priv.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6297196' - } - }, - 'ShortName' => 'RollingPolicyBasePrivate' - }, - '6507637' => { - 'Artificial' => 1, - 'Class' => '6293126', - 'Destructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6304002' - } - }, - 'ShortName' => 'ClazzFixedWindowRollingPolicy', - 'Virt' => 1 - }, - '6507638' => { - 'Artificial' => 1, - 'Class' => '6293126', - 'Destructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6304002' - } - }, - 'ShortName' => 'ClazzFixedWindowRollingPolicy', - 'Virt' => 1 - }, - '6507779' => { - 'Artificial' => 1, - 'Class' => '6293126', - 'Destructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6304002' - } - }, - 'ShortName' => 'ClazzFixedWindowRollingPolicy', - 'Virt' => 1 - }, - '6507869' => { - 'Artificial' => 1, - 'Class' => '6293126', - 'Constructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6304002' - } - }, - 'ShortName' => 'ClazzFixedWindowRollingPolicy' - }, - '6507870' => { - 'Artificial' => 1, - 'Class' => '6293126', - 'Constructor' => 1, - 'Header' => 'fixedwindowrollingpolicy.h', - 'InLine' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6304002' - } - }, - 'ShortName' => 'ClazzFixedWindowRollingPolicy' - }, - '6508034' => { - 'Artificial' => 1, - 'Class' => '6294384', - 'Destructor' => 1, - 'Header' => 'rollingpolicy.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6498579' - } - }, - 'ShortName' => 'RollingPolicy', - 'Virt' => 1 - }, - '6508035' => { - 'Artificial' => 1, - 'Class' => '6294384', - 'Destructor' => 1, - 'Header' => 'rollingpolicy.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6498579' - } - }, - 'ShortName' => 'RollingPolicy', - 'Virt' => 1 - }, - '654399' => { - 'Class' => '647671', - 'Data' => 1, - 'Header' => 'aprinitializer.h', - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializer12isDestructedE', - 'Return' => '50284', - 'ShortName' => 'isDestructed', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '32' - }, - '6575858' => { - 'Class' => '6575738', - 'Const' => 1, - 'Header' => 'formattinginfo.h', - 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo19ClazzFormattingInfo7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577462' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6575969' => { - 'Class' => '6295418', - 'Header' => 'formattinginfo.h', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '48', - 'Static' => 1 - }, - '6575986' => { - 'Class' => '6295418', - 'Header' => 'formattinginfo.h', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '48', - 'Static' => 1 - }, - '6576003' => { - 'Class' => '6295418', - 'Const' => 1, - 'Header' => 'formattinginfo.h', - 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577188' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '48', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '6576042' => { - 'Class' => '6295418', - 'Const' => 1, - 'Header' => 'formattinginfo.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577188' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '6576086' => { - 'Class' => '6295418', - 'Const' => 1, - 'Header' => 'formattinginfo.h', - 'InLine' => 2, - 'Line' => '51', - 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577188' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6576224' => { - 'Class' => '6295418', - 'Header' => 'formattinginfo.h', - 'Line' => '68', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo10getDefaultEv', - 'Return' => '6576374', - 'ShortName' => 'getDefault', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '68', - 'Static' => 1 - }, - '6576241' => { - 'Class' => '6295418', - 'Const' => 1, - 'Header' => 'formattinginfo.h', - 'Line' => '74', - 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo13isLeftAlignedEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577188' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'isLeftAligned', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '102' - }, - '6576272' => { - 'Class' => '6295418', - 'Const' => 1, - 'Header' => 'formattinginfo.h', - 'Line' => '80', - 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo12getMinLengthEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577188' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getMinLength', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '107' - }, - '6576303' => { - 'Class' => '6295418', - 'Const' => 1, - 'Header' => 'formattinginfo.h', - 'Line' => '86', - 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo12getMaxLengthEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577188' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getMaxLength', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '112' - }, - '6576334' => { - 'Class' => '6295418', - 'Const' => 1, - 'Header' => 'formattinginfo.h', - 'Line' => '94', - 'MnglName' => '_ZNK7log4cxx7pattern14FormattingInfo6formatEiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577188' - }, - '1' => { - 'name' => 'fieldStart', - 'type' => '50239' - }, - '2' => { - 'name' => 'buffer', - 'type' => '409210' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '80' - }, - '6576396' => { - 'Data' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7classes26FormattingInfoRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FormattingInfoRegistration', - 'Source' => 'formattinginfo.cpp' - }, - '6592350' => { - 'Artificial' => 1, - 'Class' => '6574897', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577056' - } - }, - 'ShortName' => 'WideLife' - }, - '6592351' => { - 'Artificial' => 1, - 'Class' => '6574897', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577056' - } - }, - 'ShortName' => 'WideLife' - }, - '6593128' => { - 'Artificial' => 1, - 'Class' => '6574897', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEEC2IS5_JEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577056' - }, - '1' => { - 'name' => 'arg0', - 'type' => '6302217' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '6162484' - } - } - }, - '6593129' => { - 'Artificial' => 1, - 'Class' => '6574897', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEEC1IS5_JEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577056' - }, - '1' => { - 'name' => 'arg0', - 'type' => '6302217' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '6162484' - } - } - }, - '6593985' => { - 'Artificial' => 1, - 'Class' => '6574137', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6576791' - } - }, - 'ShortName' => 'WideLife' - }, - '6593986' => { - 'Artificial' => 1, - 'Class' => '6574137', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6576791' - } - }, - 'ShortName' => 'WideLife' - }, - '6594126' => { - 'Artificial' => 1, - 'Class' => '6574137', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6576791' - } - }, - 'ShortName' => 'WideLife' - }, - '6594127' => { - 'Artificial' => 1, - 'Class' => '6574137', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6576791' - } - }, - 'ShortName' => 'WideLife' - }, - '6602132' => { - 'Class' => '6295418', - 'Destructor' => 1, - 'Header' => 'formattinginfo.h', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577010' - } - }, - 'ShortName' => 'FormattingInfo', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '62', - 'Virt' => 1 - }, - '6602230' => { - 'Class' => '6295418', - 'Destructor' => 1, - 'Header' => 'formattinginfo.h', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577010' - } - }, - 'ShortName' => 'FormattingInfo', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '62', - 'Virt' => 1 - }, - '6602625' => { - 'Class' => '6295418', - 'Destructor' => 1, - 'Header' => 'formattinginfo.h', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577010' - } - }, - 'ShortName' => 'FormattingInfo', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '62', - 'Virt' => 1 - }, - '6603060' => { - 'Class' => '6295418', - 'Constructor' => 1, - 'Header' => 'formattinginfo.h', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoC1Ebii', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577010' - }, - '1' => { - 'name' => 'leftAlign1', - 'type' => '50291' - }, - '2' => { - 'name' => 'minLength1', - 'type' => '50239' - }, - '3' => { - 'name' => 'maxLength1', - 'type' => '50239' - } - }, - 'ShortName' => 'FormattingInfo', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '56' - }, - '6603799' => { - 'Class' => '6295418', - 'Constructor' => 1, - 'Header' => 'formattinginfo.h', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfoC2Ebii', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577010' - }, - '2' => { - 'name' => 'leftAlign1', - 'type' => '50291' - }, - '3' => { - 'name' => 'minLength1', - 'type' => '50239' - }, - '4' => { - 'name' => 'maxLength1', - 'type' => '50239' - } - }, - 'ShortName' => 'FormattingInfo', - 'Source' => 'formattinginfo.cpp', - 'SourceLine' => '56' - }, - '6606476' => { - 'Artificial' => 1, - 'Class' => '6575738', - 'Destructor' => 1, - 'Header' => 'formattinginfo.h', - 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577451' - } - }, - 'ShortName' => 'ClazzFormattingInfo', - 'Virt' => 1 - }, - '6606477' => { - 'Artificial' => 1, - 'Class' => '6575738', - 'Destructor' => 1, - 'Header' => 'formattinginfo.h', - 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577451' - } - }, - 'ShortName' => 'ClazzFormattingInfo', - 'Virt' => 1 - }, - '6606617' => { - 'Artificial' => 1, - 'Class' => '6575738', - 'Destructor' => 1, - 'Header' => 'formattinginfo.h', - 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577451' - } - }, - 'ShortName' => 'ClazzFormattingInfo', - 'Virt' => 1 - }, - '6606707' => { - 'Artificial' => 1, - 'Class' => '6575738', - 'Constructor' => 1, - 'Header' => 'formattinginfo.h', - 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577451' - } - }, - 'ShortName' => 'ClazzFormattingInfo' - }, - '6606708' => { - 'Artificial' => 1, - 'Class' => '6575738', - 'Constructor' => 1, - 'Header' => 'formattinginfo.h', - 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6577451' - } - }, - 'ShortName' => 'ClazzFormattingInfo' - }, - '6677434' => { - 'Class' => '6677313', - 'Const' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680652' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6677563' => { - 'Class' => '6677279', - 'Header' => 'fulllocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'fulllocationpatternconverter.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '6677580' => { - 'Class' => '6677279', - 'Header' => 'fulllocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'fulllocationpatternconverter.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '6677597' => { - 'Class' => '6677279', - 'Const' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680330' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'fulllocationpatternconverter.cpp', - 'SourceLine' => '29', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '6677636' => { - 'Class' => '6677279', - 'Const' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680330' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '6677680' => { - 'Class' => '6677279', - 'Const' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680330' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6677761' => { - 'Class' => '6677279', - 'Header' => 'fulllocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'fulllocationpatternconverter.cpp', - 'SourceLine' => '37', - 'Static' => 1 - }, - '6677788' => { - 'Class' => '6677279', - 'Const' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680330' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'fulllocationpatternconverter.cpp', - 'SourceLine' => '44', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '6678676' => { - 'Data' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7classes40FullLocationPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FullLocationPatternConverterRegistration', - 'Source' => 'fulllocationpatternconverter.cpp' - }, - '6683651' => { - 'Artificial' => 1, - 'Class' => '6677279', - 'Destructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680131' - } - }, - 'ShortName' => 'FullLocationPatternConverter', - 'Virt' => 1 - }, - '6683652' => { - 'Artificial' => 1, - 'Class' => '6677279', - 'Destructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680131' - } - }, - 'ShortName' => 'FullLocationPatternConverter', - 'Virt' => 1 - }, - '6683916' => { - 'Artificial' => 1, - 'Class' => '6677279', - 'Destructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680131' - } - }, - 'ShortName' => 'FullLocationPatternConverter', - 'Virt' => 1 - }, - '6694170' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_28FullLocationPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '6680153' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '6653981' - } - } - }, - '6694171' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_28FullLocationPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '6680153' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '6653981' - } - } - }, - '6694586' => { - 'Artificial' => 1, - 'Class' => '6675615', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6679823' - } - }, - 'ShortName' => 'WideLife' - }, - '6694587' => { - 'Artificial' => 1, - 'Class' => '6675615', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6679823' - } - }, - 'ShortName' => 'WideLife' - }, - '6694727' => { - 'Artificial' => 1, - 'Class' => '6675615', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6679823' - } - }, - 'ShortName' => 'WideLife' - }, - '6694728' => { - 'Artificial' => 1, - 'Class' => '6675615', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6679823' - } - }, - 'ShortName' => 'WideLife' - }, - '6702297' => { - 'Class' => '6677279', - 'Constructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680131' - } - }, - 'ShortName' => 'FullLocationPatternConverter', - 'Source' => 'fulllocationpatternconverter.cpp', - 'SourceLine' => '31' - }, - '6706414' => { - 'Class' => '6677279', - 'Constructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680131' - } - }, - 'ShortName' => 'FullLocationPatternConverter', - 'Source' => 'fulllocationpatternconverter.cpp', - 'SourceLine' => '31' - }, - '6712449' => { - 'Artificial' => 1, - 'Class' => '6677313', - 'Destructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680641' - } - }, - 'ShortName' => 'ClazzFullLocationPatternConverter', - 'Virt' => 1 - }, - '6712450' => { - 'Artificial' => 1, - 'Class' => '6677313', - 'Destructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680641' - } - }, - 'ShortName' => 'ClazzFullLocationPatternConverter', - 'Virt' => 1 - }, - '6712590' => { - 'Artificial' => 1, - 'Class' => '6677313', - 'Destructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680641' - } - }, - 'ShortName' => 'ClazzFullLocationPatternConverter', - 'Virt' => 1 - }, - '6712680' => { - 'Artificial' => 1, - 'Class' => '6677313', - 'Constructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680641' - } - }, - 'ShortName' => 'ClazzFullLocationPatternConverter' - }, - '6712681' => { - 'Artificial' => 1, - 'Class' => '6677313', - 'Constructor' => 1, - 'Header' => 'fulllocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6680641' - } - }, - 'ShortName' => 'ClazzFullLocationPatternConverter' - }, - '676191' => { - 'Artificial' => 1, - 'Class' => '648882', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '655304' - } - }, - 'ShortName' => 'WideLife' - }, - '676192' => { - 'Artificial' => 1, - 'Class' => '648882', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '655304' - } - }, - 'ShortName' => 'WideLife' - }, - '676333' => { - 'Artificial' => 1, - 'Class' => '648882', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '655304' - } - }, - 'ShortName' => 'WideLife' - }, - '676334' => { - 'Artificial' => 1, - 'Class' => '648882', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '655304' - } - }, - 'ShortName' => 'WideLife' - }, - '6798795' => { - 'Class' => '6798674', - 'Const' => 1, - 'Header' => 'gzcompressaction.h', - 'InLine' => 2, - 'Line' => '34', - 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction21ClazzGZCompressAction7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803379' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6799055' => { - 'Class' => '6294282', - 'Header' => 'gzcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '45', - 'Static' => 1 - }, - '6799072' => { - 'Class' => '6294282', - 'Header' => 'gzcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '45', - 'Static' => 1 - }, - '6799089' => { - 'Class' => '6294282', - 'Const' => 1, - 'Header' => 'gzcompressaction.h', - 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803276' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '45', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '6799128' => { - 'Class' => '6294282', - 'Const' => 1, - 'Header' => 'gzcompressaction.h', - 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803276' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '6799172' => { - 'Class' => '6294282', - 'Const' => 1, - 'Header' => 'gzcompressaction.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803276' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '6799311' => { - 'Class' => '6294282', - 'Const' => 1, - 'Header' => 'gzcompressaction.h', - 'MnglName' => '_ZNK7log4cxx7rolling16GZCompressAction7executeERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803276' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '50284', - 'ShortName' => 'execute', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '57', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '6800364' => { - 'Data' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7classes28GZCompressActionRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'GZCompressActionRegistration', - 'Source' => 'gzcompressaction.cpp' - }, - '6809040' => { - 'Artificial' => 1, - 'Class' => '6798837', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6802890' - } - }, - 'ShortName' => 'GZCompressActionPrivate', - 'Source' => 'gzcompressaction.cpp', - 'Virt' => 1 - }, - '6809041' => { - 'Artificial' => 1, - 'Class' => '6798837', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6802890' - } - }, - 'ShortName' => 'GZCompressActionPrivate', - 'Source' => 'gzcompressaction.cpp', - 'Virt' => 1 - }, - '6809273' => { - 'Artificial' => 1, - 'Class' => '6798837', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6802890' - } - }, - 'ShortName' => 'GZCompressActionPrivate', - 'Source' => 'gzcompressaction.cpp', - 'Virt' => 1 - }, - '6810815' => { - 'Artificial' => 1, - 'Class' => '6796981', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6802765' - } - }, - 'ShortName' => 'WideLife' - }, - '6810816' => { - 'Artificial' => 1, - 'Class' => '6796981', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6802765' - } - }, - 'ShortName' => 'WideLife' - }, - '6810957' => { - 'Artificial' => 1, - 'Class' => '6796981', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6802765' - } - }, - 'ShortName' => 'WideLife' - }, - '6810958' => { - 'Artificial' => 1, - 'Class' => '6796981', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6802765' - } - }, - 'ShortName' => 'WideLife' - }, - '6819602' => { - 'Class' => '6294282', - 'Destructor' => 1, - 'Header' => 'gzcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803287' - } - }, - 'ShortName' => 'GZCompressAction', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '55', - 'Virt' => 1 - }, - '6819700' => { - 'Class' => '6294282', - 'Destructor' => 1, - 'Header' => 'gzcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803287' - } - }, - 'ShortName' => 'GZCompressAction', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '55', - 'Virt' => 1 - }, - '6819831' => { - 'Class' => '6294282', - 'Destructor' => 1, - 'Header' => 'gzcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803287' - } - }, - 'ShortName' => 'GZCompressAction', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '55', - 'Virt' => 1 - }, - '6819997' => { - 'Class' => '6294282', - 'Constructor' => 1, - 'Header' => 'gzcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionC1ERKNS_4FileES4_b', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803287' - }, - '1' => { - 'name' => 'src', - 'type' => '840075' - }, - '2' => { - 'name' => 'dest', - 'type' => '840075' - }, - '3' => { - 'name' => 'del', - 'type' => '50284' - } - }, - 'ShortName' => 'GZCompressAction', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '47' - }, - '6823554' => { - 'Class' => '6294282', - 'Constructor' => 1, - 'Header' => 'gzcompressaction.h', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressActionC2ERKNS_4FileES4_b', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803287' - }, - '2' => { - 'name' => 'src', - 'type' => '840075' - }, - '3' => { - 'name' => 'dest', - 'type' => '840075' - }, - '4' => { - 'name' => 'del', - 'type' => '50284' - } - }, - 'ShortName' => 'GZCompressAction', - 'Source' => 'gzcompressaction.cpp', - 'SourceLine' => '47' - }, - '6829447' => { - 'Artificial' => 1, - 'Class' => '6798674', - 'Destructor' => 1, - 'Header' => 'gzcompressaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803368' - } - }, - 'ShortName' => 'ClazzGZCompressAction', - 'Virt' => 1 - }, - '6829448' => { - 'Artificial' => 1, - 'Class' => '6798674', - 'Destructor' => 1, - 'Header' => 'gzcompressaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803368' - } - }, - 'ShortName' => 'ClazzGZCompressAction', - 'Virt' => 1 - }, - '6829589' => { - 'Artificial' => 1, - 'Class' => '6798674', - 'Destructor' => 1, - 'Header' => 'gzcompressaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803368' - } - }, - 'ShortName' => 'ClazzGZCompressAction', - 'Virt' => 1 - }, - '6829679' => { - 'Artificial' => 1, - 'Class' => '6798674', - 'Constructor' => 1, - 'Header' => 'gzcompressaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803368' - } - }, - 'ShortName' => 'ClazzGZCompressAction' - }, - '6829680' => { - 'Artificial' => 1, - 'Class' => '6798674', - 'Constructor' => 1, - 'Header' => 'gzcompressaction.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '6803368' - } - }, - 'ShortName' => 'ClazzGZCompressAction' - }, - '6886992' => { - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7hexdumpB5cxx11EPKvjNS_12HexdumpFlagsE', - 'NameSpace' => 'log4cxx', - 'Param' => { - '0' => { - 'name' => 'bytes', - 'type' => '54166' - }, - '1' => { - 'name' => 'len', - 'type' => '53778' - }, - '2' => { - 'name' => 'flags', - 'type' => '6886948' - } - }, - 'Return' => '63706', - 'ShortName' => 'hexdump', - 'Source' => 'hexdump.cpp' - }, - '690866' => { - 'Class' => '647671', - 'Destructor' => 1, - 'Header' => 'aprinitializer.h', - 'Line' => '91', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializerD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652196' - } - }, - 'ShortName' => 'APRInitializer', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '94' - }, - '692852' => { - 'Class' => '647671', - 'Constructor' => 1, - 'Header' => 'aprinitializer.h', - 'Line' => '78', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializerC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652196' - } - }, - 'Private' => 1, - 'ShortName' => 'APRInitializer', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '83' - }, - '692853' => { - 'Class' => '647671', - 'Constructor' => 1, - 'Header' => 'aprinitializer.h', - 'Line' => '78', - 'MnglName' => '_ZN7log4cxx7helpers14APRInitializerC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '652196' - } - }, - 'Private' => 1, - 'ShortName' => 'APRInitializer', - 'Source' => 'aprinitializer.cpp', - 'SourceLine' => '83' - }, - '695286' => { - 'Line' => '59', - 'Param' => { - '0' => { - 'name' => 'ptr', - 'type' => '50560' - } - }, - 'Return' => '1', - 'ShortName' => 'tlsDestruct', - 'Source' => 'aprinitializer.cpp' - }, - '7065014' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '227', - 'MnglName' => '_ZN7log4cxx5Level8getDebugEv', - 'Private' => 1, - 'Return' => '409192', - 'ShortName' => 'getDebug', - 'Source' => 'level.cpp', - 'SourceLine' => '63', - 'Static' => 1 - }, - '7065038' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '189', - 'MnglName' => '_ZN7log4cxx5Level9toLevelLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrIS0_E', - 'Param' => { - '0' => { - 'name' => 'sArg', - 'type' => '263006' - }, - '1' => { - 'name' => 'defaultLevel', - 'type' => '412081' - } - }, - 'Private' => 1, - 'Return' => '409192', - 'ShortName' => 'toLevelLS', - 'Source' => 'level.cpp', - 'SourceLine' => '215', - 'Static' => 1 - }, - '7065158' => { - 'Class' => '7065081', - 'Header' => 'hierarchyeventlistener.h', - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx3spi22HierarchyEventListener16addAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071808' - }, - '1' => { - 'name' => 'p1', - 'type' => '4201534' - }, - '2' => { - 'name' => 'p2', - 'type' => '7074470' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'addAppenderEvent', - 'VirtPos' => '5' - }, - '7065204' => { - 'Class' => '7065081', - 'Header' => 'hierarchyeventlistener.h', - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx3spi22HierarchyEventListener19removeAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071808' - }, - '1' => { - 'name' => 'p1', - 'type' => '4201534' - }, - '2' => { - 'name' => 'p2', - 'type' => '7074470' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'removeAppenderEvent', - 'VirtPos' => '6' - }, - '7065385' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'InLine' => 2, - 'Line' => '138', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository23fireRemoveAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7331725' - }, - '1' => { - 'name' => 'logger', - 'type' => '4201534' - }, - '2' => { - 'name' => 'appender', - 'type' => '7074470' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'fireRemoveAppenderEvent', - 'Virt' => 1, - 'VirtPos' => '19' - }, - '7065431' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'InLine' => 2, - 'Line' => '136', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository20fireAddAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7331725' - }, - '1' => { - 'name' => 'logger', - 'type' => '4201534' - }, - '2' => { - 'name' => 'appender', - 'type' => '7074470' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'fireAddAppenderEvent', - 'Virt' => 1, - 'VirtPos' => '18' - }, - '7065520' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '48', - 'Static' => 1 - }, - '7065578' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'Line' => '694', - 'MnglName' => '_ZNK7log4cxx6Logger9getParentEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9687264' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '1150380', - 'ShortName' => 'getParent', - 'Source' => 'logger.cpp', - 'SourceLine' => '298' - }, - '7065592' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '1677', - 'MnglName' => '_ZN7log4cxx6Logger15updateThresholdEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9685904' - } - }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'updateThreshold', - 'Source' => 'logger.cpp', - 'SourceLine' => '565' - }, - '7065620' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '1673', - 'MnglName' => '_ZN7log4cxx6Logger9setParentESt10shared_ptrIS0_E', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9685904' - }, - '1' => { - 'name' => 'parentLogger', - 'type' => '1150380' - } - }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'setParent', - 'Source' => 'logger.cpp', - 'SourceLine' => '548' - }, - '7065634' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '106', - 'MnglName' => '_ZN7log4cxx6Logger20closeNestedAppendersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9685904' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'closeNestedAppenders', - 'Source' => 'logger.cpp', - 'SourceLine' => '151' - }, - '7065646' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '1658', - 'MnglName' => '_ZN7log4cxx6Logger13setAdditivityEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9685904' - }, - '1' => { - 'name' => 'additive1', - 'type' => '50284' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setAdditivity', - 'Source' => 'logger.cpp', - 'SourceLine' => '538' - }, - '7065660' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '1694', - 'MnglName' => '_ZN7log4cxx6Logger17setResourceBundleERKSt10shared_ptrINS_7helpers14ResourceBundleEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9685904' - }, - '1' => { - 'name' => 'bundle', - 'type' => '9687316' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'setResourceBundle', - 'Source' => 'logger.cpp', - 'SourceLine' => '586' - }, - '7065674' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '1669', - 'MnglName' => '_ZN7log4cxx6Logger12setHierarchyEPNS_3spi16LoggerRepositoryE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9685904' - }, - '1' => { - 'name' => 'repository1', - 'type' => '4544193' - } - }, - 'Private' => 1, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setHierarchy', - 'Source' => 'logger.cpp', - 'SourceLine' => '543' - }, - '7065688' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '1665', - 'MnglName' => '_ZN7log4cxx6Logger15removeHierarchyEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9685904' - } - }, - 'Private' => 1, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '1', - 'ShortName' => 'removeHierarchy', - 'Source' => 'logger.cpp', - 'SourceLine' => '533' - }, - '7066085' => { - 'Class' => '7065964', - 'Const' => 1, - 'Header' => 'hierarchy.h', - 'InLine' => 2, - 'Line' => '61', - 'MnglName' => '_ZNK7log4cxx9Hierarchy14ClazzHierarchy7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074523' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '7066147' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '73', - 'Static' => 1 - }, - '7066164' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '73', - 'Static' => 1 - }, - '7066181' => { - 'Class' => '4506386', - 'Const' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZNK7log4cxx9Hierarchy8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074436' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '73', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '7066221' => { - 'Class' => '4506386', - 'Const' => 1, - 'Header' => 'hierarchy.h', - 'InLine' => 2, - 'Line' => '62', - 'MnglName' => '_ZNK7log4cxx9Hierarchy4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074436' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '7066266' => { - 'Class' => '4506386', - 'Const' => 1, - 'Header' => 'hierarchy.h', - 'InLine' => 2, - 'Line' => '64', - 'MnglName' => '_ZNK7log4cxx9Hierarchy10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074436' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '7066347' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx9Hierarchy6createEv', - 'Return' => '7067831', - 'ShortName' => 'create', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '475', - 'Static' => 1 - }, - '7066409' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy25addHierarchyEventListenerERKSt10shared_ptrINS_3spi22HierarchyEventListenerEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'listener', - 'type' => '7074452' - } - }, - 'Return' => '1', - 'ShortName' => 'addHierarchyEventListener', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '98', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '7066450' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy28removeHierarchyEventListenerERKSt10shared_ptrINS_3spi22HierarchyEventListenerEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'listener', - 'type' => '7074452' - } - }, - 'Return' => '1', - 'ShortName' => 'removeHierarchyEventListener', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '112' - }, - '7066482' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy18ensureIsConfiguredESt8functionIFvvEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'configurator', - 'type' => '755445' - } - }, - 'Return' => '1', - 'ShortName' => 'ensureIsConfigured', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '310', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '7066524' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy5clearEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'Return' => '1', - 'ShortName' => 'clear', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '122' - }, - '7066551' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy21emitNoAppenderWarningEPKNS_6LoggerE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'logger', - 'type' => '4201534' - } - }, - 'Return' => '1', - 'ShortName' => 'emitNoAppenderWarning', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '128', - 'Virt' => 1, - 'VirtPos' => '10' - }, - '7066592' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy6existsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'name', - 'type' => '263006' - } - }, - 'Return' => '1150380', - 'ShortName' => 'exists', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '147', - 'Virt' => 1, - 'VirtPos' => '15' - }, - '7066637' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy12setThresholdERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'levelStr', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setThreshold', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '172', - 'Virt' => 1, - 'VirtPos' => '9' - }, - '7066678' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy12setThresholdERKSt10shared_ptrINS_5LevelEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'l', - 'type' => '412081' - } - }, - 'Return' => '1', - 'ShortName' => 'setThreshold', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '163', - 'Virt' => 1, - 'VirtPos' => '8' - }, - '7066719' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy20fireAddAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'logger', - 'type' => '4201534' - }, - '2' => { - 'name' => 'appender', - 'type' => '7074470' - } - }, - 'Return' => '1', - 'ShortName' => 'fireAddAppenderEvent', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '198', - 'Virt' => 1, - 'VirtPos' => '18' - }, - '7066765' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy23fireRemoveAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'logger', - 'type' => '4201534' - }, - '2' => { - 'name' => 'appender', - 'type' => '7074470' - } - }, - 'Return' => '1', - 'ShortName' => 'fireRemoveAppenderEvent', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '217', - 'Virt' => 1, - 'VirtPos' => '19' - }, - '7066811' => { - 'Class' => '4506386', - 'Const' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZNK7log4cxx9Hierarchy12getThresholdEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074436' - } - }, - 'Return' => '409192', - 'ShortName' => 'getThreshold', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '235', - 'Virt' => 1, - 'VirtPos' => '11' - }, - '7066851' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'name', - 'type' => '263006' - } - }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '240', - 'Virt' => 1, - 'VirtPos' => '12' - }, - '7066896' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'name', - 'type' => '263006' - }, - '2' => { - 'name' => 'factory', - 'type' => '1152981' - } - }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '246', - 'Virt' => 1, - 'VirtPos' => '13' - }, - '7066946' => { - 'Class' => '4506386', - 'Const' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZNK7log4cxx9Hierarchy17getCurrentLoggersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074436' - } - }, - 'Return' => '1150392', - 'ShortName' => 'getCurrentLoggers', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '280', - 'Virt' => 1, - 'VirtPos' => '17' - }, - '7066987' => { - 'Class' => '4506386', - 'Const' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZNK7log4cxx9Hierarchy13getRootLoggerEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074436' - } - }, - 'Return' => '1150380', - 'ShortName' => 'getRootLogger', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '293', - 'Virt' => 1, - 'VirtPos' => '14' - }, - '7067028' => { - 'Class' => '4506386', - 'Const' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZNK7log4cxx9Hierarchy10isDisabledEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074436' - }, - '1' => { - 'name' => 'level', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50284', - 'ShortName' => 'isDisabled', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '305', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '7067074' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy18resetConfigurationEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'Return' => '1', - 'ShortName' => 'resetConfiguration', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '320', - 'Virt' => 1, - 'VirtPos' => '20' - }, - '7067111' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy8shutdownEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'Return' => '1', - 'ShortName' => 'shutdown', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '348', - 'Virt' => 1, - 'VirtPos' => '16' - }, - '7067148' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy12isConfiguredEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'Return' => '50284', - 'ShortName' => 'isConfigured', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '469', - 'Virt' => 1, - 'VirtPos' => '21' - }, - '7067189' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy13setConfiguredEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'newValue', - 'type' => '50284' - } - }, - 'Return' => '1', - 'ShortName' => 'setConfigured', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '462', - 'Virt' => 1, - 'VirtPos' => '22' - }, - '7067231' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'Line' => '227', - 'MnglName' => '_ZN7log4cxx9Hierarchy14updateChildrenEPKNS_6LoggerE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'parent', - 'type' => '4201534' - } - }, - 'Return' => '1', - 'ShortName' => 'updateChildren', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '447' - }, - '7067264' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy14clearAppendersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'Return' => '1', - 'ShortName' => 'clearAppenders', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '481' - }, - '7067325' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'Line' => '245', - 'MnglName' => '_ZN7log4cxx9Hierarchy12removeLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'name', - 'type' => '263006' - }, - '2' => { - 'name' => 'ifNotUsed', - 'type' => '50284' - } - }, - 'Return' => '50284', - 'ShortName' => 'removeLogger', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '491' - }, - '7067367' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy20setThresholdInternalERKSt10shared_ptrINS_5LevelEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'l', - 'type' => '412081' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'setThresholdInternal', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '187' - }, - '7067398' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy16shutdownInternalEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'shutdownInternal', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '355' - }, - '7067425' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy13updateParentsERKSt10shared_ptrINS_6LoggerEES5_', + }, + 'ShortName' => 'ClazzResourceBundle', + 'Virt' => 1 + }, + '39640809' => { + 'Artificial' => 1, + 'Class' => '558717', + 'Destructor' => 1, + 'Header' => 'resourcebundle.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39537017' + } + }, + 'ShortName' => 'ClazzResourceBundle', + 'Virt' => 1 + }, + '39640903' => { + 'Artificial' => 1, + 'Class' => '558717', + 'Constructor' => 1, + 'Header' => 'resourcebundle.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39537017' + } + }, + 'ShortName' => 'ClazzResourceBundle' + }, + '39640904' => { + 'Artificial' => 1, + 'Class' => '558717', + 'Constructor' => 1, + 'Header' => 'resourcebundle.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39537017' + } + }, + 'ShortName' => 'ClazzResourceBundle' + }, + '40179362' => { + 'Class' => '5657038', + 'Const' => 1, + 'Header' => 'rolloverdescription.h', + 'Line' => '78', + 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription15getAsynchronousEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585303' + } + }, + 'Return' => '16772728', + 'ShortName' => 'getAsynchronous', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '102' + }, + '40179392' => { + 'Class' => '5657038', + 'Const' => 1, + 'Header' => 'rolloverdescription.h', + 'Line' => '62', + 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription9getAppendEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585303' + } + }, + 'Return' => '174077', + 'ShortName' => 'getAppend', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '86' + }, + '40179422' => { + 'Class' => '5657038', + 'Const' => 1, + 'Header' => 'rolloverdescription.h', + 'Line' => '60', + 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription17getActiveFileNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585303' + } + }, + 'Return' => '209661', + 'ShortName' => 'getActiveFileName', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '81' + }, + '40179452' => { + 'Class' => '5657038', + 'Const' => 1, + 'Header' => 'rolloverdescription.h', + 'Line' => '70', + 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription14getSynchronousEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585303' + } + }, + 'Return' => '16772728', + 'ShortName' => 'getSynchronous', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '91' + }, + '40179622' => { + 'Class' => '5657215', + 'Header' => 'rollingpolicybase.h', + 'Line' => '93', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase18setFileNamePatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' + }, + '1' => { + 'name' => 'fnp', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setFileNamePattern', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '82' + }, + '40180173' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '40', + 'Static' => 1 + }, + '40180684' => { + 'Artificial' => 1, + 'Class' => '5657954', + 'Header' => 'rollingfileappender.h', + 'InLine' => 2, + 'Line' => '81', + 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202367' + } + }, + 'Return' => '5679568', + 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv' + }, + '40180999' => { + 'Class' => '5657945', + 'Const' => 1, + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202158' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '66', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '40181069' => { + 'Class' => '5657945', + 'Const' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 2, + 'Line' => '82', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202158' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '40181112' => { + 'Class' => '5657945', + 'Const' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 2, + 'Line' => '85', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202158' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '40181192' => { + 'Class' => '5657945', + 'Const' => 1, + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender17getMaxBackupIndexEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202158' + } + }, + 'Return' => '190263', + 'ShortName' => 'getMaxBackupIndex', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '104' + }, + '40181222' => { + 'Class' => '5657945', + 'Const' => 1, + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender18getMaximumFileSizeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202158' + } + }, + 'Return' => '190816', + 'ShortName' => 'getMaximumFileSize', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '124' + }, + '40181252' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender17setMaxBackupIndexEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'maxBackups', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setMaxBackupIndex', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '112' + }, + '40181284' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender14setMaxFileSizeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setMaxFileSize', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '143' + }, + '40181316' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender18setMaximumFileSizeEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'maxFileSize', + 'type' => '190816' + } + }, + 'Return' => '1', + 'ShortName' => 'setMaximumFileSize', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '132' + }, + '40181348' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender14setDatePatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'newPattern', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setDatePattern', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '186' + }, + '40181380' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender19makeFileNamePatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'datePattern', + 'type' => '210597' + } + }, + 'Return' => '209661', + 'ShortName' => 'makeFileNamePattern', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '148' + }, + '40181415' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '77', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '40181460' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '200', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '40181500' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender8rolloverERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '174077', + 'ShortName' => 'rollover', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '302' + }, + '40181537' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'subAppend', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '453', + 'Virt' => 1, + 'VirtPos' => '20' + }, + '40181583' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender16rolloverInternalERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Protected' => 1, + 'Return' => '174077', + 'ShortName' => 'rolloverInternal', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '308' + }, + '40181620' => { + 'Class' => '5657945', + 'Const' => 1, + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender16getRollingPolicyEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202158' + } + }, + 'Return' => '37465322', + 'ShortName' => 'getRollingPolicy', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '487' + }, + '40181652' => { + 'Class' => '5657945', + 'Const' => 1, + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender19getTriggeringPolicyEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202158' + } + }, + 'Return' => '37465305', + 'ShortName' => 'getTriggeringPolicy', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '495' + }, + '40181750' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '519', + 'Virt' => 1, + 'VirtPos' => '10' + }, + '40181786' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'os', + 'type' => '7877645' + } + }, + 'Protected' => 1, + 'Return' => '3335202', + 'ShortName' => 'createWriter', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '599', + 'Virt' => 1, + 'VirtPos' => '19' + }, + '40181831' => { + 'Class' => '5657945', + 'Const' => 1, + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender13getFileLengthEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202158' + } + }, + 'Return' => '190816', + 'ShortName' => 'getFileLength', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '609' + }, + '40181863' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender19incrementFileLengthEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + }, + '1' => { + 'name' => 'increment', + 'type' => '190816' + } + }, + 'Return' => '1', + 'ShortName' => 'incrementFileLength', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '618' + }, + '40182143' => { + 'Class' => '5657757', + 'Header' => 'sizebasedtriggeringpolicy.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy14setMaxFileSizeEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + }, + '1' => { + 'name' => 'l', + 'type' => '190816' + } + }, + 'Return' => '1', + 'ShortName' => 'setMaxFileSize', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '46' + }, + '40182175' => { + 'Class' => '5657757', + 'Header' => 'sizebasedtriggeringpolicy.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '26', + 'Static' => 1 + }, + '40182191' => { + 'Class' => '5657757', + 'Header' => 'sizebasedtriggeringpolicy.h', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy14getMaxFileSizeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + } + }, + 'Return' => '190816', + 'ShortName' => 'getMaxFileSize', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '41' + }, + '40182374' => { + 'Class' => '40182224', + 'InLine' => 2, + 'Line' => '560', + 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStream5closeERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200546' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'rollingfileappender.cpp', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '40182415' => { + 'Class' => '40182224', + 'InLine' => 2, + 'Line' => '569', + 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStream5flushERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200546' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'rollingfileappender.cpp', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '40182456' => { + 'Class' => '40182224', + 'InLine' => 2, + 'Line' => '577', + 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStream5writeERNS_7helpers10ByteBufferERNS2_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200546' + }, + '1' => { + 'name' => 'buf', + 'type' => '210612' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'rollingfileappender.cpp', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '40183909' => { + 'Data' => 1, + 'Line' => '66', + 'MnglName' => '_ZN7log4cxx7classes31RollingFileAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'RollingFileAppenderRegistration', + 'Source' => 'rollingfileappender.cpp' + }, + '40186119' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7rolling16TriggeringPolicyENS1_13RollingPolicyELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '37482729' + } + }, + 'Return' => '37348040', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5658455' + }, + '1' => { + 'key' => 'Type', + 'type' => '5658321' + } + } + }, + '40186163' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7rolling22TimeBasedRollingPolicyENS1_13RollingPolicyELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '37482729' + } + }, + 'Return' => '40069704', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5657564' + }, + '1' => { + 'key' => 'Type', + 'type' => '5658321' + } + } + }, + '40186207' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7rolling25SizeBasedTriggeringPolicyENS1_16TriggeringPolicyELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '37482824' + } + }, + 'Return' => '40066153', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5657757' + }, + '1' => { + 'key' => 'Type', + 'type' => '5658455' + } + } + }, + '40186251' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7rolling24FixedWindowRollingPolicyENS1_13RollingPolicyELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '37482729' + } + }, + 'Return' => '40062563', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5657354' + }, + '1' => { + 'key' => 'Type', + 'type' => '5658321' + } + } + }, + '40204104' => { + 'Class' => '5657564', + 'Constructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'Line' => '154', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + } + }, + 'ShortName' => 'TimeBasedRollingPolicy', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '271' + }, + '40204179' => { + 'Class' => '5657757', + 'Constructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + } + }, + 'ShortName' => 'SizeBasedTriggeringPolicy', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '28' + }, + '40216885' => { + 'Artificial' => 1, + 'Class' => '5657945', + 'Destructor' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 1, + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + } + }, + 'ShortName' => 'RollingFileAppender', + 'Virt' => 1 + }, + '40216886' => { + 'Artificial' => 1, + 'Class' => '5657945', + 'Destructor' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 1, + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + } + }, + 'ShortName' => 'RollingFileAppender', + 'Virt' => 1 + }, + '40217226' => { + 'Artificial' => 1, + 'Class' => '5657945', + 'Destructor' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 1, + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + } + }, + 'ShortName' => 'RollingFileAppender', + 'Virt' => 1 + }, + '40217527' => { + 'Artificial' => 1, + 'Class' => '40182224', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '532', + 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStreamD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200546' + } + }, + 'ShortName' => 'CountingOutputStream', + 'Source' => 'rollingfileappender.cpp', + 'Virt' => 1 + }, + '40217528' => { + 'Artificial' => 1, + 'Class' => '40182224', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '532', + 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStreamD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200546' + } + }, + 'ShortName' => 'CountingOutputStream', + 'Source' => 'rollingfileappender.cpp', + 'Virt' => 1 + }, + '40218298' => { + 'Artificial' => 1, + 'Class' => '40182224', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '532', + 'MnglName' => '_ZN7log4cxx7rolling20CountingOutputStreamD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200546' + } + }, + 'ShortName' => 'CountingOutputStream', + 'Source' => 'rollingfileappender.cpp', + 'Virt' => 1 + }, + '40250461' => { + 'Artificial' => 1, + 'Class' => '40180711', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199240' + } + }, + 'ShortName' => 'RollingFileAppenderPriv', + 'Source' => 'rollingfileappender.cpp', + 'Virt' => 1 + }, + '40250462' => { + 'Artificial' => 1, + 'Class' => '40180711', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199240' + } + }, + 'ShortName' => 'RollingFileAppenderPriv', + 'Source' => 'rollingfileappender.cpp', + 'Virt' => 1 + }, + '4025519' => { + 'Class' => '208311', + 'Destructor' => 1, + 'Header' => 'bytebuffer.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBufferD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7073434' - }, - '1' => { - 'name' => 'logger', - 'type' => '4509554' - }, - '2' => { - 'name' => 'root', - 'type' => '4509554' + 'type' => '4014802' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'updateParents', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '382' + 'ShortName' => 'ByteBuffer', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '41' }, - '7067462' => { - 'Class' => '4506386', - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9Hierarchy14updateChildrenERSt6vectorISt10shared_ptrINS_6LoggerEESaIS4_EERKS4_', + '40258365' => { + 'Artificial' => 1, + 'Class' => '40180711', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199240' + } + }, + 'ShortName' => 'RollingFileAppenderPriv', + 'Source' => 'rollingfileappender.cpp', + 'Virt' => 1 + }, + '4025933' => { + 'Class' => '208311', + 'Constructor' => 1, + 'Header' => 'bytebuffer.h', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers10ByteBufferC2EPcm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7073434' + 'type' => '4014802' }, '1' => { - 'name' => 'pn', - 'type' => '7074488' + 'name' => 'data1', + 'type' => '192483' }, '2' => { - 'name' => 'logger', - 'type' => '4509554' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'updateChildren', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '428' - }, - '7067627' => { - 'Data' => 1, - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx7classes21HierarchyRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'HierarchyRegistration', - 'Source' => 'hierarchy.cpp' - }, - '7082728' => { - 'Artificial' => 1, - 'Class' => '4199728', - 'Constructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201810' - } - }, - 'ShortName' => 'DefaultLoggerFactory' - }, - '7082729' => { - 'Artificial' => 1, - 'Class' => '4199728', - 'Constructor' => 1, - 'Header' => 'defaultloggerfactory.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx20DefaultLoggerFactoryC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4201810' - } - }, - 'ShortName' => 'DefaultLoggerFactory' - }, - '7082796' => { - 'Artificial' => 1, - 'Class' => '4199656', - 'Constructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4216186' - } - }, - 'ShortName' => 'LoggerFactory' - }, - '7082797' => { - 'Artificial' => 1, - 'Class' => '4199656', - 'Constructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4216186' - } - }, - 'ShortName' => 'LoggerFactory' - }, - '71237' => { - 'Artificial' => 1, - 'Class' => '63066', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65882' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'WideLife' - }, - '71238' => { - 'Artificial' => 1, - 'Class' => '63066', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65882' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'WideLife' - }, - '71341' => { - 'Artificial' => 1, - 'Class' => '63066', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEEC2IRFRKNS0_5ClassEvEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65882' - }, - '1' => { - 'name' => 'arg0', - 'type' => '71280' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '71280' - } - } - }, - '71342' => { - 'Artificial' => 1, - 'Class' => '63066', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEEC1IRFRKNS0_5ClassEvEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65882' - }, - '1' => { - 'name' => 'arg0', - 'type' => '71280' - } - }, - 'ShortName' => 'WideLife', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '71280' - } - } - }, - '71483' => { - 'Artificial' => 1, - 'Class' => '62708', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65825' - } - }, - 'ShortName' => 'WideLife' - }, - '71484' => { - 'Artificial' => 1, - 'Class' => '62708', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65825' - } - }, - 'ShortName' => 'WideLife' - }, - '71624' => { - 'Artificial' => 1, - 'Class' => '62708', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65825' - } - }, - 'ShortName' => 'WideLife' - }, - '71625' => { - 'Artificial' => 1, - 'Class' => '62708', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65825' - } - }, - 'ShortName' => 'WideLife' - }, - '7169831' => { - 'Artificial' => 1, - 'Class' => '7064120', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071999' - } - }, - 'ShortName' => 'WideLife' - }, - '7169832' => { - 'Artificial' => 1, - 'Class' => '7064120', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071999' + 'name' => 'capacity', + 'type' => '190816' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ByteBuffer', + 'Source' => 'bytebuffer.cpp', + 'SourceLine' => '36' }, - '7170736' => { - 'Artificial' => 1, - 'Class' => '7064120', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEEC2IS2_INS_20DefaultLoggerFactoryEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071999' - }, - '1' => { - 'name' => 'arg0', - 'type' => '7072121' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { + '40284094' => { + 'Artificial' => 1, + 'Class' => '40172502', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199129' + } + }, + 'ShortName' => 'WideLife' + }, + '40284095' => { + 'Artificial' => 1, + 'Class' => '40172502', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199129' + } + }, + 'ShortName' => 'WideLife' + }, + '40284236' => { + 'Artificial' => 1, + 'Class' => '40172502', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199129' + } + }, + 'ShortName' => 'WideLife' + }, + '40284237' => { + 'Artificial' => 1, + 'Class' => '40172502', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199129' + } + }, + 'ShortName' => 'WideLife' + }, + '40396729' => { + 'Class' => '5657945', + 'Constructor' => 1, + 'Header' => 'rollingfileappender.h', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37482507' + } + }, + 'ShortName' => 'RollingFileAppender', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '72' + }, + '40437386' => { + 'Artificial' => 1, + 'Class' => '5657954', + 'Destructor' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 1, + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202357' + } + }, + 'ShortName' => 'ClazzRollingFileAppender', + 'Virt' => 1 + }, + '40437387' => { + 'Artificial' => 1, + 'Class' => '5657954', + 'Destructor' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 1, + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202357' + } + }, + 'ShortName' => 'ClazzRollingFileAppender', + 'Virt' => 1 + }, + '40437532' => { + 'Artificial' => 1, + 'Class' => '5657954', + 'Destructor' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 1, + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202357' + } + }, + 'ShortName' => 'ClazzRollingFileAppender', + 'Virt' => 1 + }, + '40437626' => { + 'Artificial' => 1, + 'Class' => '5657954', + 'Constructor' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 1, + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202357' + } + }, + 'ShortName' => 'ClazzRollingFileAppender' + }, + '40437627' => { + 'Artificial' => 1, + 'Class' => '5657954', + 'Constructor' => 1, + 'Header' => 'rollingfileappender.h', + 'InLine' => 1, + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40202357' + } + }, + 'ShortName' => 'ClazzRollingFileAppender' + }, + '40766060' => { + 'Class' => '5658321', + 'Header' => 'rollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'rollingpolicy.cpp', + 'SourceLine' => '23', + 'Static' => 1 + }, + '40766153' => { + 'Class' => '5658321', + 'Header' => 'rollingpolicy.h', + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16980260' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '174077' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '16772430', + 'ShortName' => 'initialize', + 'VirtPos' => '7' + }, + '40766205' => { + 'Class' => '5658321', + 'Header' => 'rollingpolicy.h', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16980260' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '174077' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '16772430', + 'ShortName' => 'rollover', + 'VirtPos' => '8' + }, + '40768772' => { + 'Data' => 1, + 'Line' => '23', + 'MnglName' => '_ZN7log4cxx7classes25RollingPolicyRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'RollingPolicyRegistration', + 'Source' => 'rollingpolicy.cpp' + }, + '40781484' => { + 'Artificial' => 1, + 'Class' => '40764331', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40776838' + } + }, + 'ShortName' => 'WideLife' + }, + '40781485' => { + 'Artificial' => 1, + 'Class' => '40764331', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40776838' + } + }, + 'ShortName' => 'WideLife' + }, + '40781627' => { + 'Artificial' => 1, + 'Class' => '40764331', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40776838' + } + }, + 'ShortName' => 'WideLife' + }, + '40781628' => { + 'Artificial' => 1, + 'Class' => '40764331', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40776838' + } + }, + 'ShortName' => 'WideLife' + }, + '40783611' => { + 'Artificial' => 1, + 'Class' => '5658330', + 'Destructor' => 1, + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40777229' + } + }, + 'ShortName' => 'ClazzRollingPolicy', + 'Virt' => 1 + }, + '40783612' => { + 'Artificial' => 1, + 'Class' => '5658330', + 'Destructor' => 1, + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40777229' + } + }, + 'ShortName' => 'ClazzRollingPolicy', + 'Virt' => 1 + }, + '40783757' => { + 'Artificial' => 1, + 'Class' => '5658330', + 'Destructor' => 1, + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40777229' + } + }, + 'ShortName' => 'ClazzRollingPolicy', + 'Virt' => 1 + }, + '40783852' => { + 'Artificial' => 1, + 'Class' => '5658330', + 'Constructor' => 1, + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40777229' + } + }, + 'ShortName' => 'ClazzRollingPolicy' + }, + '40783853' => { + 'Artificial' => 1, + 'Class' => '5658330', + 'Constructor' => 1, + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40777229' + } + }, + 'ShortName' => 'ClazzRollingPolicy' + }, + '41268042' => { + 'Class' => '5657215', + 'Header' => 'rollingpolicybase.h', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '35', + 'Static' => 1 + }, + '41268058' => { + 'Class' => '5657215', + 'Header' => 'rollingpolicybase.h', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '35', + 'Static' => 1 + }, + '41268326' => { + 'Class' => '5657215', + 'Const' => 1, + 'Header' => 'rollingpolicybase.h', + 'Line' => '72', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase19getFormatSpecifiersB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16792978' + } + }, + 'PureVirt' => 1, + 'Return' => '3121008', + 'ShortName' => 'getFormatSpecifiers', + 'VirtPos' => '9' + }, + '41268439' => { + 'Class' => '5657215', + 'Const' => 1, + 'Header' => 'rollingpolicybase.h', + 'Line' => '99', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase18getFileNamePatternB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16792983' + } + }, + 'Return' => '209661', + 'ShortName' => 'getFileNamePattern', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '88' + }, + '41268501' => { + 'Class' => '5657215', + 'Header' => 'rollingpolicybase.h', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase32setCreateIntermediateDirectoriesEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' + }, + '1' => { + 'name' => 'createIntermediate', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setCreateIntermediateDirectories', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '178' + }, + '41268533' => { + 'Class' => '5657215', + 'Const' => 1, + 'Header' => 'rollingpolicybase.h', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase23getPatternConverterListEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16792983' + } + }, + 'Return' => '16772442', + 'ShortName' => 'getPatternConverterList', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '182' + }, + '41268606' => { + 'Class' => '5657215', + 'Header' => 'rollingpolicybase.h', + 'Line' => '111', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase20parseFileNamePatternEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseFileNamePattern', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '96' + }, + '41268706' => { + 'Class' => '5657215', + 'Const' => 1, + 'Header' => 'rollingpolicybase.h', + 'Line' => '124', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase23getDatePatternConverterEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16792983' + } + }, + 'Protected' => 1, + 'Return' => '3121025', + 'ShortName' => 'getDatePatternConverter', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '153' + }, + '41271721' => { + 'Data' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7classes29RollingPolicyBaseRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'RollingPolicyBaseRegistration', + 'Source' => 'rollingpolicybase.cpp' + }, + '41272142' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7pattern20DatePatternConverterENS1_16PatternConverterELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '6085545' + } + }, + 'Return' => '9221858', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '9334866' + }, + '1' => { + 'key' => 'Type', + 'type' => '3120362' + } + } + }, + '41272186' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7pattern23IntegerPatternConverterENS1_16PatternConverterELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '6085545' + } + }, + 'Return' => '20318578', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '16774354' + }, + '1' => { + 'key' => 'Type', + 'type' => '3120362' + } + } + }, + '41321833' => { + 'Artificial' => 1, + 'Class' => '41262238', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41284079' + } + }, + 'ShortName' => 'WideLife' + }, + '41321834' => { + 'Artificial' => 1, + 'Class' => '41262238', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41284079' + } + }, + 'ShortName' => 'WideLife' + }, + '41321976' => { + 'Artificial' => 1, + 'Class' => '41262238', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41284079' + } + }, + 'ShortName' => 'WideLife' + }, + '41321977' => { + 'Artificial' => 1, + 'Class' => '41262238', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41284079' + } + }, + 'ShortName' => 'WideLife' + }, + '41349348' => { + 'Class' => '5657215', + 'Destructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' + } + }, + 'ShortName' => 'RollingPolicyBase', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '46', + 'Virt' => 1 + }, + '41349447' => { + 'Class' => '5657215', + 'Destructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' + } + }, + 'ShortName' => 'RollingPolicyBase', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '46', + 'Virt' => 1 + }, + '41350208' => { + 'Class' => '5657215', + 'Constructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseC1ESt10unique_ptrINS1_24RollingPolicyBasePrivateESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '5539606' + } + }, + 'Protected' => 1, + 'ShortName' => 'RollingPolicyBase', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '42' + }, + '41351576' => { + 'Class' => '5657215', + 'Constructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' + } + }, + 'ShortName' => 'RollingPolicyBase', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '37' + }, + '41353450' => { + 'Class' => '5657215', + 'Constructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBaseC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16793608' + } + }, + 'ShortName' => 'RollingPolicyBase', + 'Source' => 'rollingpolicybase.cpp', + 'SourceLine' => '37' + }, + '41357065' => { + 'Artificial' => 1, + 'Class' => '5657229', + 'Destructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41285813' + } + }, + 'ShortName' => 'ClazzRollingPolicyBase', + 'Virt' => 1 + }, + '41357066' => { + 'Artificial' => 1, + 'Class' => '5657229', + 'Destructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41285813' + } + }, + 'ShortName' => 'ClazzRollingPolicyBase', + 'Virt' => 1 + }, + '41357212' => { + 'Artificial' => 1, + 'Class' => '5657229', + 'Destructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41285813' + } + }, + 'ShortName' => 'ClazzRollingPolicyBase', + 'Virt' => 1 + }, + '41357307' => { + 'Artificial' => 1, + 'Class' => '5657229', + 'Constructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41285813' + } + }, + 'ShortName' => 'ClazzRollingPolicyBase' + }, + '41357308' => { + 'Artificial' => 1, + 'Class' => '5657229', + 'Constructor' => 1, + 'Header' => 'rollingpolicybase.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41285813' + } + }, + 'ShortName' => 'ClazzRollingPolicyBase' + }, + '41579411' => { + 'Class' => '5657038', + 'Const' => 1, + 'Header' => 'rolloverdescription.h', + 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585303' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '25', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '41579448' => { + 'Class' => '5657038', + 'Header' => 'rolloverdescription.h', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '25', + 'Static' => 1 + }, + '41579464' => { + 'Class' => '5657038', + 'Header' => 'rolloverdescription.h', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '25', + 'Static' => 1 + }, + '41579480' => { + 'Class' => '5657038', + 'Const' => 1, + 'Header' => 'rolloverdescription.h', + 'InLine' => 2, + 'Line' => '32', + 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585303' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '41579522' => { + 'Class' => '5657038', + 'Const' => 1, + 'Header' => 'rolloverdescription.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585303' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '41579837' => { + 'Data' => 1, + 'Line' => '25', + 'MnglName' => '_ZN7log4cxx7classes31RolloverDescriptionRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'RolloverDescriptionRegistration', + 'Source' => 'rolloverdescription.cpp' + }, + '41592799' => { + 'Artificial' => 1, + 'Class' => '41577678', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEED2Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '7007369' + 'name' => 'this', + 'type' => '41584782' } - } - }, - '7170737' => { - 'Artificial' => 1, - 'Class' => '7064120', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEEC1IS2_INS_20DefaultLoggerFactoryEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071999' - }, - '1' => { - 'name' => 'arg0', - 'type' => '7072121' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { + }, + 'ShortName' => 'WideLife' + }, + '41592800' => { + 'Artificial' => 1, + 'Class' => '41577678', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEED0Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '7007369' + 'name' => 'this', + 'type' => '41584782' } - } - }, - '7179823' => { - 'Artificial' => 1, - 'Class' => '7063354', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071516' - } - }, - 'ShortName' => 'WideLife' - }, - '7179824' => { - 'Artificial' => 1, - 'Class' => '7063354', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071516' - } - }, - 'ShortName' => 'WideLife' - }, - '7179965' => { - 'Artificial' => 1, - 'Class' => '7063354', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071516' - } - }, - 'ShortName' => 'WideLife' - }, - '7179966' => { - 'Artificial' => 1, - 'Class' => '7063354', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7071516' - } - }, - 'ShortName' => 'WideLife' - }, - '7311933' => { - 'Class' => '4506386', - 'Destructor' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9HierarchyD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'ShortName' => 'Hierarchy', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '80', - 'Virt' => 1 - }, - '7312031' => { - 'Class' => '4506386', - 'Destructor' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9HierarchyD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'ShortName' => 'Hierarchy', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '80', - 'Virt' => 1 - }, - '7319212' => { - 'Class' => '4506386', - 'Destructor' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9HierarchyD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'ShortName' => 'Hierarchy', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '80', - 'Virt' => 1 - }, - '7326396' => { - 'Class' => '4506386', - 'Constructor' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9HierarchyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'Private' => 1, - 'ShortName' => 'Hierarchy', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '75' - }, - '7329048' => { - 'Class' => '4506386', - 'Constructor' => 1, - 'Header' => 'hierarchy.h', - 'MnglName' => '_ZN7log4cxx9HierarchyC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7073434' - } - }, - 'Private' => 1, - 'ShortName' => 'Hierarchy', - 'Source' => 'hierarchy.cpp', - 'SourceLine' => '75' - }, - '7331775' => { - 'Artificial' => 1, - 'Class' => '1149751', - 'Constructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7331725' - } - }, - 'ShortName' => 'LoggerRepository' - }, - '7331776' => { - 'Artificial' => 1, - 'Class' => '1149751', - 'Constructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7331725' - } - }, - 'ShortName' => 'LoggerRepository' - }, - '7334866' => { - 'Artificial' => 1, - 'Class' => '7065964', - 'Destructor' => 1, - 'Header' => 'hierarchy.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074512' - } - }, - 'ShortName' => 'ClazzHierarchy', - 'Virt' => 1 - }, - '7334867' => { - 'Artificial' => 1, - 'Class' => '7065964', - 'Destructor' => 1, - 'Header' => 'hierarchy.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074512' - } - }, - 'ShortName' => 'ClazzHierarchy', - 'Virt' => 1 - }, - '7335008' => { - 'Artificial' => 1, - 'Class' => '7065964', - 'Destructor' => 1, - 'Header' => 'hierarchy.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074512' - } - }, - 'ShortName' => 'ClazzHierarchy', - 'Virt' => 1 - }, - '7335098' => { - 'Artificial' => 1, - 'Class' => '7065964', - 'Constructor' => 1, - 'Header' => 'hierarchy.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074512' - } - }, - 'ShortName' => 'ClazzHierarchy' - }, - '7335099' => { - 'Artificial' => 1, - 'Class' => '7065964', - 'Constructor' => 1, - 'Header' => 'hierarchy.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx9Hierarchy14ClazzHierarchyC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074512' - } - }, - 'ShortName' => 'ClazzHierarchy' - }, - '7335381' => { - 'Artificial' => 1, - 'Class' => '1149751', - 'Destructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7331725' - } - }, - 'ShortName' => 'LoggerRepository', - 'Virt' => 1 - }, - '7335382' => { - 'Artificial' => 1, - 'Class' => '1149751', - 'Destructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7331725' - } - }, - 'ShortName' => 'LoggerRepository', - 'Virt' => 1 - }, - '7415825' => { - 'Class' => '3411716', + }, + 'ShortName' => 'WideLife' + }, + '41592942' => { + 'Artificial' => 1, + 'Class' => '41577678', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41584782' + } + }, + 'ShortName' => 'WideLife' + }, + '41592943' => { + 'Artificial' => 1, + 'Class' => '41577678', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41584782' + } + }, + 'ShortName' => 'WideLife' + }, + '41596014' => { + 'Class' => '5657038', + 'Destructor' => 1, + 'Header' => 'rolloverdescription.h', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16789583' + } + }, + 'ShortName' => 'RolloverDescription', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '79', + 'Virt' => 1 + }, + '41596015' => { + 'Class' => '5657038', + 'Destructor' => 1, + 'Header' => 'rolloverdescription.h', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16789583' + } + }, + 'ShortName' => 'RolloverDescription', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '79', + 'Virt' => 1 + }, + '41596110' => { + 'Class' => '5657038', + 'Destructor' => 1, + 'Header' => 'rolloverdescription.h', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16789583' + } + }, + 'ShortName' => 'RolloverDescription', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '79', + 'Virt' => 1 + }, + '41598499' => { + 'Class' => '5657038', + 'Constructor' => 1, + 'Header' => 'rolloverdescription.h', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRKSt10shared_ptrINS0_6ActionEESE_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16789583' + }, + '1' => { + 'name' => 'activeFileName1', + 'type' => '210597' + }, + '2' => { + 'name' => 'append1', + 'type' => '174084' + }, + '3' => { + 'name' => 'synchronous1', + 'type' => '16793355' + }, + '4' => { + 'name' => 'asynchronous1', + 'type' => '16793355' + } + }, + 'ShortName' => 'RolloverDescription', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '70' + }, + '41601182' => { + 'Class' => '5657038', + 'Constructor' => 1, + 'Header' => 'rolloverdescription.h', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16789583' + } + }, + 'ShortName' => 'RolloverDescription', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '65' + }, + '41601183' => { + 'Class' => '5657038', + 'Constructor' => 1, + 'Header' => 'rolloverdescription.h', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescriptionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16789583' + } + }, + 'ShortName' => 'RolloverDescription', + 'Source' => 'rolloverdescription.cpp', + 'SourceLine' => '65' + }, + '41605265' => { + 'Artificial' => 1, + 'Class' => '5657052', + 'Destructor' => 1, + 'Header' => 'rolloverdescription.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585313' + } + }, + 'ShortName' => 'ClazzRolloverDescription', + 'Virt' => 1 + }, + '41605266' => { + 'Artificial' => 1, + 'Class' => '5657052', + 'Destructor' => 1, + 'Header' => 'rolloverdescription.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585313' + } + }, + 'ShortName' => 'ClazzRolloverDescription', + 'Virt' => 1 + }, + '41605411' => { + 'Artificial' => 1, + 'Class' => '5657052', + 'Destructor' => 1, + 'Header' => 'rolloverdescription.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585313' + } + }, + 'ShortName' => 'ClazzRolloverDescription', + 'Virt' => 1 + }, + '41605506' => { + 'Artificial' => 1, + 'Class' => '5657052', + 'Constructor' => 1, + 'Header' => 'rolloverdescription.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585313' + } + }, + 'ShortName' => 'ClazzRolloverDescription' + }, + '41605507' => { + 'Artificial' => 1, + 'Class' => '5657052', + 'Constructor' => 1, + 'Header' => 'rolloverdescription.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585313' + } + }, + 'ShortName' => 'ClazzRolloverDescription' + }, + '41918469' => { + 'Class' => '18601523', + 'Const' => 1, + 'Header' => 'rootlogger.h', + 'MnglName' => '_ZNK7log4cxx3spi10RootLogger17getEffectiveLevelEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41928066' + } + }, + 'Return' => '575807', + 'ShortName' => 'getEffectiveLevel', + 'Source' => 'rootlogger.cpp', + 'SourceLine' => '33', + 'Virt' => 1, + 'VirtPos' => '12' + }, + '41918506' => { + 'Class' => '18601523', + 'Header' => 'rootlogger.h', + 'MnglName' => '_ZN7log4cxx3spi10RootLogger8setLevelESt10shared_ptrINS_5LevelEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615612' + }, + '1' => { + 'name' => 'level1', + 'type' => '567056' + } + }, + 'Return' => '1', + 'ShortName' => 'setLevel', + 'Source' => 'rootlogger.cpp', + 'SourceLine' => '38', + 'Virt' => 1, + 'VirtPos' => '13' + }, + '41938616' => { + 'Class' => '18601523', + 'Constructor' => 1, + 'Header' => 'rootlogger.h', + 'MnglName' => '_ZN7log4cxx3spi10RootLoggerC2ERNS_7helpers4PoolESt10shared_ptrINS_5LevelEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615612' + }, + '2' => { + 'name' => 'pool', + 'type' => '210607' + }, + '3' => { + 'name' => 'level1', + 'type' => '567056' + } + }, + 'ShortName' => 'RootLogger', + 'Source' => 'rootlogger.cpp', + 'SourceLine' => '27' + }, + '41941672' => { + 'Artificial' => 1, + 'Class' => '18601523', + 'Destructor' => 1, + 'Header' => 'rootlogger.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi10RootLoggerD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615612' + } + }, + 'ShortName' => 'RootLogger', + 'Virt' => 1 + }, + '41941673' => { + 'Artificial' => 1, + 'Class' => '18601523', + 'Destructor' => 1, + 'Header' => 'rootlogger.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi10RootLoggerD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615612' + } + }, + 'ShortName' => 'RootLogger', + 'Virt' => 1 + }, + '41941946' => { + 'Artificial' => 1, + 'Class' => '18601523', + 'Destructor' => 1, + 'Header' => 'rootlogger.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx3spi10RootLoggerD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18615612' + } + }, + 'ShortName' => 'RootLogger', + 'Virt' => 1 + }, + '4207542' => { + 'Class' => '4207458', 'Const' => 1, - 'Header' => 'simpledateformat.h', - 'Line' => '87', - 'MnglName' => '_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '16715445' - }, - '1' => { - 'name' => 's', - 'type' => '409210' - }, - '2' => { - 'name' => 'time', - 'type' => '649587' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '850', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '7415837' => { - 'Class' => '3411716', - 'Header' => 'simpledateformat.h', - 'Line' => '95', - 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', + 'Header' => 'dateformat.h', + 'InLine' => 2, + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat15ClazzDateFormat7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '16715428' - }, - '1' => { - 'name' => 'zone', - 'type' => '1576811' + 'type' => '8890491' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'setTimeZone', - 'Source' => 'simpledateformat.cpp', - 'SourceLine' => '864', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, - 'VirtPos' => '6' - }, - '7416290' => { - 'Class' => '7416277', - 'Header' => 'transform.h', - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7helpers9Transform18appendEscapingTagsERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_', - 'Param' => { - '0' => { - 'name' => 'buf', - 'type' => '409210' - }, - '1' => { - 'name' => 'input', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'appendEscapingTags', - 'Source' => 'transform.cpp', - 'SourceLine' => '27', - 'Static' => 1 - }, - '7416318' => { - 'Class' => '7416277', - 'Header' => 'transform.h', - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx7helpers9Transform19appendEscapingCDATAERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_', - 'Param' => { - '0' => { - 'name' => 'buf', - 'type' => '409210' - }, - '1' => { - 'name' => 'input', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'appendEscapingCDATA', - 'Source' => 'transform.cpp', - 'SourceLine' => '90', - 'Static' => 1 - }, - '7418170' => { - 'Class' => '407323', - 'Const' => 1, - 'Header' => 'level.h', - 'Line' => '195', - 'MnglName' => '_ZNK7log4cxx5Level8toStringB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1021053' - } - }, - 'Private' => 1, - 'Return' => '63706', - 'ShortName' => 'toString', - 'Source' => 'level.cpp', - 'SourceLine' => '97' + 'VirtPos' => '3' }, - '7418182' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '225', - 'MnglName' => '_ZN7log4cxx5Level7getWarnEv', - 'Private' => 1, - 'Return' => '409192', - 'ShortName' => 'getWarn', - 'Source' => 'level.cpp', - 'SourceLine' => '51', + '4207581' => { + 'Class' => '4207448', + 'Header' => 'dateformat.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormat14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '26', 'Static' => 1 }, - '7418719' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '117', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent13getThreadNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10216376' - } - }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getThreadName', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '469' - }, - '7418755' => { - 'Class' => '407370', + '4207597' => { + 'Class' => '4207448', 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '109', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent18getRenderedMessageB5cxx11Ev', + 'Header' => 'dateformat.h', + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '10216376' + 'type' => '4213878' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getRenderedMessage', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '464' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '26', + 'Virt' => 1, + 'VirtPos' => '2' }, - '7419163' => { - 'Class' => '7419042', + '4207700' => { + 'Class' => '4207448', 'Const' => 1, - 'Header' => 'htmllayout.h', + 'Header' => 'dateformat.h', 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout15ClazzHTMLLayout7getNameB5cxx11Ev', + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422301' + 'type' => '4213878' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '63706', - 'ShortName' => 'getName', + 'Return' => '174077', + 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '7419202' => { - 'Class' => '7419042', + '4207742' => { + 'Class' => '4207448', 'Const' => 1, - 'Header' => 'htmllayout.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422301' - } - }, - 'Return' => '7422239', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '7419241' => { - 'Artificial' => 1, - 'Class' => '7419042', - 'Header' => 'htmllayout.h', + 'Header' => 'dateformat.h', 'InLine' => 2, 'Line' => '37', - 'MnglName' => '_ZTch0_h0_NK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422301' - } - }, - 'Return' => '7422239', - 'ShortName' => '_ZTch0_h0_NK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv' - }, - '7419328' => { - 'Class' => '7418907', - 'Const' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422273' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '53', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '7419367' => { - 'Class' => '7418907', - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayout14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '53', - 'Static' => 1 - }, - '7419384' => { - 'Class' => '7418907', - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayout13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '53', - 'Static' => 1 - }, - '7419401' => { - 'Class' => '7418907', - 'Const' => 1, - 'Header' => 'htmllayout.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout4castERKNS_7helpers5ClassE', + 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422273' + 'type' => '4213878' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '7419445' => { - 'Class' => '7418907', + '4208293' => { + 'Class' => '4208209', 'Const' => 1, - 'Header' => 'htmllayout.h', + 'Header' => 'timezone.h', 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout10instanceofERKNS_7helpers5ClassE', + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone13ClazzTimeZone7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422273' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '48805075' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '7419569' => { - 'Class' => '7418907', - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayout15setLocationInfoEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422245' - }, - '1' => { - 'name' => 'locationInfoFlag', - 'type' => '50284' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setLocationInfo', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '249' + '4208952' => { + 'Class' => '4208748', + 'Data' => 1, + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat6digitsE', + 'Private' => 1, + 'Return' => '4212710', + 'ShortName' => 'digits', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '83' }, - '7419601' => { - 'Class' => '7418907', - 'Const' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout15getLocationInfoEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422273' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getLocationInfo', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '254' + '4208979' => { + 'Class' => '4208748', + 'Data' => 1, + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat6magic1E', + 'Private' => 1, + 'Return' => '190271', + 'ShortName' => 'magic1', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '90' }, - '7419632' => { - 'Class' => '7418907', - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayout8setTitleERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422245' - }, - '1' => { - 'name' => 'title1', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setTitle', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '259' + '4208998' => { + 'Class' => '4208748', + 'Data' => 1, + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat12magicString1E', + 'Private' => 1, + 'Return' => '4212741', + 'ShortName' => 'magicString1', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '96' }, - '7419665' => { - 'Class' => '7418907', - 'Const' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout8getTitleB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422273' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getTitle', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '264' + '4209018' => { + 'Class' => '4208748', + 'Data' => 1, + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat6magic2E', + 'Private' => 1, + 'Return' => '190271', + 'ShortName' => 'magic2', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '103' }, - '7419697' => { - 'Class' => '7418907', - 'Const' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout14getContentTypeB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422273' - } - }, - 'Return' => '63706', - 'ShortName' => 'getContentType', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '269', - 'Virt' => 1, - 'VirtPos' => '8' + '4209037' => { + 'Class' => '4208748', + 'Data' => 1, + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat12magicString2E', + 'Private' => 1, + 'Return' => '4212741', + 'ShortName' => 'magicString2', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '109' }, - '7419738' => { - 'Class' => '7418907', - 'Header' => 'htmllayout.h', - 'InLine' => 2, - 'Line' => '86', - 'MnglName' => '_ZN7log4cxx10HTMLLayout15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422245' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Virt' => 1, - 'VirtPos' => '5' + '4209057' => { + 'Class' => '4208748', + 'Data' => 1, + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat10zeroStringE', + 'Private' => 1, + 'Return' => '4212741', + 'ShortName' => 'zeroString', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '115' }, - '7419778' => { - 'Class' => '7418907', - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + '4209162' => { + 'Class' => '4208748', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat20findMillisecondStartElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_7helpers10DateFormatEERNSB_4PoolE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '7422245' + 'name' => 'time', + 'type' => '1914488' }, '1' => { - 'name' => 'option', - 'type' => '263006' + 'name' => 'formatted', + 'type' => '210597' }, '2' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'formatter', + 'type' => '4213102' + }, + '3' => { + 'name' => 'pool', + 'type' => '210607' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '66', - 'Virt' => 1, - 'VirtPos' => '6' + 'Return' => '190263', + 'ShortName' => 'findMillisecondStart', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '152', + 'Static' => 1 }, - '7419823' => { - 'Class' => '7418907', + '4209203' => { + 'Class' => '4208748', 'Const' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZNK7log4cxx7pattern16CachedDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422273' + 'type' => '4213112' }, '1' => { - 'name' => 'output', - 'type' => '409210' + 'name' => 'buf', + 'type' => '210592' }, '2' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'now', + 'type' => '1914488' }, '3' => { 'name' => 'p', - 'type' => '64643' + 'type' => '210607' } }, 'Return' => '1', 'ShortName' => 'format', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '83', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '243', 'Virt' => 1, - 'VirtPos' => '7' + 'VirtPos' => '5' }, - '7419873' => { - 'Class' => '7418907', - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '4209252' => { + 'Class' => '4208748', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat17millisecondFormatEiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '7422245' + 'name' => 'millis', + 'type' => '190263' }, '1' => { - 'name' => 'output', - 'type' => '409210' + 'name' => 'buf', + 'type' => '210592' }, '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'offset', + 'type' => '190263' } }, + 'Private' => 1, 'Return' => '1', - 'ShortName' => 'appendHeader', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '175', - 'Virt' => 1, - 'VirtPos' => '9' + 'ShortName' => 'millisecondFormat', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '318', + 'Static' => 1 }, - '7419918' => { - 'Class' => '7418907', - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '4209285' => { + 'Class' => '4208748', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat11setTimeZoneERKSt10shared_ptrINS_7helpers8TimeZoneEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422245' + 'type' => '4213097' }, '1' => { - 'name' => 'output', - 'type' => '409210' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'name' => 'timeZone', + 'type' => '4213117' } }, - 'Reg' => { - '2' => 'rdx' - }, 'Return' => '1', - 'ShortName' => 'appendFooter', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '240', - 'Virt' => 1, - 'VirtPos' => '10' - }, - '7419963' => { - 'Class' => '7418907', - 'Const' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZNK7log4cxx10HTMLLayout16ignoresThrowableEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422273' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'ignoresThrowable', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '274', + 'ShortName' => 'setTimeZone', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '334', 'Virt' => 1, - 'VirtPos' => '11' - }, - '7420045' => { - 'Data' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7classes22HTMLLayoutRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'HTMLLayoutRegistration', - 'Source' => 'htmllayout.cpp' + 'VirtPos' => '6' }, - '7420107' => { - 'Class' => '409118', + '4209323' => { + 'Class' => '4208748', 'Const' => 1, - 'Header' => 'layout.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx6Layout10instanceofERKNS_7helpers5ClassE', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZNK7log4cxx7pattern16CachedDateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7499812' + 'type' => '4213112' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '7420151' => { - 'Class' => '409118', - 'Const' => 1, - 'Header' => 'layout.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx6Layout4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7499812' + 'name' => 's', + 'type' => '210592' }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + '2' => { + 'name' => 'n', + 'type' => '190263' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '1', + 'ShortName' => 'numberFormat', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '343', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '7' }, - '7420195' => { - 'Class' => '409118', - 'Const' => 1, - 'Header' => 'layout.h', - 'Line' => '83', - 'MnglName' => '_ZNK7log4cxx6Layout31getFormattedEventCharacterCountEv', + '4209371' => { + 'Class' => '4208748', + 'Header' => 'cacheddateformat.h', + 'Line' => '165', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat23getMaximumCacheValidityERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '7499812' + 'name' => 'pattern', + 'type' => '210597' } }, - 'Private' => 1, - 'Protected' => 1, - 'Return' => '50486', - 'ShortName' => 'getFormattedEventCharacterCount', - 'Source' => 'layout.cpp', - 'SourceLine' => '40' - }, - '7420207' => { - 'Class' => '409118', - 'Header' => 'layout.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx6Layout14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'layout.cpp', - 'SourceLine' => '23', + 'Return' => '190263', + 'ShortName' => 'getMaximumCacheValidity', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '356', 'Static' => 1 }, - '7437999' => { - 'Artificial' => 1, - 'Class' => '7416909', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7421983' - } - }, - 'ShortName' => 'WideLife' - }, - '7438000' => { - 'Artificial' => 1, - 'Class' => '7416909', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7421983' - } - }, - 'ShortName' => 'WideLife' - }, - '7438141' => { - 'Artificial' => 1, - 'Class' => '7416909', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7421983' - } - }, - 'ShortName' => 'WideLife' - }, - '7438142' => { - 'Artificial' => 1, - 'Class' => '7416909', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7421983' - } - }, - 'ShortName' => 'WideLife' - }, - '74663' => { - 'Class' => '63730', - 'Destructor' => 1, - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6ActionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - } - }, - 'Protected' => 1, - 'ShortName' => 'Action', - 'Source' => 'action.cpp', - 'SourceLine' => '37', - 'Virt' => 1 - }, - '74761' => { - 'Class' => '63730', - 'Destructor' => 1, - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6ActionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - } - }, - 'Protected' => 1, - 'ShortName' => 'Action', - 'Source' => 'action.cpp', - 'SourceLine' => '37', - 'Virt' => 1 - }, - '7485197' => { - 'Class' => '7418907', - 'Destructor' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayoutD0Ev', + '4209464' => { + 'Class' => '4208748', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormat13regionMatchesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmS9_mm', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '7422245' + 'name' => 'target', + 'type' => '210597' + }, + '1' => { + 'name' => 'toffset', + 'type' => '190816' + }, + '2' => { + 'name' => 'other', + 'type' => '210597' + }, + '3' => { + 'name' => 'ooffset', + 'type' => '190816' + }, + '4' => { + 'name' => 'len', + 'type' => '190816' } }, - 'ShortName' => 'HTMLLayout', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '63', - 'Virt' => 1 + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'regionMatches', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '393', + 'Static' => 1 }, - '7485295' => { - 'Class' => '7418907', + '4214048' => { + 'Class' => '4207448', 'Destructor' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayoutD1Ev', + 'Header' => 'dateformat.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormatD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422245' + 'type' => '4212689' } }, - 'ShortName' => 'HTMLLayout', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '63', + 'ShortName' => 'DateFormat', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '28', 'Virt' => 1 }, - '7486566' => { - 'Class' => '7418907', + '4214049' => { + 'Class' => '4207448', 'Destructor' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayoutD2Ev', + 'Header' => 'dateformat.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormatD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422245' + 'type' => '4212689' } }, - 'ShortName' => 'HTMLLayout', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '63', + 'ShortName' => 'DateFormat', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '28', 'Virt' => 1 }, - '7487768' => { - 'Class' => '7418907', - 'Constructor' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayoutC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422245' - } - }, - 'ShortName' => 'HTMLLayout', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '56' - }, - '7492426' => { - 'Class' => '7418907', - 'Constructor' => 1, - 'Header' => 'htmllayout.h', - 'MnglName' => '_ZN7log4cxx10HTMLLayoutC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422245' - } - }, - 'ShortName' => 'HTMLLayout', - 'Source' => 'htmllayout.cpp', - 'SourceLine' => '56' - }, - '7497029' => { - 'Artificial' => 1, - 'Class' => '409118', + '4214176' => { + 'Class' => '4207448', 'Constructor' => 1, - 'Header' => 'layout.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx6LayoutC2Ev', + 'Header' => 'dateformat.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormatC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7496979' + 'type' => '4212689' } }, - 'ShortName' => 'Layout' + 'Protected' => 1, + 'ShortName' => 'DateFormat', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '37' }, - '7497030' => { - 'Artificial' => 1, - 'Class' => '409118', + '4214177' => { + 'Class' => '4207448', 'Constructor' => 1, - 'Header' => 'layout.h', - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx6LayoutC1Ev', + 'Header' => 'dateformat.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormatC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7496979' + 'type' => '4212689' } }, - 'ShortName' => 'Layout' + 'Protected' => 1, + 'ShortName' => 'DateFormat', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '37' }, - '7499286' => { - 'Artificial' => 1, - 'Class' => '7419042', + '42267799' => { + 'Class' => '9954731', + 'Header' => 'shortfilelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'shortfilelocationpatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '42267815' => { + 'Class' => '9954731', + 'Header' => 'shortfilelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'shortfilelocationpatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '42267831' => { + 'Class' => '9954731', + 'Const' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279398' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'shortfilelocationpatternconverter.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '42267868' => { + 'Class' => '9954731', + 'Const' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279398' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42267910' => { + 'Class' => '9954731', + 'Const' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279398' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42267978' => { + 'Class' => '9954731', + 'Const' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279398' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'shortfilelocationpatternconverter.cpp', + 'SourceLine' => '41', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '42270874' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes45ShortFileLocationPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ShortFileLocationPatternConverterRegistration', + 'Source' => 'shortfilelocationpatternconverter.cpp' + }, + '42282136' => { + 'Artificial' => 1, + 'Class' => '9954731', + 'Destructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279093' + } + }, + 'ShortName' => 'ShortFileLocationPatternConverter', + 'Virt' => 1 + }, + '42282137' => { + 'Artificial' => 1, + 'Class' => '9954731', + 'Destructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279093' + } + }, + 'ShortName' => 'ShortFileLocationPatternConverter', + 'Virt' => 1 + }, + '42282406' => { + 'Artificial' => 1, + 'Class' => '9954731', + 'Destructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279093' + } + }, + 'ShortName' => 'ShortFileLocationPatternConverter', + 'Virt' => 1 + }, + '42286743' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IPNS3_33ShortFileLocationPatternConverterEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '42286686' + } + }, + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '42279088' + } + } + }, + '42286744' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IPNS3_33ShortFileLocationPatternConverterEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '42286686' + } + }, + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '42279088' + } + } + }, + '42287119' => { + 'Artificial' => 1, + 'Class' => '42265495', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42278747' + } + }, + 'ShortName' => 'WideLife' + }, + '42287120' => { + 'Artificial' => 1, + 'Class' => '42265495', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42278747' + } + }, + 'ShortName' => 'WideLife' + }, + '42287262' => { + 'Artificial' => 1, + 'Class' => '42265495', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42278747' + } + }, + 'ShortName' => 'WideLife' + }, + '42287263' => { + 'Artificial' => 1, + 'Class' => '42265495', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42278747' + } + }, + 'ShortName' => 'WideLife' + }, + '42290977' => { + 'Class' => '9954731', + 'Constructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279093' + } + }, + 'Private' => 1, + 'ShortName' => 'ShortFileLocationPatternConverter', + 'Source' => 'shortfilelocationpatternconverter.cpp', + 'SourceLine' => '30' + }, + '42294004' => { + 'Class' => '9954731', + 'Constructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279093' + } + }, + 'Private' => 1, + 'ShortName' => 'ShortFileLocationPatternConverter', + 'Source' => 'shortfilelocationpatternconverter.cpp', + 'SourceLine' => '30' + }, + '42298762' => { + 'Artificial' => 1, + 'Class' => '9954756', + 'Destructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279413' + } + }, + 'ShortName' => 'ClazzShortFileLocationPatternConverter', + 'Virt' => 1 + }, + '42298763' => { + 'Artificial' => 1, + 'Class' => '9954756', + 'Destructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279413' + } + }, + 'ShortName' => 'ClazzShortFileLocationPatternConverter', + 'Virt' => 1 + }, + '42298908' => { + 'Artificial' => 1, + 'Class' => '9954756', + 'Destructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279413' + } + }, + 'ShortName' => 'ClazzShortFileLocationPatternConverter', + 'Virt' => 1 + }, + '42299003' => { + 'Artificial' => 1, + 'Class' => '9954756', + 'Constructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279413' + } + }, + 'ShortName' => 'ClazzShortFileLocationPatternConverter' + }, + '42299004' => { + 'Artificial' => 1, + 'Class' => '9954756', + 'Constructor' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42279413' + } + }, + 'ShortName' => 'ClazzShortFileLocationPatternConverter' + }, + '4246650' => { + 'Class' => '4208748', 'Destructor' => 1, - 'Header' => 'htmllayout.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD0Ev', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422290' + 'type' => '4213097' } }, - 'ShortName' => 'ClazzHTMLLayout', + 'ShortName' => 'CachedDateFormat', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '140', 'Virt' => 1 }, - '7499287' => { - 'Artificial' => 1, - 'Class' => '7419042', + '4246651' => { + 'Class' => '4208748', 'Destructor' => 1, - 'Header' => 'htmllayout.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD1Ev', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422290' + 'type' => '4213097' } }, - 'ShortName' => 'ClazzHTMLLayout', + 'ShortName' => 'CachedDateFormat', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '140', 'Virt' => 1 }, - '7499428' => { - 'Artificial' => 1, - 'Class' => '7419042', + '4246744' => { + 'Class' => '4208748', 'Destructor' => 1, - 'Header' => 'htmllayout.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD2Ev', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422290' + 'type' => '4213097' } }, - 'ShortName' => 'ClazzHTMLLayout', + 'ShortName' => 'CachedDateFormat', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '140', 'Virt' => 1 }, - '7499518' => { - 'Artificial' => 1, - 'Class' => '7419042', - 'Constructor' => 1, - 'Header' => 'htmllayout.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7422290' - } - }, - 'ShortName' => 'ClazzHTMLLayout' - }, - '7499519' => { - 'Artificial' => 1, - 'Class' => '7419042', + '4248474' => { + 'Class' => '4208748', 'Constructor' => 1, - 'Header' => 'htmllayout.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutC1Ev', + 'Header' => 'cacheddateformat.h', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatC2ERKSt10shared_ptrINS_7helpers10DateFormatEEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7422290' + 'type' => '4213097' + }, + '1' => { + 'name' => 'dateFormat', + 'type' => '4213102' + }, + '2' => { + 'name' => 'expiration1', + 'type' => '190263' } }, - 'ShortName' => 'ClazzHTMLLayout' + 'ShortName' => 'CachedDateFormat', + 'Source' => 'cacheddateformat.cpp', + 'SourceLine' => '125' }, - '75087' => { - 'Class' => '63730', - 'Destructor' => 1, - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6ActionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - } - }, - 'Protected' => 1, - 'ShortName' => 'Action', - 'Source' => 'action.cpp', - 'SourceLine' => '37', - 'Virt' => 1 - }, - '75480' => { - 'Class' => '63730', - 'Constructor' => 1, - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6ActionC1ESt10unique_ptrINS1_13ActionPrivateESt14default_deleteIS3_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - }, - '1' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '44188' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Action', - 'Source' => 'action.cpp', - 'SourceLine' => '34' - }, - '7590275' => { - 'Class' => '7590154', + '42530558' => { + 'Class' => '5648110', + 'Header' => 'simpledateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormat8addTokenEciPKSt6localeRSt6vectorIPNS0_20SimpleDateFormatImpl12PatternTokenESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'spec', + 'type' => '563928' + }, + '1' => { + 'name' => 'repeat', + 'type' => '190271' + }, + '2' => { + 'name' => 'locale', + 'type' => '203511' + }, + '3' => { + 'name' => 'pattern', + 'type' => '42544606' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'addToken', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '648', + 'Static' => 1 + }, + '42530596' => { + 'Class' => '5648110', + 'Header' => 'simpledateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormat12parsePatternERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKSt6localeRSt6vectorIPNS0_20SimpleDateFormatImpl12PatternTokenESaISG_EE', + 'Param' => { + '0' => { + 'name' => 'fmt', + 'type' => '210597' + }, + '1' => { + 'name' => 'locale', + 'type' => '203511' + }, + '2' => { + 'name' => 'pattern', + 'type' => '42544606' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'parsePattern', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '771', + 'Static' => 1 + }, + '42531320' => { + 'Class' => '42531230', + 'InLine' => 2, + 'Line' => '83', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42544421' + }, + '1' => { + 'name' => 'zone', + 'type' => '4213117' + } + }, + 'Return' => '1', + 'ShortName' => 'setTimeZone', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '42531408' => { + 'Class' => '42531230', + 'InLine' => 2, + 'Line' => '99', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken14incrementMonthER2tmR14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'time', + 'type' => '42545730' + }, + '1' => { + 'name' => 'aprtime', + 'type' => '42545735' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'incrementMonth', + 'Source' => 'simpledateformat.cpp', + 'Static' => 1 + }, + '42531435' => { + 'Class' => '42531230', + 'InLine' => 2, + 'Line' => '105', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken12incrementDayER2tmR14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'time', + 'type' => '42545730' + }, + '1' => { + 'name' => 'aprtime', + 'type' => '42545735' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'incrementDay', + 'Source' => 'simpledateformat.cpp', + 'Static' => 1 + }, + '42531462' => { + 'Class' => '42531230', + 'InLine' => 2, + 'Line' => '111', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken16incrementHalfDayER2tmR14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'time', + 'type' => '42545730' + }, + '1' => { + 'name' => 'aprtime', + 'type' => '42545735' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'incrementHalfDay', + 'Source' => 'simpledateformat.cpp', + 'Static' => 1 + }, + '42531489' => { + 'Class' => '42531230', + 'InLine' => 2, + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11renderFacetEPKSt6localePFvR2tmR14apr_time_exp_tEcjPKcRSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISK_EE', + 'Param' => { + '0' => { + 'name' => 'locale', + 'type' => '203511' + }, + '1' => { + 'name' => 'inc', + 'type' => '42536323' + }, + '2' => { + 'name' => 'spec', + 'type' => '191030' + }, + '3' => { + 'name' => 'wspec', + 'type' => '174065' + }, + '4' => { + 'name' => 'aprspec', + 'type' => '191618' + }, + '5' => { + 'name' => 'values', + 'type' => '6085710' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'renderFacet', + 'Source' => 'simpledateformat.cpp', + 'Static' => 1 + }, + '42531718' => { + 'Class' => '42531605', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '593', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545026' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'tm', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42531916' => { + 'Class' => '42531803', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '570', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545061' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'p2', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42531967' => { + 'Class' => '42531803', + 'InLine' => 2, + 'Line' => '575', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545041' + }, + '1' => { + 'name' => 'zone', + 'type' => '4213117' + } + }, + 'Return' => '1', + 'ShortName' => 'setTimeZone', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '42532174' => { + 'Class' => '42532056', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '552', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl9AMPMToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545091' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'tm', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42532386' => { + 'Class' => '42532273', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '536', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545121' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42532617' => { + 'Class' => '42532463', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '246', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545631' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'tm', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42532827' => { + 'Class' => '42532714', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '521', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl16MillisecondToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545151' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42533017' => { + 'Class' => '42532904', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '506', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl11SecondToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545181' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42533207' => { + 'Class' => '42533094', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '491', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl11MinuteToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545211' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42533402' => { + 'Class' => '42533284', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '473', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl9HourToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545241' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42533611' => { + 'Class' => '42533493', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '455', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545271' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42533820' => { + 'Class' => '42533702', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '436', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545301' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'tm', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42534037' => { + 'Class' => '42533919', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '416', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545331' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'tm', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42534249' => { + 'Class' => '42534136', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '400', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545361' + }, + '1' => { + 'name' => 'p1', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42534439' => { + 'Class' => '42534326', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '385', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl14DayInYearToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545391' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42534629' => { + 'Class' => '42534516', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '370', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545421' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42534819' => { + 'Class' => '42534706', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '355', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545451' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42535009' => { + 'Class' => '42534896', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '340', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545481' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42535204' => { + 'Class' => '42535086', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '322', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545511' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'tm', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42535421' => { + 'Class' => '42535303', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '303', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545541' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'tm', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42535633' => { + 'Class' => '42535520', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '287', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl10MonthToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545571' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42535823' => { + 'Class' => '42535710', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '272', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl9YearToken8getFieldERK14apr_time_exp_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545601' + }, + '1' => { + 'name' => 'tm', + 'type' => '42545031' + } + }, + 'Return' => '190263', + 'ShortName' => 'getField', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '42536016' => { + 'Class' => '42535900', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '228', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl8EraToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545661' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'p2', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42536215' => { + 'Class' => '42536099', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '209', + 'MnglName' => '_ZNK7log4cxx7helpers20SimpleDateFormatImpl12LiteralToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545691' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'p2', + 'type' => '42545031' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '42547984' => { + 'Artificial' => 1, + 'Class' => '42536099', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '202', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545671' + } + }, + 'ShortName' => 'LiteralToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42547985' => { + 'Artificial' => 1, + 'Class' => '42536099', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '202', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545671' + } + }, + 'ShortName' => 'LiteralToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42548159' => { + 'Artificial' => 1, + 'Class' => '42536099', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '202', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545671' + } + }, + 'ShortName' => 'LiteralToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42548286' => { + 'Artificial' => 1, + 'Class' => '42535900', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '221', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545641' + } + }, + 'ShortName' => 'EraToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42548287' => { + 'Artificial' => 1, + 'Class' => '42535900', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '221', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545641' + } + }, + 'ShortName' => 'EraToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42548461' => { + 'Artificial' => 1, + 'Class' => '42535900', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '221', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545641' + } + }, + 'ShortName' => 'EraToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42548587' => { + 'Artificial' => 1, + 'Class' => '42535710', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '265', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545581' + } + }, + 'ShortName' => 'YearToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42548588' => { + 'Artificial' => 1, + 'Class' => '42535710', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '265', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545581' + } + }, + 'ShortName' => 'YearToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42548812' => { + 'Artificial' => 1, + 'Class' => '42535710', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '265', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545581' + } + }, + 'ShortName' => 'YearToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42548987' => { + 'Artificial' => 1, + 'Class' => '42535520', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '280', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545551' + } + }, + 'ShortName' => 'MonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42548988' => { + 'Artificial' => 1, + 'Class' => '42535520', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '280', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545551' + } + }, + 'ShortName' => 'MonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42549212' => { + 'Artificial' => 1, + 'Class' => '42535520', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '280', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545551' + } + }, + 'ShortName' => 'MonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42549387' => { + 'Artificial' => 1, + 'Class' => '42535303', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '295', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545521' + } + }, + 'ShortName' => 'AbbreviatedMonthNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42549388' => { + 'Artificial' => 1, + 'Class' => '42535303', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '295', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545521' + } + }, + 'ShortName' => 'AbbreviatedMonthNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42550995' => { + 'Artificial' => 1, + 'Class' => '42535303', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '295', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545521' + } + }, + 'ShortName' => 'AbbreviatedMonthNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42552559' => { + 'Artificial' => 1, + 'Class' => '42535086', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '314', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545491' + } + }, + 'ShortName' => 'FullMonthNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42552560' => { + 'Artificial' => 1, + 'Class' => '42535086', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '314', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545491' + } + }, + 'ShortName' => 'FullMonthNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42554167' => { + 'Artificial' => 1, + 'Class' => '42535086', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '314', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545491' + } + }, + 'ShortName' => 'FullMonthNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42555731' => { + 'Artificial' => 1, + 'Class' => '42534896', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '333', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545461' + } + }, + 'ShortName' => 'WeekInYearToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42555732' => { + 'Artificial' => 1, + 'Class' => '42534896', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '333', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545461' + } + }, + 'ShortName' => 'WeekInYearToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42555956' => { + 'Artificial' => 1, + 'Class' => '42534896', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '333', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545461' + } + }, + 'ShortName' => 'WeekInYearToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42556131' => { + 'Artificial' => 1, + 'Class' => '42534706', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '348', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545431' + } + }, + 'ShortName' => 'WeekInMonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42556132' => { + 'Artificial' => 1, + 'Class' => '42534706', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '348', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545431' + } + }, + 'ShortName' => 'WeekInMonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42556356' => { + 'Artificial' => 1, + 'Class' => '42534706', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '348', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545431' + } + }, + 'ShortName' => 'WeekInMonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42556531' => { + 'Artificial' => 1, + 'Class' => '42534516', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '363', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545401' + } + }, + 'ShortName' => 'DayInMonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42556532' => { + 'Artificial' => 1, + 'Class' => '42534516', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '363', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545401' + } + }, + 'ShortName' => 'DayInMonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42556756' => { + 'Artificial' => 1, + 'Class' => '42534516', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '363', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545401' + } + }, + 'ShortName' => 'DayInMonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42556931' => { + 'Artificial' => 1, + 'Class' => '42534326', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '378', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545371' + } + }, + 'ShortName' => 'DayInYearToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42556932' => { + 'Artificial' => 1, + 'Class' => '42534326', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '378', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545371' + } + }, + 'ShortName' => 'DayInYearToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42557156' => { + 'Artificial' => 1, + 'Class' => '42534326', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '378', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545371' + } + }, + 'ShortName' => 'DayInYearToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42557331' => { + 'Artificial' => 1, + 'Class' => '42534136', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '393', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545341' + } + }, + 'ShortName' => 'DayOfWeekInMonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42557332' => { + 'Artificial' => 1, + 'Class' => '42534136', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '393', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545341' + } + }, + 'ShortName' => 'DayOfWeekInMonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42557556' => { + 'Artificial' => 1, + 'Class' => '42534136', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '393', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545341' + } + }, + 'ShortName' => 'DayOfWeekInMonthToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42557731' => { + 'Artificial' => 1, + 'Class' => '42533919', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '408', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545311' + } + }, + 'ShortName' => 'AbbreviatedDayNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42557732' => { + 'Artificial' => 1, + 'Class' => '42533919', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '408', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545311' + } + }, + 'ShortName' => 'AbbreviatedDayNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42559339' => { + 'Artificial' => 1, + 'Class' => '42533919', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '408', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545311' + } + }, + 'ShortName' => 'AbbreviatedDayNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42560903' => { + 'Artificial' => 1, + 'Class' => '42533702', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '428', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545281' + } + }, + 'ShortName' => 'FullDayNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42560904' => { + 'Artificial' => 1, + 'Class' => '42533702', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '428', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545281' + } + }, + 'ShortName' => 'FullDayNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42562511' => { + 'Artificial' => 1, + 'Class' => '42533702', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '428', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545281' + } + }, + 'ShortName' => 'FullDayNameToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42564075' => { + 'Artificial' => 1, + 'Class' => '42533493', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '448', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545251' + } + }, + 'ShortName' => 'MilitaryHourToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42564076' => { + 'Artificial' => 1, + 'Class' => '42533493', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '448', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545251' + } + }, + 'ShortName' => 'MilitaryHourToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42564300' => { + 'Artificial' => 1, + 'Class' => '42533493', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '448', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545251' + } + }, + 'ShortName' => 'MilitaryHourToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42564475' => { + 'Artificial' => 1, + 'Class' => '42533284', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '466', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545221' + } + }, + 'ShortName' => 'HourToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42564476' => { + 'Artificial' => 1, + 'Class' => '42533284', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '466', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545221' + } + }, + 'ShortName' => 'HourToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42564700' => { + 'Artificial' => 1, + 'Class' => '42533284', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '466', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545221' + } + }, + 'ShortName' => 'HourToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42564875' => { + 'Artificial' => 1, + 'Class' => '42533094', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '484', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545191' + } + }, + 'ShortName' => 'MinuteToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42564876' => { + 'Artificial' => 1, + 'Class' => '42533094', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '484', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545191' + } + }, + 'ShortName' => 'MinuteToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42565100' => { + 'Artificial' => 1, + 'Class' => '42533094', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '484', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545191' + } + }, + 'ShortName' => 'MinuteToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42565275' => { + 'Artificial' => 1, + 'Class' => '42532904', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '499', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545161' + } + }, + 'ShortName' => 'SecondToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42565276' => { + 'Artificial' => 1, + 'Class' => '42532904', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '499', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545161' + } + }, + 'ShortName' => 'SecondToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42565500' => { + 'Artificial' => 1, + 'Class' => '42532904', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '499', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545161' + } + }, + 'ShortName' => 'SecondToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42565675' => { + 'Artificial' => 1, + 'Class' => '42532714', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '514', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545131' + } + }, + 'ShortName' => 'MillisecondToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42565676' => { + 'Artificial' => 1, + 'Class' => '42532714', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '514', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545131' + } + }, + 'ShortName' => 'MillisecondToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42565900' => { + 'Artificial' => 1, + 'Class' => '42532714', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '514', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545131' + } + }, + 'ShortName' => 'MillisecondToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42566075' => { + 'Artificial' => 1, + 'Class' => '42532273', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '529', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545101' + } + }, + 'ShortName' => 'MicrosecondToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42566076' => { + 'Artificial' => 1, + 'Class' => '42532273', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '529', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545101' + } + }, + 'ShortName' => 'MicrosecondToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42566300' => { + 'Artificial' => 1, + 'Class' => '42532273', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '529', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545101' + } + }, + 'ShortName' => 'MicrosecondToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42566475' => { + 'Artificial' => 1, + 'Class' => '42532056', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '544', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545071' + } + }, + 'ShortName' => 'AMPMToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42566476' => { + 'Artificial' => 1, + 'Class' => '42532056', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '544', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545071' + } + }, + 'ShortName' => 'AMPMToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42568083' => { + 'Artificial' => 1, + 'Class' => '42532056', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '544', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545071' + } + }, + 'ShortName' => 'AMPMToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42569647' => { + 'Artificial' => 1, + 'Class' => '42531803', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '563', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545041' + } + }, + 'ShortName' => 'GeneralTimeZoneToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42569648' => { + 'Artificial' => 1, + 'Class' => '42531803', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '563', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545041' + } + }, + 'ShortName' => 'GeneralTimeZoneToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42570447' => { + 'Artificial' => 1, + 'Class' => '42531803', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '563', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545041' + } + }, + 'ShortName' => 'GeneralTimeZoneToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42571216' => { + 'Artificial' => 1, + 'Class' => '42531605', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '586', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545006' + } + }, + 'ShortName' => 'RFC822TimeZoneToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42571217' => { + 'Artificial' => 1, + 'Class' => '42531605', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '586', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545006' + } + }, + 'ShortName' => 'RFC822TimeZoneToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42571393' => { + 'Artificial' => 1, + 'Class' => '42531605', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '586', + 'MnglName' => '_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42545006' + } + }, + 'ShortName' => 'RFC822TimeZoneToken', + 'Source' => 'simpledateformat.cpp', + 'Virt' => 1 + }, + '42619258' => { + 'Class' => '5648110', + 'Destructor' => 1, + 'Header' => 'simpledateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9348535' + } + }, + 'ShortName' => 'SimpleDateFormat', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '841', + 'Virt' => 1 + }, + '42621890' => { + 'Class' => '5648110', + 'Constructor' => 1, + 'Header' => 'simpledateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKSt6locale', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9348535' + }, + '1' => { + 'name' => 'fmt', + 'type' => '210597' + }, + '2' => { + 'name' => 'locale', + 'type' => '203511' + } + }, + 'ShortName' => 'SimpleDateFormat', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '830' + }, + '42621891' => { + 'Class' => '5648110', + 'Constructor' => 1, + 'Header' => 'simpledateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKSt6locale', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9348535' + }, + '1' => { + 'name' => 'fmt', + 'type' => '210597' + }, + '2' => { + 'name' => 'locale', + 'type' => '203511' + } + }, + 'ShortName' => 'SimpleDateFormat', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '830' + }, + '43003509' => { + 'Artificial' => 1, + 'Class' => '5661177', + 'Header' => 'simplelayout.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZTch0_h0_NK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012611' + } + }, + 'Return' => '5679768', + 'ShortName' => '_ZTch0_h0_NK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv' + }, + '43003651' => { + 'Class' => '5661168', + 'Const' => 1, + 'Header' => 'simplelayout.h', + 'MnglName' => '_ZNK7log4cxx12SimpleLayout8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012586' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'simplelayout.cpp', + 'SourceLine' => '25', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '43003688' => { + 'Class' => '5661168', + 'Header' => 'simplelayout.h', + 'MnglName' => '_ZN7log4cxx12SimpleLayout14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'simplelayout.cpp', + 'SourceLine' => '25', + 'Static' => 1 + }, + '43003720' => { + 'Class' => '5661168', + 'Const' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 2, + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx12SimpleLayout4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012586' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '43003762' => { + 'Class' => '5661168', + 'Const' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx12SimpleLayout10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012586' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '43003804' => { + 'Class' => '5661168', + 'Const' => 1, + 'Header' => 'simplelayout.h', + 'MnglName' => '_ZNK7log4cxx12SimpleLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012586' + }, + '1' => { + 'name' => 'output', + 'type' => '210592' + }, + '2' => { + 'name' => 'event', + 'type' => '576659' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'simplelayout.cpp', + 'SourceLine' => '29', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '43003853' => { + 'Class' => '5661168', + 'Const' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 2, + 'Line' => '61', + 'MnglName' => '_ZNK7log4cxx12SimpleLayout16ignoresThrowableEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012586' + } + }, + 'Return' => '174077', + 'ShortName' => 'ignoresThrowable', + 'Virt' => 1, + 'VirtPos' => '11' + }, + '43003890' => { + 'Class' => '5661168', + 'Header' => 'simplelayout.h', + 'InLine' => 2, + 'Line' => '71', + 'MnglName' => '_ZN7log4cxx12SimpleLayout15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012556' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '43003929' => { + 'Class' => '5661168', + 'Header' => 'simplelayout.h', + 'InLine' => 2, + 'Line' => '80', + 'MnglName' => '_ZN7log4cxx12SimpleLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012556' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '43004025' => { + 'Data' => 1, + 'Line' => '25', + 'MnglName' => '_ZN7log4cxx7classes24SimpleLayoutRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'SimpleLayoutRegistration', + 'Source' => 'simplelayout.cpp' + }, + '43014344' => { + 'Artificial' => 1, + 'Class' => '5661168', + 'Destructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx12SimpleLayoutD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012556' + } + }, + 'ShortName' => 'SimpleLayout', + 'Virt' => 1 + }, + '43014345' => { + 'Artificial' => 1, + 'Class' => '5661168', + 'Destructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx12SimpleLayoutD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012556' + } + }, + 'ShortName' => 'SimpleLayout', + 'Virt' => 1 + }, + '43014618' => { + 'Artificial' => 1, + 'Class' => '5661168', + 'Destructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx12SimpleLayoutD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012556' + } + }, + 'ShortName' => 'SimpleLayout', + 'Virt' => 1 + }, + '43020929' => { + 'Artificial' => 1, + 'Class' => '42999619', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012100' + } + }, + 'ShortName' => 'WideLife' + }, + '43020930' => { + 'Artificial' => 1, + 'Class' => '42999619', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012100' + } + }, + 'ShortName' => 'WideLife' + }, + '43021072' => { + 'Artificial' => 1, + 'Class' => '42999619', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012100' + } + }, + 'ShortName' => 'WideLife' + }, + '43021073' => { + 'Artificial' => 1, + 'Class' => '42999619', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012100' + } + }, + 'ShortName' => 'WideLife' + }, + '43025217' => { + 'Artificial' => 1, + 'Class' => '5661168', + 'Constructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx12SimpleLayoutC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012556' + } + }, + 'ShortName' => 'SimpleLayout' + }, + '43025218' => { + 'Artificial' => 1, + 'Class' => '5661168', + 'Constructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx12SimpleLayoutC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012556' + } + }, + 'ShortName' => 'SimpleLayout' + }, + '43026081' => { + 'Artificial' => 1, + 'Class' => '5661177', + 'Destructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012601' + } + }, + 'ShortName' => 'ClazzSimpleLayout', + 'Virt' => 1 + }, + '43026082' => { + 'Artificial' => 1, + 'Class' => '5661177', + 'Destructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012601' + } + }, + 'ShortName' => 'ClazzSimpleLayout', + 'Virt' => 1 + }, + '43026227' => { + 'Artificial' => 1, + 'Class' => '5661177', + 'Destructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012601' + } + }, + 'ShortName' => 'ClazzSimpleLayout', + 'Virt' => 1 + }, + '43026322' => { + 'Artificial' => 1, + 'Class' => '5661177', + 'Constructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012601' + } + }, + 'ShortName' => 'ClazzSimpleLayout' + }, + '43026323' => { + 'Artificial' => 1, + 'Class' => '5661177', + 'Constructor' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012601' + } + }, + 'ShortName' => 'ClazzSimpleLayout' + }, + '43343227' => { + 'Artificial' => 1, + 'Class' => '5657766', + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43352191' + } + }, + 'Return' => '5679553', + 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv' + }, + '43343336' => { + 'Class' => '5657757', + 'Const' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43352161' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '26', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '43343405' => { + 'Class' => '5657757', + 'Const' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43352161' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '43343447' => { + 'Class' => '5657757', + 'Const' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43352161' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '43343539' => { + 'Class' => '5657757', + 'Header' => 'sizebasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + }, + '1' => { + 'name' => 'p1', + 'type' => '955078' + }, + '2' => { + 'name' => 'p2', + 'type' => '576659' + }, + '3' => { + 'name' => 'p3', + 'type' => '210597' + }, + '4' => { + 'name' => 'fileLength', + 'type' => '190816' + } + }, + 'Return' => '174077', + 'ShortName' => 'isTriggeringEvent', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '33', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '43343657' => { + 'Class' => '5657757', + 'Header' => 'sizebasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '51', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '43343696' => { + 'Class' => '5657757', + 'Header' => 'sizebasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '55', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '43344134' => { + 'Data' => 1, + 'Line' => '26', + 'MnglName' => '_ZN7log4cxx7classes37SizeBasedTriggeringPolicyRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'SizeBasedTriggeringPolicyRegistration', + 'Source' => 'sizebasedtriggeringpolicy.cpp' + }, + '43353887' => { + 'Artificial' => 1, + 'Class' => '5657757', + 'Destructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + } + }, + 'ShortName' => 'SizeBasedTriggeringPolicy', + 'Virt' => 1 + }, + '43353888' => { + 'Artificial' => 1, + 'Class' => '5657757', + 'Destructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + } + }, + 'ShortName' => 'SizeBasedTriggeringPolicy', + 'Virt' => 1 + }, + '43354161' => { + 'Artificial' => 1, + 'Class' => '5657757', + 'Destructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + } + }, + 'ShortName' => 'SizeBasedTriggeringPolicy', + 'Virt' => 1 + }, + '43357005' => { + 'Artificial' => 1, + 'Class' => '43339375', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43351760' + } + }, + 'ShortName' => 'WideLife' + }, + '43357006' => { + 'Artificial' => 1, + 'Class' => '43339375', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43351760' + } + }, + 'ShortName' => 'WideLife' + }, + '43357148' => { + 'Artificial' => 1, + 'Class' => '43339375', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43351760' + } + }, + 'ShortName' => 'WideLife' + }, + '43357149' => { + 'Artificial' => 1, + 'Class' => '43339375', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43351760' + } + }, + 'ShortName' => 'WideLife' + }, + '43358167' => { + 'Class' => '5657757', + 'Constructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199980' + } + }, + 'ShortName' => 'SizeBasedTriggeringPolicy', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '28' + }, + '43360381' => { + 'Artificial' => 1, + 'Class' => '5657766', + 'Destructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43352181' + } + }, + 'ShortName' => 'ClazzSizeBasedTriggeringPolicy', + 'Virt' => 1 + }, + '43360382' => { + 'Artificial' => 1, + 'Class' => '5657766', + 'Destructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43352181' + } + }, + 'ShortName' => 'ClazzSizeBasedTriggeringPolicy', + 'Virt' => 1 + }, + '43360527' => { + 'Artificial' => 1, + 'Class' => '5657766', + 'Destructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43352181' + } + }, + 'ShortName' => 'ClazzSizeBasedTriggeringPolicy', + 'Virt' => 1 + }, + '43360622' => { + 'Artificial' => 1, + 'Class' => '5657766', + 'Constructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43352181' + } + }, + 'ShortName' => 'ClazzSizeBasedTriggeringPolicy' + }, + '43360623' => { + 'Artificial' => 1, + 'Class' => '5657766', + 'Constructor' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43352181' + } + }, + 'ShortName' => 'ClazzSizeBasedTriggeringPolicy' + }, + '43750857' => { + 'Class' => '43750737', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '357', + 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770353' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '43750896' => { + 'Class' => '43750737', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '357', + 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770353' + } + }, + 'Return' => '43769167', + 'ShortName' => 'newInstance', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '43750935' => { + 'Artificial' => 1, + 'Class' => '43750737', + 'InLine' => 2, + 'Line' => '357', + 'MnglName' => '_ZTch0_h0_NK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770353' + } + }, + 'Return' => '43769167', + 'ShortName' => '_ZTch0_h0_NK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv', + 'Source' => 'smtpappender.cpp' + }, + '43750989' => { + 'Class' => '43750718', + 'Const' => 1, + 'Line' => '380', + 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770323' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '43751028' => { + 'Class' => '43750718', + 'Line' => '380', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'smtpappender.cpp', + 'Static' => 1 + }, + '43751047' => { + 'Class' => '43750718', + 'Line' => '380', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'smtpappender.cpp', + 'Static' => 1 + }, + '43751066' => { + 'Class' => '43750718', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '358', + 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770323' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '43751110' => { + 'Class' => '43750718', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '361', + 'MnglName' => '_ZNK7log4cxx3net16DefaultEvaluator10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770323' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '43751192' => { + 'Class' => '43750718', + 'Line' => '422', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator17isTriggeringEventERKSt10shared_ptrINS_3spi12LoggingEventEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769172' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + } + }, + 'Return' => '174077', + 'ShortName' => 'isTriggeringEvent', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '43751559' => { + 'Artificial' => 1, + 'Class' => '5660038', + 'Header' => 'smtpappender.h', + 'InLine' => 2, + 'Line' => '87', + 'MnglName' => '_ZTch0_h0_NK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770427' + } + }, + 'Return' => '5680248', + 'ShortName' => '_ZTch0_h0_NK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv' + }, + '43752039' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender10asciiCheckERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'value', + 'type' => '210597' + }, + '1' => { + 'name' => 'field', + 'type' => '210597' + } + }, + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'asciiCheck', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '579', + 'Static' => 1 + }, + '43752071' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender20checkEntryConditionsEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + } + }, + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'checkEntryConditions', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '675' + }, + '43752102' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '381', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '43752141' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '381', + 'Static' => 1 + }, + '43752179' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'InLine' => 2, + 'Line' => '88', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '43752221' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'InLine' => 2, + 'Line' => '91', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '43752427' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '525', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '43752472' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '598', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '43752512' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'append', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '649', + 'Virt' => 1, + 'VirtPos' => '17' + }, + '43752557' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '707', + 'Virt' => 1, + 'VirtPos' => '10' + }, + '43752592' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender5getToB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '209661', + 'ShortName' => 'getTo', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '712' + }, + '43752624' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender5getCcB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '209661', + 'ShortName' => 'getCc', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '722' + }, + '43752656' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender6getBccB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '209661', + 'ShortName' => 'getBcc', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '732' + }, + '43752688' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender14requiresLayoutEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '174077', + 'ShortName' => 'requiresLayout', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '445', + 'Virt' => 1, + 'VirtPos' => '16' + }, + '43752727' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender10sendBufferERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'sendBuffer', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '745' + }, + '43752760' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17getEvaluatorClassB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + } + }, + 'Return' => '209661', + 'ShortName' => 'getEvaluatorClass', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '785' + }, + '43752792' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender7getFromB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '209661', + 'ShortName' => 'getFrom', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '450' + }, + '43752824' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender10getSubjectB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '209661', + 'ShortName' => 'getSubject', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '461' + }, + '43752856' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender7setFromERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'newVal', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setFrom', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '455' + }, + '43752889' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender10setSubjectERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'newVal', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setSubject', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '466' + }, + '43752922' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender13setBufferSizeEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'sz', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setBufferSize', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '807' + }, + '43752955' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender11setSMTPHostERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'newVal', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setSMTPHost', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '476' + }, + '43752988' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender11getSMTPHostB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '209661', + 'ShortName' => 'getSMTPHost', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '471' + }, + '43753020' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender11setSMTPPortEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'newVal', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setSMTPPort', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '486' + }, + '43753053' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender11getSMTPPortEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '190263', + 'ShortName' => 'getSMTPPort', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '481' + }, + '43753085' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender5setToERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'addressStr', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setTo', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '717' + }, + '43753118' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender5setCcERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'addressStr', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setCc', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '727' + }, + '43753151' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender6setBccERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'addressStr', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setBcc', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '737' + }, + '43753184' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender15setSMTPUsernameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'newVal', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setSMTPUsername', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '506' + }, + '43753217' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender15getSMTPUsernameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '209661', + 'ShortName' => 'getSMTPUsername', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '501' + }, + '43753249' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender15setSMTPPasswordERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'newVal', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setSMTPPassword', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '516' + }, + '43753282' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender15getSMTPPasswordB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '209661', + 'ShortName' => 'getSMTPPassword', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '511' + }, + '43753314' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender13getBufferSizeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '190263', + 'ShortName' => 'getBufferSize', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '826' + }, + '43753346' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender12getEvaluatorEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '43748027', + 'ShortName' => 'getEvaluator', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '790' + }, + '43753378' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'Line' => '298', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender12setEvaluatorERSt10shared_ptrINS_3spi24TriggeringEventEvaluatorEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'trigger', + 'type' => '43770313' + } + }, + 'Return' => '1', + 'ShortName' => 'setEvaluator', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '795' + }, + '43753411' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17setEvaluatorClassERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setEvaluatorClass', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '820' + }, + '43753444' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender15setLocationInfoEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'newVal', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setLocationInfo', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '496' + }, + '43753477' => { + 'Class' => '5660032', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender15getLocationInfoEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770308' + } + }, + 'Return' => '174077', + 'ShortName' => 'getLocationInfo', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '491' + }, + '43753526' => { + 'Data' => 1, + 'Line' => '380', + 'MnglName' => '_ZN7log4cxx7classes28DefaultEvaluatorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'DefaultEvaluatorRegistration', + 'Source' => 'smtpappender.cpp' + }, + '43753543' => { + 'Data' => 1, + 'Line' => '381', + 'MnglName' => '_ZN7log4cxx7classes24SMTPAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'SMTPAppenderRegistration', + 'Source' => 'smtpappender.cpp' + }, + '43753833' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3spi24TriggeringEventEvaluatorENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '1937382' + } + }, + 'Return' => '43667301', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5652409' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } + }, + '43771877' => { + 'Destructor' => 1, + 'Header' => 'cyclicbuffer.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers12CyclicBufferD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '8373722' + } + } + }, + '43771904' => { + 'Constructor' => 1, + 'Header' => 'cyclicbuffer.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7helpers12CyclicBufferC1Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '8373722' + }, + '1' => { + 'name' => 'maxSize', + 'type' => '190263' + } + } + }, + '43780801' => { + 'Artificial' => 1, + 'Class' => '43750718', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '352', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluatorD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769172' + } + }, + 'ShortName' => 'DefaultEvaluator', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1 + }, + '43781044' => { + 'Artificial' => 1, + 'Class' => '43750718', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '352', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluatorD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769172' + } + }, + 'ShortName' => 'DefaultEvaluator', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1 + }, + '43791473' => { + 'Artificial' => 1, + 'Class' => '43751585', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '383', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender8SMTPPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769292' + } + }, + 'ShortName' => 'SMTPPriv', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1 + }, + '43791474' => { + 'Artificial' => 1, + 'Class' => '43751585', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '383', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender8SMTPPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769292' + } + }, + 'ShortName' => 'SMTPPriv', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1 + }, + '43801345' => { + 'Artificial' => 1, + 'Class' => '43751585', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '383', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender8SMTPPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769292' + } + }, + 'ShortName' => 'SMTPPriv', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1 + }, + '43827260' => { + 'Artificial' => 1, + 'Class' => '43745315', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769021' + } + }, + 'ShortName' => 'WideLife' + }, + '43827261' => { + 'Artificial' => 1, + 'Class' => '43745315', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769021' + } + }, + 'ShortName' => 'WideLife' + }, + '43827402' => { + 'Artificial' => 1, + 'Class' => '43745315', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769021' + } + }, + 'ShortName' => 'WideLife' + }, + '43827403' => { + 'Artificial' => 1, + 'Class' => '43745315', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769021' + } + }, + 'ShortName' => 'WideLife' + }, + '43827726' => { + 'Artificial' => 1, + 'Class' => '43744564', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43768925' + } + }, + 'ShortName' => 'WideLife' + }, + '43827727' => { + 'Artificial' => 1, + 'Class' => '43744564', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43768925' + } + }, + 'ShortName' => 'WideLife' + }, + '43827868' => { + 'Artificial' => 1, + 'Class' => '43744564', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43768925' + } + }, + 'ShortName' => 'WideLife' + }, + '43827869' => { + 'Artificial' => 1, + 'Class' => '43744564', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43768925' + } + }, + 'ShortName' => 'WideLife' + }, + '43877829' => { + 'Class' => '5660032', + 'Destructor' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + } + }, + 'ShortName' => 'SMTPAppender', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '440', + 'Virt' => 1 + }, + '43877927' => { + 'Class' => '5660032', + 'Destructor' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + } + }, + 'ShortName' => 'SMTPAppender', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '440', + 'Virt' => 1 + }, + '43878218' => { + 'Class' => '5660032', + 'Destructor' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + } + }, + 'ShortName' => 'SMTPAppender', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '440', + 'Virt' => 1 + }, + '43878385' => { + 'Class' => '5660032', + 'Constructor' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderC1ESt10shared_ptrINS_3spi24TriggeringEventEvaluatorEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '1' => { + 'name' => 'evaluator', + 'type' => '43748027' + } + }, + 'ShortName' => 'SMTPAppender', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '435' + }, + '43880602' => { + 'Class' => '5660032', + 'Constructor' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderC2ESt10shared_ptrINS_3spi24TriggeringEventEvaluatorEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + }, + '2' => { + 'name' => 'evaluator', + 'type' => '43748027' + } + }, + 'ShortName' => 'SMTPAppender', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '435' + }, + '43882520' => { + 'Class' => '5660032', + 'Constructor' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + } + }, + 'ShortName' => 'SMTPAppender', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '427' + }, + '43885282' => { + 'Class' => '5660032', + 'Constructor' => 1, + 'Header' => 'smtpappender.h', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770278' + } + }, + 'ShortName' => 'SMTPAppender', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '427' + }, + '43889185' => { + 'Class' => '43750718', + 'Constructor' => 1, + 'Line' => '418', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluatorC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769172' + } + }, + 'ShortName' => 'DefaultEvaluator', + 'Source' => 'smtpappender.cpp' + }, + '43889344' => { + 'Class' => '43750718', + 'Constructor' => 1, + 'Line' => '418', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluatorC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769172' + } + }, + 'ShortName' => 'DefaultEvaluator', + 'Source' => 'smtpappender.cpp' + }, + '43889441' => { + 'Artificial' => 1, + 'Class' => '5652409', + 'Destructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769182' + } + }, + 'ShortName' => 'TriggeringEventEvaluator', + 'Virt' => 1 + }, + '43889442' => { + 'Artificial' => 1, + 'Class' => '5652409', + 'Destructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769182' + } + }, + 'ShortName' => 'TriggeringEventEvaluator', + 'Virt' => 1 + }, + '43889514' => { + 'Artificial' => 1, + 'Class' => '5652409', + 'Constructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769182' + } + }, + 'ShortName' => 'TriggeringEventEvaluator' + }, + '43889515' => { + 'Artificial' => 1, + 'Class' => '5652409', + 'Constructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769182' + } + }, + 'ShortName' => 'TriggeringEventEvaluator' + }, + '43889795' => { + 'Artificial' => 1, + 'Class' => '43751585', + 'Constructor' => 1, + 'InLine' => 1, + 'Line' => '385', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender8SMTPPrivC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769292' + } + }, + 'ShortName' => 'SMTPPriv', + 'Source' => 'smtpappender.cpp' + }, + '43889796' => { + 'Artificial' => 1, + 'Class' => '43751585', + 'Constructor' => 1, + 'InLine' => 1, + 'Line' => '385', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender8SMTPPrivC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769292' + } + }, + 'ShortName' => 'SMTPPriv', + 'Source' => 'smtpappender.cpp' + }, + '43900026' => { + 'Artificial' => 1, + 'Class' => '43750737', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '357', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770343' + } + }, + 'ShortName' => 'ClazzDefaultEvaluator', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1 + }, + '43900027' => { + 'Artificial' => 1, + 'Class' => '43750737', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '357', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770343' + } + }, + 'ShortName' => 'ClazzDefaultEvaluator', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1 + }, + '43900173' => { + 'Artificial' => 1, + 'Class' => '43750737', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '357', + 'MnglName' => '_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770343' + } + }, + 'ShortName' => 'ClazzDefaultEvaluator', + 'Source' => 'smtpappender.cpp', + 'Virt' => 1 + }, + '43914381' => { + 'Artificial' => 1, + 'Class' => '5660038', + 'Destructor' => 1, + 'Header' => 'smtpappender.h', + 'InLine' => 1, + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770417' + } + }, + 'ShortName' => 'ClazzSMTPAppender', + 'Virt' => 1 + }, + '43914382' => { + 'Artificial' => 1, + 'Class' => '5660038', + 'Destructor' => 1, + 'Header' => 'smtpappender.h', + 'InLine' => 1, + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770417' + } + }, + 'ShortName' => 'ClazzSMTPAppender', + 'Virt' => 1 + }, + '43914527' => { + 'Artificial' => 1, + 'Class' => '5660038', + 'Destructor' => 1, + 'Header' => 'smtpappender.h', + 'InLine' => 1, + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770417' + } + }, + 'ShortName' => 'ClazzSMTPAppender', + 'Virt' => 1 + }, + '43914621' => { + 'Artificial' => 1, + 'Class' => '5660038', + 'Constructor' => 1, + 'Header' => 'smtpappender.h', + 'InLine' => 1, + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770417' + } + }, + 'ShortName' => 'ClazzSMTPAppender' + }, + '43914622' => { + 'Artificial' => 1, + 'Class' => '5660038', + 'Constructor' => 1, + 'Header' => 'smtpappender.h', + 'InLine' => 1, + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43770417' + } + }, + 'ShortName' => 'ClazzSMTPAppender' + }, + '44082028' => { + 'Class' => '9330870', + 'Const' => 1, + 'Header' => 'strftimedateformat.h', + 'MnglName' => '_ZNK7log4cxx7helpers18StrftimeDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44089650' + }, + '1' => { + 'name' => 's', + 'type' => '210592' + }, + '2' => { + 'name' => 'time', + 'type' => '1914488' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'strftimedateformat.cpp', + 'SourceLine' => '51', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '44082077' => { + 'Class' => '9330870', + 'Header' => 'strftimedateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9348656' + }, + '1' => { + 'name' => 'zone', + 'type' => '4213117' + } + }, + 'Return' => '1', + 'ShortName' => 'setTimeZone', + 'Source' => 'strftimedateformat.cpp', + 'SourceLine' => '70', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '44099042' => { + 'Class' => '9330870', + 'Destructor' => 1, + 'Header' => 'strftimedateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9348656' + } + }, + 'ShortName' => 'StrftimeDateFormat', + 'Source' => 'strftimedateformat.cpp', + 'SourceLine' => '46', + 'Virt' => 1 + }, + '44099043' => { + 'Class' => '9330870', + 'Destructor' => 1, + 'Header' => 'strftimedateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9348656' + } + }, + 'ShortName' => 'StrftimeDateFormat', + 'Source' => 'strftimedateformat.cpp', + 'SourceLine' => '46', + 'Virt' => 1 + }, + '44099138' => { + 'Class' => '9330870', + 'Destructor' => 1, + 'Header' => 'strftimedateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9348656' + } + }, + 'ShortName' => 'StrftimeDateFormat', + 'Source' => 'strftimedateformat.cpp', + 'SourceLine' => '46', + 'Virt' => 1 + }, + '44100831' => { + 'Class' => '9330870', + 'Constructor' => 1, + 'Header' => 'strftimedateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9348656' + }, + '1' => { + 'name' => 'fmt', + 'type' => '210597' + } + }, + 'ShortName' => 'StrftimeDateFormat', + 'Source' => 'strftimedateformat.cpp', + 'SourceLine' => '40' + }, + '44355641' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Constructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '63', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIxxcJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44355613' + } + } + }, + '44355642' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Constructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '63', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIxxcJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44355613' + } + } + }, + '44355664' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Destructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '64', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIxxcJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44355613' + } + } + }, + '44355665' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Destructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '64', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIxxcJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44355613' + } + } + }, + '44356549' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Constructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '63', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIlicJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44355613' + } + } + }, + '44356550' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Constructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '63', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIlicJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44355613' + } + } + }, + '44356572' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Destructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '64', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIlicJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44355613' + } + } + }, + '44356573' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Destructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '64', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIlicJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44355613' + } + } + }, + '44715909' => { + 'Artificial' => 1, + 'Class' => '5660427', + 'Header' => 'stringmatchfilter.h', + 'InLine' => 2, + 'Line' => '55', + 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725466' + } + }, + 'Return' => '5679708', + 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv' + }, + '44716151' => { + 'Class' => '5660418', + 'Const' => 1, + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725397' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '42', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '44716188' => { + 'Class' => '5660418', + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '42', + 'Static' => 1 + }, + '44716220' => { + 'Class' => '5660418', + 'Const' => 1, + 'Header' => 'stringmatchfilter.h', + 'InLine' => 2, + 'Line' => '56', + 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725397' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '44716262' => { + 'Class' => '5660418', + 'Const' => 1, + 'Header' => 'stringmatchfilter.h', + 'InLine' => 2, + 'Line' => '59', + 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725397' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '44716380' => { + 'Class' => '5660418', + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725372' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '51', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '44716424' => { + 'Class' => '5660418', + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter16setStringToMatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725372' + }, + '1' => { + 'name' => 'stringToMatch1', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setStringToMatch', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '96' + }, + '44716455' => { + 'Class' => '5660418', + 'Const' => 1, + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter16getStringToMatchB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725397' + } + }, + 'Return' => '210597', + 'ShortName' => 'getStringToMatch', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '101' + }, + '44716485' => { + 'Class' => '5660418', + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter16setAcceptOnMatchEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725372' + }, + '1' => { + 'name' => 'acceptOnMatch1', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setAcceptOnMatch', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '106' + }, + '44716516' => { + 'Class' => '5660418', + 'Const' => 1, + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter16getAcceptOnMatchEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725397' + } + }, + 'Return' => '174077', + 'ShortName' => 'getAcceptOnMatch', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '111' + }, + '44716546' => { + 'Class' => '5660418', + 'Const' => 1, + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725397' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + } + }, + 'Return' => '565023', + 'ShortName' => 'decide', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '67', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '44716620' => { + 'Data' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7classes29StringMatchFilterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'StringMatchFilterRegistration', + 'Source' => 'stringmatchfilter.cpp' + }, + '44732593' => { + 'Artificial' => 1, + 'Class' => '44715936', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44724752' + } + }, + 'ShortName' => 'StringMatchFilterPrivate', + 'Source' => 'stringmatchfilter.cpp', + 'Virt' => 1 + }, + '44732594' => { + 'Artificial' => 1, + 'Class' => '44715936', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44724752' + } + }, + 'ShortName' => 'StringMatchFilterPrivate', + 'Source' => 'stringmatchfilter.cpp', + 'Virt' => 1 + }, + '44734008' => { + 'Artificial' => 1, + 'Class' => '44715936', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44724752' + } + }, + 'ShortName' => 'StringMatchFilterPrivate', + 'Source' => 'stringmatchfilter.cpp', + 'Virt' => 1 + }, + '44738981' => { + 'Artificial' => 1, + 'Class' => '44711390', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44724641' + } + }, + 'ShortName' => 'WideLife' + }, + '44738982' => { + 'Artificial' => 1, + 'Class' => '44711390', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44724641' + } + }, + 'ShortName' => 'WideLife' + }, + '44739124' => { + 'Artificial' => 1, + 'Class' => '44711390', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44724641' + } + }, + 'ShortName' => 'WideLife' + }, + '44739125' => { + 'Artificial' => 1, + 'Class' => '44711390', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44724641' + } + }, + 'ShortName' => 'WideLife' + }, + '44741877' => { + 'Class' => '5660418', + 'Destructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725372' + } + }, + 'ShortName' => 'StringMatchFilter', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '49', + 'Virt' => 1 + }, + '44741976' => { + 'Class' => '5660418', + 'Destructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725372' + } + }, + 'ShortName' => 'StringMatchFilter', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '49', + 'Virt' => 1 + }, + '44742174' => { + 'Class' => '5660418', + 'Destructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725372' + } + }, + 'ShortName' => 'StringMatchFilter', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '49', + 'Virt' => 1 + }, + '44742309' => { + 'Class' => '5660418', + 'Constructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725372' + } + }, + 'ShortName' => 'StringMatchFilter', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '44' + }, + '44745714' => { + 'Class' => '5660418', + 'Constructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725372' + } + }, + 'ShortName' => 'StringMatchFilter', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '44' + }, + '44752689' => { + 'Artificial' => 1, + 'Class' => '5660427', + 'Destructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'InLine' => 1, + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725456' + } + }, + 'ShortName' => 'ClazzStringMatchFilter', + 'Virt' => 1 + }, + '44752690' => { + 'Artificial' => 1, + 'Class' => '5660427', + 'Destructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'InLine' => 1, + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725456' + } + }, + 'ShortName' => 'ClazzStringMatchFilter', + 'Virt' => 1 + }, + '44752835' => { + 'Artificial' => 1, + 'Class' => '5660427', + 'Destructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'InLine' => 1, + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725456' + } + }, + 'ShortName' => 'ClazzStringMatchFilter', + 'Virt' => 1 + }, + '44752930' => { + 'Artificial' => 1, + 'Class' => '5660427', + 'Constructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'InLine' => 1, + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725456' + } + }, + 'ShortName' => 'ClazzStringMatchFilter' + }, + '44752931' => { + 'Artificial' => 1, + 'Class' => '5660427', + 'Constructor' => 1, + 'Header' => 'stringmatchfilter.h', + 'InLine' => 1, + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44725456' + } + }, + 'ShortName' => 'ClazzStringMatchFilter' + }, + '44915593' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '196', + 'MnglName' => '_ZN7log4cxx7helpers22NoSuchElementExceptionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11525437' + } + } + }, + '44927021' => { + 'Class' => '37455424', + 'Destructor' => 1, + 'Header' => 'stringtokenizer.h', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizerD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37476454' + } + }, + 'ShortName' => 'StringTokenizer', + 'Source' => 'stringtokenizer.cpp', + 'SourceLine' => '42' + }, + '44928768' => { + 'Class' => '37455424', + 'Constructor' => 1, + 'Header' => 'stringtokenizer.h', + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers15StringTokenizerC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37476454' + }, + '1' => { + 'name' => 'str', + 'type' => '210597' + }, + '2' => { + 'name' => 'delim1', + 'type' => '210597' + } + }, + 'ShortName' => 'StringTokenizer', + 'Source' => 'stringtokenizer.cpp', + 'SourceLine' => '37' + }, + '45266584' => { + 'Class' => '7856744', + 'Const' => 1, + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268802' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '30', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '45266621' => { + 'Class' => '7856744', + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '30', + 'Static' => 1 + }, + '45266637' => { + 'Class' => '7856744', + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '30', + 'Static' => 1 + }, + '45266653' => { + 'Class' => '7856744', + 'Const' => 1, + 'Header' => 'systemerrwriter.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268802' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '45266695' => { + 'Class' => '7856744', + 'Const' => 1, + 'Header' => 'systemerrwriter.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268802' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '45266798' => { + 'Class' => '7856744', + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5closeERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875175' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '40', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '45266837' => { + 'Class' => '7856744', + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5flushERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875175' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '44', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '45266876' => { + 'Class' => '7856744', + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875175' + }, + '1' => { + 'name' => 'str', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '49', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '45266942' => { + 'Class' => '7856744', + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter5flushEv', + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '81', + 'Static' => 1 + }, + '45267022' => { + 'Class' => '7856744', + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter6isWideEv', + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'isWide', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '54', + 'Static' => 1 + }, + '45268239' => { + 'Data' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7classes27SystemErrWriterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'SystemErrWriterRegistration', + 'Source' => 'systemerrwriter.cpp' + }, + '45273972' => { + 'Artificial' => 1, + 'Class' => '45266023', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268431' + } + }, + 'ShortName' => 'WideLife' + }, + '45273973' => { + 'Artificial' => 1, + 'Class' => '45266023', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268431' + } + }, + 'ShortName' => 'WideLife' + }, + '45274114' => { + 'Artificial' => 1, + 'Class' => '45266023', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268431' + } + }, + 'ShortName' => 'WideLife' + }, + '45274115' => { + 'Artificial' => 1, + 'Class' => '45266023', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268431' + } + }, + 'ShortName' => 'WideLife' + }, + '45278469' => { + 'Class' => '7856744', + 'Destructor' => 1, + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875175' + } + }, + 'ShortName' => 'SystemErrWriter', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '36', + 'Virt' => 1 + }, + '45278470' => { + 'Class' => '7856744', + 'Destructor' => 1, + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875175' + } + }, + 'ShortName' => 'SystemErrWriter', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '36', + 'Virt' => 1 + }, + '45278564' => { + 'Class' => '7856744', + 'Destructor' => 1, + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875175' + } + }, + 'ShortName' => 'SystemErrWriter', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '36', + 'Virt' => 1 + }, + '45278658' => { + 'Class' => '7856744', + 'Constructor' => 1, + 'Header' => 'systemerrwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875175' + } + }, + 'ShortName' => 'SystemErrWriter', + 'Source' => 'systemerrwriter.cpp', + 'SourceLine' => '32' + }, + '45280799' => { + 'Artificial' => 1, + 'Class' => '7856753', + 'Destructor' => 1, + 'Header' => 'systemerrwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268832' + } + }, + 'ShortName' => 'ClazzSystemErrWriter', + 'Virt' => 1 + }, + '45280800' => { + 'Artificial' => 1, + 'Class' => '7856753', + 'Destructor' => 1, + 'Header' => 'systemerrwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268832' + } + }, + 'ShortName' => 'ClazzSystemErrWriter', + 'Virt' => 1 + }, + '45280944' => { + 'Artificial' => 1, + 'Class' => '7856753', + 'Destructor' => 1, + 'Header' => 'systemerrwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268832' + } + }, + 'ShortName' => 'ClazzSystemErrWriter', + 'Virt' => 1 + }, + '45281038' => { + 'Artificial' => 1, + 'Class' => '7856753', + 'Constructor' => 1, + 'Header' => 'systemerrwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268832' + } + }, + 'ShortName' => 'ClazzSystemErrWriter' + }, + '45281039' => { + 'Artificial' => 1, + 'Class' => '7856753', + 'Constructor' => 1, + 'Header' => 'systemerrwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268832' + } + }, + 'ShortName' => 'ClazzSystemErrWriter' + }, + '4539725' => { + 'Class' => '4539612', 'Const' => 1, - 'Header' => 'inetaddress.h', + 'Header' => 'charsetdecoder.h', 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress16ClazzInetAddress7getNameB5cxx11Ev', + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoder7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7596079' + 'type' => '4562023' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '7590354' => { - 'Class' => '7590047', - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress14getStaticClassEv', - 'Return' => '64678', + '4539770' => { + 'Class' => '4539594', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '29', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '38', 'Static' => 1 }, - '7590371' => { - 'Class' => '7590047', - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress13registerClassEv', - 'Return' => '64684', + '4539787' => { + 'Class' => '4539594', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '29', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '38', 'Static' => 1 }, - '7590388' => { - 'Class' => '7590047', + '4539804' => { + 'Class' => '4539594', 'Const' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress8getClassEv', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7595694' + 'type' => '4561993' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '29', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '38', 'Virt' => 1, 'VirtPos' => '2' }, - '7590427' => { - 'Class' => '7590047', + '4539841' => { + 'Class' => '4539594', 'Const' => 1, - 'Header' => 'inetaddress.h', + 'Header' => 'charsetdecoder.h', 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress4castERKNS0_5ClassE', + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7595694' + 'type' => '4561993' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '7590471' => { - 'Class' => '7590047', - 'Const' => 1, - 'Header' => 'inetaddress.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595694' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '7590590' => { - 'Class' => '7590047', - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress12getAllByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'host', - 'type' => '263006' - } - }, - 'Return' => '7558131', - 'ShortName' => 'getAllByName', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '65', - 'Static' => 1 - }, - '7590617' => { - 'Class' => '7590047', - 'Header' => 'inetaddress.h', - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress9getByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'host', - 'type' => '263006' - } - }, - 'Return' => '7592264', - 'ShortName' => 'getByName', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '122', - 'Static' => 1 - }, - '7590644' => { - 'Class' => '7590047', - 'Const' => 1, - 'Header' => 'inetaddress.h', - 'Line' => '65', - 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress14getHostAddressB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595694' - } - }, - 'Return' => '63706', - 'ShortName' => 'getHostAddress', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '133' - }, - '7590675' => { - 'Class' => '7590047', - 'Const' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress11getHostNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595694' - } - }, - 'Return' => '63706', - 'ShortName' => 'getHostName', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '140' - }, - '7590706' => { - 'Class' => '7590047', - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress12getLocalHostEv', - 'Return' => '7592264', - 'ShortName' => 'getLocalHost', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '147', - 'Static' => 1 - }, - '7590723' => { - 'Class' => '7590047', - 'Header' => 'inetaddress.h', - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress10anyAddressEv', - 'Return' => '7592264', - 'ShortName' => 'anyAddress', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '153', - 'Static' => 1 - }, - '7590740' => { - 'Class' => '7590047', + '4539883' => { + 'Class' => '4539594', 'Const' => 1, - 'Header' => 'inetaddress.h', - 'Line' => '83', - 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress8toStringB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595694' - } - }, - 'Return' => '63706', - 'ShortName' => 'toString', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '162' - }, - '7592365' => { - 'Class' => '7592276', - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionaSERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596090' - }, - '1' => { - 'name' => 'src', - 'type' => '7596095' - } - }, - 'Return' => '7596101', - 'ShortName' => 'operator=', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '47' - }, - '7592477' => { - 'Data' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7classes23InetAddressRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'InetAddressRegistration', - 'Source' => 'inetaddress.cpp' - }, - '7599008' => { - 'Artificial' => 1, - 'Class' => '7592276', - 'Destructor' => 1, - 'Header' => 'inetaddress.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596090' - } - }, - 'ShortName' => 'UnknownHostException', - 'Virt' => 1 - }, - '7599009' => { - 'Artificial' => 1, - 'Class' => '7592276', - 'Destructor' => 1, - 'Header' => 'inetaddress.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596090' - } - }, - 'ShortName' => 'UnknownHostException', - 'Virt' => 1 - }, - '7599199' => { - 'Artificial' => 1, - 'Class' => '7592276', - 'Destructor' => 1, - 'Header' => 'inetaddress.h', - 'InLine' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596090' - } - }, - 'ShortName' => 'UnknownHostException', - 'Virt' => 1 - }, - '7624242' => { - 'Artificial' => 1, - 'Class' => '7591208', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595104' - } - }, - 'ShortName' => 'WideLife' - }, - '7624243' => { - 'Artificial' => 1, - 'Class' => '7591208', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595104' - } - }, - 'ShortName' => 'WideLife' - }, - '7624384' => { - 'Artificial' => 1, - 'Class' => '7591208', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595104' - } - }, - 'ShortName' => 'WideLife' - }, - '7624385' => { - 'Artificial' => 1, - 'Class' => '7591208', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595104' - } - }, - 'ShortName' => 'WideLife' - }, - '7653401' => { - 'Class' => '7590047', - 'Destructor' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddressD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595606' - } - }, - 'ShortName' => 'InetAddress', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '61', - 'Virt' => 1 - }, - '7653402' => { - 'Class' => '7590047', - 'Destructor' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddressD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595606' - } - }, - 'ShortName' => 'InetAddress', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '61', - 'Virt' => 1 - }, - '7653495' => { - 'Class' => '7590047', - 'Destructor' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddressD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595606' - } - }, - 'ShortName' => 'InetAddress', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '61', - 'Virt' => 1 - }, - '7655273' => { - 'Class' => '7590047', - 'Constructor' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddressC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595606' - }, - '1' => { - 'name' => 'hostName', - 'type' => '263006' - }, - '2' => { - 'name' => 'hostAddr', - 'type' => '263006' - } - }, - 'ShortName' => 'InetAddress', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '54' - }, - '7655274' => { - 'Class' => '7590047', - 'Constructor' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddressC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7595606' - }, - '1' => { - 'name' => 'hostName', - 'type' => '263006' - }, - '2' => { - 'name' => 'hostAddr', - 'type' => '263006' - } - }, - 'ShortName' => 'InetAddress', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '54' - }, - '7658101' => { - 'Class' => '7592276', - 'Constructor' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionC2ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596090' - }, - '1' => { - 'name' => 'src', - 'type' => '7596095' - } - }, - 'ShortName' => 'UnknownHostException', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '42' - }, - '7658102' => { - 'Class' => '7592276', - 'Constructor' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionC1ERKS1_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596090' - }, - '1' => { - 'name' => 'src', - 'type' => '7596095' - } - }, - 'ShortName' => 'UnknownHostException', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '42' - }, - '7658222' => { - 'Class' => '7592276', - 'Constructor' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596090' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'UnknownHostException', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '37' - }, - '7658223' => { - 'Class' => '7592276', - 'Constructor' => 1, - 'Header' => 'inetaddress.h', - 'MnglName' => '_ZN7log4cxx7helpers20UnknownHostExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596090' - }, - '1' => { - 'name' => 'msg1', - 'type' => '263006' - } - }, - 'ShortName' => 'UnknownHostException', - 'Source' => 'inetaddress.cpp', - 'SourceLine' => '37' - }, - '7660361' => { - 'Artificial' => 1, - 'Class' => '7590154', - 'Destructor' => 1, - 'Header' => 'inetaddress.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596068' - } - }, - 'ShortName' => 'ClazzInetAddress', - 'Virt' => 1 - }, - '7660362' => { - 'Artificial' => 1, - 'Class' => '7590154', - 'Destructor' => 1, - 'Header' => 'inetaddress.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7596068' - } - }, - 'ShortName' => 'ClazzInetAddress', - 'Virt' => 1 - }, - '7660503' => { - 'Artificial' => 1, - 'Class' => '7590154', - 'Destructor' => 1, - 'Header' => 'inetaddress.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD2Ev', + 'Header' => 'charsetdecoder.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7596068' + 'type' => '4561993' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzInetAddress', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '7660593' => { - 'Artificial' => 1, - 'Class' => '7590154', - 'Constructor' => 1, - 'Header' => 'inetaddress.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressC2Ev', + '4539990' => { + 'Class' => '4539594', + 'Header' => 'charsetdecoder.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder17getDefaultDecoderEv', + 'Return' => '4542594', + 'ShortName' => 'getDefaultDecoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '513', + 'Static' => 1 + }, + '4540009' => { + 'Class' => '4539594', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder10getDecoderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '7596068' + 'name' => 'charset', + 'type' => '210597' } }, - 'ShortName' => 'ClazzInetAddress' + 'Return' => '4542594', + 'ShortName' => 'getDecoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '553', + 'Static' => 1 }, - '7660594' => { - 'Artificial' => 1, - 'Class' => '7590154', - 'Constructor' => 1, - 'Header' => 'inetaddress.h', - 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressC1Ev', + '4540037' => { + 'Class' => '4539594', + 'Header' => 'charsetdecoder.h', + 'Line' => '71', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder14getUTF8DecoderEv', + 'Return' => '4542594', + 'ShortName' => 'getUTF8Decoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '530', + 'Static' => 1 + }, + '4540056' => { + 'Class' => '4539594', + 'Header' => 'charsetdecoder.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder18getISOLatinDecoderEv', + 'Return' => '4542594', + 'ShortName' => 'getISOLatinDecoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '547', + 'Static' => 1 + }, + '4540075' => { + 'Class' => '4539594', + 'Header' => 'charsetdecoder.h', + 'Line' => '86', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7596068' + 'type' => '4560011' + }, + '1' => { + 'name' => 'p1', + 'type' => '210612' + }, + '2' => { + 'name' => 'p2', + 'type' => '210592' } }, - 'ShortName' => 'ClazzInetAddress' + 'PureVirt' => 1, + 'Return' => '1918053', + 'ShortName' => 'decode', + 'VirtPos' => '5' }, - '76617' => { - 'Class' => '63730', - 'Constructor' => 1, - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6ActionC2ESt10unique_ptrINS1_13ActionPrivateESt14default_deleteIS3_EE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - }, - '2' => { - 'name' => 'priv', - 'offset' => '0', - 'type' => '44188' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Action', - 'Source' => 'action.cpp', - 'SourceLine' => '34' - }, - '7715470' => { - 'Class' => '7715350', - 'Const' => 1, - 'Header' => 'inputstream.h', + '4540215' => { + 'Class' => '4539594', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder20createDefaultDecoderEv', + 'Private' => 1, + 'Return' => '4560011', + 'ShortName' => 'createDefaultDecoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '498', + 'Static' => 1 + }, + '4541165' => { + 'Class' => '4541079', 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx7helpers11InputStream16ClazzInputStream7getNameB5cxx11Ev', + 'Line' => '244', + 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716936' + 'type' => '4560111' + }, + '1' => { + 'name' => 'in', + 'type' => '210612' + }, + '2' => { + 'name' => 'out', + 'type' => '210592' } }, - 'Return' => '63706', - 'ShortName' => 'getName', + 'Return' => '1918053', + 'ShortName' => 'decode', + 'Source' => 'charsetdecoder.cpp', 'Virt' => 1, - 'VirtPos' => '3' - }, - '7715536' => { - 'Class' => '1340484', - 'Header' => 'inputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers11InputStream13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'inputstream.cpp', - 'SourceLine' => '24', - 'Static' => 1 + 'VirtPos' => '5' }, - '7715553' => { - 'Class' => '1340484', - 'Const' => 1, - 'Header' => 'inputstream.h', - 'MnglName' => '_ZNK7log4cxx7helpers11InputStream8getClassEv', + '4541373' => { + 'Class' => '4541283', + 'InLine' => 2, + 'Line' => '339', + 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1356763' + 'type' => '4560206' + }, + '1' => { + 'name' => 'in', + 'type' => '210612' + }, + '2' => { + 'name' => 'out', + 'type' => '210592' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'inputstream.cpp', - 'SourceLine' => '24', + 'Private' => 1, + 'Return' => '1918053', + 'ShortName' => 'decode', + 'Source' => 'charsetdecoder.cpp', 'Virt' => 1, - 'VirtPos' => '2' + 'VirtPos' => '5' }, - '7715636' => { - 'Class' => '1340484', - 'Const' => 1, - 'Header' => 'inputstream.h', + '4541583' => { + 'Class' => '4541493', 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7helpers11InputStream10instanceofERKNS0_5ClassE', + 'Line' => '385', + 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '1356763' + 'type' => '4560301' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'in', + 'type' => '210612' + }, + '2' => { + 'name' => 'out', + 'type' => '210592' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', + 'Private' => 1, + 'Return' => '1918053', + 'ShortName' => 'decode', + 'Source' => 'charsetdecoder.cpp', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '5' }, - '7715744' => { - 'Class' => '1340484', - 'Header' => 'inputstream.h', - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx7helpers11InputStream4readERNS0_10ByteBufferE', + '4541814' => { + 'Class' => '4541703', + 'InLine' => 2, + 'Line' => '434', + 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716896' + 'type' => '4560396' }, '1' => { - 'name' => 'p1', - 'type' => '1340866' + 'name' => 'in', + 'type' => '210612' + }, + '2' => { + 'name' => 'out', + 'type' => '210592' } }, - 'PureVirt' => 1, - 'Return' => '50231', - 'ShortName' => 'read', + 'Return' => '1918053', + 'ShortName' => 'decode', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1, 'VirtPos' => '5' }, - '7715788' => { - 'Class' => '1340484', - 'Header' => 'inputstream.h', - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx7helpers11InputStream5closeEv', + '4542003' => { + 'Class' => '4541912', + 'InLine' => 2, + 'Line' => '89', + 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716896' + 'type' => '4560491' + }, + '1' => { + 'name' => 'in', + 'type' => '210612' + }, + '2' => { + 'name' => 'out', + 'type' => '210592' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'close', - 'VirtPos' => '6' + 'Return' => '1918053', + 'ShortName' => 'decode', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1, + 'VirtPos' => '5' }, - '7716642' => { + '4543022' => { 'Data' => 1, - 'Line' => '24', - 'MnglName' => '_ZN7log4cxx7classes23InputStreamRegistrationE', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7classes26CharsetDecoderRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'InputStreamRegistration', - 'Source' => 'inputstream.cpp' + 'Return' => '210733', + 'ShortName' => 'CharsetDecoderRegistration', + 'Source' => 'charsetdecoder.cpp' }, - '7720127' => { + '45437645' => { + 'Class' => '7856149', + 'Const' => 1, + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439863' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '30', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '45437682' => { + 'Class' => '7856149', + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '30', + 'Static' => 1 + }, + '45437698' => { + 'Class' => '7856149', + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '30', + 'Static' => 1 + }, + '45437714' => { + 'Class' => '7856149', + 'Const' => 1, + 'Header' => 'systemoutwriter.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439863' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '45437756' => { + 'Class' => '7856149', + 'Const' => 1, + 'Header' => 'systemoutwriter.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439863' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '45437859' => { + 'Class' => '7856149', + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5closeERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875019' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '40', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '45437898' => { + 'Class' => '7856149', + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5flushERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875019' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '44', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '45437937' => { + 'Class' => '7856149', + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875019' + }, + '1' => { + 'name' => 'str', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '49', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '45437981' => { + 'Class' => '7856149', + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'str', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '65', + 'Static' => 1 + }, + '45438003' => { + 'Class' => '7856149', + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter5flushEv', + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '81', + 'Static' => 1 + }, + '45438083' => { + 'Class' => '7856149', + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter6isWideEv', + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'isWide', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '54', + 'Static' => 1 + }, + '45439300' => { + 'Data' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7classes27SystemOutWriterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'SystemOutWriterRegistration', + 'Source' => 'systemoutwriter.cpp' + }, + '45445033' => { + 'Artificial' => 1, + 'Class' => '45437084', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439492' + } + }, + 'ShortName' => 'WideLife' + }, + '45445034' => { + 'Artificial' => 1, + 'Class' => '45437084', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439492' + } + }, + 'ShortName' => 'WideLife' + }, + '45445175' => { + 'Artificial' => 1, + 'Class' => '45437084', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439492' + } + }, + 'ShortName' => 'WideLife' + }, + '45445176' => { + 'Artificial' => 1, + 'Class' => '45437084', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439492' + } + }, + 'ShortName' => 'WideLife' + }, + '45449530' => { + 'Class' => '7856149', + 'Destructor' => 1, + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875019' + } + }, + 'ShortName' => 'SystemOutWriter', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '36', + 'Virt' => 1 + }, + '45449531' => { + 'Class' => '7856149', + 'Destructor' => 1, + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875019' + } + }, + 'ShortName' => 'SystemOutWriter', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '36', + 'Virt' => 1 + }, + '45449625' => { + 'Class' => '7856149', + 'Destructor' => 1, + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875019' + } + }, + 'ShortName' => 'SystemOutWriter', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '36', + 'Virt' => 1 + }, + '45449719' => { + 'Class' => '7856149', + 'Constructor' => 1, + 'Header' => 'systemoutwriter.h', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7875019' + } + }, + 'ShortName' => 'SystemOutWriter', + 'Source' => 'systemoutwriter.cpp', + 'SourceLine' => '32' + }, + '45451860' => { + 'Artificial' => 1, + 'Class' => '7856158', + 'Destructor' => 1, + 'Header' => 'systemoutwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439893' + } + }, + 'ShortName' => 'ClazzSystemOutWriter', + 'Virt' => 1 + }, + '45451861' => { + 'Artificial' => 1, + 'Class' => '7856158', + 'Destructor' => 1, + 'Header' => 'systemoutwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439893' + } + }, + 'ShortName' => 'ClazzSystemOutWriter', + 'Virt' => 1 + }, + '45452005' => { + 'Artificial' => 1, + 'Class' => '7856158', + 'Destructor' => 1, + 'Header' => 'systemoutwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439893' + } + }, + 'ShortName' => 'ClazzSystemOutWriter', + 'Virt' => 1 + }, + '45452099' => { + 'Artificial' => 1, + 'Class' => '7856158', + 'Constructor' => 1, + 'Header' => 'systemoutwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439893' + } + }, + 'ShortName' => 'ClazzSystemOutWriter' + }, + '45452100' => { + 'Artificial' => 1, + 'Class' => '7856158', + 'Constructor' => 1, + 'Header' => 'systemoutwriter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439893' + } + }, + 'ShortName' => 'ClazzSystemOutWriter' + }, + '45603589' => { + 'Class' => '45603519', + 'Header' => 'threadlocal.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocal3setEPv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45604911' + }, + '1' => { + 'name' => 'priv', + 'type' => '190924' + } + }, + 'Return' => '1', + 'ShortName' => 'set', + 'Source' => 'threadlocal.cpp', + 'SourceLine' => '48' + }, + '45603622' => { + 'Class' => '45603519', + 'Header' => 'threadlocal.h', + 'Line' => '66', + 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocal3getEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45604911' + } + }, + 'Return' => '190924', + 'ShortName' => 'get', + 'Source' => 'threadlocal.cpp', + 'SourceLine' => '61' + }, + '45603718' => { + 'Class' => '45603519', + 'Header' => 'threadlocal.h', + 'Line' => '78', + 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocal6createERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Private' => 1, + 'Return' => '1924095', + 'ShortName' => 'create', + 'Source' => 'threadlocal.cpp', + 'SourceLine' => '25', + 'Static' => 1 + }, + '45613981' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionC1Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2526444' + }, + '1' => { + 'name' => 'stat', + 'type' => '1918053' + } + } + }, + '45615107' => { + 'Class' => '45603519', + 'Destructor' => 1, + 'Header' => 'threadlocal.h', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocalD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45604911' + } + }, + 'ShortName' => 'ThreadLocal', + 'Source' => 'threadlocal.cpp', + 'SourceLine' => '44' + }, + '45615206' => { + 'Class' => '45603519', + 'Constructor' => 1, + 'Header' => 'threadlocal.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocalC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45604911' + } + }, + 'ShortName' => 'ThreadLocal', + 'Source' => 'threadlocal.cpp', + 'SourceLine' => '40' + }, + '45615207' => { + 'Class' => '45603519', + 'Constructor' => 1, + 'Header' => 'threadlocal.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocalC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45604911' + } + }, + 'ShortName' => 'ThreadLocal', + 'Source' => 'threadlocal.cpp', + 'SourceLine' => '40' + }, + '4577297' => { 'Artificial' => 1, - 'Class' => '7714974', + 'Class' => '4541703', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEED2Ev', + 'Line' => '428', + 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetDecoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716735' + 'type' => '4560396' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'LocaleCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7720128' => { + '4577298' => { 'Artificial' => 1, - 'Class' => '7714974', + 'Class' => '4541703', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEED0Ev', + 'Line' => '428', + 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetDecoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716735' + 'type' => '4560396' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'LocaleCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7720268' => { + '4577444' => { 'Artificial' => 1, - 'Class' => '7714974', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '4541703', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEEC2Ev', + 'Line' => '428', + 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetDecoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716735' + 'type' => '4560396' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'LocaleCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7720269' => { + '45944594' => { + 'Class' => '9955591', + 'Header' => 'threadpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'threadpatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '45944610' => { + 'Class' => '9955591', + 'Header' => 'threadpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'threadpatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '45944626' => { + 'Class' => '9955591', + 'Const' => 1, + 'Header' => 'threadpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956367' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'threadpatternconverter.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '45944663' => { + 'Class' => '9955591', + 'Const' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956367' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '45944705' => { + 'Class' => '9955591', + 'Const' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956367' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '45944809' => { + 'Class' => '9955591', + 'Const' => 1, + 'Header' => 'threadpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956367' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'threadpatternconverter.cpp', + 'SourceLine' => '43', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '45947707' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes34ThreadPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ThreadPatternConverterRegistration', + 'Source' => 'threadpatternconverter.cpp' + }, + '45960673' => { + 'Artificial' => 1, + 'Class' => '9955591', + 'Destructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956026' + } + }, + 'ShortName' => 'ThreadPatternConverter', + 'Virt' => 1 + }, + '45960674' => { + 'Artificial' => 1, + 'Class' => '9955591', + 'Destructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956026' + } + }, + 'ShortName' => 'ThreadPatternConverter', + 'Virt' => 1 + }, + '45960943' => { + 'Artificial' => 1, + 'Class' => '9955591', + 'Destructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956026' + } + }, + 'ShortName' => 'ThreadPatternConverter', + 'Virt' => 1 + }, + '45970715' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_22ThreadPatternConverterEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '45955856' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '45883896' + } + } + }, + '45970716' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_22ThreadPatternConverterEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '45955856' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '45883896' + } + } + }, + '45971143' => { + 'Artificial' => 1, + 'Class' => '45942353', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45955580' + } + }, + 'ShortName' => 'WideLife' + }, + '45971144' => { + 'Artificial' => 1, + 'Class' => '45942353', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45955580' + } + }, + 'ShortName' => 'WideLife' + }, + '45971286' => { + 'Artificial' => 1, + 'Class' => '45942353', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45955580' + } + }, + 'ShortName' => 'WideLife' + }, + '45971287' => { + 'Artificial' => 1, + 'Class' => '45942353', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45955580' + } + }, + 'ShortName' => 'WideLife' + }, + '45976689' => { + 'Class' => '9955591', + 'Constructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956026' + } + }, + 'ShortName' => 'ThreadPatternConverter', + 'Source' => 'threadpatternconverter.cpp', + 'SourceLine' => '30' + }, + '45979714' => { + 'Class' => '9955591', + 'Constructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956026' + } + }, + 'ShortName' => 'ThreadPatternConverter', + 'Source' => 'threadpatternconverter.cpp', + 'SourceLine' => '30' + }, + '45984441' => { + 'Artificial' => 1, + 'Class' => '9955616', + 'Destructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956527' + } + }, + 'ShortName' => 'ClazzThreadPatternConverter', + 'Virt' => 1 + }, + '45984442' => { + 'Artificial' => 1, + 'Class' => '9955616', + 'Destructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956527' + } + }, + 'ShortName' => 'ClazzThreadPatternConverter', + 'Virt' => 1 + }, + '45984587' => { + 'Artificial' => 1, + 'Class' => '9955616', + 'Destructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956527' + } + }, + 'ShortName' => 'ClazzThreadPatternConverter', + 'Virt' => 1 + }, + '45984682' => { + 'Artificial' => 1, + 'Class' => '9955616', + 'Constructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956527' + } + }, + 'ShortName' => 'ClazzThreadPatternConverter' + }, + '45984683' => { + 'Artificial' => 1, + 'Class' => '9955616', + 'Constructor' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45956527' + } + }, + 'ShortName' => 'ClazzThreadPatternConverter' + }, + '4605732' => { 'Artificial' => 1, - 'Class' => '7714974', + 'Class' => '4540636', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7716735' - } - }, - 'ShortName' => 'WideLife' - }, - '7720617' => { - 'Class' => '1340484', - 'Destructor' => 1, - 'Header' => 'inputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers11InputStreamD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7716902' - } - }, - 'Protected' => 1, - 'ShortName' => 'InputStream', - 'Source' => 'inputstream.cpp', - 'SourceLine' => '30', - 'Virt' => 1 - }, - '7720618' => { - 'Class' => '1340484', - 'Destructor' => 1, - 'Header' => 'inputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers11InputStreamD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7716902' - } - }, - 'Protected' => 1, - 'ShortName' => 'InputStream', - 'Source' => 'inputstream.cpp', - 'SourceLine' => '30', - 'Virt' => 1 - }, - '7720712' => { - 'Class' => '1340484', - 'Destructor' => 1, - 'Header' => 'inputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers11InputStreamD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7716902' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'InputStream', - 'Source' => 'inputstream.cpp', - 'SourceLine' => '30', - 'Virt' => 1 - }, - '7720826' => { - 'Class' => '1340484', - 'Constructor' => 1, - 'Header' => 'inputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers11InputStreamC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7716902' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'InputStream', - 'Source' => 'inputstream.cpp', - 'SourceLine' => '26' - }, - '7720827' => { - 'Class' => '1340484', - 'Constructor' => 1, - 'Header' => 'inputstream.h', - 'MnglName' => '_ZN7log4cxx7helpers11InputStreamC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7716902' - } - }, - 'Protected' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'InputStream', - 'Source' => 'inputstream.cpp', - 'SourceLine' => '26' - }, - '7722910' => { - 'Artificial' => 1, - 'Class' => '7715350', - 'Destructor' => 1, - 'Header' => 'inputstream.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD0Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEEC2IPNS0_21TrivialCharsetDecoderEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716925' + 'type' => '4559986' + }, + '1' => { + 'name' => 'arg0', + 'type' => '4605672' } }, - 'ShortName' => 'ClazzInputStream', - 'Virt' => 1 + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '4560106' + } + } }, - '7722911' => { + '4605733' => { 'Artificial' => 1, - 'Class' => '7715350', - 'Destructor' => 1, - 'Header' => 'inputstream.h', + 'Class' => '4540636', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEEC1IPNS0_21TrivialCharsetDecoderEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716925' + 'type' => '4559986' + }, + '1' => { + 'name' => 'arg0', + 'type' => '4605672' } }, - 'ShortName' => 'ClazzInputStream', - 'Virt' => 1 + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '4560106' + } + } }, - '7723051' => { + '4606136' => { 'Artificial' => 1, - 'Class' => '7715350', + 'Class' => '4540636', 'Destructor' => 1, - 'Header' => 'inputstream.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716925' + 'type' => '4559986' } }, - 'ShortName' => 'ClazzInputStream', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '7723141' => { + '4606137' => { 'Artificial' => 1, - 'Class' => '7715350', - 'Constructor' => 1, - 'Header' => 'inputstream.h', + 'Class' => '4540636', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamC2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7716925' + 'type' => '4559986' } }, - 'ShortName' => 'ClazzInputStream' + 'ShortName' => 'WideLife' }, - '7723142' => { + '4606933' => { 'Artificial' => 1, - 'Class' => '7715350', + 'Class' => '4540636', 'Constructor' => 1, - 'Header' => 'inputstream.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers11InputStream16ClazzInputStreamC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7716925' - } - }, - 'ShortName' => 'ClazzInputStream' - }, - '77841' => { - 'Class' => '63730', - 'Constructor' => 1, - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6ActionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - } - }, - 'Protected' => 1, - 'ShortName' => 'Action', - 'Source' => 'action.cpp', - 'SourceLine' => '29' - }, - '7787727' => { - 'Class' => '7787607', - 'Const' => 1, - 'Header' => 'inputstreamreader.h', - 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx7helpers17InputStreamReader22ClazzInputStreamReader7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7791732' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '7787789' => { - 'Class' => '7787459', - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '30', - 'Static' => 1 - }, - '7787806' => { - 'Class' => '7787459', - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '30', - 'Static' => 1 - }, - '7787823' => { - 'Class' => '7787459', - 'Const' => 1, - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZNK7log4cxx7helpers17InputStreamReader8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7791687' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '30', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '7787862' => { - 'Class' => '7787459', - 'Const' => 1, - 'Header' => 'inputstreamreader.h', - 'InLine' => 2, 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx7helpers17InputStreamReader4castERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7791687' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '7787906' => { - 'Class' => '7787459', - 'Const' => 1, - 'Header' => 'inputstreamreader.h', - 'InLine' => 2, - 'Line' => '50', - 'MnglName' => '_ZNK7log4cxx7helpers17InputStreamReader10instanceofERKNS0_5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7791687' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '7788056' => { - 'Class' => '7787459', - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader5closeERNS0_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7791698' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '70', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '7788097' => { - 'Class' => '7787459', - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader4readB5cxx11ERNS0_4PoolE', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEEC2IPS3_JEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791698' + 'type' => '4559986' }, '1' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'arg0', + 'type' => '4606873' } }, - 'Return' => '63706', - 'ShortName' => 'read', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '75', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '4560011' + } + } }, - '7789117' => { - 'Class' => '7789107', - 'Const' => 1, - 'Header' => 'reader.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx7helpers6Reader4castERKNS0_5ClassE', + '4606934' => { + 'Artificial' => 1, + 'Class' => '4540636', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEEC1IPS3_JEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7816825' + 'type' => '4559986' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'arg0', + 'type' => '4606873' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '7789161' => { - 'Class' => '7789107', - 'Header' => 'reader.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Reader14getStaticClassEv', - 'Private' => 1, - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'reader.cpp', - 'SourceLine' => '23', - 'Static' => 1 - }, - '7790102' => { - 'Data' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7classes29InputStreamReaderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'InputStreamReaderRegistration', - 'Source' => 'inputstreamreader.cpp' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '4560011' + } + } }, - '7799854' => { + '4607568' => { 'Artificial' => 1, - 'Class' => '7788283', + 'Class' => '4539241', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791247' + 'type' => '4559694' } }, 'ShortName' => 'WideLife' }, - '7799855' => { + '4607569' => { 'Artificial' => 1, - 'Class' => '7788283', + 'Class' => '4539241', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791247' + 'type' => '4559694' } }, 'ShortName' => 'WideLife' }, - '7799995' => { + '4607711' => { 'Artificial' => 1, - 'Class' => '7788283', + 'Class' => '4539241', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791247' + 'type' => '4559694' } }, 'ShortName' => 'WideLife' }, - '7799996' => { + '4607712' => { 'Artificial' => 1, - 'Class' => '7788283', + 'Class' => '4539241', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791247' + 'type' => '4559694' } }, 'ShortName' => 'WideLife' }, - '7803836' => { - 'Class' => '7787459', + '4629416' => { + 'Class' => '4539594', 'Destructor' => 1, - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderD0Ev', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791698' + 'type' => '4560016' } }, - 'ShortName' => 'InputStreamReader', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '66', + 'ShortName' => 'CharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '494', 'Virt' => 1 }, - '7803837' => { - 'Class' => '7787459', + '4629417' => { + 'Class' => '4539594', 'Destructor' => 1, - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderD1Ev', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791698' + 'type' => '4560016' } }, - 'ShortName' => 'InputStreamReader', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '66', + 'ShortName' => 'CharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '494', 'Virt' => 1 }, - '7803930' => { - 'Class' => '7787459', + '4629511' => { + 'Class' => '4539594', 'Destructor' => 1, - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderD2Ev', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791698' + 'type' => '4560016' } }, - 'ShortName' => 'InputStreamReader', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '66', + 'ShortName' => 'CharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '494', 'Virt' => 1 }, - '7805624' => { - 'Class' => '7787459', - 'Constructor' => 1, - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderC2ERKSt10shared_ptrINS0_11InputStreamEERKS2_INS0_14CharsetDecoderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7791698' - }, - '1' => { - 'name' => 'in1', - 'type' => '7791615' - }, - '2' => { - 'name' => 'dec1', - 'type' => '7791621' - } - }, - 'ShortName' => 'InputStreamReader', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '52' - }, - '7805625' => { - 'Class' => '7787459', + '4629628' => { + 'Class' => '4539594', 'Constructor' => 1, - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderC1ERKSt10shared_ptrINS0_11InputStreamEERKS2_INS0_14CharsetDecoderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7791698' - }, - '1' => { - 'name' => 'in1', - 'type' => '7791615' - }, - '2' => { - 'name' => 'dec1', - 'type' => '7791621' - } - }, - 'ShortName' => 'InputStreamReader', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '52' - }, - '7810764' => { - 'Class' => '7787459', - 'Constructor' => 1, - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderC2ERKSt10shared_ptrINS0_11InputStreamEE', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791698' - }, - '1' => { - 'name' => 'in1', - 'type' => '7791615' + 'type' => '4560016' } }, - 'ShortName' => 'InputStreamReader', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '43' + 'Protected' => 1, + 'ShortName' => 'CharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '489' }, - '7810765' => { - 'Class' => '7787459', + '4629629' => { + 'Class' => '4539594', 'Constructor' => 1, - 'Header' => 'inputstreamreader.h', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReaderC1ERKSt10shared_ptrINS0_11InputStreamEE', + 'Header' => 'charsetdecoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791698' - }, - '1' => { - 'name' => 'in1', - 'type' => '7791615' + 'type' => '4560016' } }, - 'ShortName' => 'InputStreamReader', - 'Source' => 'inputstreamreader.cpp', - 'SourceLine' => '43' + 'Protected' => 1, + 'ShortName' => 'CharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'SourceLine' => '489' }, - '7816565' => { + '4630779' => { 'Artificial' => 1, - 'Class' => '7787607', + 'Class' => '4541493', 'Destructor' => 1, - 'Header' => 'inputstreamreader.h', 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD0Ev', + 'Line' => '379', + 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetDecoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791721' + 'type' => '4560301' } }, - 'ShortName' => 'ClazzInputStreamReader', + 'ShortName' => 'USASCIICharsetDecoder', + 'Source' => 'charsetdecoder.cpp', 'Virt' => 1 }, - '7816566' => { + '4630780' => { 'Artificial' => 1, - 'Class' => '7787607', + 'Class' => '4541493', 'Destructor' => 1, - 'Header' => 'inputstreamreader.h', 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD1Ev', + 'Line' => '379', + 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetDecoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791721' + 'type' => '4560301' } }, - 'ShortName' => 'ClazzInputStreamReader', + 'ShortName' => 'USASCIICharsetDecoder', + 'Source' => 'charsetdecoder.cpp', 'Virt' => 1 }, - '7816706' => { + '4630926' => { 'Artificial' => 1, - 'Class' => '7787607', + 'Class' => '4541493', 'Destructor' => 1, - 'Header' => 'inputstreamreader.h', 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD2Ev', + 'Line' => '379', + 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetDecoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791721' + 'type' => '4560301' } }, - 'ShortName' => 'ClazzInputStreamReader', + 'ShortName' => 'USASCIICharsetDecoder', + 'Source' => 'charsetdecoder.cpp', 'Virt' => 1 }, - '7816796' => { + '4631411' => { 'Artificial' => 1, - 'Class' => '7787607', - 'Constructor' => 1, - 'Header' => 'inputstreamreader.h', + 'Class' => '4541283', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderC2Ev', + 'Line' => '334', + 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7791721' + 'type' => '4560206' } }, - 'ShortName' => 'ClazzInputStreamReader' + 'ShortName' => 'ISOLatinCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7816797' => { + '4631412' => { 'Artificial' => 1, - 'Class' => '7787607', - 'Constructor' => 1, - 'Header' => 'inputstreamreader.h', + 'Class' => '4541283', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7791721' - } - }, - 'ShortName' => 'ClazzInputStreamReader' - }, - '78568' => { - 'Class' => '63730', - 'Constructor' => 1, - 'Header' => 'action.h', - 'MnglName' => '_ZN7log4cxx7rolling6ActionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66034' - } - }, - 'Protected' => 1, - 'ShortName' => 'Action', - 'Source' => 'action.cpp', - 'SourceLine' => '29' - }, - '7871510' => { - 'Class' => '7871390', - 'Const' => 1, - 'Header' => 'integer.h', - 'InLine' => 2, - 'Line' => '32', - 'MnglName' => '_ZNK7log4cxx7helpers7Integer12ClazzInteger7getNameB5cxx11Ev', + 'Line' => '334', + 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872925' + 'type' => '4560206' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ISOLatinCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7871549' => { - 'Class' => '7871390', - 'Const' => 1, - 'Header' => 'integer.h', - 'InLine' => 2, - 'Line' => '32', - 'MnglName' => '_ZNK7log4cxx7helpers7Integer12ClazzInteger11newInstanceEv', + '4631558' => { + 'Artificial' => 1, + 'Class' => '4541283', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '334', + 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872925' + 'type' => '4560206' } }, - 'Return' => '6300452', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'ISOLatinCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7871640' => { - 'Class' => '6292383', - 'Const' => 1, - 'Header' => 'integer.h', - 'MnglName' => '_ZNK7log4cxx7helpers7Integer8getClassEv', + '46316587' => { + 'Class' => '9955935', + 'Header' => 'threadusernamepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'threadusernamepatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '46316603' => { + 'Class' => '9955935', + 'Header' => 'threadusernamepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'threadusernamepatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '46316619' => { + 'Class' => '9955935', + 'Const' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46328291' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'threadusernamepatternconverter.cpp', + 'SourceLine' => '28', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '46316656' => { + 'Class' => '9955935', + 'Const' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46328291' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '46316698' => { + 'Class' => '9955935', + 'Const' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46328291' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '46316802' => { + 'Class' => '9955935', + 'Const' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46328291' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'threadusernamepatternconverter.cpp', + 'SourceLine' => '43', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '46319651' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes42ThreadUsernamePatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ThreadUsernamePatternConverterRegistration', + 'Source' => 'threadusernamepatternconverter.cpp' + }, + '4632233' => { + 'Artificial' => 1, + 'Class' => '4541079', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '240', + 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetDecoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872903' + 'type' => '4560111' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'integer.cpp', - 'SourceLine' => '24', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '7871679' => { - 'Class' => '6292383', - 'Header' => 'integer.h', - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers7Integer14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'integer.cpp', - 'SourceLine' => '24', - 'Static' => 1 - }, - '7871696' => { - 'Class' => '6292383', - 'Header' => 'integer.h', - 'MnglName' => '_ZN7log4cxx7helpers7Integer13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'integer.cpp', - 'SourceLine' => '24', - 'Static' => 1 + 'ShortName' => 'TrivialCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7871713' => { - 'Class' => '6292383', - 'Const' => 1, - 'Header' => 'integer.h', - 'InLine' => 2, - 'Line' => '33', - 'MnglName' => '_ZNK7log4cxx7helpers7Integer4castERKNS0_5ClassE', + '4632234' => { + 'Artificial' => 1, + 'Class' => '4541079', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '240', + 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetDecoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872903' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '4560111' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'TrivialCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7871757' => { - 'Class' => '6292383', - 'Const' => 1, - 'Header' => 'integer.h', - 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx7helpers7Integer10instanceofERKNS0_5ClassE', + '4632379' => { + 'Artificial' => 1, + 'Class' => '4541079', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '240', + 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetDecoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872903' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '4560111' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '7872643' => { - 'Data' => 1, - 'Line' => '24', - 'MnglName' => '_ZN7log4cxx7classes19IntegerRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'IntegerRegistration', - 'Source' => 'integer.cpp' + 'ShortName' => 'TrivialCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7876110' => { + '46332617' => { + 'Artificial' => 1, + 'Class' => '9955935', + 'Destructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327950' + } + }, + 'ShortName' => 'ThreadUsernamePatternConverter', + 'Virt' => 1 + }, + '46332618' => { + 'Artificial' => 1, + 'Class' => '9955935', + 'Destructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327950' + } + }, + 'ShortName' => 'ThreadUsernamePatternConverter', + 'Virt' => 1 + }, + '46332887' => { + 'Artificial' => 1, + 'Class' => '9955935', + 'Destructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327950' + } + }, + 'ShortName' => 'ThreadUsernamePatternConverter', + 'Virt' => 1 + }, + '46342659' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_30ThreadUsernamePatternConverterEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '46327780' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '46255606' + } + } + }, + '46342660' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_30ThreadUsernamePatternConverterEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '46327780' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '46255606' + } + } + }, + '46343087' => { + 'Artificial' => 1, + 'Class' => '46314345', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327504' + } + }, + 'ShortName' => 'WideLife' + }, + '46343088' => { + 'Artificial' => 1, + 'Class' => '46314345', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327504' + } + }, + 'ShortName' => 'WideLife' + }, + '46343230' => { + 'Artificial' => 1, + 'Class' => '46314345', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327504' + } + }, + 'ShortName' => 'WideLife' + }, + '46343231' => { + 'Artificial' => 1, + 'Class' => '46314345', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327504' + } + }, + 'ShortName' => 'WideLife' + }, + '46348633' => { + 'Class' => '9955935', + 'Constructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327950' + } + }, + 'ShortName' => 'ThreadUsernamePatternConverter', + 'Source' => 'threadusernamepatternconverter.cpp', + 'SourceLine' => '30' + }, + '4634909' => { 'Artificial' => 1, - 'Class' => '7871014', + 'Class' => '4541912', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEED2Ev', + 'Line' => '85', + 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetDecoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872730' + 'type' => '4560491' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'APRCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', + 'Virt' => 1 }, - '7876111' => { + '4634910' => { 'Artificial' => 1, - 'Class' => '7871014', + 'Class' => '4541912', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7872730' - } - }, - 'ShortName' => 'WideLife' - }, - '7876251' => { - 'Artificial' => 1, - 'Class' => '7871014', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7872730' - } - }, - 'ShortName' => 'WideLife' - }, - '7876252' => { - 'Artificial' => 1, - 'Class' => '7871014', - 'Constructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7872730' - } - }, - 'ShortName' => 'WideLife' - }, - '7876600' => { - 'Class' => '6292383', - 'Destructor' => 1, - 'Header' => 'integer.h', - 'MnglName' => '_ZN7log4cxx7helpers7IntegerD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7872886' - } - }, - 'ShortName' => 'Integer', - 'Source' => 'integer.cpp', - 'SourceLine' => '35', - 'Virt' => 1 - }, - '7876601' => { - 'Class' => '6292383', - 'Destructor' => 1, - 'Header' => 'integer.h', - 'MnglName' => '_ZN7log4cxx7helpers7IntegerD1Ev', + 'Line' => '85', + 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetDecoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872886' + 'type' => '4560491' } }, - 'ShortName' => 'Integer', - 'Source' => 'integer.cpp', - 'SourceLine' => '35', + 'ShortName' => 'APRCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', 'Virt' => 1 }, - '7876695' => { - 'Class' => '6292383', + '4635080' => { + 'Artificial' => 1, + 'Class' => '4541912', 'Destructor' => 1, - 'Header' => 'integer.h', - 'MnglName' => '_ZN7log4cxx7helpers7IntegerD2Ev', + 'InLine' => 1, + 'Line' => '85', + 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetDecoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872886' + 'type' => '4560491' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Integer', - 'Source' => 'integer.cpp', - 'SourceLine' => '35', + 'ShortName' => 'APRCharsetDecoder', + 'Source' => 'charsetdecoder.cpp', 'Virt' => 1 }, - '7876821' => { - 'Class' => '6292383', - 'Constructor' => 1, - 'Header' => 'integer.h', - 'MnglName' => '_ZN7log4cxx7helpers7IntegerC2Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7872886' - }, - '1' => { - 'name' => 'val1', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'Integer', - 'Source' => 'integer.cpp', - 'SourceLine' => '31' - }, - '7876822' => { - 'Class' => '6292383', - 'Constructor' => 1, - 'Header' => 'integer.h', - 'MnglName' => '_ZN7log4cxx7helpers7IntegerC1Ei', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7872886' - }, - '1' => { - 'name' => 'val1', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'Integer', - 'Source' => 'integer.cpp', - 'SourceLine' => '31' - }, - '7876942' => { - 'Class' => '6292383', - 'Constructor' => 1, - 'Header' => 'integer.h', - 'MnglName' => '_ZN7log4cxx7helpers7IntegerC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7872886' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Integer', - 'Source' => 'integer.cpp', - 'SourceLine' => '27' - }, - '7876943' => { - 'Class' => '6292383', - 'Constructor' => 1, - 'Header' => 'integer.h', - 'MnglName' => '_ZN7log4cxx7helpers7IntegerC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7872886' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Integer', - 'Source' => 'integer.cpp', - 'SourceLine' => '27' - }, - '7879168' => { + '46351658' => { + 'Class' => '9955935', + 'Constructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327950' + } + }, + 'ShortName' => 'ThreadUsernamePatternConverter', + 'Source' => 'threadusernamepatternconverter.cpp', + 'SourceLine' => '30' + }, + '46356385' => { + 'Artificial' => 1, + 'Class' => '9955944', + 'Destructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46328456' + } + }, + 'ShortName' => 'ClazzThreadUsernamePatternConverter', + 'Virt' => 1 + }, + '46356386' => { + 'Artificial' => 1, + 'Class' => '9955944', + 'Destructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46328456' + } + }, + 'ShortName' => 'ClazzThreadUsernamePatternConverter', + 'Virt' => 1 + }, + '46356531' => { + 'Artificial' => 1, + 'Class' => '9955944', + 'Destructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46328456' + } + }, + 'ShortName' => 'ClazzThreadUsernamePatternConverter', + 'Virt' => 1 + }, + '46356626' => { + 'Artificial' => 1, + 'Class' => '9955944', + 'Constructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46328456' + } + }, + 'ShortName' => 'ClazzThreadUsernamePatternConverter' + }, + '46356627' => { + 'Artificial' => 1, + 'Class' => '9955944', + 'Constructor' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46328456' + } + }, + 'ShortName' => 'ClazzThreadUsernamePatternConverter' + }, + '4637242' => { 'Artificial' => 1, - 'Class' => '7871390', + 'Class' => '4539612', 'Destructor' => 1, - 'Header' => 'integer.h', + 'Header' => 'charsetdecoder.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872914' + 'type' => '4562013' } }, - 'ShortName' => 'ClazzInteger', + 'ShortName' => 'ClazzCharsetDecoder', 'Virt' => 1 }, - '7879169' => { + '4637243' => { 'Artificial' => 1, - 'Class' => '7871390', + 'Class' => '4539612', 'Destructor' => 1, - 'Header' => 'integer.h', + 'Header' => 'charsetdecoder.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872914' + 'type' => '4562013' } }, - 'ShortName' => 'ClazzInteger', + 'ShortName' => 'ClazzCharsetDecoder', 'Virt' => 1 }, - '7879309' => { + '4637388' => { 'Artificial' => 1, - 'Class' => '7871390', + 'Class' => '4539612', 'Destructor' => 1, - 'Header' => 'integer.h', + 'Header' => 'charsetdecoder.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872914' + 'type' => '4562013' } }, - 'ShortName' => 'ClazzInteger', + 'ShortName' => 'ClazzCharsetDecoder', 'Virt' => 1 }, - '7879399' => { + '4637482' => { 'Artificial' => 1, - 'Class' => '7871390', + 'Class' => '4539612', 'Constructor' => 1, - 'Header' => 'integer.h', + 'Header' => 'charsetdecoder.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7872914' + 'type' => '4562013' } }, - 'ShortName' => 'ClazzInteger' + 'ShortName' => 'ClazzCharsetDecoder' }, - '7879400' => { + '4637483' => { 'Artificial' => 1, - 'Class' => '7871390', + 'Class' => '4539612', 'Constructor' => 1, - 'Header' => 'integer.h', + 'Header' => 'charsetdecoder.h', 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers7Integer12ClazzIntegerC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7872914' - } - }, - 'ShortName' => 'ClazzInteger' - }, - '7945939' => { - 'Class' => '7945819', - 'Const' => 1, - 'Header' => 'integerpatternconverter.h', - 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverter7getNameB5cxx11Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7947638' + 'type' => '4562013' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzCharsetDecoder' }, - '7946066' => { - 'Class' => '7945801', - 'Header' => 'integerpatternconverter.h', - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter14getStaticClassEv', - 'Return' => '64678', + '46830618' => { + 'Artificial' => 1, + 'Class' => '46699645', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46716546' + } + }, + 'ShortName' => 'WideLife' + }, + '46830619' => { + 'Artificial' => 1, + 'Class' => '46699645', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46716546' + } + }, + 'ShortName' => 'WideLife' + }, + '46830762' => { + 'Artificial' => 1, + 'Class' => '46699645', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46716546' + } + }, + 'ShortName' => 'WideLife' + }, + '46830763' => { + 'Artificial' => 1, + 'Class' => '46699645', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46716546' + } + }, + 'ShortName' => 'WideLife' + }, + '46847217' => { + 'Class' => '1909514', + 'Destructor' => 1, + 'Header' => 'threadspecificdata.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificDataD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1930099' + } + }, + 'ShortName' => 'ThreadSpecificData', + 'Source' => 'threadspecificdata.cpp', + 'SourceLine' => '40' + }, + '46848669' => { + 'Class' => '1909514', + 'Constructor' => 1, + 'Header' => 'threadspecificdata.h', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificDataC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1930099' + } + }, + 'ShortName' => 'ThreadSpecificData', + 'Source' => 'threadspecificdata.cpp' + }, + '46848670' => { + 'Class' => '1909514', + 'Constructor' => 1, + 'Header' => 'threadspecificdata.h', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers18ThreadSpecificDataC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1930099' + } + }, + 'ShortName' => 'ThreadSpecificData', + 'Source' => 'threadspecificdata.cpp' + }, + '47270383' => { + 'Artificial' => 1, + 'Class' => '47244044', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47249002' + } + }, + 'ShortName' => 'WideLife' + }, + '47270384' => { + 'Artificial' => 1, + 'Class' => '47244044', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47249002' + } + }, + 'ShortName' => 'WideLife' + }, + '47270526' => { + 'Artificial' => 1, + 'Class' => '47244044', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47249002' + } + }, + 'ShortName' => 'WideLife' + }, + '47270527' => { + 'Artificial' => 1, + 'Class' => '47244044', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47249002' + } + }, + 'ShortName' => 'WideLife' + }, + '47295318' => { + 'Class' => '2500954', + 'Destructor' => 1, + 'Header' => 'threadutility.h', + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtilityD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2520206' + } + }, + 'ShortName' => 'ThreadUtility', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '67' + }, + '47296154' => { + 'Class' => '2500954', + 'Constructor' => 1, + 'Header' => 'threadutility.h', + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtilityC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2520206' + } + }, + 'Private' => 1, + 'ShortName' => 'ThreadUtility', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '58' + }, + '47296155' => { + 'Class' => '2500954', + 'Constructor' => 1, + 'Header' => 'threadutility.h', + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtilityC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2520206' + } + }, + 'Private' => 1, + 'ShortName' => 'ThreadUtility', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '58' + }, + '47649131' => { + 'Class' => '34965012', + 'Header' => 'throwableinformationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '47649147' => { + 'Class' => '34965012', + 'Header' => 'throwableinformationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '47649163' => { + 'Class' => '34965012', + 'Const' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661399' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'SourceLine' => '43', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '47649200' => { + 'Class' => '34965012', + 'Const' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661399' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '47649242' => { + 'Class' => '34965012', + 'Const' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661399' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '47649351' => { + 'Class' => '34965012', + 'Const' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661399' + }, + '1' => { + 'name' => 'p1', + 'type' => '576659' + }, + '2' => { + 'name' => 'p2', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'SourceLine' => '67', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '47649400' => { + 'Class' => '34965012', + 'Const' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter16handlesThrowableEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661399' + } + }, + 'Return' => '174077', + 'ShortName' => 'handlesThrowable', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'SourceLine' => '78', + 'Virt' => 1, + 'VirtPos' => '8' + }, + '47652262' => { + 'Data' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7classes48ThrowableInformationPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ThrowableInformationPatternConverterRegistration', + 'Source' => 'throwableinformationpatternconverter.cpp' + }, + '47665731' => { + 'Artificial' => 1, + 'Class' => '34965012', + 'Destructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661013' + } + }, + 'ShortName' => 'ThrowableInformationPatternConverter', + 'Virt' => 1 + }, + '47665732' => { + 'Artificial' => 1, + 'Class' => '34965012', + 'Destructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661013' + } + }, + 'ShortName' => 'ThrowableInformationPatternConverter', + 'Virt' => 1 + }, + '47666004' => { + 'Artificial' => 1, + 'Class' => '34965012', + 'Destructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661013' + } + }, + 'ShortName' => 'ThrowableInformationPatternConverter', + 'Virt' => 1 + }, + '47673992' => { + 'Artificial' => 1, + 'Class' => '47648875', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47660307' + } + }, + 'ShortName' => 'ThrowableInformationPatternConverterPrivate', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'Virt' => 1 + }, + '47673993' => { + 'Artificial' => 1, + 'Class' => '47648875', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47660307' + } + }, + 'ShortName' => 'ThrowableInformationPatternConverterPrivate', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'Virt' => 1 + }, + '47675466' => { + 'Artificial' => 1, + 'Class' => '47648875', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47660307' + } + }, + 'ShortName' => 'ThrowableInformationPatternConverterPrivate', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'Virt' => 1 + }, + '47679906' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_36ThrowableInformationPatternConverterEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '47660912' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '47583423' + } + } + }, + '47679907' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_36ThrowableInformationPatternConverterEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '47660912' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '47583423' + } + } + }, + '47687785' => { + 'Artificial' => 1, + 'Class' => '47646539', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47660196' + } + }, + 'ShortName' => 'WideLife' + }, + '47687786' => { + 'Artificial' => 1, + 'Class' => '47646539', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47660196' + } + }, + 'ShortName' => 'WideLife' + }, + '47687929' => { + 'Artificial' => 1, + 'Class' => '47646539', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47660196' + } + }, + 'ShortName' => 'WideLife' + }, + '47687930' => { + 'Artificial' => 1, + 'Class' => '47646539', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47660196' + } + }, + 'ShortName' => 'WideLife' + }, + '47697256' => { + 'Class' => '34965012', + 'Constructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterC1Eb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661013' + }, + '1' => { + 'name' => 'shortReport1', + 'type' => '174077' + } + }, + 'ShortName' => 'ThrowableInformationPatternConverter', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'SourceLine' => '45' + }, + '47699244' => { + 'Class' => '34965012', + 'Constructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverterC2Eb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661013' + }, + '2' => { + 'name' => 'shortReport1', + 'type' => '174077' + } + }, + 'ShortName' => 'ThrowableInformationPatternConverter', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'SourceLine' => '45' + }, + '47705984' => { + 'Artificial' => 1, + 'Class' => '34965037', + 'Destructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661598' + } + }, + 'ShortName' => 'ClazzThrowableInformationPatternConverter', + 'Virt' => 1 + }, + '47705985' => { + 'Artificial' => 1, + 'Class' => '34965037', + 'Destructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661598' + } + }, + 'ShortName' => 'ClazzThrowableInformationPatternConverter', + 'Virt' => 1 + }, + '47706131' => { + 'Artificial' => 1, + 'Class' => '34965037', + 'Destructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661598' + } + }, + 'ShortName' => 'ClazzThrowableInformationPatternConverter', + 'Virt' => 1 + }, + '47706226' => { + 'Artificial' => 1, + 'Class' => '34965037', + 'Constructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661598' + } + }, + 'ShortName' => 'ClazzThrowableInformationPatternConverter' + }, + '47706227' => { + 'Artificial' => 1, + 'Class' => '34965037', + 'Constructor' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47661598' + } + }, + 'ShortName' => 'ClazzThrowableInformationPatternConverter' + }, + '48273239' => { + 'Artificial' => 1, + 'Class' => '5657578', + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 2, + 'Line' => '143', + 'MnglName' => '_ZTch0_h0_NK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300869' + } + }, + 'Return' => '5679538', + 'ShortName' => '_ZTch0_h0_NK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv' + }, + '48273333' => { + 'Class' => '5657564', + 'Const' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300444' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '40', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '48273405' => { + 'Class' => '5657564', + 'Const' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 2, + 'Line' => '144', + 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300444' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '48273448' => { + 'Class' => '5657564', + 'Const' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 2, + 'Line' => '148', + 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300444' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '48273585' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'pool', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '278', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '48273625' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy15setMultiprocessEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'multiprocess', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setMultiprocess', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '528' + }, + '48273658' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'currentActiveFile', + 'type' => '210597' + }, + '2' => { + 'name' => 'append', + 'type' => '174084' + }, + '3' => { + 'name' => 'pool', + 'type' => '210607' + } + }, + 'Return' => '16772430', + 'ShortName' => 'initialize', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '360', + 'Virt' => 1, + 'VirtPos' => '8' + }, + '48273713' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'currentActiveFile', + 'type' => '210597' + }, + '2' => { + 'name' => 'append', + 'type' => '174084' + }, + '3' => { + 'name' => 'pool', + 'type' => '210607' + } + }, + 'Return' => '16772430', + 'ShortName' => 'rollover', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '392', + 'Virt' => 1, + 'VirtPos' => '9' + }, + '48273768' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'appender', + 'type' => '955078' + }, + '2' => { + 'name' => 'p2', + 'type' => '576659' + }, + '3' => { + 'name' => 'filename', + 'type' => '210597' + }, + '4' => { + 'name' => 'p4', + 'type' => '190816' + } + }, + 'Return' => '174077', + 'ShortName' => 'isTriggeringEvent', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '497', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '48273828' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '535', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '48273873' => { + 'Class' => '5657564', + 'Const' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy19getFormatSpecifiersB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300444' + } + }, + 'Protected' => 1, + 'Return' => '3121008', + 'ShortName' => 'getFormatSpecifiers', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '349', + 'Virt' => 1, + 'VirtPos' => '10' + }, + '48273913' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy14createMMapFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'p1', + 'type' => '202831' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' + } + }, + 'Private' => 1, + 'Return' => '190263', + 'ShortName' => 'createMMapFile', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '248' + }, + '48273953' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy14isMapFileEmptyERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'isMapFileEmpty', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '252' + }, + '48273988' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy12initMMapFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'initMMapFile', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '256' + }, + '48274025' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy12lockMMapFileEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'p1', + 'type' => '190263' + } + }, + 'Private' => 1, + 'Return' => '190263', + 'ShortName' => 'lockMMapFile', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '258' + }, + '48274061' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy14unLockMMapFileEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + } + }, + 'Private' => 1, + 'Return' => '190263', + 'ShortName' => 'unLockMMapFile', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '262' + }, + '48274092' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy10createFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + }, + '1' => { + 'name' => 'p1', + 'type' => '202831' + }, + '2' => { + 'name' => 'p2', + 'type' => '202831' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' + } + }, + 'Private' => 1, + 'Return' => '89545', + 'ShortName' => 'createFile', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '266' + }, + '48277747' => { + 'Data' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7classes34TimeBasedRollingPolicyRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'TimeBasedRollingPolicyRegistration', + 'Source' => 'timebasedrollingpolicy.cpp' + }, + '48303161' => { + 'Constructor' => 1, + 'Header' => 'date.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers4DateC1El', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '8698008' + }, + '1' => { + 'name' => 'time', + 'type' => '1914488' + } + } + }, + '48303200' => { + 'Destructor' => 1, + 'Header' => 'date.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers4DateD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '8698008' + } + } + }, + '48303330' => { + 'Constructor' => 1, + 'Header' => 'date.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers4DateC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '8698008' + } + } + }, + '48360208' => { + 'Artificial' => 1, + 'Class' => '48266740', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48297191' + } + }, + 'ShortName' => 'WideLife' + }, + '48360209' => { + 'Artificial' => 1, + 'Class' => '48266740', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48297191' + } + }, + 'ShortName' => 'WideLife' + }, + '48360351' => { + 'Artificial' => 1, + 'Class' => '48266740', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48297191' + } + }, + 'ShortName' => 'WideLife' + }, + '48360352' => { + 'Artificial' => 1, + 'Class' => '48266740', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48297191' + } + }, + 'ShortName' => 'WideLife' + }, + '48434937' => { + 'Class' => '5657564', + 'Destructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + } + }, + 'ShortName' => 'TimeBasedRollingPolicy', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '276', + 'Virt' => 1 + }, + '48435037' => { + 'Class' => '5657564', + 'Destructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + } + }, + 'ShortName' => 'TimeBasedRollingPolicy', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '276', + 'Virt' => 1 + }, + '48437682' => { + 'Class' => '5657564', + 'Destructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + } + }, + 'ShortName' => 'TimeBasedRollingPolicy', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '276', + 'Virt' => 1 + }, + '48443429' => { + 'Class' => '5657564', + 'Constructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicyC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40200085' + } + }, + 'ShortName' => 'TimeBasedRollingPolicy', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '271' + }, + '48449686' => { + 'Artificial' => 1, + 'Class' => '5657578', + 'Destructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 1, + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300859' + } + }, + 'ShortName' => 'ClazzTimeBasedRollingPolicy', + 'Virt' => 1 + }, + '48449687' => { + 'Artificial' => 1, + 'Class' => '5657578', + 'Destructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 1, + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300859' + } + }, + 'ShortName' => 'ClazzTimeBasedRollingPolicy', + 'Virt' => 1 + }, + '48449833' => { + 'Artificial' => 1, + 'Class' => '5657578', + 'Destructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 1, + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300859' + } + }, + 'ShortName' => 'ClazzTimeBasedRollingPolicy', + 'Virt' => 1 + }, + '48449928' => { + 'Artificial' => 1, + 'Class' => '5657578', + 'Constructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 1, + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300859' + } + }, + 'ShortName' => 'ClazzTimeBasedRollingPolicy' + }, + '48449929' => { + 'Artificial' => 1, + 'Class' => '5657578', + 'Constructor' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 1, + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48300859' + } + }, + 'ShortName' => 'ClazzTimeBasedRollingPolicy' + }, + '48786100' => { + 'Class' => '4208199', + 'Header' => 'timezone.h', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'timezone.cpp', + 'SourceLine' => '34', + 'Static' => 1 + }, + '48786116' => { + 'Class' => '4208199', + 'Header' => 'timezone.h', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'timezone.cpp', + 'SourceLine' => '34', + 'Static' => 1 + }, + '48786132' => { + 'Class' => '4208199', + 'Const' => 1, + 'Header' => 'timezone.h', + 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42685265' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'timezone.cpp', + 'SourceLine' => '34', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '48786169' => { + 'Class' => '4208199', + 'Const' => 1, + 'Header' => 'timezone.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42685265' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '48786211' => { + 'Class' => '4208199', + 'Const' => 1, + 'Header' => 'timezone.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42685265' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '48786341' => { + 'Class' => '4208199', + 'Const' => 1, + 'Header' => 'timezone.h', + 'Line' => '55', + 'MnglName' => '_ZNK7log4cxx7helpers8TimeZone7explodeEP14apr_time_exp_tl', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42685260' + }, + '1' => { + 'name' => 'p1', + 'type' => '48804945' + }, + '2' => { + 'name' => 'p2', + 'type' => '1914488' + } + }, + 'PureVirt' => 1, + 'Return' => '1918053', + 'ShortName' => 'explode', + 'VirtPos' => '5' + }, + '48787417' => { + 'Class' => '48787337', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZone11getInstanceEv', + 'Return' => '4213117', + 'ShortName' => 'getInstance', + 'Source' => 'timezone.cpp', + 'Static' => 1 + }, + '48787433' => { + 'Class' => '48787337', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '54', + 'MnglName' => '_ZNK7log4cxx7helpers12TimeZoneImpl11GMTTimeZone7explodeEP14apr_time_exp_tl', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804394' + }, + '1' => { + 'name' => 'result', + 'type' => '42547776' + }, + '2' => { + 'name' => 'input', + 'type' => '1914488' + } + }, + 'Return' => '1918053', + 'ShortName' => 'explode', + 'Source' => 'timezone.cpp', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '48787638' => { + 'Class' => '48787542', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '93', + 'MnglName' => '_ZNK7log4cxx7helpers12TimeZoneImpl13LocalTimeZone7explodeEP14apr_time_exp_tl', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804544' + }, + '1' => { + 'name' => 'result', + 'type' => '42547776' + }, + '2' => { + 'name' => 'input', + 'type' => '1914488' + } + }, + 'Return' => '1918053', + 'ShortName' => 'explode', + 'Source' => 'timezone.cpp', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '48787712' => { + 'Class' => '48787542', + 'InLine' => 2, + 'Line' => '119', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZone15getTimeZoneNameB5cxx11Ev', + 'Private' => 1, + 'Return' => '209673', + 'ShortName' => 'getTimeZoneName', + 'Source' => 'timezone.cpp', + 'Static' => 1 + }, + '48787880' => { + 'Class' => '48787763', + 'Const' => 1, + 'InLine' => 2, + 'Line' => '152', + 'MnglName' => '_ZNK7log4cxx7helpers12TimeZoneImpl13FixedTimeZone7explodeEP14apr_time_exp_tl', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804710' + }, + '1' => { + 'name' => 'result', + 'type' => '42547776' + }, + '2' => { + 'name' => 'input', + 'type' => '1914488' + } + }, + 'Return' => '1918053', + 'ShortName' => 'explode', + 'Source' => 'timezone.cpp', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '48790096' => { + 'Data' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7classes20TimeZoneRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'TimeZoneRegistration', + 'Source' => 'timezone.cpp' + }, + '48813942' => { + 'Artificial' => 1, + 'Class' => '48787337', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803963' + } + }, + 'ShortName' => 'GMTTimeZone', + 'Source' => 'timezone.cpp', + 'Virt' => 1 + }, + '48813943' => { + 'Artificial' => 1, + 'Class' => '48787337', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803963' + } + }, + 'ShortName' => 'GMTTimeZone', + 'Source' => 'timezone.cpp', + 'Virt' => 1 + }, + '48814089' => { + 'Artificial' => 1, + 'Class' => '48787337', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803963' + } + }, + 'ShortName' => 'GMTTimeZone', + 'Source' => 'timezone.cpp', + 'Virt' => 1 + }, + '48814195' => { + 'Artificial' => 1, + 'Class' => '48787542', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804013' + } + }, + 'ShortName' => 'LocalTimeZone', + 'Source' => 'timezone.cpp', + 'Virt' => 1 + }, + '48814196' => { + 'Artificial' => 1, + 'Class' => '48787542', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804013' + } + }, + 'ShortName' => 'LocalTimeZone', + 'Source' => 'timezone.cpp', + 'Virt' => 1 + }, + '48814342' => { + 'Artificial' => 1, + 'Class' => '48787542', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804013' + } + }, + 'ShortName' => 'LocalTimeZone', + 'Source' => 'timezone.cpp', + 'Virt' => 1 + }, + '48814448' => { + 'Artificial' => 1, + 'Class' => '48787763', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '144', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803898' + } + }, + 'ShortName' => 'FixedTimeZone', + 'Source' => 'timezone.cpp', + 'Virt' => 1 + }, + '48814449' => { + 'Artificial' => 1, + 'Class' => '48787763', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '144', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803898' + } + }, + 'ShortName' => 'FixedTimeZone', + 'Source' => 'timezone.cpp', + 'Virt' => 1 + }, + '48814595' => { + 'Artificial' => 1, + 'Class' => '48787763', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '144', + 'MnglName' => '_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803898' + } + }, + 'ShortName' => 'FixedTimeZone', + 'Source' => 'timezone.cpp', + 'Virt' => 1 + }, + '48834190' => { + 'Artificial' => 1, + 'Class' => '48786878', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEEC2IS2_INS0_12TimeZoneImpl13LocalTimeZoneEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803587' + }, + '1' => { + 'name' => 'arg0', + 'type' => '48803767' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '48713502' + } + } + }, + '48834191' => { + 'Artificial' => 1, + 'Class' => '48786878', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEEC1IS2_INS0_12TimeZoneImpl13LocalTimeZoneEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803587' + }, + '1' => { + 'name' => 'arg0', + 'type' => '48803767' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '48713502' + } + } + }, + '48834372' => { + 'Artificial' => 1, + 'Class' => '48786878', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803587' + } + }, + 'ShortName' => 'WideLife' + }, + '48834373' => { + 'Artificial' => 1, + 'Class' => '48786878', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803587' + } + }, + 'ShortName' => 'WideLife' + }, + '48835166' => { + 'Artificial' => 1, + 'Class' => '48786878', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEEC2IS2_INS0_12TimeZoneImpl11GMTTimeZoneEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803587' + }, + '1' => { + 'name' => 'arg0', + 'type' => '48803682' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '48712115' + } + } + }, + '48835167' => { + 'Artificial' => 1, + 'Class' => '48786878', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEEC1IS2_INS0_12TimeZoneImpl11GMTTimeZoneEEJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803587' + }, + '1' => { + 'name' => 'arg0', + 'type' => '48803682' + } + }, + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '48712115' + } + } + }, + '48835592' => { + 'Artificial' => 1, + 'Class' => '48785538', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803396' + } + }, + 'ShortName' => 'WideLife' + }, + '48835593' => { + 'Artificial' => 1, + 'Class' => '48785538', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803396' + } + }, + 'ShortName' => 'WideLife' + }, + '48835735' => { + 'Artificial' => 1, + 'Class' => '48785538', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803396' + } + }, + 'ShortName' => 'WideLife' + }, + '48835736' => { + 'Artificial' => 1, + 'Class' => '48785538', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803396' + } + }, + 'ShortName' => 'WideLife' + }, + '48866811' => { + 'Class' => '4208199', + 'Destructor' => 1, + 'Header' => 'timezone.h', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804925' + } + }, + 'Protected' => 1, + 'ShortName' => 'TimeZone', + 'Source' => 'timezone.cpp', + 'SourceLine' => '187', + 'Virt' => 1 + }, + '48866812' => { + 'Class' => '4208199', + 'Destructor' => 1, + 'Header' => 'timezone.h', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804925' + } + }, + 'Protected' => 1, + 'ShortName' => 'TimeZone', + 'Source' => 'timezone.cpp', + 'SourceLine' => '187', + 'Virt' => 1 + }, + '48866907' => { + 'Class' => '4208199', + 'Destructor' => 1, + 'Header' => 'timezone.h', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804925' + } + }, + 'Protected' => 1, + 'ShortName' => 'TimeZone', + 'Source' => 'timezone.cpp', + 'SourceLine' => '187', + 'Virt' => 1 + }, + '48867691' => { + 'Class' => '4208199', + 'Constructor' => 1, + 'Header' => 'timezone.h', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804925' + }, + '1' => { + 'name' => 'id1', + 'type' => '210597' + } + }, + 'Protected' => 1, + 'ShortName' => 'TimeZone', + 'Source' => 'timezone.cpp', + 'SourceLine' => '183' + }, + '48867692' => { + 'Class' => '4208199', + 'Constructor' => 1, + 'Header' => 'timezone.h', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZoneC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48804925' + }, + '1' => { + 'name' => 'id1', + 'type' => '210597' + } + }, + 'Protected' => 1, + 'ShortName' => 'TimeZone', + 'Source' => 'timezone.cpp', + 'SourceLine' => '183' + }, + '48879626' => { + 'Artificial' => 1, + 'Class' => '4208209', + 'Destructor' => 1, + 'Header' => 'timezone.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48805065' + } + }, + 'ShortName' => 'ClazzTimeZone', + 'Virt' => 1 + }, + '48879627' => { + 'Artificial' => 1, + 'Class' => '4208209', + 'Destructor' => 1, + 'Header' => 'timezone.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48805065' + } + }, + 'ShortName' => 'ClazzTimeZone', + 'Virt' => 1 + }, + '48879772' => { + 'Artificial' => 1, + 'Class' => '4208209', + 'Destructor' => 1, + 'Header' => 'timezone.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48805065' + } + }, + 'ShortName' => 'ClazzTimeZone', + 'Virt' => 1 + }, + '48879866' => { + 'Artificial' => 1, + 'Class' => '4208209', + 'Constructor' => 1, + 'Header' => 'timezone.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48805065' + } + }, + 'ShortName' => 'ClazzTimeZone' + }, + '48879867' => { + 'Artificial' => 1, + 'Class' => '4208209', + 'Constructor' => 1, + 'Header' => 'timezone.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48805065' + } + }, + 'ShortName' => 'ClazzTimeZone' + }, + '49326612' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA4_KcJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '4212766' + } + }, + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '4212766' + } + } + }, + '49326613' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA4_KcJEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '4212766' + } + }, + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '4212766' + } + } + }, + '49648885' => { + 'Class' => '5658455', + 'Header' => 'triggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'triggeringpolicy.cpp', + 'SourceLine' => '24', + 'Static' => 1 + }, + '49649062' => { + 'Class' => '5658455', + 'Header' => 'triggeringpolicy.h', + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16176276' + }, + '1' => { + 'name' => 'p1', + 'type' => '955078' + }, + '2' => { + 'name' => 'p2', + 'type' => '576659' + }, + '3' => { + 'name' => 'p3', + 'type' => '210597' + }, + '4' => { + 'name' => 'p4', + 'type' => '190816' + } + }, + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'isTriggeringEvent', + 'VirtPos' => '7' + }, + '49649134' => { + 'Data' => 1, + 'Line' => '24', + 'MnglName' => '_ZN7log4cxx7classes28TriggeringPolicyRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'TriggeringPolicyRegistration', + 'Source' => 'triggeringpolicy.cpp' + }, + '49661394' => { + 'Artificial' => 1, + 'Class' => '49645189', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49656738' + } + }, + 'ShortName' => 'WideLife' + }, + '49661395' => { + 'Artificial' => 1, + 'Class' => '49645189', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49656738' + } + }, + 'ShortName' => 'WideLife' + }, + '49661537' => { + 'Artificial' => 1, + 'Class' => '49645189', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49656738' + } + }, + 'ShortName' => 'WideLife' + }, + '49661538' => { + 'Artificial' => 1, + 'Class' => '49645189', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49656738' + } + }, + 'ShortName' => 'WideLife' + }, + '49661925' => { + 'Class' => '5658455', + 'Destructor' => 1, + 'Header' => 'triggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16176281' + } + }, + 'ShortName' => 'TriggeringPolicy', + 'Source' => 'triggeringpolicy.cpp', + 'SourceLine' => '26', + 'Virt' => 1 + }, + '49662025' => { + 'Class' => '5658455', + 'Destructor' => 1, + 'Header' => 'triggeringpolicy.h', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16176281' + } + }, + 'ShortName' => 'TriggeringPolicy', + 'Source' => 'triggeringpolicy.cpp', + 'SourceLine' => '26', + 'Virt' => 1 + }, + '49663851' => { + 'Artificial' => 1, + 'Class' => '5658461', + 'Destructor' => 1, + 'Header' => 'triggeringpolicy.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49657149' + } + }, + 'ShortName' => 'ClazzTriggeringPolicy', + 'Virt' => 1 + }, + '49663852' => { + 'Artificial' => 1, + 'Class' => '5658461', + 'Destructor' => 1, + 'Header' => 'triggeringpolicy.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49657149' + } + }, + 'ShortName' => 'ClazzTriggeringPolicy', + 'Virt' => 1 + }, + '49663997' => { + 'Artificial' => 1, + 'Class' => '5658461', + 'Destructor' => 1, + 'Header' => 'triggeringpolicy.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49657149' + } + }, + 'ShortName' => 'ClazzTriggeringPolicy', + 'Virt' => 1 + }, + '49664092' => { + 'Artificial' => 1, + 'Class' => '5658461', + 'Constructor' => 1, + 'Header' => 'triggeringpolicy.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49657149' + } + }, + 'ShortName' => 'ClazzTriggeringPolicy' + }, + '49664093' => { + 'Artificial' => 1, + 'Class' => '5658461', + 'Constructor' => 1, + 'Header' => 'triggeringpolicy.h', + 'InLine' => 1, + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49657149' + } + }, + 'ShortName' => 'ClazzTriggeringPolicy' + }, + '4971200' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'integerpatternconverter.cpp', - 'SourceLine' => '27', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '41', 'Static' => 1 }, - '7946083' => { - 'Class' => '7945801', - 'Header' => 'integerpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter13registerClassEv', - 'Return' => '64684', + '4971217' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'integerpatternconverter.cpp', - 'SourceLine' => '27', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '41', 'Static' => 1 }, - '7946100' => { - 'Class' => '7945801', + '4971234' => { + 'Class' => '3116225', 'Const' => 1, - 'Header' => 'integerpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter8getClassEv', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7947127' + 'type' => '4995923' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'integerpatternconverter.cpp', - 'SourceLine' => '27', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '41', 'Virt' => 1, 'VirtPos' => '2' }, - '7946139' => { - 'Class' => '7945801', + '4971272' => { + 'Class' => '3116225', 'Const' => 1, - 'Header' => 'integerpatternconverter.h', + 'Header' => 'charsetencoder.h', 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter4castERKNS_7helpers5ClassE', + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7947127' + 'type' => '4995923' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '7946183' => { - 'Class' => '7945801', + '4971315' => { + 'Class' => '3116225', 'Const' => 1, - 'Header' => 'integerpatternconverter.h', + 'Header' => 'charsetencoder.h', 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter10instanceofERKNS_7helpers5ClassE', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7947127' + 'type' => '4995923' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '7946264' => { - 'Class' => '7945801', - 'Header' => 'integerpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'integerpatternconverter.cpp', - 'SourceLine' => '35', + '4971423' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder17getDefaultEncoderEv', + 'Return' => '4974550', + 'ShortName' => 'getDefaultEncoder', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '514', 'Static' => 1 }, - '7946291' => { - 'Class' => '7945801', - 'Const' => 1, - 'Header' => 'integerpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern23IntegerPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7947127' - }, - '1' => { - 'name' => 'obj', - 'type' => '652213' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'integerpatternconverter.cpp', - 'SourceLine' => '42', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '7946409' => { - 'Data' => 1, - 'Line' => '27', - 'MnglName' => '_ZN7log4cxx7classes35IntegerPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'IntegerPatternConverterRegistration', - 'Source' => 'integerpatternconverter.cpp' - }, - '7946427' => { - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZN7log4cxx4castINS_7helpers7IntegerENS1_6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', - 'NameSpace' => 'log4cxx', - 'Param' => { - '0' => { - 'name' => 'incoming', - 'type' => '655477' - } - }, - 'Return' => '6218665', - 'ShortName' => 'cast', - 'TParam' => { - '0' => { - 'key' => 'Ret', - 'type' => '6292383' - }, - '1' => { - 'key' => 'Type', - 'type' => '63470' - } - } - }, - '7950507' => { - 'Artificial' => 1, - 'Class' => '7945801', - 'Destructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7946930' - } - }, - 'ShortName' => 'IntegerPatternConverter', - 'Virt' => 1 - }, - '7950508' => { - 'Artificial' => 1, - 'Class' => '7945801', - 'Destructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterD2Ev', + '4971442' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'Line' => '69', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder10getEncoderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '7946930' + 'name' => 'charset', + 'type' => '210597' } }, - 'ShortName' => 'IntegerPatternConverter', - 'Virt' => 1 + 'Return' => '4974550', + 'ShortName' => 'getEncoder', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '554', + 'Static' => 1 }, - '7950712' => { - 'Artificial' => 1, - 'Class' => '7945801', - 'Destructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7946930' - } - }, - 'ShortName' => 'IntegerPatternConverter', - 'Virt' => 1 + '4971470' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder14getUTF8EncoderEv', + 'Return' => '4974550', + 'ShortName' => 'getUTF8Encoder', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '547', + 'Static' => 1 }, - '7958835' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_23IntegerPatternConverterEEJEEEOT_DpOT0_', + '4971489' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder6encodeERSt10shared_ptrIS1_ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcSA_EERNS0_10ByteBufferE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '2273889' + 'name' => 'enc', + 'type' => '4995928' }, '1' => { - 'name' => 'arg0', - 'type' => '7946952' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '7921121' - } - } - }, - '7958836' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_23IntegerPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' + 'name' => 'src', + 'type' => '210597' }, - '1' => { - 'name' => 'arg0', - 'type' => '7946952' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '7921121' - } - } - }, - '7959307' => { - 'Artificial' => 1, - 'Class' => '7944099', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7946576' - } - }, - 'ShortName' => 'WideLife' - }, - '7959308' => { - 'Artificial' => 1, - 'Class' => '7944099', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7946576' - } - }, - 'ShortName' => 'WideLife' - }, - '7959448' => { - 'Artificial' => 1, - 'Class' => '7944099', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7946576' - } - }, - 'ShortName' => 'WideLife' - }, - '7959449' => { - 'Artificial' => 1, - 'Class' => '7944099', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7946576' - } - }, - 'ShortName' => 'WideLife' - }, - '7965440' => { - 'Class' => '7945801', - 'Constructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7946930' - } - }, - 'ShortName' => 'IntegerPatternConverter', - 'Source' => 'integerpatternconverter.cpp', - 'SourceLine' => '29' - }, - '7969556' => { - 'Class' => '7945801', - 'Constructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7946930' - } - }, - 'ShortName' => 'IntegerPatternConverter', - 'Source' => 'integerpatternconverter.cpp', - 'SourceLine' => '29' - }, - '7975539' => { - 'Artificial' => 1, - 'Class' => '7945819', - 'Destructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7947627' - } - }, - 'ShortName' => 'ClazzIntegerPatternConverter', - 'Virt' => 1 - }, - '7975540' => { - 'Artificial' => 1, - 'Class' => '7945819', - 'Destructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7947627' - } - }, - 'ShortName' => 'ClazzIntegerPatternConverter', - 'Virt' => 1 - }, - '7975680' => { - 'Artificial' => 1, - 'Class' => '7945819', - 'Destructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7947627' - } - }, - 'ShortName' => 'ClazzIntegerPatternConverter', - 'Virt' => 1 - }, - '7975770' => { - 'Artificial' => 1, - 'Class' => '7945819', - 'Constructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7947627' - } - }, - 'ShortName' => 'ClazzIntegerPatternConverter' - }, - '7975771' => { - 'Artificial' => 1, - 'Class' => '7945819', - 'Constructor' => 1, - 'Header' => 'integerpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7947627' - } - }, - 'ShortName' => 'ClazzIntegerPatternConverter' - }, - '80301' => { - 'Artificial' => 1, - 'Class' => '63748', - 'Destructor' => 1, - 'Header' => 'action_priv.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65517' - } - }, - 'ShortName' => 'ActionPrivate', - 'Virt' => 1 - }, - '80302' => { - 'Artificial' => 1, - 'Class' => '63748', - 'Destructor' => 1, - 'Header' => 'action_priv.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65517' - } - }, - 'ShortName' => 'ActionPrivate', - 'Virt' => 1 - }, - '80443' => { - 'Artificial' => 1, - 'Class' => '63748', - 'Destructor' => 1, - 'Header' => 'action_priv.h', - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65517' - } - }, - 'ShortName' => 'ActionPrivate', - 'Virt' => 1 - }, - '80535' => { - 'Artificial' => 1, - 'Class' => '63748', - 'Constructor' => 1, - 'Header' => 'action_priv.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65517' - } - }, - 'ShortName' => 'ActionPrivate' - }, - '80536' => { - 'Artificial' => 1, - 'Class' => '63748', - 'Constructor' => 1, - 'Header' => 'action_priv.h', - 'InLine' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7rolling6Action13ActionPrivateC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '65517' - } - }, - 'ShortName' => 'ActionPrivate' - }, - '8064293' => { - 'Class' => '407323', - 'Const' => 1, - 'Header' => 'level.h', - 'Line' => '104', - 'MnglName' => '_ZNK7log4cxx5Level8toStringERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1021053' + '2' => { + 'name' => 'iter', + 'type' => '210617' }, - '1' => { + '3' => { 'name' => 'dst', - 'type' => '650733' + 'type' => '210612' } }, - 'Private' => 1, 'Return' => '1', - 'ShortName' => 'toString', - 'Source' => 'level.cpp', - 'SourceLine' => '152' - }, - '8064831' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '161', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent6getMDCERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10216376' - }, - '1' => { - 'name' => 'key', - 'type' => '263006' - }, - '2' => { - 'name' => 'dest', - 'type' => '409210' - } - }, - 'Private' => 1, - 'Return' => '50284', - 'ShortName' => 'getMDC', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '231' - }, - '8064843' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '170', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent12getMDCKeySetB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '10216376' - } - }, - 'Private' => 1, - 'Return' => '8064794', - 'ShortName' => 'getMDCKeySet', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '253' - }, - '8065353' => { - 'Class' => '8065232', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx10JSONLayout15ClazzJSONLayout7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8068916' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '8065392' => { - 'Class' => '8065232', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv', + 'ShortName' => 'encode', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '608', + 'Static' => 1 + }, + '4971529' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'Line' => '96', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068916' + 'type' => '4993326' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210617' + }, + '3' => { + 'name' => 'p3', + 'type' => '210612' } }, - 'Return' => '8068854', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'PureVirt' => 1, + 'Return' => '1918053', + 'ShortName' => 'encode', + 'VirtPos' => '5' }, - '8065431' => { - 'Artificial' => 1, - 'Class' => '8065232', - 'Header' => 'jsonlayout.h', - 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZTch0_h0_NK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv', + '4971582' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder5resetEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068916' + 'type' => '4993331' } }, - 'Return' => '8068854', - 'ShortName' => '_ZTch0_h0_NK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv' + 'Return' => '1', + 'ShortName' => 'reset', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '599', + 'Virt' => 1, + 'VirtPos' => '6' }, - '8065518' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout25appendQuotedEscapedStringERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS6_', + '4971616' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993331' }, '1' => { - 'name' => 'buf', - 'type' => '409210' - }, - '2' => { - 'name' => 'input', - 'type' => '263006' + 'name' => 'p1', + 'type' => '210612' } }, - 'Protected' => 1, 'Return' => '1', - 'ShortName' => 'appendQuotedEscapedString', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '210' + 'ShortName' => 'flush', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '603', + 'Virt' => 1, + 'VirtPos' => '7' }, - '8065555' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout19appendSerializedMDCERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEE', + '4971682' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'Line' => '123', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19isTriviallyCopyableERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrIS1_E', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '8068888' + 'name' => 'src', + 'type' => '210597' }, '1' => { - 'name' => 'buf', - 'type' => '409210' - }, - '2' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'enc', + 'type' => '4995933' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'appendSerializedMDC', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '313' + 'Return' => '174077', + 'ShortName' => 'isTriviallyCopyable', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '631', + 'Static' => 1 }, - '8065593' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout19appendSerializedNDCERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEE', + '4971781' => { + 'Class' => '3116225', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder20createDefaultEncoderEv', + 'Private' => 1, + 'Return' => '4993326', + 'ShortName' => 'createDefaultEncoder', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '531', + 'Static' => 1 + }, + '4972653' => { + 'Class' => '4972600', + 'InLine' => 2, + 'Line' => '314', + 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993426' }, '1' => { - 'name' => 'buf', - 'type' => '409210' + 'name' => 'in', + 'type' => '210597' }, '2' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'iter', + 'type' => '210617' + }, + '3' => { + 'name' => 'out', + 'type' => '210612' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'appendSerializedNDC', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '369' + 'Return' => '1918053', + 'ShortName' => 'encode', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1, + 'VirtPos' => '5' }, - '8065631' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout28appendSerializedLocationInfoERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '4972860' => { + 'Class' => '4972810', + 'InLine' => 2, + 'Line' => '225', + 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993521' }, '1' => { - 'name' => 'buf', - 'type' => '409210' + 'name' => 'in', + 'type' => '210597' }, '2' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'iter', + 'type' => '210617' }, '3' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'out', + 'type' => '210612' } }, - 'Protected' => 1, - 'Return' => '1', - 'ShortName' => 'appendSerializedLocationInfo', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '407' + 'Return' => '1918053', + 'ShortName' => 'encode', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1, + 'VirtPos' => '5' }, - '8065674' => { - 'Class' => '8065058', - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayout10appendItemERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS6_', + '4973068' => { + 'Class' => '4973015', + 'InLine' => 2, + 'Line' => '269', + 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', 'Param' => { '0' => { - 'name' => 'input', - 'type' => '263006' + 'name' => 'this', + 'type' => '4993616' }, '1' => { - 'name' => 'buf', - 'type' => '409210' + 'name' => 'in', + 'type' => '210597' + }, + '2' => { + 'name' => 'iter', + 'type' => '210617' + }, + '3' => { + 'name' => 'out', + 'type' => '210612' } }, - 'Return' => '1', - 'ShortName' => 'appendItem', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '216', - 'Static' => 1 + 'Return' => '1918053', + 'ShortName' => 'encode', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1, + 'VirtPos' => '5' }, - '8065702' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout8getClassEv', + '4973278' => { + 'Class' => '4973225', + 'InLine' => 2, + 'Line' => '390', + 'MnglName' => '_ZN7log4cxx7helpers21UTF16BECharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993711' + }, + '1' => { + 'name' => 'in', + 'type' => '210597' + }, + '2' => { + 'name' => 'iter', + 'type' => '210617' + }, + '3' => { + 'name' => 'out', + 'type' => '210612' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '33', + 'Return' => '1918053', + 'ShortName' => 'encode', + 'Source' => 'charsetencoder.cpp', 'Virt' => 1, - 'VirtPos' => '2' - }, - '8065741' => { - 'Class' => '8065058', - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayout14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '33', - 'Static' => 1 - }, - '8065758' => { - 'Class' => '8065058', - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayout13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '33', - 'Static' => 1 + 'VirtPos' => '5' }, - '8065775' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', + '4973488' => { + 'Class' => '4973435', 'InLine' => 2, - 'Line' => '48', - 'MnglName' => '_ZNK7log4cxx10JSONLayout4castERKNS_7helpers5ClassE', + 'Line' => '425', + 'MnglName' => '_ZN7log4cxx7helpers21UTF16LECharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993806' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'in', + 'type' => '210597' + }, + '2' => { + 'name' => 'iter', + 'type' => '210617' + }, + '3' => { + 'name' => 'out', + 'type' => '210612' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '1918053', + 'ShortName' => 'encode', + 'Source' => 'charsetencoder.cpp', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '5' }, - '8065819' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', + '4973756' => { + 'Class' => '4973645', 'InLine' => 2, - 'Line' => '51', - 'MnglName' => '_ZNK7log4cxx10JSONLayout10instanceofERKNS_7helpers5ClassE', + 'Line' => '457', + 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993901' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'in', + 'type' => '210597' + }, + '2' => { + 'name' => 'iter', + 'type' => '210617' + }, + '3' => { + 'name' => 'out', + 'type' => '210612' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', + 'Return' => '1918053', + 'ShortName' => 'encode', + 'Source' => 'charsetencoder.cpp', 'Virt' => 1, - 'VirtPos' => '3' + 'VirtPos' => '5' }, - '8065943' => { - 'Class' => '8065058', - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayout15setLocationInfoEb', + '4973950' => { + 'Class' => '4973859', + 'InLine' => 2, + 'Line' => '83', + 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' + 'type' => '4993996' }, '1' => { - 'name' => 'locationInfoFlag', - 'type' => '50284' + 'name' => 'in', + 'type' => '210597' + }, + '2' => { + 'name' => 'iter', + 'type' => '210617' + }, + '3' => { + 'name' => 'out', + 'type' => '210612' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setLocationInfo', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '69' + 'Return' => '1918053', + 'ShortName' => 'encode', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1, + 'VirtPos' => '5' }, - '8065975' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout15getLocationInfoEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8068888' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getLocationInfo', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '74' + '4974983' => { + 'Data' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7classes26CharsetEncoderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'CharsetEncoderRegistration', + 'Source' => 'charsetencoder.cpp' }, - '8066006' => { - 'Class' => '8065058', - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayout14setPrettyPrintEb', + '49872205' => { + 'Class' => '3116358', + 'Header' => 'writer.h', + 'MnglName' => '_ZN7log4cxx7helpers6Writer13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'writer.cpp', + 'SourceLine' => '25', + 'Static' => 1 + }, + '49872221' => { + 'Class' => '3116358', + 'Const' => 1, + 'Header' => 'writer.h', + 'MnglName' => '_ZNK7log4cxx7helpers6Writer8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3359298' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'writer.cpp', + 'SourceLine' => '25', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '49872300' => { + 'Class' => '3116358', + 'Const' => 1, + 'Header' => 'writer.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7helpers6Writer10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3359298' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '49872406' => { + 'Class' => '3116358', + 'Header' => 'writer.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers6Writer5closeERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337134' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'close', + 'VirtPos' => '5' + }, + '49872445' => { + 'Class' => '3116358', + 'Header' => 'writer.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers6Writer5flushERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337134' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'flush', + 'VirtPos' => '6' + }, + '49872484' => { + 'Class' => '3116358', + 'Header' => 'writer.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7helpers6Writer5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337134' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'write', + 'VirtPos' => '7' + }, + '49873602' => { + 'Data' => 1, + 'Line' => '25', + 'MnglName' => '_ZN7log4cxx7classes18WriterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'WriterRegistration', + 'Source' => 'writer.cpp' + }, + '49882330' => { + 'Artificial' => 1, + 'Class' => '49871657', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878243' + } + }, + 'ShortName' => 'WideLife' + }, + '49882331' => { + 'Artificial' => 1, + 'Class' => '49871657', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878243' + } + }, + 'ShortName' => 'WideLife' + }, + '49882473' => { + 'Artificial' => 1, + 'Class' => '49871657', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878243' + } + }, + 'ShortName' => 'WideLife' + }, + '49882474' => { + 'Artificial' => 1, + 'Class' => '49871657', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878243' + } + }, + 'ShortName' => 'WideLife' + }, + '49882851' => { + 'Class' => '3116358', + 'Destructor' => 1, + 'Header' => 'writer.h', + 'MnglName' => '_ZN7log4cxx7helpers6WriterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337139' + } + }, + 'Protected' => 1, + 'ShortName' => 'Writer', + 'Source' => 'writer.cpp', + 'SourceLine' => '31', + 'Virt' => 1 + }, + '49885044' => { + 'Artificial' => 1, + 'Class' => '3116367', + 'Destructor' => 1, + 'Header' => 'writer.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878644' + } + }, + 'ShortName' => 'ClazzWriter', + 'Virt' => 1 + }, + '49885045' => { + 'Artificial' => 1, + 'Class' => '3116367', + 'Destructor' => 1, + 'Header' => 'writer.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878644' + } + }, + 'ShortName' => 'ClazzWriter', + 'Virt' => 1 + }, + '49885190' => { + 'Artificial' => 1, + 'Class' => '3116367', + 'Destructor' => 1, + 'Header' => 'writer.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878644' + } + }, + 'ShortName' => 'ClazzWriter', + 'Virt' => 1 + }, + '49885285' => { + 'Artificial' => 1, + 'Class' => '3116367', + 'Constructor' => 1, + 'Header' => 'writer.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878644' + } + }, + 'ShortName' => 'ClazzWriter' + }, + '49885286' => { + 'Artificial' => 1, + 'Class' => '3116367', + 'Constructor' => 1, + 'Header' => 'writer.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers6Writer11ClazzWriterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '49878644' + } + }, + 'ShortName' => 'ClazzWriter' + }, + '5015697' => { + 'Artificial' => 1, + 'Class' => '4972810', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '218', + 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetEncoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' - }, - '1' => { - 'name' => 'prettyPrintFlag', - 'type' => '50284' + 'type' => '4993521' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setPrettyPrint', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '79' + 'ShortName' => 'USASCIICharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8066038' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout14getPrettyPrintEv', + '5015698' => { + 'Artificial' => 1, + 'Class' => '4972810', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '218', + 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetEncoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993521' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getPrettyPrint', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '84' + 'ShortName' => 'USASCIICharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8066069' => { - 'Class' => '8065058', - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayout13setThreadInfoEb', + '5015843' => { + 'Artificial' => 1, + 'Class' => '4972810', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '218', + 'MnglName' => '_ZN7log4cxx7helpers21USASCIICharsetEncoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' - }, - '1' => { - 'name' => 'newValue', - 'type' => '50284' + 'type' => '4993521' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setThreadInfo', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '89' + 'ShortName' => 'USASCIICharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8066101' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout13getThreadInfoEv', + '5015949' => { + 'Artificial' => 1, + 'Class' => '4973015', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '262', + 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993616' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getThreadInfo', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '94' + 'ShortName' => 'ISOLatinCharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8066132' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout14getContentTypeB5cxx11Ev', + '5015950' => { + 'Artificial' => 1, + 'Class' => '4973015', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '262', + 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993616' } }, - 'Return' => '63706', - 'ShortName' => 'getContentType', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '99', - 'Virt' => 1, - 'VirtPos' => '8' + 'ShortName' => 'ISOLatinCharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8066171' => { - 'Class' => '8065058', - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayout15activateOptionsERNS_7helpers4PoolE', + '5016096' => { + 'Artificial' => 1, + 'Class' => '4973015', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '262', + 'MnglName' => '_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' + 'type' => '4993616' } }, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '104', - 'Virt' => 1, - 'VirtPos' => '5' + 'ShortName' => 'ISOLatinCharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8066212' => { - 'Class' => '8065058', - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + '5016202' => { + 'Artificial' => 1, + 'Class' => '4972600', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '306', + 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetEncoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '4993426' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '109', - 'Virt' => 1, - 'VirtPos' => '6' + 'ShortName' => 'TrivialCharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8066258' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZNK7log4cxx10JSONLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '5016203' => { + 'Artificial' => 1, + 'Class' => '4972600', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '306', + 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetEncoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' - }, - '1' => { - 'name' => 'output', - 'type' => '409210' - }, - '2' => { - 'name' => 'event', - 'type' => '154261' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '4993426' } }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '128', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'TrivialCharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8066309' => { - 'Class' => '8065058', - 'Const' => 1, - 'Header' => 'jsonlayout.h', - 'InLine' => 2, - 'Line' => '127', - 'MnglName' => '_ZNK7log4cxx10JSONLayout16ignoresThrowableEv', + '5016349' => { + 'Artificial' => 1, + 'Class' => '4972600', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '306', + 'MnglName' => '_ZN7log4cxx7helpers21TrivialCharsetEncoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068888' + 'type' => '4993426' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'ignoresThrowable', - 'Virt' => 1, - 'VirtPos' => '11' - }, - '8066390' => { - 'Data' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx7classes22JSONLayoutRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'JSONLayoutRegistration', - 'Source' => 'jsonlayout.cpp' + 'ShortName' => 'TrivialCharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8080888' => { + '5016455' => { 'Artificial' => 1, - 'Class' => '8062891', + 'Class' => '4973225', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEED2Ev', + 'Line' => '383', + 'MnglName' => '_ZN7log4cxx7helpers21UTF16BECharsetEncoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068308' + 'type' => '4993711' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'UTF16BECharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8080889' => { + '5016456' => { 'Artificial' => 1, - 'Class' => '8062891', + 'Class' => '4973225', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEED0Ev', + 'Line' => '383', + 'MnglName' => '_ZN7log4cxx7helpers21UTF16BECharsetEncoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068308' + 'type' => '4993711' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'UTF16BECharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8081030' => { + '5016602' => { 'Artificial' => 1, - 'Class' => '8062891', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '4973225', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEEC2Ev', + 'Line' => '383', + 'MnglName' => '_ZN7log4cxx7helpers21UTF16BECharsetEncoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068308' + 'type' => '4993711' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'UTF16BECharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8081031' => { + '5016708' => { 'Artificial' => 1, - 'Class' => '8062891', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '4973435', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEEC1Ev', + 'Line' => '417', + 'MnglName' => '_ZN7log4cxx7helpers21UTF16LECharsetEncoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068308' + 'type' => '4993806' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'UTF16LECharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '81518' => { - 'Artificial' => 1, - 'Class' => '63928', - 'Destructor' => 1, - 'Header' => 'action.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66114' - } - }, - 'ShortName' => 'ClazzAction', - 'Virt' => 1 - }, - '81519' => { - 'Artificial' => 1, - 'Class' => '63928', - 'Destructor' => 1, - 'Header' => 'action.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66114' - } - }, - 'ShortName' => 'ClazzAction', - 'Virt' => 1 - }, - '81659' => { - 'Artificial' => 1, - 'Class' => '63928', - 'Destructor' => 1, - 'Header' => 'action.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66114' - } - }, - 'ShortName' => 'ClazzAction', - 'Virt' => 1 - }, - '8172431' => { - 'Class' => '8065058', + '5016709' => { + 'Artificial' => 1, + 'Class' => '4973435', 'Destructor' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayoutD0Ev', + 'InLine' => 1, + 'Line' => '417', + 'MnglName' => '_ZN7log4cxx7helpers21UTF16LECharsetEncoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' + 'type' => '4993806' } }, - 'ShortName' => 'JSONLayout', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '67', + 'ShortName' => 'UTF16LECharsetEncoder', + 'Source' => 'charsetencoder.cpp', 'Virt' => 1 }, - '8172529' => { - 'Class' => '8065058', + '5016855' => { + 'Artificial' => 1, + 'Class' => '4973435', 'Destructor' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayoutD1Ev', + 'InLine' => 1, + 'Line' => '417', + 'MnglName' => '_ZN7log4cxx7helpers21UTF16LECharsetEncoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' + 'type' => '4993806' } }, - 'ShortName' => 'JSONLayout', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '67', + 'ShortName' => 'UTF16LECharsetEncoder', + 'Source' => 'charsetencoder.cpp', 'Virt' => 1 }, - '8174425' => { - 'Class' => '8065058', + '5016961' => { + 'Artificial' => 1, + 'Class' => '4973645', 'Destructor' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayoutD2Ev', + 'InLine' => 1, + 'Line' => '451', + 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetEncoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' + 'type' => '4993901' } }, - 'ShortName' => 'JSONLayout', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '67', + 'ShortName' => 'LocaleCharsetEncoder', + 'Source' => 'charsetencoder.cpp', 'Virt' => 1 }, - '81749' => { - 'Artificial' => 1, - 'Class' => '63928', - 'Constructor' => 1, - 'Header' => 'action.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66114' - } - }, - 'ShortName' => 'ClazzAction' - }, - '81750' => { - 'Artificial' => 1, - 'Class' => '63928', - 'Constructor' => 1, - 'Header' => 'action.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7rolling6Action11ClazzActionC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '66114' - } - }, - 'ShortName' => 'ClazzAction' - }, - '8176252' => { - 'Class' => '8065058', - 'Constructor' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayoutC1Ev', + '5016962' => { + 'Artificial' => 1, + 'Class' => '4973645', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '451', + 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetEncoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' + 'type' => '4993901' } }, - 'ShortName' => 'JSONLayout', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '62' + 'ShortName' => 'LocaleCharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8181227' => { - 'Class' => '8065058', - 'Constructor' => 1, - 'Header' => 'jsonlayout.h', - 'MnglName' => '_ZN7log4cxx10JSONLayoutC2Ev', + '5017108' => { + 'Artificial' => 1, + 'Class' => '4973645', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '451', + 'MnglName' => '_ZN7log4cxx7helpers20LocaleCharsetEncoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068860' + 'type' => '4993901' } }, - 'ShortName' => 'JSONLayout', - 'Source' => 'jsonlayout.cpp', - 'SourceLine' => '62' + 'ShortName' => 'LocaleCharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'Virt' => 1 }, - '8188420' => { + '50315669' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '32', + 'Static' => 1 + }, + '50316090' => { + 'Class' => '3122360', + 'Const' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZNK7log4cxx14WriterAppender17getImmediateFlushEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877625' + } + }, + 'Return' => '174077', + 'ShortName' => 'getImmediateFlush', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '325' + }, + '50316340' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppender11setEncodingERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + }, + '1' => { + 'name' => 'enc', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setEncoding', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '248' + }, + '50316451' => { + 'Class' => '3122360', + 'Const' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZNK7log4cxx14WriterAppender9getWriterEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877625' + } + }, + 'Return' => '7857384', + 'ShortName' => 'getWriter', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '330' + }, + '50316774' => { + 'Data' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7classes26WriterAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'WriterAppenderRegistration', + 'Source' => 'writerappender.cpp' + }, + '50330147' => { + 'Constructor' => 1, + 'Header' => 'outputstreamwriter.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers18OutputStreamWriterC1ERSt10shared_ptrINS0_12OutputStreamEERS2_INS0_14CharsetEncoderEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34249450' + }, + '1' => { + 'name' => 'out', + 'type' => '7877645' + }, + '2' => { + 'name' => 'enc', + 'type' => '4995928' + } + } + }, + '50362509' => { + 'Artificial' => 1, + 'Class' => '50309642', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50327533' + } + }, + 'ShortName' => 'WideLife' + }, + '50362510' => { + 'Artificial' => 1, + 'Class' => '50309642', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50327533' + } + }, + 'ShortName' => 'WideLife' + }, + '50362652' => { + 'Artificial' => 1, + 'Class' => '50309642', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50327533' + } + }, + 'ShortName' => 'WideLife' + }, + '50362653' => { + 'Artificial' => 1, + 'Class' => '50309642', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50327533' + } + }, + 'ShortName' => 'WideLife' + }, + '50423898' => { + 'Class' => '3122360', + 'Destructor' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + } + }, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '58', + 'Virt' => 1 + }, + '50423997' => { + 'Class' => '3122360', + 'Destructor' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + } + }, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '58', + 'Virt' => 1 + }, + '50424453' => { + 'Class' => '3122360', + 'Constructor' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppenderC1ESt10unique_ptrINS0_18WriterAppenderPrivESt14default_deleteIS2_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + }, + '1' => { + 'name' => 'priv', + 'type' => '7778362' + } + }, + 'Protected' => 1, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '52' + }, + '50428045' => { + 'Class' => '3122360', + 'Constructor' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppenderC1ERKSt10shared_ptrINS_6LayoutEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' + } + }, + 'Protected' => 1, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '47' + }, + '50432960' => { + 'Class' => '3122360', + 'Constructor' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppenderC2ERKSt10shared_ptrINS_6LayoutEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + }, + '2' => { + 'name' => 'layout1', + 'type' => '1391157' + } + }, + 'Protected' => 1, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '47' + }, + '50437646' => { + 'Class' => '3122360', + 'Constructor' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppenderC1ERKSt10shared_ptrINS_6LayoutEERS1_INS_7helpers6WriterEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '2' => { + 'name' => 'writer1', + 'type' => '3337129' + } + }, + 'Protected' => 1, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '39' + }, + '50443041' => { + 'Class' => '3122360', + 'Constructor' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppenderC2ERKSt10shared_ptrINS_6LayoutEERS1_INS_7helpers6WriterEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + }, + '2' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '3' => { + 'name' => 'writer1', + 'type' => '3337129' + } + }, + 'Protected' => 1, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '39' + }, + '50448173' => { + 'Class' => '3122360', + 'Constructor' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + } + }, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '34' + }, + '50451884' => { + 'Class' => '3122360', + 'Constructor' => 1, + 'Header' => 'writerappender.h', + 'MnglName' => '_ZN7log4cxx14WriterAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7877635' + } + }, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '34' + }, + '50456606' => { + 'Artificial' => 1, + 'Class' => '7862611', + 'Constructor' => 1, + 'Header' => 'writerappender_priv.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC2ERKSt10shared_ptrINS_6LayoutEERS2_INS_7helpers6WriterEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7874674' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '2' => { + 'name' => 'writer1', + 'type' => '3337129' + } + }, + 'ShortName' => 'WriterAppenderPriv' + }, + '50456607' => { + 'Artificial' => 1, + 'Class' => '7862611', + 'Constructor' => 1, + 'Header' => 'writerappender_priv.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC1ERKSt10shared_ptrINS_6LayoutEERS2_INS_7helpers6WriterEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7874674' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '2' => { + 'name' => 'writer1', + 'type' => '3337129' + } + }, + 'ShortName' => 'WriterAppenderPriv' + }, + '5047263' => { 'Artificial' => 1, - 'Class' => '8065232', + 'Class' => '4972202', 'Destructor' => 1, - 'Header' => 'jsonlayout.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068905' + 'type' => '4993301' } }, - 'ShortName' => 'ClazzJSONLayout', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '8188421' => { + '5047264' => { 'Artificial' => 1, - 'Class' => '8065232', + 'Class' => '4972202', 'Destructor' => 1, - 'Header' => 'jsonlayout.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068905' + 'type' => '4993301' } }, - 'ShortName' => 'ClazzJSONLayout', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '8188562' => { + '50475975' => { + 'Artificial' => 1, + 'Class' => '3122369', + 'Destructor' => 1, + 'Header' => 'writerappender.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50328807' + } + }, + 'ShortName' => 'ClazzWriterAppender', + 'Virt' => 1 + }, + '50475976' => { + 'Artificial' => 1, + 'Class' => '3122369', + 'Destructor' => 1, + 'Header' => 'writerappender.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50328807' + } + }, + 'ShortName' => 'ClazzWriterAppender', + 'Virt' => 1 + }, + '50476122' => { + 'Artificial' => 1, + 'Class' => '3122369', + 'Destructor' => 1, + 'Header' => 'writerappender.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50328807' + } + }, + 'ShortName' => 'ClazzWriterAppender', + 'Virt' => 1 + }, + '50476217' => { + 'Artificial' => 1, + 'Class' => '3122369', + 'Constructor' => 1, + 'Header' => 'writerappender.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50328807' + } + }, + 'ShortName' => 'ClazzWriterAppender' + }, + '50476218' => { + 'Artificial' => 1, + 'Class' => '3122369', + 'Constructor' => 1, + 'Header' => 'writerappender.h', + 'InLine' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx14WriterAppender19ClazzWriterAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50328807' + } + }, + 'ShortName' => 'ClazzWriterAppender' + }, + '5048062' => { 'Artificial' => 1, - 'Class' => '8065232', - 'Destructor' => 1, - 'Header' => 'jsonlayout.h', + 'Class' => '4972202', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '47', - 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEEC2IPS3_JEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068905' + 'type' => '4993301' + }, + '1' => { + 'name' => 'arg0', + 'type' => '5048002' } }, - 'ShortName' => 'ClazzJSONLayout', - 'Virt' => 1 + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '4993326' + } + } }, - '8188652' => { + '5048063' => { 'Artificial' => 1, - 'Class' => '8065232', + 'Class' => '4972202', 'Constructor' => 1, - 'Header' => 'jsonlayout.h', + 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '47', - 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEEC1IPS3_JEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8068905' + 'type' => '4993301' + }, + '1' => { + 'name' => 'arg0', + 'type' => '5048002' } }, - 'ShortName' => 'ClazzJSONLayout' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '4993326' + } + } }, - '8188653' => { + '5048823' => { 'Artificial' => 1, - 'Class' => '8065232', - 'Constructor' => 1, - 'Header' => 'jsonlayout.h', + 'Class' => '4970671', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx10JSONLayout15ClazzJSONLayoutC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8068905' - } - }, - 'ShortName' => 'ClazzJSONLayout' - }, - '8258326' => { - 'Class' => '8258206', - 'Const' => 1, - 'Header' => 'layout.h', - 'InLine' => 2, - 'Line' => '36', - 'MnglName' => '_ZNK7log4cxx6Layout11ClazzLayout7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8260654' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '8258417' => { - 'Class' => '409118', - 'Header' => 'layout.h', - 'MnglName' => '_ZN7log4cxx6Layout13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'layout.cpp', - 'SourceLine' => '23', - 'Static' => 1 - }, - '8258434' => { - 'Class' => '409118', - 'Const' => 1, - 'Header' => 'layout.h', - 'MnglName' => '_ZNK7log4cxx6Layout8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7499812' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'layout.cpp', - 'SourceLine' => '23', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '8258603' => { - 'Class' => '409118', - 'Const' => 1, - 'Header' => 'layout.h', - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx6Layout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7499806' - }, - '1' => { - 'name' => 'p1', - 'type' => '409210' - }, - '2' => { - 'name' => 'p2', - 'type' => '154261' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '4993000' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'format', - 'VirtPos' => '7' + 'ShortName' => 'WideLife' }, - '8258653' => { - 'Class' => '409118', - 'Const' => 1, - 'Header' => 'layout.h', - 'MnglName' => '_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev', + '5048824' => { + 'Artificial' => 1, + 'Class' => '4970671', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7499812' + 'type' => '4993000' } }, - 'Return' => '63706', - 'ShortName' => 'getContentType', - 'Source' => 'layout.cpp', - 'SourceLine' => '28', - 'Virt' => 1, - 'VirtPos' => '8' + 'ShortName' => 'WideLife' }, - '8258692' => { - 'Class' => '409118', - 'Header' => 'layout.h', - 'MnglName' => '_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '5048966' => { + 'Artificial' => 1, + 'Class' => '4970671', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7496979' - }, - '1' => { - 'name' => 'p1', - 'type' => '409210' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'type' => '4993000' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'appendHeader', - 'Source' => 'layout.cpp', - 'SourceLine' => '33', - 'Virt' => 1, - 'VirtPos' => '9' + 'ShortName' => 'WideLife' }, - '8258737' => { - 'Class' => '409118', - 'Header' => 'layout.h', - 'MnglName' => '_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '5048967' => { + 'Artificial' => 1, + 'Class' => '4970671', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7496979' - }, - '1' => { - 'name' => 'p1', - 'type' => '409210' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'type' => '4993000' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'appendFooter', - 'Source' => 'layout.cpp', - 'SourceLine' => '35', - 'Virt' => 1, - 'VirtPos' => '10' + 'ShortName' => 'WideLife' }, - '8258782' => { - 'Class' => '409118', - 'Const' => 1, - 'Header' => 'layout.h', - 'Line' => '77', - 'MnglName' => '_ZNK7log4cxx6Layout16ignoresThrowableEv', + '5074563' => { + 'Class' => '3116225', + 'Destructor' => 1, + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7499806' + 'type' => '4993331' } }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'ignoresThrowable', - 'VirtPos' => '11' - }, - '8258864' => { - 'Data' => 1, - 'Line' => '23', - 'MnglName' => '_ZN7log4cxx7classes18LayoutRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LayoutRegistration', - 'Source' => 'layout.cpp' + 'ShortName' => 'CharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '510', + 'Virt' => 1 }, - '8270243' => { - 'Artificial' => 1, - 'Class' => '8256592', + '5074564' => { + 'Class' => '3116225', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEED2Ev', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260056' + 'type' => '4993331' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'CharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '510', + 'Virt' => 1 }, - '8270244' => { - 'Artificial' => 1, - 'Class' => '8256592', + '5074658' => { + 'Class' => '3116225', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEED0Ev', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260056' + 'type' => '4993331' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'CharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '510', + 'Virt' => 1 }, - '8270385' => { - 'Artificial' => 1, - 'Class' => '8256592', + '5074775' => { + 'Class' => '3116225', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEEC2Ev', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260056' + 'type' => '4993331' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'ShortName' => 'CharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '506' }, - '8270386' => { - 'Artificial' => 1, - 'Class' => '8256592', + '5074776' => { + 'Class' => '3116225', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEEC1Ev', + 'Header' => 'charsetencoder.h', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260056' + 'type' => '4993331' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'ShortName' => 'CharsetEncoder', + 'Source' => 'charsetencoder.cpp', + 'SourceLine' => '506' }, - '8283649' => { - 'Class' => '409118', + '5082527' => { + 'Artificial' => 1, + 'Class' => '4973859', 'Destructor' => 1, - 'Header' => 'layout.h', - 'MnglName' => '_ZN7log4cxx6LayoutD0Ev', + 'InLine' => 1, + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetEncoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7496979' + 'type' => '4993996' } }, - 'ShortName' => 'Layout', - 'Source' => 'layout.cpp', - 'SourceLine' => '26', + 'ShortName' => 'APRCharsetEncoder', + 'Source' => 'charsetencoder.cpp', 'Virt' => 1 }, - '8283747' => { - 'Class' => '409118', + '5082528' => { + 'Artificial' => 1, + 'Class' => '4973859', 'Destructor' => 1, - 'Header' => 'layout.h', - 'MnglName' => '_ZN7log4cxx6LayoutD1Ev', + 'InLine' => 1, + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetEncoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7496979' + 'type' => '4993996' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Layout', - 'Source' => 'layout.cpp', - 'SourceLine' => '26', + 'ShortName' => 'APRCharsetEncoder', + 'Source' => 'charsetencoder.cpp', 'Virt' => 1 }, - '8283790' => { - 'Class' => '409118', + '5082698' => { + 'Artificial' => 1, + 'Class' => '4973859', 'Destructor' => 1, - 'Header' => 'layout.h', - 'MnglName' => '_ZN7log4cxx6LayoutD2Ev', + 'InLine' => 1, + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx7helpers17APRCharsetEncoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7496979' + 'type' => '4993996' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'Layout', - 'Source' => 'layout.cpp', - 'SourceLine' => '26', + 'ShortName' => 'APRCharsetEncoder', + 'Source' => 'charsetencoder.cpp', 'Virt' => 1 }, - '8285685' => { + '50827076' => { + 'Artificial' => 1, + 'Class' => '5656324', + 'Header' => 'xmllayout.h', + 'InLine' => 2, + 'Line' => '59', + 'MnglName' => '_ZTch0_h0_NK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50838087' + } + }, + 'Return' => '5679753', + 'ShortName' => '_ZTch0_h0_NK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv' + }, + '50827161' => { + 'Class' => '5656310', + 'Const' => 1, + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837757' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '51', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '50827199' => { + 'Class' => '5656310', + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '51', + 'Static' => 1 + }, + '50827231' => { + 'Class' => '5656310', + 'Const' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 2, + 'Line' => '60', + 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837757' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '50827274' => { + 'Class' => '5656310', + 'Const' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 2, + 'Line' => '63', + 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837757' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '50827394' => { + 'Class' => '5656310', + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout15setLocationInfoEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + }, + '1' => { + 'name' => 'locationInfo1', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setLocationInfo', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '184' + }, + '50827425' => { + 'Class' => '5656310', + 'Const' => 1, + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout15getLocationInfoEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837757' + } + }, + 'Return' => '174077', + 'ShortName' => 'getLocationInfo', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '189' + }, + '50827456' => { + 'Class' => '5656310', + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout13setPropertiesEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + }, + '1' => { + 'name' => 'flag', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setProperties', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '194' + }, + '50827487' => { + 'Class' => '5656310', + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout13getPropertiesEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + } + }, + 'Return' => '174077', + 'ShortName' => 'getProperties', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '199' + }, + '50827518' => { + 'Class' => '5656310', + 'Header' => 'xmllayout.h', + 'InLine' => 2, + 'Line' => '105', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '50827557' => { + 'Class' => '5656310', + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '61', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '50827601' => { + 'Class' => '5656310', + 'Const' => 1, + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837757' + }, + '1' => { + 'name' => 'output', + 'type' => '210592' + }, + '2' => { + 'name' => 'event', + 'type' => '576659' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '77', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '50827650' => { + 'Class' => '5656310', + 'Const' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 2, + 'Line' => '130', + 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout16ignoresThrowableEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837757' + } + }, + 'Return' => '174077', + 'ShortName' => 'ignoresThrowable', + 'Virt' => 1, + 'VirtPos' => '11' + }, + '50828311' => { + 'Data' => 1, + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7classes21XMLLayoutRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'XMLLayoutRegistration', + 'Source' => 'xmllayout.cpp' + }, + '5084963' => { 'Artificial' => 1, - 'Class' => '8258206', + 'Class' => '3116234', 'Destructor' => 1, - 'Header' => 'layout.h', + 'Header' => 'charsetencoder.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutD0Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260643' + 'type' => '4995953' } }, - 'ShortName' => 'ClazzLayout', + 'ShortName' => 'ClazzCharsetEncoder', 'Virt' => 1 }, - '8285686' => { + '5084964' => { 'Artificial' => 1, - 'Class' => '8258206', + 'Class' => '3116234', 'Destructor' => 1, - 'Header' => 'layout.h', + 'Header' => 'charsetencoder.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutD1Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260643' + 'type' => '4995953' } }, - 'ShortName' => 'ClazzLayout', + 'ShortName' => 'ClazzCharsetEncoder', 'Virt' => 1 }, - '8285827' => { + '5085109' => { 'Artificial' => 1, - 'Class' => '8258206', + 'Class' => '3116234', 'Destructor' => 1, - 'Header' => 'layout.h', + 'Header' => 'charsetencoder.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutD2Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260643' + 'type' => '4995953' } }, - 'ShortName' => 'ClazzLayout', + 'ShortName' => 'ClazzCharsetEncoder', 'Virt' => 1 }, - '8285917' => { + '5085203' => { 'Artificial' => 1, - 'Class' => '8258206', + 'Class' => '3116234', 'Constructor' => 1, - 'Header' => 'layout.h', + 'Header' => 'charsetencoder.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutC2Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260643' + 'type' => '4995953' } }, - 'ShortName' => 'ClazzLayout' + 'ShortName' => 'ClazzCharsetEncoder' }, - '8285918' => { + '5085204' => { 'Artificial' => 1, - 'Class' => '8258206', + 'Class' => '3116234', 'Constructor' => 1, - 'Header' => 'layout.h', + 'Header' => 'charsetencoder.h', 'InLine' => 1, - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx6Layout11ClazzLayoutC1Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8260643' + 'type' => '4995953' } }, - 'ShortName' => 'ClazzLayout' + 'ShortName' => 'ClazzCharsetEncoder' }, - '832608' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter19convertSpecialCharsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '50852914' => { + 'Artificial' => 1, + 'Class' => '50822309', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837066' + } + }, + 'ShortName' => 'WideLife' + }, + '50852915' => { + 'Artificial' => 1, + 'Class' => '50822309', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837066' + } + }, + 'ShortName' => 'WideLife' + }, + '50853058' => { + 'Artificial' => 1, + 'Class' => '50822309', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837066' + } + }, + 'ShortName' => 'WideLife' + }, + '50853059' => { + 'Artificial' => 1, + 'Class' => '50822309', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837066' + } + }, + 'ShortName' => 'WideLife' + }, + '50888707' => { + 'Class' => '5656310', + 'Destructor' => 1, + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + } + }, + 'ShortName' => 'XMLLayout', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '59', + 'Virt' => 1 + }, + '50888806' => { + 'Class' => '5656310', + 'Destructor' => 1, + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + } + }, + 'ShortName' => 'XMLLayout', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '59', + 'Virt' => 1 + }, + '50889326' => { + 'Class' => '5656310', + 'Destructor' => 1, + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + } + }, + 'ShortName' => 'XMLLayout', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '59', + 'Virt' => 1 + }, + '50889777' => { + 'Class' => '5656310', + 'Constructor' => 1, + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + } + }, + 'ShortName' => 'XMLLayout', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '53' + }, + '50890977' => { + 'Class' => '5656310', + 'Constructor' => 1, + 'Header' => 'xmllayout.h', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayoutC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837732' + } + }, + 'ShortName' => 'XMLLayout', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '53' + }, + '50894180' => { + 'Artificial' => 1, + 'Class' => '5656324', + 'Destructor' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 1, + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50838077' + } + }, + 'ShortName' => 'ClazzXMLLayout', + 'Virt' => 1 + }, + '50894181' => { + 'Artificial' => 1, + 'Class' => '5656324', + 'Destructor' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 1, + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50838077' + } + }, + 'ShortName' => 'ClazzXMLLayout', + 'Virt' => 1 + }, + '50894327' => { + 'Artificial' => 1, + 'Class' => '5656324', + 'Destructor' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 1, + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50838077' + } + }, + 'ShortName' => 'ClazzXMLLayout', + 'Virt' => 1 + }, + '50894422' => { + 'Artificial' => 1, + 'Class' => '5656324', + 'Constructor' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 1, + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50838077' + } + }, + 'ShortName' => 'ClazzXMLLayout' + }, + '50894423' => { + 'Artificial' => 1, + 'Class' => '5656324', + 'Constructor' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 1, + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50838077' + } + }, + 'ShortName' => 'ClazzXMLLayout' + }, + '51231761' => { + 'Class' => '16772026', + 'Header' => 'zipcompressaction.h', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'zipcompressaction.cpp', + 'SourceLine' => '45', + 'Static' => 1 + }, + '51231777' => { + 'Class' => '16772026', + 'Header' => 'zipcompressaction.h', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'zipcompressaction.cpp', + 'SourceLine' => '45', + 'Static' => 1 + }, + '51231793' => { + 'Class' => '16772026', + 'Const' => 1, + 'Header' => 'zipcompressaction.h', + 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51251317' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'zipcompressaction.cpp', + 'SourceLine' => '45', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '51231830' => { + 'Class' => '16772026', + 'Const' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51251317' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '51231872' => { + 'Class' => '16772026', + 'Const' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51251317' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '51231965' => { + 'Class' => '16772026', + 'Const' => 1, + 'Header' => 'zipcompressaction.h', + 'MnglName' => '_ZNK7log4cxx7rolling17ZipCompressAction7executeERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51251317' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '174077', + 'ShortName' => 'execute', + 'Source' => 'zipcompressaction.cpp', + 'SourceLine' => '55', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '51234626' => { + 'Data' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7classes29ZipCompressActionRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ZipCompressActionRegistration', + 'Source' => 'zipcompressaction.cpp' + }, + '51254163' => { + 'Artificial' => 1, + 'Class' => '16772026', + 'Destructor' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16788211' + } + }, + 'ShortName' => 'ZipCompressAction', + 'Virt' => 1 + }, + '51254164' => { + 'Artificial' => 1, + 'Class' => '16772026', + 'Destructor' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16788211' + } + }, + 'ShortName' => 'ZipCompressAction', + 'Virt' => 1 + }, + '51254375' => { + 'Artificial' => 1, + 'Class' => '16772026', + 'Destructor' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16788211' + } + }, + 'ShortName' => 'ZipCompressAction', + 'Virt' => 1 + }, + '51257695' => { + 'Artificial' => 1, + 'Class' => '51231544', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51250782' + } + }, + 'ShortName' => 'ZipCompressActionPrivate', + 'Source' => 'zipcompressaction.cpp', + 'Virt' => 1 + }, + '51257696' => { + 'Artificial' => 1, + 'Class' => '51231544', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51250782' + } + }, + 'ShortName' => 'ZipCompressActionPrivate', + 'Source' => 'zipcompressaction.cpp', + 'Virt' => 1 + }, + '51257941' => { + 'Artificial' => 1, + 'Class' => '51231544', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51250782' + } + }, + 'ShortName' => 'ZipCompressActionPrivate', + 'Source' => 'zipcompressaction.cpp', + 'Virt' => 1 + }, + '51261410' => { + 'Artificial' => 1, + 'Class' => '51229374', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51250671' + } + }, + 'ShortName' => 'WideLife' + }, + '51261411' => { + 'Artificial' => 1, + 'Class' => '51229374', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51250671' + } + }, + 'ShortName' => 'WideLife' + }, + '51261554' => { + 'Artificial' => 1, + 'Class' => '51229374', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51250671' + } + }, + 'ShortName' => 'WideLife' + }, + '51261555' => { + 'Artificial' => 1, + 'Class' => '51229374', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51250671' + } + }, + 'ShortName' => 'WideLife' + }, + '51270711' => { + 'Class' => '16772026', + 'Constructor' => 1, + 'Header' => 'zipcompressaction.h', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressActionC2ERKNS_4FileES4_b', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16788211' + }, + '2' => { + 'name' => 'src', + 'type' => '575822' + }, + '3' => { + 'name' => 'dest', + 'type' => '575822' + }, + '4' => { + 'name' => 'del', + 'type' => '174077' + } + }, + 'ShortName' => 'ZipCompressAction', + 'Source' => 'zipcompressaction.cpp', + 'SourceLine' => '47' + }, + '51275884' => { + 'Artificial' => 1, + 'Class' => '16772035', + 'Destructor' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51251401' + } + }, + 'ShortName' => 'ClazzZipCompressAction', + 'Virt' => 1 + }, + '51275885' => { + 'Artificial' => 1, + 'Class' => '16772035', + 'Destructor' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51251401' + } + }, + 'ShortName' => 'ClazzZipCompressAction', + 'Virt' => 1 + }, + '51276031' => { + 'Artificial' => 1, + 'Class' => '16772035', + 'Destructor' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51251401' + } + }, + 'ShortName' => 'ClazzZipCompressAction', + 'Virt' => 1 + }, + '51276126' => { + 'Artificial' => 1, + 'Class' => '16772035', + 'Constructor' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51251401' + } + }, + 'ShortName' => 'ClazzZipCompressAction' + }, + '51276127' => { + 'Artificial' => 1, + 'Class' => '16772035', + 'Constructor' => 1, + 'Header' => 'zipcompressaction.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51251401' + } + }, + 'ShortName' => 'ClazzZipCompressAction' + }, + '51473708' => { + 'Class' => '5647545', + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '63', + 'Static' => 1 + }, + '51473724' => { + 'Class' => '5647545', + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '63', + 'Static' => 1 + }, + '51473740' => { + 'Class' => '5647545', + 'Const' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477083' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '63', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '51473777' => { + 'Class' => '5647545', + 'Const' => 1, + 'Header' => 'datagrampacket.h', + 'InLine' => 2, + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477083' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '51473819' => { + 'Class' => '5647545', + 'Const' => 1, + 'Header' => 'datagrampacket.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477083' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '51474071' => { + 'Class' => '5647545', + 'Const' => 1, + 'Header' => 'datagrampacket.h', + 'Line' => '70', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket10getAddressEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477083' + } + }, + 'Return' => '19570996', + 'ShortName' => 'getAddress', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '100' + }, + '51474101' => { + 'Class' => '5647545', + 'Const' => 1, + 'Header' => 'datagrampacket.h', + 'Line' => '73', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket7getDataEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477083' + } + }, + 'Return' => '190924', + 'ShortName' => 'getData', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '105' + }, + '51474131' => { + 'Class' => '5647545', + 'Const' => 1, + 'Header' => 'datagrampacket.h', + 'Line' => '77', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket9getLengthEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477083' + } + }, + 'Return' => '190263', + 'ShortName' => 'getLength', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '110' + }, + '51474161' => { + 'Class' => '5647545', + 'Const' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket9getOffsetEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477083' + } + }, + 'Return' => '190263', + 'ShortName' => 'getOffset', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '115' + }, + '51474191' => { + 'Class' => '5647545', + 'Const' => 1, + 'Header' => 'datagrampacket.h', + 'Line' => '85', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket7getPortEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477083' + } + }, + 'Return' => '190263', + 'ShortName' => 'getPort', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '120' + }, + '51474221' => { + 'Class' => '5647545', + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket10setAddressESt10shared_ptrINS0_11InetAddressEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'address1', + 'type' => '19570996' + } + }, + 'Return' => '1', + 'ShortName' => 'setAddress', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '125' + }, + '51474252' => { + 'Class' => '5647545', + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket7setDataEPv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf1', + 'type' => '190924' + } + }, + 'Return' => '1', + 'ShortName' => 'setData', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '130' + }, + '51474283' => { + 'Class' => '5647545', + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket7setDataEPvii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf1', + 'type' => '190924' + }, + '2' => { + 'name' => 'offset1', + 'type' => '190263' + }, + '3' => { + 'name' => 'length1', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setData', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '135' + }, + '51474324' => { + 'Class' => '5647545', + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket9setLengthEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'length1', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setLength', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '142' + }, + '51474355' => { + 'Class' => '5647545', + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket7setPortEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setPort', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '147' + }, + '51475679' => { + 'Data' => 1, + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7classes26DatagramPacketRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'DatagramPacketRegistration', + 'Source' => 'datagrampacket.cpp' + }, + '51483005' => { + 'Artificial' => 1, + 'Class' => '51474467', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51476712' + } + }, + 'ShortName' => 'WideLife' + }, + '51483006' => { + 'Artificial' => 1, + 'Class' => '51474467', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51476712' + } + }, + 'ShortName' => 'WideLife' + }, + '51483147' => { + 'Artificial' => 1, + 'Class' => '51474467', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51476712' + } + }, + 'ShortName' => 'WideLife' + }, + '51483148' => { + 'Artificial' => 1, + 'Class' => '51474467', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51476712' + } + }, + 'ShortName' => 'WideLife' + }, + '51487444' => { + 'Class' => '5647545', + 'Destructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '96', + 'Virt' => 1 + }, + '51487445' => { + 'Class' => '5647545', + 'Destructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '96', + 'Virt' => 1 + }, + '51487539' => { + 'Class' => '5647545', + 'Destructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '96', + 'Virt' => 1 + }, + '51488664' => { + 'Class' => '5647545', + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC2EPviiSt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf1', + 'type' => '190924' + }, + '2' => { + 'name' => 'offset1', + 'type' => '190263' + }, + '3' => { + 'name' => 'length1', + 'type' => '190263' + }, + '4' => { + 'name' => 'address1', + 'type' => '19570996' + }, + '5' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '90' + }, + '51488665' => { + 'Class' => '5647545', + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC1EPviiSt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf1', + 'type' => '190924' + }, + '2' => { + 'name' => 'offset1', + 'type' => '190263' + }, + '3' => { + 'name' => 'length1', + 'type' => '190263' + }, + '4' => { + 'name' => 'address1', + 'type' => '19570996' + }, + '5' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '90' + }, + '51491200' => { + 'Class' => '5647545', + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC2EPvii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf1', + 'type' => '190924' + }, + '2' => { + 'name' => 'offset1', + 'type' => '190263' + }, + '3' => { + 'name' => 'length1', + 'type' => '190263' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '83' + }, + '51491201' => { + 'Class' => '5647545', + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC1EPvii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf1', + 'type' => '190924' + }, + '2' => { + 'name' => 'offset1', + 'type' => '190263' + }, + '3' => { + 'name' => 'length1', + 'type' => '190263' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '83' + }, + '51492285' => { + 'Class' => '5647545', + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC2EPviSt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf1', + 'type' => '190924' + }, + '2' => { + 'name' => 'length1', + 'type' => '190263' + }, + '3' => { + 'name' => 'address1', + 'type' => '19570996' + }, + '4' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '75' + }, + '51494770' => { + 'Class' => '5647545', + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC2EPvi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf1', + 'type' => '190924' + }, + '2' => { + 'name' => 'length1', + 'type' => '190263' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '67' + }, + '51494771' => { + 'Class' => '5647545', + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC1EPvi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf1', + 'type' => '190924' + }, + '2' => { + 'name' => 'length1', + 'type' => '190263' + } + }, + 'ShortName' => 'DatagramPacket', + 'Source' => 'datagrampacket.cpp', + 'SourceLine' => '67' + }, + '51498287' => { + 'Artificial' => 1, + 'Class' => '5647559', + 'Destructor' => 1, + 'Header' => 'datagrampacket.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477113' + } + }, + 'ShortName' => 'ClazzDatagramPacket', + 'Virt' => 1 + }, + '51498288' => { + 'Artificial' => 1, + 'Class' => '5647559', + 'Destructor' => 1, + 'Header' => 'datagrampacket.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477113' + } + }, + 'ShortName' => 'ClazzDatagramPacket', + 'Virt' => 1 + }, + '51498432' => { + 'Artificial' => 1, + 'Class' => '5647559', + 'Destructor' => 1, + 'Header' => 'datagrampacket.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477113' + } + }, + 'ShortName' => 'ClazzDatagramPacket', + 'Virt' => 1 + }, + '51498526' => { + 'Artificial' => 1, + 'Class' => '5647559', + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477113' + } + }, + 'ShortName' => 'ClazzDatagramPacket' + }, + '51498527' => { + 'Artificial' => 1, + 'Class' => '5647559', + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'InLine' => 1, + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477113' + } + }, + 'ShortName' => 'ClazzDatagramPacket' + }, + '51770201' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '27', + 'Static' => 1 + }, + '51770217' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '27', + 'Static' => 1 + }, + '51770233' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779386' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '27', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '51770270' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779386' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '51770312' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779386' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '51770390' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket4bindEiSt10shared_ptrINS0_11InetAddressEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778561' + }, + '1' => { + 'name' => 'p1', + 'type' => '190263' + }, + '2' => { + 'name' => 'p2', + 'type' => '19570996' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'bind', + 'VirtPos' => '5' + }, + '51770434' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778566' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '45', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '51770468' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket7connectESt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778561' + }, + '1' => { + 'name' => 'p1', + 'type' => '19570996' + }, + '2' => { + 'name' => 'p2', + 'type' => '190263' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'connect', + 'VirtPos' => '7' + }, + '51770512' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket14getInetAddressEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779386' + } + }, + 'Return' => '19570996', + 'ShortName' => 'getInetAddress', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '49' + }, + '51770542' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket15getLocalAddressEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779386' + } + }, + 'Return' => '19570996', + 'ShortName' => 'getLocalAddress', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '54' + }, + '51770572' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket12getLocalPortEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779386' + } + }, + 'Return' => '190263', + 'ShortName' => 'getLocalPort', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '59' + }, + '51770602' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket7getPortEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779386' + } + }, + 'Return' => '190263', + 'ShortName' => 'getPort', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '64' + }, + '51770632' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket7isBoundEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779386' + } + }, + 'Return' => '174077', + 'ShortName' => 'isBound', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '69' + }, + '51770662' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'Line' => '78', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket8isClosedEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779381' + } + }, + 'PureVirt' => 1, + 'Return' => '174077', + 'ShortName' => 'isClosed', + 'VirtPos' => '8' + }, + '51770699' => { + 'Class' => '5647684', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket11isConnectedEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779386' + } + }, + 'Return' => '174077', + 'ShortName' => 'isConnected', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '74' + }, + '51770729' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'Line' => '84', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket7receiveERSt10shared_ptrINS0_14DatagramPacketEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778561' + }, + '1' => { + 'name' => 'p1', + 'type' => '51779391' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'receive', + 'VirtPos' => '9' + }, + '51770768' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket4sendERSt10shared_ptrINS0_14DatagramPacketEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778561' + }, + '1' => { + 'name' => 'p1', + 'type' => '51779391' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'send', + 'VirtPos' => '10' + }, + '51770807' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'Line' => '91', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket6createEv', + 'Return' => '51772668', + 'ShortName' => 'create', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '79', + 'Static' => 1 + }, + '51770823' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket6createEi', + 'Param' => { + '0' => { + 'name' => 'localPort1', + 'type' => '190263' + } + }, + 'Return' => '51772668', + 'ShortName' => 'create', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '83', + 'Static' => 1 + }, + '51770850' => { + 'Class' => '5647684', + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket6createEiSt10shared_ptrINS0_11InetAddressEE', + 'Param' => { + '0' => { + 'name' => 'localPort1', + 'type' => '190263' + }, + '1' => { + 'name' => 'localAddress1', + 'type' => '19570996' + } + }, + 'Return' => '51772668', + 'ShortName' => 'create', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '91', + 'Static' => 1 + }, + '51772724' => { + 'Data' => 1, + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7classes26DatagramSocketRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'DatagramSocketRegistration', + 'Source' => 'datagramsocket.cpp' + }, + '51780489' => { + 'Constructor' => 1, + 'Header' => 'aprdatagramsocket.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC1EiSt10shared_ptrINS0_11InetAddressEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + }, + '1' => { + 'name' => 'port', + 'type' => '190263' + }, + '2' => { + 'name' => 'laddr', + 'type' => '19570996' + } + } + }, + '51780540' => { + 'Constructor' => 1, + 'Header' => 'aprdatagramsocket.h', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC1Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + }, + '1' => { + 'name' => 'port', + 'type' => '190263' + } + } + }, + '51780579' => { + 'Constructor' => 1, + 'Header' => 'aprdatagramsocket.h', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + } + } + }, + '51784254' => { + 'Artificial' => 1, + 'Class' => '5647693', + 'Destructor' => 1, + 'Header' => 'datagramsocket_priv.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5672933' + } + }, + 'ShortName' => 'DatagramSocketPriv' + }, + '51784255' => { + 'Artificial' => 1, + 'Class' => '5647693', + 'Destructor' => 1, + 'Header' => 'datagramsocket_priv.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5672933' + } + }, + 'ShortName' => 'DatagramSocketPriv' + }, + '51787525' => { + 'Artificial' => 1, + 'Class' => '51771364', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778455' + } + }, + 'ShortName' => 'WideLife' + }, + '51787526' => { + 'Artificial' => 1, + 'Class' => '51771364', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778455' + } + }, + 'ShortName' => 'WideLife' + }, + '51787669' => { + 'Artificial' => 1, + 'Class' => '51771364', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778455' + } + }, + 'ShortName' => 'WideLife' + }, + '51787670' => { + 'Artificial' => 1, + 'Class' => '51771364', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778455' + } + }, + 'ShortName' => 'WideLife' + }, + '51800941' => { + 'Class' => '5647684', + 'Destructor' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778566' + } + }, + 'ShortName' => 'DatagramSocket', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '33', + 'Virt' => 1 + }, + '51800942' => { + 'Class' => '5647684', + 'Destructor' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778566' + } + }, + 'ShortName' => 'DatagramSocket', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '33', + 'Virt' => 1 + }, + '51801036' => { + 'Class' => '5647684', + 'Destructor' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778566' + } + }, + 'ShortName' => 'DatagramSocket', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '33', + 'Virt' => 1 + }, + '51802884' => { + 'Class' => '5647684', + 'Constructor' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketC2ESt10unique_ptrINS1_18DatagramSocketPrivESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778566' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '5443713' + } + }, + 'Protected' => 1, + 'ShortName' => 'DatagramSocket', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '29' + }, + '51802885' => { + 'Class' => '5647684', + 'Constructor' => 1, + 'Header' => 'datagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocketC1ESt10unique_ptrINS1_18DatagramSocketPrivESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778566' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '5443713' + } + }, + 'Protected' => 1, + 'ShortName' => 'DatagramSocket', + 'Source' => 'datagramsocket.cpp', + 'SourceLine' => '29' + }, + '51805796' => { + 'Artificial' => 1, + 'Class' => '5647698', + 'Destructor' => 1, + 'Header' => 'datagramsocket.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779406' + } + }, + 'ShortName' => 'ClazzDatagramSocket', + 'Virt' => 1 + }, + '51805797' => { + 'Artificial' => 1, + 'Class' => '5647698', + 'Destructor' => 1, + 'Header' => 'datagramsocket.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779406' + } + }, + 'ShortName' => 'ClazzDatagramSocket', + 'Virt' => 1 + }, + '51805943' => { + 'Artificial' => 1, + 'Class' => '5647698', + 'Destructor' => 1, + 'Header' => 'datagramsocket.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779406' + } + }, + 'ShortName' => 'ClazzDatagramSocket', + 'Virt' => 1 + }, + '51806038' => { + 'Artificial' => 1, + 'Class' => '5647698', + 'Constructor' => 1, + 'Header' => 'datagramsocket.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779406' + } + }, + 'ShortName' => 'ClazzDatagramSocket' + }, + '51806039' => { + 'Artificial' => 1, + 'Class' => '5647698', + 'Constructor' => 1, + 'Header' => 'datagramsocket.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51779406' + } + }, + 'ShortName' => 'ClazzDatagramSocket' + }, + '52019970' => { + 'Class' => '51772120', + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket4bindEiSt10shared_ptrINS0_11InetAddressEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + }, + '1' => { + 'name' => 'localPort1', + 'type' => '190263' + }, + '2' => { + 'name' => 'localAddress1', + 'type' => '19570996' + } + }, + 'Return' => '1', + 'ShortName' => 'bind', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '151', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '52020014' => { + 'Class' => '51772120', + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '136', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '52020048' => { + 'Class' => '51772120', + 'Const' => 1, + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZNK7log4cxx7helpers17APRDatagramSocket8isClosedEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52031682' + } + }, + 'Return' => '174077', + 'ShortName' => 'isClosed', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '209', + 'Virt' => 1, + 'VirtPos' => '8' + }, + '52020085' => { + 'Class' => '51772120', + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket7receiveERSt10shared_ptrINS0_14DatagramPacketEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + }, + '1' => { + 'name' => 'p', + 'type' => '51779391' + } + }, + 'Return' => '1', + 'ShortName' => 'receive', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '82', + 'Virt' => 1, + 'VirtPos' => '9' + }, + '52020124' => { + 'Class' => '51772120', + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket4sendERSt10shared_ptrINS0_14DatagramPacketEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + }, + '1' => { + 'name' => 'p', + 'type' => '51779391' + } + }, + 'Return' => '1', + 'ShortName' => 'send', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '109', + 'Virt' => 1, + 'VirtPos' => '10' + }, + '52020163' => { + 'Class' => '51772120', + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket7connectESt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + }, + '1' => { + 'name' => 'address1', + 'type' => '19570996' + }, + '2' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'connect', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '180', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '52020207' => { + 'Class' => '51772120', + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocket4initEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'init', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '68' + }, + '52032882' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '228', + 'MnglName' => '_ZN7log4cxx7helpers16ConnectExceptionC1Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11525377' + }, + '1' => { + 'name' => 'status', + 'type' => '1918053' + } + } + }, + '52032949' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '248', + 'MnglName' => '_ZN7log4cxx7helpers13BindExceptionC1Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11525337' + }, + '1' => { + 'name' => 'status', + 'type' => '1918053' + } + } + }, + '52033310' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '216', + 'MnglName' => '_ZN7log4cxx7helpers15SocketExceptionC1Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11525397' + }, + '1' => { + 'name' => 'status', + 'type' => '1918053' + } + } + }, + '52035598' => { + 'Artificial' => 1, + 'Class' => '51772120', + 'Destructor' => 1, + 'Header' => 'aprdatagramsocket.h', + 'InLine' => 1, + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + } + }, + 'ShortName' => 'APRDatagramSocket', + 'Virt' => 1 + }, + '52035599' => { + 'Artificial' => 1, + 'Class' => '51772120', + 'Destructor' => 1, + 'Header' => 'aprdatagramsocket.h', + 'InLine' => 1, + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + } + }, + 'ShortName' => 'APRDatagramSocket', + 'Virt' => 1 + }, + '52035744' => { + 'Artificial' => 1, + 'Class' => '51772120', + 'Destructor' => 1, + 'Header' => 'aprdatagramsocket.h', + 'InLine' => 1, + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + } + }, + 'ShortName' => 'APRDatagramSocket', + 'Virt' => 1 + }, + '52063678' => { + 'Class' => '51772120', + 'Constructor' => 1, + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC2EiSt10shared_ptrINS0_11InetAddressEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + }, + '1' => { + 'name' => 'port', + 'type' => '190263' + }, + '2' => { + 'name' => 'laddr', + 'type' => '19570996' + } + }, + 'ShortName' => 'APRDatagramSocket', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '63' + }, + '52071809' => { + 'Class' => '51772120', + 'Constructor' => 1, + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC2Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + }, + '1' => { + 'name' => 'port', + 'type' => '190263' + } + }, + 'ShortName' => 'APRDatagramSocket', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '58' + }, + '52077459' => { + 'Class' => '51772120', + 'Constructor' => 1, + 'Header' => 'aprdatagramsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers17APRDatagramSocketC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778841' + } + }, + 'ShortName' => 'APRDatagramSocket', + 'Source' => 'aprdatagramsocket.cpp', + 'SourceLine' => '53' + }, + '52084618' => { + 'Artificial' => 1, + 'Class' => '5647693', + 'Constructor' => 1, + 'Header' => 'datagramsocket_priv.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC2EiSt10shared_ptrINS0_11InetAddressEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5672933' + }, + '1' => { + 'name' => 'localPort1', + 'type' => '190263' + }, + '2' => { + 'name' => 'localAddress1', + 'type' => '19570996' + } + }, + 'ShortName' => 'DatagramSocketPriv' + }, + '52084619' => { + 'Artificial' => 1, + 'Class' => '5647693', + 'Constructor' => 1, + 'Header' => 'datagramsocket_priv.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC1EiSt10shared_ptrINS0_11InetAddressEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5672933' + }, + '1' => { + 'name' => 'localPort1', + 'type' => '190263' + }, + '2' => { + 'name' => 'localAddress1', + 'type' => '19570996' + } + }, + 'ShortName' => 'DatagramSocketPriv' + }, + '52084801' => { + 'Artificial' => 1, + 'Class' => '5647693', + 'Constructor' => 1, + 'Header' => 'datagramsocket_priv.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC2Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5672933' + }, + '1' => { + 'name' => 'localPort1', + 'type' => '190263' + } + }, + 'ShortName' => 'DatagramSocketPriv' + }, + '52084802' => { + 'Artificial' => 1, + 'Class' => '5647693', + 'Constructor' => 1, + 'Header' => 'datagramsocket_priv.h', + 'InLine' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC1Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5672933' + }, + '1' => { + 'name' => 'localPort1', + 'type' => '190263' + } + }, + 'ShortName' => 'DatagramSocketPriv' + }, + '52084853' => { + 'Artificial' => 1, + 'Class' => '5647693', + 'Constructor' => 1, + 'Header' => 'datagramsocket_priv.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5672933' + } + }, + 'ShortName' => 'DatagramSocketPriv' + }, + '52084854' => { + 'Artificial' => 1, + 'Class' => '5647693', + 'Constructor' => 1, + 'Header' => 'datagramsocket_priv.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5672933' + } + }, + 'ShortName' => 'DatagramSocketPriv' + }, + '52345604' => { + 'Class' => '5648095', + 'Header' => 'serversocket.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket6acceptEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351582' + } + }, + 'PureVirt' => 1, + 'Return' => '52345808', + 'ShortName' => 'accept', + 'VirtPos' => '2' + }, + '52345641' => { + 'Class' => '5648095', + 'Header' => 'serversocket.h', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351587' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'serversocket.cpp', + 'SourceLine' => '36', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '52345675' => { + 'Class' => '5648095', + 'Const' => 1, + 'Header' => 'serversocket.h', + 'MnglName' => '_ZNK7log4cxx7helpers12ServerSocket12getSoTimeoutEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52352431' + } + }, + 'Return' => '190263', + 'ShortName' => 'getSoTimeout', + 'Source' => 'serversocket.cpp', + 'SourceLine' => '42' + }, + '52345705' => { + 'Class' => '5648095', + 'Header' => 'serversocket.h', + 'Line' => '58', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket12setSoTimeoutEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351587' + }, + '1' => { + 'name' => 'newVal', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setSoTimeout', + 'Source' => 'serversocket.cpp', + 'SourceLine' => '49' + }, + '52345737' => { + 'Class' => '5648095', + 'Header' => 'serversocket.h', + 'Line' => '60', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket6createEi', + 'Param' => { + '0' => { + 'name' => 'port', + 'type' => '190263' + } + }, + 'Return' => '52345820', + 'ShortName' => 'create', + 'Source' => 'serversocket.cpp', + 'SourceLine' => '54', + 'Static' => 1 + }, + '52353450' => { + 'Constructor' => 1, + 'Header' => 'aprserversocket.h', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketC1Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351862' + }, + '1' => { + 'name' => 'port', + 'type' => '190263' + } + } + }, + '52358996' => { + 'Class' => '5648095', + 'Destructor' => 1, + 'Header' => 'serversocket.h', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351587' + } + }, + 'ShortName' => 'ServerSocket', + 'Source' => 'serversocket.cpp', + 'SourceLine' => '31', + 'Virt' => 1 + }, + '52358997' => { + 'Class' => '5648095', + 'Destructor' => 1, + 'Header' => 'serversocket.h', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351587' + } + }, + 'ShortName' => 'ServerSocket', + 'Source' => 'serversocket.cpp', + 'SourceLine' => '31', + 'Virt' => 1 + }, + '52359093' => { + 'Class' => '5648095', + 'Destructor' => 1, + 'Header' => 'serversocket.h', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351587' + } + }, + 'ShortName' => 'ServerSocket', + 'Source' => 'serversocket.cpp', + 'SourceLine' => '31', + 'Virt' => 1 + }, + '52359498' => { + 'Class' => '5648095', + 'Constructor' => 1, + 'Header' => 'serversocket.h', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketC2ESt10unique_ptrINS1_19ServerSocketPrivateESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351587' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '5460681' + } + }, + 'Protected' => 1, + 'ShortName' => 'ServerSocket', + 'Source' => 'serversocket.cpp', + 'SourceLine' => '26' + }, + '52359499' => { + 'Class' => '5648095', + 'Constructor' => 1, + 'Header' => 'serversocket.h', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocketC1ESt10unique_ptrINS1_19ServerSocketPrivateESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351587' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '5460681' + } + }, + 'Protected' => 1, + 'ShortName' => 'ServerSocket', + 'Source' => 'serversocket.cpp', + 'SourceLine' => '26' + }, + '52624290' => { + 'Class' => '52345767', + 'Header' => 'aprserversocket.h', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351862' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'aprserversocket.cpp', + 'SourceLine' => '84', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '52624324' => { + 'Class' => '52345767', + 'Header' => 'aprserversocket.h', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket6acceptEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351862' + } + }, + 'Return' => '52345808', + 'ShortName' => 'accept', + 'Source' => 'aprserversocket.cpp', + 'SourceLine' => '104', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '52642426' => { + 'Constructor' => 1, + 'Header' => 'aprsocket.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocketC1EP12apr_socket_tP10apr_pool_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640660' + }, + '1' => { + 'name' => 'p1', + 'type' => '52640745' + }, + '2' => { + 'name' => 'pool', + 'type' => '210753' + } + } + }, + '52642614' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '277', + 'MnglName' => '_ZN7log4cxx7helpers22SocketTimeoutExceptionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11525297' + } + } + }, + '52642684' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '92', + 'MnglName' => '_ZN7log4cxx7helpers11IOExceptionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11525617' + } + } + }, + '52649086' => { + 'Artificial' => 1, + 'Class' => '52345767', + 'Destructor' => 1, + 'Header' => 'aprserversocket.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351862' + } + }, + 'ShortName' => 'APRServerSocket', + 'Virt' => 1 + }, + '52649087' => { + 'Artificial' => 1, + 'Class' => '52345767', + 'Destructor' => 1, + 'Header' => 'aprserversocket.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351862' + } + }, + 'ShortName' => 'APRServerSocket', + 'Virt' => 1 + }, + '52649232' => { + 'Artificial' => 1, + 'Class' => '52345767', + 'Destructor' => 1, + 'Header' => 'aprserversocket.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351862' + } + }, + 'ShortName' => 'APRServerSocket', + 'Virt' => 1 + }, + '52654679' => { + 'Artificial' => 1, + 'Class' => '52624015', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640150' + } + }, + 'ShortName' => 'APRServerSocketPriv', + 'Source' => 'aprserversocket.cpp', + 'Virt' => 1 + }, + '52654680' => { + 'Artificial' => 1, + 'Class' => '52624015', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640150' + } + }, + 'ShortName' => 'APRServerSocketPriv', + 'Source' => 'aprserversocket.cpp', + 'Virt' => 1 + }, + '52654878' => { + 'Artificial' => 1, + 'Class' => '52624015', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640150' + } + }, + 'ShortName' => 'APRServerSocketPriv', + 'Source' => 'aprserversocket.cpp', + 'Virt' => 1 + }, + '52656884' => { + 'Artificial' => 1, + 'Class' => '5648104', + 'Destructor' => 1, + 'Header' => 'serversocket_priv.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673628' + } + }, + 'ShortName' => 'ServerSocketPrivate', + 'Virt' => 1 + }, + '52656885' => { + 'Artificial' => 1, + 'Class' => '5648104', + 'Destructor' => 1, + 'Header' => 'serversocket_priv.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673628' + } + }, + 'ShortName' => 'ServerSocketPrivate', + 'Virt' => 1 + }, + '52657011' => { + 'Artificial' => 1, + 'Class' => '5648104', + 'Destructor' => 1, + 'Header' => 'serversocket_priv.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673628' + } + }, + 'ShortName' => 'ServerSocketPrivate', + 'Virt' => 1 + }, + '52664052' => { + 'Class' => '52345767', + 'Constructor' => 1, + 'Header' => 'aprserversocket.h', + 'MnglName' => '_ZN7log4cxx7helpers15APRServerSocketC2Ei', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52351862' + }, + '1' => { + 'name' => 'port', + 'type' => '190263' + } + }, + 'ShortName' => 'APRServerSocket', + 'Source' => 'aprserversocket.cpp', + 'SourceLine' => '38' + }, + '52668280' => { + 'Artificial' => 1, + 'Class' => '5648104', + 'Constructor' => 1, + 'Header' => 'serversocket_priv.h', + 'InLine' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673628' + } + }, + 'ShortName' => 'ServerSocketPrivate' + }, + '52668281' => { + 'Artificial' => 1, + 'Class' => '5648104', + 'Constructor' => 1, + 'Header' => 'serversocket_priv.h', + 'InLine' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673628' + } + }, + 'ShortName' => 'ServerSocketPrivate' + }, + '52885664' => { + 'Class' => '5647956', + 'Header' => 'socket.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers6Socket14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'socket.cpp', + 'SourceLine' => '27', + 'Static' => 1 + }, + '52885680' => { + 'Class' => '5647956', + 'Header' => 'socket.h', + 'MnglName' => '_ZN7log4cxx7helpers6Socket13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'socket.cpp', + 'SourceLine' => '27', + 'Static' => 1 + }, + '52885696' => { + 'Class' => '5647956', + 'Const' => 1, + 'Header' => 'socket.h', + 'Line' => '50', + 'MnglName' => '_ZNK7log4cxx7helpers6Socket8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889598' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'socket.cpp', + 'SourceLine' => '27', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '52885733' => { + 'Class' => '5647956', + 'Const' => 1, + 'Header' => 'socket.h', + 'InLine' => 2, + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx7helpers6Socket4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889598' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '52885775' => { + 'Class' => '5647956', + 'Const' => 1, + 'Header' => 'socket.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx7helpers6Socket10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889598' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '52885853' => { + 'Class' => '5647956', + 'Header' => 'socket.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx7helpers6Socket5writeERNS0_10ByteBufferE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52668798' + }, + '1' => { + 'name' => 'p1', + 'type' => '210612' + } + }, + 'PureVirt' => 1, + 'Return' => '190816', + 'ShortName' => 'write', + 'VirtPos' => '5' + }, + '52885895' => { + 'Class' => '5647956', + 'Header' => 'socket.h', + 'Line' => '60', + 'MnglName' => '_ZN7log4cxx7helpers6Socket5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52668798' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'close', + 'VirtPos' => '6' + }, + '52885929' => { + 'Class' => '5647956', + 'Const' => 1, + 'Header' => 'socket.h', + 'MnglName' => '_ZNK7log4cxx7helpers6Socket14getInetAddressEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889598' + } + }, + 'Return' => '19570996', + 'ShortName' => 'getInetAddress', + 'Source' => 'socket.cpp', + 'SourceLine' => '38' + }, + '52885959' => { + 'Class' => '5647956', + 'Const' => 1, + 'Header' => 'socket.h', + 'MnglName' => '_ZNK7log4cxx7helpers6Socket7getPortEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889598' + } + }, + 'Return' => '190263', + 'ShortName' => 'getPort', + 'Source' => 'socket.cpp', + 'SourceLine' => '43' + }, + '52885989' => { + 'Class' => '5647956', + 'Header' => 'socket.h', + 'Line' => '68', + 'MnglName' => '_ZN7log4cxx7helpers6Socket6createERSt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'address', + 'type' => '52889603' + }, + '1' => { + 'name' => 'port', + 'type' => '190263' + } + }, + 'Return' => '52887329', + 'ShortName' => 'create', + 'Source' => 'socket.cpp', + 'SourceLine' => '48', + 'Static' => 1 + }, + '52887380' => { + 'Data' => 1, + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx7classes18SocketRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'SocketRegistration', + 'Source' => 'socket.cpp' + }, + '52890695' => { + 'Constructor' => 1, + 'Header' => 'aprsocket.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocketC1ERSt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640660' + }, + '1' => { + 'name' => 'address', + 'type' => '52889603' + }, + '2' => { + 'name' => 'port', + 'type' => '190263' + } + } + }, + '52896956' => { + 'Artificial' => 1, + 'Class' => '52886089', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888672' + } + }, + 'ShortName' => 'WideLife' + }, + '52896957' => { + 'Artificial' => 1, + 'Class' => '52886089', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888672' + } + }, + 'ShortName' => 'WideLife' + }, + '52897099' => { + 'Artificial' => 1, + 'Class' => '52886089', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888672' + } + }, + 'ShortName' => 'WideLife' + }, + '52897100' => { + 'Artificial' => 1, + 'Class' => '52886089', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888672' + } + }, + 'ShortName' => 'WideLife' + }, + '52900255' => { + 'Class' => '5647956', + 'Destructor' => 1, + 'Header' => 'socket.h', + 'MnglName' => '_ZN7log4cxx7helpers6SocketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888788' + } + }, + 'ShortName' => 'Socket', + 'Source' => 'socket.cpp', + 'SourceLine' => '34', + 'Virt' => 1 + }, + '52900256' => { + 'Class' => '5647956', + 'Destructor' => 1, + 'Header' => 'socket.h', + 'MnglName' => '_ZN7log4cxx7helpers6SocketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888788' + } + }, + 'ShortName' => 'Socket', + 'Source' => 'socket.cpp', + 'SourceLine' => '34', + 'Virt' => 1 + }, + '52900351' => { + 'Class' => '5647956', + 'Destructor' => 1, + 'Header' => 'socket.h', + 'MnglName' => '_ZN7log4cxx7helpers6SocketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888788' + } + }, + 'ShortName' => 'Socket', + 'Source' => 'socket.cpp', + 'SourceLine' => '34', + 'Virt' => 1 + }, + '52900781' => { + 'Class' => '5647956', + 'Constructor' => 1, + 'Header' => 'socket.h', + 'MnglName' => '_ZN7log4cxx7helpers6SocketC2ESt10unique_ptrINS1_13SocketPrivateESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888788' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '5455025' + } + }, + 'Protected' => 1, + 'ShortName' => 'Socket', + 'Source' => 'socket.cpp', + 'SourceLine' => '29' + }, + '52900782' => { + 'Class' => '5647956', + 'Constructor' => 1, + 'Header' => 'socket.h', + 'MnglName' => '_ZN7log4cxx7helpers6SocketC1ESt10unique_ptrINS1_13SocketPrivateESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888788' + }, + '1' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '5455025' + } + }, + 'Protected' => 1, + 'ShortName' => 'Socket', + 'Source' => 'socket.cpp', + 'SourceLine' => '29' + }, + '52903555' => { + 'Artificial' => 1, + 'Class' => '5647970', + 'Destructor' => 1, + 'Header' => 'socket.h', + 'InLine' => 1, + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889651' + } + }, + 'ShortName' => 'ClazzSocket', + 'Virt' => 1 + }, + '52903556' => { + 'Artificial' => 1, + 'Class' => '5647970', + 'Destructor' => 1, + 'Header' => 'socket.h', + 'InLine' => 1, + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889651' + } + }, + 'ShortName' => 'ClazzSocket', + 'Virt' => 1 + }, + '52903701' => { + 'Artificial' => 1, + 'Class' => '5647970', + 'Destructor' => 1, + 'Header' => 'socket.h', + 'InLine' => 1, + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889651' + } + }, + 'ShortName' => 'ClazzSocket', + 'Virt' => 1 + }, + '52903796' => { + 'Artificial' => 1, + 'Class' => '5647970', + 'Constructor' => 1, + 'Header' => 'socket.h', + 'InLine' => 1, + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889651' + } + }, + 'ShortName' => 'ClazzSocket' + }, + '52903797' => { + 'Artificial' => 1, + 'Class' => '5647970', + 'Constructor' => 1, + 'Header' => 'socket.h', + 'InLine' => 1, + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers6Socket11ClazzSocketC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52889651' + } + }, + 'ShortName' => 'ClazzSocket' + }, + '53122873' => { + 'Class' => '52624395', + 'Header' => 'aprsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocket5writeERNS0_10ByteBufferE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640660' + }, + '1' => { + 'name' => 'buf', + 'type' => '210612' + } + }, + 'Return' => '190816', + 'ShortName' => 'write', + 'Source' => 'aprsocket.cpp', + 'SourceLine' => '109', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '53122915' => { + 'Class' => '52624395', + 'Header' => 'aprsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocket5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640660' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'aprsocket.cpp', + 'SourceLine' => '147', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '53135899' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '236', + 'MnglName' => '_ZN7log4cxx7helpers22ClosedChannelExceptionC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11525357' + } + } + }, + '53135926' => { + 'Constructor' => 1, + 'Header' => 'inetaddress.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7helpers11InetAddressC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19585200' + }, + '1' => { + 'name' => 'hostName', + 'type' => '210597' + }, + '2' => { + 'name' => 'hostAddr', + 'type' => '210597' + } + } + }, + '53135977' => { + 'Constructor' => 1, + 'Header' => 'pool.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers4PoolC1EP10apr_pool_tb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210748' + }, + '1' => { + 'name' => 'pool', + 'type' => '210753' + }, + '2' => { + 'name' => 'release', + 'type' => '174077' + } + } + }, + '53140970' => { + 'Artificial' => 1, + 'Class' => '52624395', + 'Destructor' => 1, + 'Header' => 'aprsocket.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocketD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640660' + } + }, + 'ShortName' => 'APRSocket', + 'Virt' => 1 + }, + '53140971' => { + 'Artificial' => 1, + 'Class' => '52624395', + 'Destructor' => 1, + 'Header' => 'aprsocket.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocketD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640660' + } + }, + 'ShortName' => 'APRSocket', + 'Virt' => 1 + }, + '53141116' => { + 'Artificial' => 1, + 'Class' => '52624395', + 'Destructor' => 1, + 'Header' => 'aprsocket.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocketD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640660' + } + }, + 'ShortName' => 'APRSocket', + 'Virt' => 1 + }, + '53147951' => { + 'Artificial' => 1, + 'Class' => '53122522', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53133837' + } + }, + 'ShortName' => 'APRSocketPriv', + 'Source' => 'aprsocket.cpp', + 'Virt' => 1 + }, + '53147952' => { + 'Artificial' => 1, + 'Class' => '53122522', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53133837' + } + }, + 'ShortName' => 'APRSocketPriv', + 'Source' => 'aprsocket.cpp', + 'Virt' => 1 + }, + '53148756' => { + 'Artificial' => 1, + 'Class' => '53122522', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53133837' + } + }, + 'ShortName' => 'APRSocketPriv', + 'Source' => 'aprsocket.cpp', + 'Virt' => 1 + }, + '53155082' => { + 'Class' => '52624395', + 'Constructor' => 1, + 'Header' => 'aprsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocketC2EP12apr_socket_tP10apr_pool_t', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640660' + }, + '1' => { + 'name' => 's', + 'type' => '52031027' + }, + '2' => { + 'name' => 'pool', + 'type' => '1930256' + } + }, + 'ShortName' => 'APRSocket', + 'Source' => 'aprsocket.cpp', + 'SourceLine' => '81' + }, + '53169054' => { + 'Class' => '52624395', + 'Constructor' => 1, + 'Header' => 'aprsocket.h', + 'MnglName' => '_ZN7log4cxx7helpers9APRSocketC2ERSt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52640660' + }, + '1' => { + 'name' => 'address', + 'type' => '52889603' + }, + '2' => { + 'name' => 'port', + 'type' => '190263' + } + }, + 'ShortName' => 'APRSocket', + 'Source' => 'aprsocket.cpp', + 'SourceLine' => '48' + }, + '53176059' => { + 'Artificial' => 1, + 'Class' => '5647965', + 'Destructor' => 1, + 'Header' => 'socket_priv.h', + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673398' + } + }, + 'ShortName' => 'SocketPrivate', + 'Virt' => 1 + }, + '53176060' => { + 'Artificial' => 1, + 'Class' => '5647965', + 'Destructor' => 1, + 'Header' => 'socket_priv.h', + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673398' + } + }, + 'ShortName' => 'SocketPrivate', + 'Virt' => 1 + }, + '53176804' => { + 'Artificial' => 1, + 'Class' => '5647965', + 'Destructor' => 1, + 'Header' => 'socket_priv.h', + 'InLine' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673398' + } + }, + 'ShortName' => 'SocketPrivate', + 'Virt' => 1 + }, + '53177531' => { + 'Artificial' => 1, + 'Class' => '5647965', + 'Constructor' => 1, + 'Header' => 'socket_priv.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateC2ERKSt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673398' + }, + '1' => { + 'name' => 'addr', + 'type' => '52889641' + }, + '2' => { + 'name' => '_port', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketPrivate' + }, + '53177532' => { + 'Artificial' => 1, + 'Class' => '5647965', + 'Constructor' => 1, + 'Header' => 'socket_priv.h', + 'InLine' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7helpers6Socket13SocketPrivateC1ERKSt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5673398' + }, + '1' => { + 'name' => 'addr', + 'type' => '52889641' + }, + '2' => { + 'name' => '_port', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketPrivate' + }, + '53674037' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility12createThreadIMNS_3net14TelnetAppenderEFvvEJPS4_EEESt6threadNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2520206' + }, + '1' => { + 'name' => 'name', + 'type' => '209661' + }, + '2' => { + 'name' => 'f', + 'type' => '53697966' + }, + '3' => { + 'name' => 'p3', + 'type' => '53697971' + } + }, + 'Return' => '1797924', + 'ShortName' => 'createThread', + 'TParam' => { + '0' => { + 'key' => 'Function', + 'type' => '53694980' + }, + '1' => { + 'key' => undef, + 'type' => '5680178' + } + } + }, + '53680109' => { + 'Artificial' => 1, + 'Class' => '5659665', + 'Header' => 'telnetappender.h', + 'InLine' => 2, + 'Line' => '73', + 'MnglName' => '_ZTch0_h0_NK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695990' + } + }, + 'Return' => '5680178', + 'ShortName' => '_ZTch0_h0_NK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv' + }, + '53680392' => { + 'Class' => '5659656', + 'Data' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender12DEFAULT_PORTE', + 'Private' => 1, + 'Return' => '190271', + 'ShortName' => 'DEFAULT_PORT', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '56' + }, + '53680410' => { + 'Class' => '5659656', + 'Data' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender15MAX_CONNECTIONSE', + 'Private' => 1, + 'Return' => '190271', + 'ShortName' => 'MAX_CONNECTIONS', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '59' + }, + '53680428' => { + 'Class' => '5659656', + 'Const' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695896' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '32', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '53680465' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '32', + 'Static' => 1 + }, + '53680497' => { + 'Class' => '5659656', + 'Const' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 2, + 'Line' => '74', + 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695896' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '53680539' => { + 'Class' => '5659656', + 'Const' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 2, + 'Line' => '77', + 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695896' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '53680657' => { + 'Class' => '5659656', + 'Const' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 2, + 'Line' => '85', + 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender14requiresLayoutEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695896' + } + }, + 'Return' => '174077', + 'ShortName' => 'requiresLayout', + 'Virt' => 1, + 'VirtPos' => '16' + }, + '53680694' => { + 'Class' => '5659656', + 'Const' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender11getEncodingB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695896' + } + }, + 'Return' => '209661', + 'ShortName' => 'getEncoding', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '99' + }, + '53680725' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender11setEncodingERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + }, + '1' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setEncoding', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '105' + }, + '53680756' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '71', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '53680796' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '82', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '53680841' => { + 'Class' => '5659656', + 'Const' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender7getPortEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695896' + } + }, + 'Return' => '190263', + 'ShortName' => 'getPort', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '312' + }, + '53680873' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender7setPortEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + }, + '1' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setPort', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '317' + }, + '53680906' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '113', + 'Virt' => 1, + 'VirtPos' => '10' + }, + '53680941' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'append', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '197', + 'Virt' => 1, + 'VirtPos' => '17' + }, + '53681062' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender5writeERNS_7helpers10ByteBufferE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + }, + '1' => { + 'name' => 'buf', + 'type' => '210612' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '157' + }, + '53681093' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender11writeStatusERKSt10shared_ptrINS_7helpers6SocketEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + }, + '1' => { + 'name' => 'socket', + 'type' => '53695926' + }, + '2' => { + 'name' => 'msg', + 'type' => '210597' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'writeStatus', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '180' + }, + '53681134' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender17acceptConnectionsEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'acceptConnections', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '235' + }, + '53681197' => { + 'Data' => 1, + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7classes26TelnetAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'TelnetAppenderRegistration', + 'Source' => 'telnetappender.cpp' + }, + '53719405' => { + 'Artificial' => 1, + 'Class' => '53680136', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694378' + } + }, + 'ShortName' => 'TelnetAppenderPriv', + 'Source' => 'telnetappender.cpp', + 'Virt' => 1 + }, + '53719406' => { + 'Artificial' => 1, + 'Class' => '53680136', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694378' + } + }, + 'ShortName' => 'TelnetAppenderPriv', + 'Source' => 'telnetappender.cpp', + 'Virt' => 1 + }, + '53726611' => { + 'Artificial' => 1, + 'Class' => '53680136', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694378' + } + }, + 'ShortName' => 'TelnetAppenderPriv', + 'Source' => 'telnetappender.cpp', + 'Virt' => 1 + }, + '53748217' => { + 'Artificial' => 1, + 'Class' => '53674354', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53693616' + } + }, + 'ShortName' => 'WideLife' + }, + '53748218' => { + 'Artificial' => 1, + 'Class' => '53674354', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53693616' + } + }, + 'ShortName' => 'WideLife' + }, + '53748360' => { + 'Artificial' => 1, + 'Class' => '53674354', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53693616' + } + }, + 'ShortName' => 'WideLife' + }, + '53748361' => { + 'Artificial' => 1, + 'Class' => '53674354', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53693616' + } + }, + 'ShortName' => 'WideLife' + }, + '53784607' => { + 'Class' => '5659656', + 'Destructor' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + } + }, + 'ShortName' => 'TelnetAppender', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '66', + 'Virt' => 1 + }, + '53784706' => { + 'Class' => '5659656', + 'Destructor' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + } + }, + 'ShortName' => 'TelnetAppender', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '66', + 'Virt' => 1 + }, + '53784995' => { + 'Class' => '5659656', + 'Destructor' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + } + }, + 'ShortName' => 'TelnetAppender', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '66', + 'Virt' => 1 + }, + '53785150' => { + 'Class' => '5659656', + 'Constructor' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + } + }, + 'ShortName' => 'TelnetAppender', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '61' + }, + '53790740' => { + 'Class' => '5659656', + 'Constructor' => 1, + 'Header' => 'telnetappender.h', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53694975' + } + }, + 'ShortName' => 'TelnetAppender', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '61' + }, + '53811547' => { + 'Artificial' => 1, + 'Class' => '5659665', + 'Destructor' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 1, + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695980' + } + }, + 'ShortName' => 'ClazzTelnetAppender', + 'Virt' => 1 + }, + '53811548' => { + 'Artificial' => 1, + 'Class' => '5659665', + 'Destructor' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 1, + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695980' + } + }, + 'ShortName' => 'ClazzTelnetAppender', + 'Virt' => 1 + }, + '53811694' => { + 'Artificial' => 1, + 'Class' => '5659665', + 'Destructor' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 1, + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695980' + } + }, + 'ShortName' => 'ClazzTelnetAppender', + 'Virt' => 1 + }, + '53811789' => { + 'Artificial' => 1, + 'Class' => '5659665', + 'Constructor' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 1, + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695980' + } + }, + 'ShortName' => 'ClazzTelnetAppender' + }, + '53811790' => { + 'Artificial' => 1, + 'Class' => '5659665', + 'Constructor' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 1, + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53695980' + } + }, + 'ShortName' => 'ClazzTelnetAppender' + }, + '54315692' => { + 'Class' => '2500954', + 'Header' => 'threadutility.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility12createThreadIMNS_3net22SocketAppenderSkeletonEFvvEJPS4_EEESt6threadNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEOT_DpOT0_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2520206' + }, + '1' => { + 'name' => 'name', + 'type' => '209661' + }, + '2' => { + 'name' => 'f', + 'type' => '54338655' + }, + '3' => { + 'name' => 'p3', + 'type' => '54338660' + } + }, + 'Return' => '1797924', + 'ShortName' => 'createThread', + 'TParam' => { + '0' => { + 'key' => 'Function', + 'type' => '54335476' + }, + '1' => { + 'key' => undef, + 'type' => '54335155' + } + } + }, + '54321265' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '63', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '54321305' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '69', + 'Virt' => 1, + 'VirtPos' => '10' + }, + '54321340' => { + 'Class' => '54320705', + 'Const' => 1, + 'Header' => 'socketappenderskeleton.h', + 'InLine' => 2, + 'Line' => '69', + 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton14requiresLayoutEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54336718' + } + }, + 'Return' => '174077', + 'ShortName' => 'requiresLayout', + 'Virt' => 1, + 'VirtPos' => '16' + }, + '54321378' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton13setRemoteHostERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'host', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setRemoteHost', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '219' + }, + '54321410' => { + 'Class' => '54320705', + 'Const' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton13getRemoteHostB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54336718' + } + }, + 'Return' => '210597', + 'ShortName' => 'getRemoteHost', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '225' + }, + '54321440' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton7setPortEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setPort', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '230' + }, + '54321472' => { + 'Class' => '54320705', + 'Const' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton7getPortEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54336718' + } + }, + 'Return' => '190263', + 'ShortName' => 'getPort', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '235' + }, + '54321502' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton15setLocationInfoEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'locationInfo1', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setLocationInfo', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '240' + }, + '54321534' => { + 'Class' => '54320705', + 'Const' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton15getLocationInfoEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54336718' + } + }, + 'Return' => '174077', + 'ShortName' => 'getLocationInfo', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '245' + }, + '54321564' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton20setReconnectionDelayEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'reconnectionDelay1', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setReconnectionDelay', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '250' + }, + '54321596' => { + 'Class' => '54320705', + 'Const' => 1, + 'Header' => 'socketappenderskeleton.h', + 'Line' => '123', + 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton20getReconnectionDelayEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54336718' + } + }, + 'Return' => '190263', + 'ShortName' => 'getReconnectionDelay', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '255' + }, + '54321626' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'Line' => '125', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton13fireConnectorEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + } + }, + 'Return' => '1', + 'ShortName' => 'fireConnector', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '150' + }, + '54321653' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'Line' => '142', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '126', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '54321740' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'Line' => '147', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton9setSocketERSt10shared_ptrINS_7helpers6SocketEERNS3_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335155' + }, + '1' => { + 'name' => 'p1', + 'type' => '54336723' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' + } + }, + 'Protected' => 1, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'setSocket', + 'VirtPos' => '18' + }, + '54321785' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'Line' => '149', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton7cleanUpERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335155' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Protected' => 1, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'cleanUp', + 'VirtPos' => '19' + }, + '54321825' => { + 'Class' => '54320705', + 'Const' => 1, + 'Header' => 'socketappenderskeleton.h', + 'Line' => '151', + 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton15getDefaultDelayEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54336713' + } + }, + 'Protected' => 1, + 'PureVirt' => 1, + 'Return' => '190263', + 'ShortName' => 'getDefaultDelay', + 'VirtPos' => '20' + }, + '54321863' => { + 'Class' => '54320705', + 'Const' => 1, + 'Header' => 'socketappenderskeleton.h', + 'Line' => '153', + 'MnglName' => '_ZNK7log4cxx3net22SocketAppenderSkeleton14getDefaultPortEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54336713' + } + }, + 'Protected' => 1, + 'PureVirt' => 1, + 'Return' => '190263', + 'ShortName' => 'getDefaultPort', + 'VirtPos' => '21' + }, + '54321901' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton7connectERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'connect', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '92' + }, + '54321932' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton7monitorEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + } + }, + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'monitor', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '162' + }, + '54321958' => { + 'Class' => '54320705', + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton9is_closedEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + } + }, + 'Private' => 1, + 'Return' => '174077', + 'ShortName' => 'is_closed', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '214' + }, + '54368400' => { + 'Artificial' => 1, + 'Class' => '54320723', + 'Destructor' => 1, + 'Header' => 'socketappenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54334463' + } + }, + 'ShortName' => 'SocketAppenderSkeletonPriv', + 'Virt' => 1 + }, + '54368401' => { + 'Artificial' => 1, + 'Class' => '54320723', + 'Destructor' => 1, + 'Header' => 'socketappenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54334463' + } + }, + 'ShortName' => 'SocketAppenderSkeletonPriv', + 'Virt' => 1 + }, + '54373899' => { + 'Artificial' => 1, + 'Class' => '54320723', + 'Destructor' => 1, + 'Header' => 'socketappenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54334463' + } + }, + 'ShortName' => 'SocketAppenderSkeletonPriv', + 'Virt' => 1 + }, + '54447427' => { + 'Class' => '54320705', + 'Destructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + } + }, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '58', + 'Virt' => 1 + }, + '54447526' => { + 'Class' => '54320705', + 'Destructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + } + }, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '58', + 'Virt' => 1 + }, + '54447633' => { + 'Class' => '54320705', + 'Destructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + } + }, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '58', + 'Virt' => 1 + }, + '54447800' => { + 'Class' => '54320705', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC1ESt10unique_ptrINS1_26SocketAppenderSkeletonPrivESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'priv', + 'type' => '54203137' + } + }, + 'Protected' => 1, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '53' + }, + '54449366' => { + 'Class' => '54320705', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC2ESt10unique_ptrINS1_26SocketAppenderSkeletonPrivESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '2' => { + 'name' => 'priv', + 'type' => '54203137' + } + }, + 'Protected' => 1, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '53' + }, + '54451052' => { + 'Class' => '54320705', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'host', + 'type' => '210597' + }, + '2' => { + 'name' => 'port', + 'type' => '190263' + }, + '3' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '48' + }, + '54455078' => { + 'Class' => '54320705', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '2' => { + 'name' => 'host', + 'type' => '210597' + }, + '3' => { + 'name' => 'port', + 'type' => '190263' + }, + '4' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '48' + }, + '54459188' => { + 'Class' => '54320705', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC1ESt10shared_ptrINS_7helpers11InetAddressEEii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'address', + 'type' => '19570996' + }, + '2' => { + 'name' => 'port', + 'type' => '190263' + }, + '3' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '43' + }, + '54464234' => { + 'Class' => '54320705', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC2ESt10shared_ptrINS_7helpers11InetAddressEEii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '2' => { + 'name' => 'address', + 'type' => '19570996' + }, + '3' => { + 'name' => 'port', + 'type' => '190263' + }, + '4' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '43' + }, + '54469352' => { + 'Class' => '54320705', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC1Eii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '1' => { + 'name' => 'defaultPort', + 'type' => '190263' + }, + '2' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '38' + }, + '54472928' => { + 'Class' => '54320705', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton.h', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeletonC2Eii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54335160' + }, + '2' => { + 'name' => 'defaultPort', + 'type' => '190263' + }, + '3' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeleton', + 'Source' => 'socketappenderskeleton.cpp', + 'SourceLine' => '38' + }, + '54476570' => { + 'Artificial' => 1, + 'Class' => '54320723', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54334463' + }, + '1' => { + 'name' => 'host', + 'type' => '210597' + }, + '2' => { + 'name' => 'port', + 'type' => '190263' + }, + '3' => { + 'name' => 'delay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeletonPriv' + }, + '54476571' => { + 'Artificial' => 1, + 'Class' => '54320723', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54334463' + }, + '1' => { + 'name' => 'host', + 'type' => '210597' + }, + '2' => { + 'name' => 'port', + 'type' => '190263' + }, + '3' => { + 'name' => 'delay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeletonPriv' + }, + '54476668' => { + 'Artificial' => 1, + 'Class' => '54320723', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC2ESt10shared_ptrINS_7helpers11InetAddressEEii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54334463' + }, + '1' => { + 'name' => 'address', + 'type' => '19570996' + }, + '2' => { + 'name' => 'defaultPort', + 'type' => '190263' + }, + '3' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeletonPriv' + }, + '54476669' => { + 'Artificial' => 1, + 'Class' => '54320723', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC1ESt10shared_ptrINS_7helpers11InetAddressEEii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54334463' + }, + '1' => { + 'name' => 'address', + 'type' => '19570996' + }, + '2' => { + 'name' => 'defaultPort', + 'type' => '190263' + }, + '3' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeletonPriv' + }, + '54476868' => { + 'Artificial' => 1, + 'Class' => '54320723', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC2Eii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54334463' + }, + '1' => { + 'name' => 'defaultPort', + 'type' => '190263' + }, + '2' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeletonPriv' + }, + '54476869' => { + 'Artificial' => 1, + 'Class' => '54320723', + 'Constructor' => 1, + 'Header' => 'socketappenderskeleton_priv.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivC1Eii', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54334463' + }, + '1' => { + 'name' => 'defaultPort', + 'type' => '190263' + }, + '2' => { + 'name' => 'reconnectionDelay', + 'type' => '190263' + } + }, + 'ShortName' => 'SocketAppenderSkeletonPriv' + }, + '54716421' => { + 'Class' => '54716308', + 'Const' => 1, + 'Header' => 'socketoutputstream.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStream7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720964' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '54716466' => { + 'Class' => '54716201', + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '35', + 'Static' => 1 + }, + '54716482' => { + 'Class' => '54716201', + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '35', + 'Static' => 1 + }, + '54716498' => { + 'Class' => '54716201', + 'Const' => 1, + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZNK7log4cxx7helpers18SocketOutputStream8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720919' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '35', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '54716535' => { + 'Class' => '54716201', + 'Const' => 1, + 'Header' => 'socketoutputstream.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx7helpers18SocketOutputStream4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720919' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '54716577' => { + 'Class' => '54716201', + 'Const' => 1, + 'Header' => 'socketoutputstream.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7helpers18SocketOutputStream10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720919' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '54716685' => { + 'Class' => '54716201', + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream5closeERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720929' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '47', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '54716724' => { + 'Class' => '54716201', + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream5flushERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720929' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'flush', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '53', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '54716763' => { + 'Class' => '54716201', + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720929' + }, + '1' => { + 'name' => 'buf', + 'type' => '210612' + }, + '2' => { + 'name' => 'p2', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '63', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '54718340' => { + 'Data' => 1, + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7classes30SocketOutputStreamRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'SocketOutputStreamRegistration', + 'Source' => 'socketoutputstream.cpp' + }, + '54732324' => { + 'Artificial' => 1, + 'Class' => '54716918', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720543' + } + }, + 'ShortName' => 'WideLife' + }, + '54732325' => { + 'Artificial' => 1, + 'Class' => '54716918', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720543' + } + }, + 'ShortName' => 'WideLife' + }, + '54732467' => { + 'Artificial' => 1, + 'Class' => '54716918', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720543' + } + }, + 'ShortName' => 'WideLife' + }, + '54732468' => { + 'Artificial' => 1, + 'Class' => '54716918', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720543' + } + }, + 'ShortName' => 'WideLife' + }, + '54735286' => { + 'Class' => '54716201', + 'Destructor' => 1, + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720929' + } + }, + 'ShortName' => 'SocketOutputStream', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '43', + 'Virt' => 1 + }, + '54735287' => { + 'Class' => '54716201', + 'Destructor' => 1, + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720929' + } + }, + 'ShortName' => 'SocketOutputStream', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '43', + 'Virt' => 1 + }, + '54735382' => { + 'Class' => '54716201', + 'Destructor' => 1, + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720929' + } + }, + 'ShortName' => 'SocketOutputStream', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '43', + 'Virt' => 1 + }, + '54737072' => { + 'Class' => '54716201', + 'Constructor' => 1, + 'Header' => 'socketoutputstream.h', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamC2ERKSt10shared_ptrINS0_6SocketEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720929' + }, + '1' => { + 'name' => 'socket1', + 'type' => '53695926' + } + }, + 'ShortName' => 'SocketOutputStream', + 'Source' => 'socketoutputstream.cpp', + 'SourceLine' => '37' + }, + '54741354' => { + 'Artificial' => 1, + 'Class' => '54716308', + 'Destructor' => 1, + 'Header' => 'socketoutputstream.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720954' + } + }, + 'ShortName' => 'ClazzSocketOutputStream', + 'Virt' => 1 + }, + '54741355' => { + 'Artificial' => 1, + 'Class' => '54716308', + 'Destructor' => 1, + 'Header' => 'socketoutputstream.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720954' + } + }, + 'ShortName' => 'ClazzSocketOutputStream', + 'Virt' => 1 + }, + '54741500' => { + 'Artificial' => 1, + 'Class' => '54716308', + 'Destructor' => 1, + 'Header' => 'socketoutputstream.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720954' + } + }, + 'ShortName' => 'ClazzSocketOutputStream', + 'Virt' => 1 + }, + '54741595' => { + 'Artificial' => 1, + 'Class' => '54716308', + 'Constructor' => 1, + 'Header' => 'socketoutputstream.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720954' + } + }, + 'ShortName' => 'ClazzSocketOutputStream' + }, + '54741596' => { + 'Artificial' => 1, + 'Class' => '54716308', + 'Constructor' => 1, + 'Header' => 'socketoutputstream.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720954' + } + }, + 'ShortName' => 'ClazzSocketOutputStream' + }, + '55248004' => { + 'Artificial' => 1, + 'Class' => '5659477', + 'Header' => 'xmlsocketappender.h', + 'InLine' => 2, + 'Line' => '117', + 'MnglName' => '_ZTch0_h0_NK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264973' + } + }, + 'Return' => '5680163', + 'ShortName' => '_ZTch0_h0_NK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv' + }, + '55248288' => { + 'Class' => '5659468', + 'Data' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender12DEFAULT_PORTE', + 'Return' => '190263', + 'ShortName' => 'DEFAULT_PORT', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '56' + }, + '55248305' => { + 'Class' => '5659468', + 'Data' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender26DEFAULT_RECONNECTION_DELAYE', + 'Return' => '190263', + 'ShortName' => 'DEFAULT_RECONNECTION_DELAY', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '59' + }, + '55248322' => { + 'Class' => '5659468', + 'Data' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender13MAX_EVENT_LENE', + 'Return' => '190271', + 'ShortName' => 'MAX_EVENT_LEN', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '61' + }, + '55248342' => { + 'Class' => '5659468', + 'Const' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264809' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '51', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '55248380' => { + 'Class' => '5659468', + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '51', + 'Static' => 1 + }, + '55248412' => { + 'Class' => '5659468', + 'Const' => 1, + 'Header' => 'xmlsocketappender.h', + 'InLine' => 2, + 'Line' => '118', + 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264809' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '55248455' => { + 'Class' => '5659468', + 'Const' => 1, + 'Header' => 'xmlsocketappender.h', + 'InLine' => 2, + 'Line' => '121', + 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264809' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '55248666' => { + 'Class' => '5659468', + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender9setSocketERSt10shared_ptrINS_7helpers6SocketEERNS3_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + }, + '1' => { + 'name' => 'socket', + 'type' => '54336723' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'setSocket', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '101', + 'Virt' => 1, + 'VirtPos' => '18' + }, + '55248711' => { + 'Class' => '5659468', + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender7cleanUpERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'cleanUp', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '109', + 'Virt' => 1, + 'VirtPos' => '19' + }, + '55248751' => { + 'Class' => '5659468', + 'Const' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender15getDefaultDelayEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264809' + } + }, + 'Protected' => 1, + 'Return' => '190263', + 'ShortName' => 'getDefaultDelay', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '91', + 'Virt' => 1, + 'VirtPos' => '20' + }, + '55248789' => { + 'Class' => '5659468', + 'Const' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender14getDefaultPortEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264809' + } + }, + 'Protected' => 1, + 'Return' => '190263', + 'ShortName' => 'getDefaultPort', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '96', + 'Virt' => 1, + 'VirtPos' => '21' + }, + '55248827' => { + 'Class' => '5659468', + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'append', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '124', + 'Virt' => 1, + 'VirtPos' => '17' + }, + '55249618' => { + 'Data' => 1, + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7classes29XMLSocketAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'XMLSocketAppenderRegistration', + 'Source' => 'xmlsocketappender.cpp' + }, + '55266495' => { + 'Constructor' => 1, + 'Header' => 'socketoutputstream.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers18SocketOutputStreamC1ERKSt10shared_ptrINS0_6SocketEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720929' + }, + '1' => { + 'name' => 'socket', + 'type' => '53695926' + } + } + }, + '55293398' => { + 'Artificial' => 1, + 'Class' => '55248031', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55262322' + } + }, + 'ShortName' => 'XMLSocketAppenderPriv', + 'Source' => 'xmlsocketappender.cpp', + 'Virt' => 1 + }, + '55293399' => { + 'Artificial' => 1, + 'Class' => '55248031', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55262322' + } + }, + 'ShortName' => 'XMLSocketAppenderPriv', + 'Source' => 'xmlsocketappender.cpp', + 'Virt' => 1 + }, + '55299566' => { + 'Artificial' => 1, + 'Class' => '55248031', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55262322' + } + }, + 'ShortName' => 'XMLSocketAppenderPriv', + 'Source' => 'xmlsocketappender.cpp', + 'Virt' => 1 + }, + '55315183' => { + 'Artificial' => 1, + 'Class' => '55242029', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55262174' + } + }, + 'ShortName' => 'WideLife' + }, + '55315184' => { + 'Artificial' => 1, + 'Class' => '55242029', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55262174' + } + }, + 'ShortName' => 'WideLife' + }, + '55315325' => { + 'Artificial' => 1, + 'Class' => '55242029', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55262174' + } + }, + 'ShortName' => 'WideLife' + }, + '55315326' => { + 'Artificial' => 1, + 'Class' => '55242029', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55262174' + } + }, + 'ShortName' => 'WideLife' + }, + '55333539' => { + 'Class' => '5659468', + 'Destructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + } + }, + 'ShortName' => 'XMLSocketAppender', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '85', + 'Virt' => 1 + }, + '55333637' => { + 'Class' => '5659468', + 'Destructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + } + }, + 'ShortName' => 'XMLSocketAppender', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '85', + 'Virt' => 1 + }, + '55333925' => { + 'Class' => '5659468', + 'Destructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + } + }, + 'ShortName' => 'XMLSocketAppender', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '85', + 'Virt' => 1 + }, + '55334117' => { + 'Class' => '5659468', + 'Constructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + }, + '1' => { + 'name' => 'host', + 'type' => '210597' + }, + '2' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'ShortName' => 'XMLSocketAppender', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '77' + }, + '55342722' => { + 'Class' => '5659468', + 'Constructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + }, + '2' => { + 'name' => 'host', + 'type' => '210597' + }, + '3' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'ShortName' => 'XMLSocketAppender', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '77' + }, + '55351102' => { + 'Class' => '5659468', + 'Constructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC1ESt10shared_ptrINS_7helpers11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + }, + '1' => { + 'name' => 'address1', + 'type' => '19570996' + }, + '2' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'ShortName' => 'XMLSocketAppender', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '69' + }, + '55357385' => { + 'Class' => '5659468', + 'Constructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC2ESt10shared_ptrINS_7helpers11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + }, + '2' => { + 'name' => 'address1', + 'type' => '19570996' + }, + '3' => { + 'name' => 'port1', + 'type' => '190263' + } + }, + 'ShortName' => 'XMLSocketAppender', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '69' + }, + '55363391' => { + 'Class' => '5659468', + 'Constructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + } + }, + 'ShortName' => 'XMLSocketAppender', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '63' + }, + '55371392' => { + 'Class' => '5659468', + 'Constructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264819' + } + }, + 'ShortName' => 'XMLSocketAppender', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '63' + }, + '55406468' => { + 'Artificial' => 1, + 'Class' => '5659477', + 'Destructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'InLine' => 1, + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264963' + } + }, + 'ShortName' => 'ClazzXMLSocketAppender', + 'Virt' => 1 + }, + '55406469' => { + 'Artificial' => 1, + 'Class' => '5659477', + 'Destructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'InLine' => 1, + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264963' + } + }, + 'ShortName' => 'ClazzXMLSocketAppender', + 'Virt' => 1 + }, + '55406614' => { + 'Artificial' => 1, + 'Class' => '5659477', + 'Destructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'InLine' => 1, + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264963' + } + }, + 'ShortName' => 'ClazzXMLSocketAppender', + 'Virt' => 1 + }, + '55406708' => { + 'Artificial' => 1, + 'Class' => '5659477', + 'Constructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'InLine' => 1, + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264963' + } + }, + 'ShortName' => 'ClazzXMLSocketAppender' + }, + '55406709' => { + 'Artificial' => 1, + 'Class' => '5659477', + 'Constructor' => 1, + 'Header' => 'xmlsocketappender.h', + 'InLine' => 1, + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55264963' + } + }, + 'ShortName' => 'ClazzXMLSocketAppender' + }, + '55704552' => { + 'Constructor' => 1, + 'Header' => 'datagrampacket.h', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramPacketC1EPviSt10shared_ptrINS0_11InetAddressEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51477093' + }, + '1' => { + 'name' => 'buf', + 'type' => '190924' + }, + '2' => { + 'name' => 'length', + 'type' => '190263' + }, + '3' => { + 'name' => 'address', + 'type' => '19570996' + }, + '4' => { + 'name' => 'port', + 'type' => '190263' + } + } + }, + '55737080' => { + 'Class' => '5647823', + 'Destructor' => 1, + 'Header' => 'syslogwriter.h', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55697680' + } + }, + 'ShortName' => 'SyslogWriter', + 'Source' => 'syslogwriter.cpp', + 'SourceLine' => '63' + }, + '55739469' => { + 'Class' => '5647823', + 'Constructor' => 1, + 'Header' => 'syslogwriter.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55697680' + }, + '1' => { + 'name' => 'syslogHost1', + 'type' => '210597' + }, + '2' => { + 'name' => 'syslogHostPort1', + 'type' => '190263' + } + }, + 'ShortName' => 'SyslogWriter', + 'Source' => 'syslogwriter.cpp', + 'SourceLine' => '39' + }, + '558667' => { + 'Class' => '558583', + 'Const' => 1, + 'Header' => 'appenderattachableimpl.h', + 'InLine' => 2, + 'Line' => '54', + 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImpl7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955553' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '558801' => { + 'Class' => '558717', + 'Const' => 1, + 'Header' => 'resourcebundle.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7helpers14ResourceBundle19ClazzResourceBundle7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39537027' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '558917' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'msg', + 'type' => '202705' + } + }, + 'Return' => '573438', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '101' + }, + '558952' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEPKc', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'msg', + 'type' => '191618' + } + }, + 'Return' => '573438', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '115' + }, + '558987' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '69', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEPc', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'msg', + 'type' => '192483' + } + }, + 'Return' => '573438', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '135' + }, + '559022' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '76', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEc', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'msg', + 'type' => '191037' + } + }, + 'Return' => '573438', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '140' + }, + '559057' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '92', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEPFRSt8ios_baseS3_E', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'manip', + 'type' => '559727' + } + }, + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '185' + }, + '559092' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '98', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'val', + 'type' => '174077' + } + }, + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '192' + }, + '559127' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '105', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEs', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'val', + 'type' => '190256' + } + }, + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '196' + }, + '559162' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '111', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'val', + 'type' => '190263' + } + }, + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '200' + }, + '559197' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEj', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'val', + 'type' => '174065' + } + }, + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '204' + }, + '559232' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '123', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEl', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'val', + 'type' => '190282' + } + }, + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '208' + }, + '559267' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '129', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEm', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'val', + 'type' => '190225' + } + }, + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '212' + }, + '559302' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '135', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEf', 'Param' => { '0' => { - 'name' => 's', - 'type' => '263006' + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'val', + 'type' => '190325' } }, - 'Return' => '63706', - 'ShortName' => 'convertSpecialChars', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '77', - 'Static' => 1 + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '216' }, - '832635' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '64', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter9toBooleanERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', + '559337' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '141', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEd', 'Param' => { '0' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'this', + 'type' => '29685050' }, '1' => { - 'name' => 'dEfault', - 'type' => '50284' + 'name' => 'val', + 'type' => '190313' } }, - 'Return' => '50284', - 'ShortName' => 'toBoolean', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '122', - 'Static' => 1 + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '220' }, - '832667' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '70', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter5toIntERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + '559372' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '147', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEe', 'Param' => { '0' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'this', + 'type' => '29685050' }, '1' => { - 'name' => 'dEfault', - 'type' => '50231' + 'name' => 'val', + 'offset' => '0', + 'type' => '190301' } }, - 'Return' => '50231', - 'ShortName' => 'toInt', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '145', - 'Static' => 1 + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '224' }, - '832699' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '78', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter10toFileSizeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEl', + '559407' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '153', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferlsEPv', 'Param' => { '0' => { - 'name' => 's', - 'type' => '263006' + 'name' => 'this', + 'type' => '29685050' }, '1' => { - 'name' => 'dEfault', - 'type' => '50244' + 'name' => 'val', + 'type' => '190924' } }, - 'Return' => '50244', - 'ShortName' => 'toFileSize', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '159', - 'Static' => 1 + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '228' }, - '832731' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEE', + '559442' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '158', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffercvRSoEv', 'Param' => { '0' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'this', + 'type' => '29685050' + } + }, + 'Return' => '204095', + 'ShortName' => 'operator std::basic_ostream&', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '155' + }, + '559472' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '165', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffer11extract_strB5cxx11ERSo', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' }, '1' => { - 'name' => 'defaultValue', - 'type' => '412081' + 'name' => 'p1', + 'type' => '204095' } }, - 'Return' => '409192', - 'ShortName' => 'toLevel', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '303', - 'Static' => 1 + 'Return' => '51677', + 'ShortName' => 'extract_str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '160' }, - '832763' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '95', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter12findAndSubstERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_10PropertiesE', + '559507' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '172', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffer11extract_strB5cxx11ERS1_', 'Param' => { '0' => { - 'name' => 'key', - 'type' => '263006' + 'name' => 'this', + 'type' => '29685050' }, '1' => { - 'name' => 'props', - 'type' => '840063' + 'name' => 'p1', + 'type' => '573438' } }, - 'Return' => '63706', - 'ShortName' => 'findAndSubst', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '192', - 'Static' => 1 + 'Return' => '51677', + 'ShortName' => 'extract_str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '165' }, - '832795' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '131', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter9substVarsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_10PropertiesE', + '559542' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '179', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffer3strB5cxx11ERSo', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'p1', + 'type' => '204095' + } + }, + 'Return' => '202705', + 'ShortName' => 'str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '170' + }, + '559577' => { + 'Class' => '558842', + 'Header' => 'messagebuffer.h', + 'Line' => '186', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBuffer3strB5cxx11ERS1_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + }, + '1' => { + 'name' => 'p1', + 'type' => '573438' + } + }, + 'Return' => '202705', + 'ShortName' => 'str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '175' + }, + '559612' => { + 'Class' => '558842', + 'Const' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '192', + 'MnglName' => '_ZNK7log4cxx7helpers17CharMessageBuffer9hasStreamEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685091' + } + }, + 'Return' => '174077', + 'ShortName' => 'hasStream', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '180' + }, + '559819' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '422', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + }, + '1' => { + 'name' => 'msg', + 'type' => '202811' + } + }, + 'Return' => '573714', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '245' + }, + '559856' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '428', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEPKw', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + }, + '1' => { + 'name' => 'msg', + 'type' => '191807' + } + }, + 'Return' => '573714', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '259' + }, + '559893' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '434', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEPw', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + }, + '1' => { + 'name' => 'msg', + 'type' => '191741' + } + }, + 'Return' => '573714', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '280' + }, + '559930' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '441', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEw', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + }, + '1' => { + 'name' => 'msg', + 'type' => '190400' + } + }, + 'Return' => '573714', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '285' + }, + '559967' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '448', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEPFRSt8ios_baseS3_E', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + }, + '1' => { + 'name' => 'manip', + 'type' => '559727' + } + }, + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '330' + }, + '560004' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '454', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEb', 'Param' => { '0' => { + 'name' => 'this', + 'type' => '29685391' + }, + '1' => { 'name' => 'val', - 'type' => '263006' + 'type' => '174077' + } + }, + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '337' + }, + '560041' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '461', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEs', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' }, '1' => { - 'name' => 'props', - 'type' => '840063' + 'name' => 'val', + 'type' => '190256' } }, - 'Return' => '63706', - 'ShortName' => 'substVars', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '213', - 'Static' => 1 + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '341' }, - '832827' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '140', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter17getSystemPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '560078' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '467', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEi', 'Param' => { '0' => { - 'name' => 'key', - 'type' => '263006' + 'name' => 'this', + 'type' => '29685391' }, '1' => { - 'name' => 'def', - 'type' => '263006' + 'name' => 'val', + 'type' => '190263' } }, - 'Return' => '63706', - 'ShortName' => 'getSystemProperty', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '288', - 'Static' => 1 + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '345' }, - '832859' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '152', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter22instantiateByClassNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS0_5ClassERKSt10shared_ptrINS0_6ObjectEE', + '560115' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '473', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEj', 'Param' => { '0' => { - 'name' => 'className', - 'type' => '263006' + 'name' => 'this', + 'type' => '29685391' }, '1' => { - 'name' => 'superClass', - 'type' => '64678' + 'name' => 'val', + 'type' => '174065' + } + }, + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '349' + }, + '560152' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '479', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEl', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' }, - '2' => { - 'name' => 'defaultValue', - 'type' => '652213' + '1' => { + 'name' => 'val', + 'type' => '190282' } }, - 'Return' => '648233', - 'ShortName' => 'instantiateByClassName', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '382', - 'Static' => 1 + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '353' }, - '832896' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '155', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter16instantiateByKeyERNS0_10PropertiesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS0_5ClassERKSt10shared_ptrINS0_6ObjectEE', + '560189' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '485', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEm', 'Param' => { '0' => { - 'name' => 'props', - 'type' => '840063' + 'name' => 'this', + 'type' => '29685391' }, '1' => { - 'name' => 'key', - 'type' => '263006' + 'name' => 'val', + 'type' => '190225' + } + }, + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '357' + }, + '560226' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '491', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEf', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' }, - '2' => { - 'name' => 'superClass', - 'type' => '64678' + '1' => { + 'name' => 'val', + 'type' => '190325' + } + }, + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '361' + }, + '560263' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '497', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEd', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' }, - '3' => { - 'name' => 'defaultValue', - 'type' => '652213' + '1' => { + 'name' => 'val', + 'type' => '190313' } }, - 'Return' => '648233', - 'ShortName' => 'instantiateByKey', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '364', - 'Static' => 1 + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '365' }, - '832938' => { - 'Class' => '832569', - 'Header' => 'optionconverter.h', - 'Line' => '181', - 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter18selectAndConfigureERKNS_4FileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt10shared_ptrINS_3spi16LoggerRepositoryEEi', + '560300' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '503', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEe', 'Param' => { '0' => { - 'name' => 'configFileName', - 'type' => '840075' + 'name' => 'this', + 'type' => '29685391' }, '1' => { - 'name' => '_clazz', - 'type' => '263006' + 'name' => 'val', + 'offset' => '0', + 'type' => '190301' + } + }, + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '369' + }, + '560337' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '509', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferlsEPv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' }, - '2' => { - 'name' => 'hierarchy', - 'type' => '835664' + '1' => { + 'name' => 'val', + 'type' => '190924' + } + }, + 'Return' => '204110', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '373' + }, + '560374' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '515', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffercvRSt13basic_ostreamIwSt11char_traitsIwEEEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + } + }, + 'Return' => '204110', + 'ShortName' => 'operator std::basic_ostream&', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '300' + }, + '560406' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '522', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffer11extract_strB5cxx11ERSt13basic_ostreamIwSt11char_traitsIwEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' }, - '3' => { - 'name' => 'delay', - 'type' => '50231' + '1' => { + 'name' => 'p1', + 'type' => '204110' + } + }, + 'Return' => '58805', + 'ShortName' => 'extract_str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '305' + }, + '560443' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '529', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffer11extract_strB5cxx11ERS1_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + }, + '1' => { + 'name' => 'p1', + 'type' => '573714' + } + }, + 'Return' => '58805', + 'ShortName' => 'extract_str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '310' + }, + '560480' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '536', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffer3strB5cxx11ERSt13basic_ostreamIwSt11char_traitsIwEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + }, + '1' => { + 'name' => 'p1', + 'type' => '204110' + } + }, + 'Return' => '202811', + 'ShortName' => 'str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '315' + }, + '560516' => { + 'Class' => '559739', + 'Header' => 'messagebuffer.h', + 'Line' => '543', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBuffer3strB5cxx11ERS1_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + }, + '1' => { + 'name' => 'p1', + 'type' => '573714' + } + }, + 'Return' => '202811', + 'ShortName' => 'str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '320' + }, + '560552' => { + 'Class' => '559739', + 'Const' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '549', + 'MnglName' => '_ZNK7log4cxx7helpers17WideMessageBuffer9hasStreamEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685406' + } + }, + 'Return' => '174077', + 'ShortName' => 'hasStream', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '325' + }, + '560752' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '590', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffercvRSoEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + } + }, + 'Return' => '573443', + 'ShortName' => 'operator std::ostream&', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '423' + }, + '560784' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '598', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'msg', + 'type' => '202831' + } + }, + 'Return' => '573438', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '428' + }, + '560821' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '605', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPKc', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'msg', + 'type' => '191618' + } + }, + 'Return' => '573438', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '433' + }, + '560858' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '612', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPc', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'msg', + 'type' => '192483' + } + }, + 'Return' => '573438', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '437' + }, + '560895' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '620', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEc', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'msg', + 'type' => '191037' + } + }, + 'Return' => '573438', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '442' + }, + '560932' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '628', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer11extract_strB5cxx11ERNS0_17CharMessageBufferE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'buf', + 'type' => '573438' + } + }, + 'Return' => '89533', + 'ShortName' => 'extract_str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '447' + }, + '560969' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '636', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer11extract_strB5cxx11ERSo', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'os', + 'type' => '573443' + } + }, + 'Return' => '89533', + 'ShortName' => 'extract_str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '452' + }, + '561006' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '644', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer3strB5cxx11ERNS0_17CharMessageBufferE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'buf', + 'type' => '573438' + } + }, + 'Return' => '202831', + 'ShortName' => 'str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '457' + }, + '561042' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '652', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer3strB5cxx11ERSo', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'os', + 'type' => '573443' + } + }, + 'Return' => '202831', + 'ShortName' => 'str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '462' + }, + '561078' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '660', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'msg', + 'type' => '202841' + } + }, + 'Return' => '573714', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '467' + }, + '561115' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '667', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPKw', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'msg', + 'type' => '191807' + } + }, + 'Return' => '573714', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '473' + }, + '561152' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '674', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPw', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'msg', + 'type' => '191741' + } + }, + 'Return' => '573714', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '478' + }, + '561189' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '681', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEw', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'msg', + 'type' => '190400' + } + }, + 'Return' => '573714', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '484' + }, + '561226' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '752', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPFRSt8ios_baseS3_E', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'manip', + 'type' => '559727' + } + }, + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '416' + }, + '561263' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '759', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'val', + 'type' => '174077' } }, - 'Return' => '1', - 'ShortName' => 'selectAndConfigure', - 'Source' => 'optionconverter.cpp', - 'SourceLine' => '409', - 'Static' => 1 + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '510' }, - '833084' => { - 'Class' => '833040', - 'Header' => 'threadutility.h', - 'Line' => '76', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility16preStartFunctionEv', + '561300' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '766', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEs', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '29685706' + }, + '1' => { + 'name' => 'val', + 'type' => '190256' } }, - 'Private' => 1, - 'Return' => '833466', - 'ShortName' => 'preStartFunction', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '186' - }, - '833114' => { - 'Class' => '833040', - 'Header' => 'threadutility.h', - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility21threadStartedFunctionB5cxx11Ev', + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '514' + }, + '561337' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '772', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '29685706' + }, + '1' => { + 'name' => 'val', + 'type' => '190263' } }, - 'Private' => 1, - 'Return' => '833478', - 'ShortName' => 'threadStartedFunction', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '191' - }, - '833144' => { - 'Class' => '833040', - 'Header' => 'threadutility.h', - 'Line' => '78', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility17postStartFunctionEv', + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '518' + }, + '561374' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '778', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEj', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '29685706' + }, + '1' => { + 'name' => 'val', + 'type' => '174065' } }, - 'Private' => 1, - 'Return' => '833490', - 'ShortName' => 'postStartFunction', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '196' - }, - '833219' => { - 'Class' => '833040', - 'Header' => 'threadutility.h', - 'Line' => '84', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility8instanceEv', - 'Return' => '840674', - 'ShortName' => 'instance', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '69', - 'Static' => 1 + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '522' }, - '833236' => { - 'Class' => '833040', - 'Header' => 'threadutility.h', - 'Line' => '90', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility9configureENS0_23ThreadConfigurationTypeE', + '561411' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '784', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEl', 'Param' => { '0' => { - 'name' => 'type', - 'type' => '832996' + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'val', + 'type' => '190282' } }, - 'Return' => '1', - 'ShortName' => 'configure', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '75', - 'Static' => 1 + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '526' }, - '833260' => { - 'Class' => '833040', - 'Header' => 'threadutility.h', - 'Line' => '97', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility14configureFuncsESt8functionIFvvEES2_IFvNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENSt6thread2idEmEES4_', + '561448' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '790', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEm', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '29685706' }, '1' => { - 'name' => 'pre_start', - 'type' => '833466' - }, - '2' => { - 'name' => 'started', - 'type' => '833478' - }, - '3' => { - 'name' => 'post_start', - 'type' => '833490' + 'name' => 'val', + 'type' => '190225' } }, - 'Return' => '1', - 'ShortName' => 'configureFuncs', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '109' + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '530' }, - '833302' => { - 'Class' => '833040', - 'Header' => 'threadutility.h', - 'Line' => '106', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility21preThreadBlockSignalsEv', + '561485' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '796', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEf', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '29685706' + }, + '1' => { + 'name' => 'val', + 'type' => '190325' } }, - 'Return' => '1', - 'ShortName' => 'preThreadBlockSignals', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '118' + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '534' }, - '833329' => { - 'Class' => '833040', - 'Header' => 'threadutility.h', - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility23threadStartedNameThreadENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENSt6thread2idEm', + '561522' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '802', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEd', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '29685706' }, '1' => { - 'name' => 'threadName', - 'type' => '63706' - }, - '2' => { - 'name' => 'p2', - 'type' => '749251' - }, - '3' => { - 'name' => 'nativeHandle', - 'type' => '749334' + 'name' => 'val', + 'type' => '190313' } }, - 'Reg' => { - '2' => 'rdx' - }, - 'Return' => '1', - 'ShortName' => 'threadStartedNameThread', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '137' + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '538' }, - '833371' => { - 'Class' => '833040', - 'Header' => 'threadutility.h', - 'Line' => '121', - 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtility24postThreadUnblockSignalsEv', + '561559' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '808', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEe', 'Param' => { '0' => { 'name' => 'this', - 'type' => '840680' + 'type' => '29685706' + }, + '1' => { + 'name' => 'val', + 'offset' => '0', + 'type' => '190301' } }, - 'Return' => '1', - 'ShortName' => 'postThreadUnblockSignals', - 'Source' => 'threadutility.cpp', - 'SourceLine' => '169' + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '542' }, - '834704' => { - 'Class' => '834615', - 'Header' => 'exception.h', - 'Line' => '82', - 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionaSERKS1_', + '561596' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '814', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferlsEPv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845710' + 'type' => '29685706' }, '1' => { - 'name' => 'src', - 'type' => '845715' + 'name' => 'val', + 'type' => '190924' } }, - 'Return' => '845721', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '140' + 'Return' => '573443', + 'ShortName' => 'operator<<', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '546' }, - '834898' => { - 'Class' => '834777', - 'Header' => 'exception.h', - 'Line' => '59', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionaSERKS1_', + '561633' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '821', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer11extract_strB5cxx11ERNS0_17WideMessageBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845733' + 'type' => '29685706' }, '1' => { - 'name' => 'src', - 'type' => '845738' + 'name' => 'buf', + 'type' => '573714' } }, - 'Return' => '845744', - 'ShortName' => 'operator=', - 'Source' => 'exception.cpp', - 'SourceLine' => '100' + 'Return' => '89705', + 'ShortName' => 'extract_str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '490' }, - '834934' => { - 'Class' => '834777', - 'Header' => 'exception.h', - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeException13formatMessageB5cxx11Ei', + '561670' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '829', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer11extract_strB5cxx11ERSt13basic_ostreamIwSt11char_traitsIwEE', 'Param' => { '0' => { - 'name' => 'stat', - 'type' => '838230' + 'name' => 'this', + 'type' => '29685706' + }, + '1' => { + 'name' => 'os', + 'type' => '204110' } }, - 'Private' => 1, - 'Return' => '63706', - 'ShortName' => 'formatMessage', - 'Source' => 'exception.cpp', - 'SourceLine' => '106', - 'Static' => 1 - }, - '835074' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '224', - 'MnglName' => '_ZN7log4cxx5Level8getErrorEv', - 'Private' => 1, - 'Return' => '409192', - 'ShortName' => 'getError', - 'Source' => 'level.cpp', - 'SourceLine' => '45', - 'Static' => 1 - }, - '835157' => { - 'Class' => '835117', - 'Header' => 'locationinfo.h', - 'Line' => '58', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfo22getLocationUnavailableEv', - 'Return' => '839402', - 'ShortName' => 'getLocationUnavailable', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '32', - 'Static' => 1 + 'Return' => '89705', + 'ShortName' => 'extract_str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '495' }, - '835307' => { - 'Class' => '835117', - 'Header' => 'locationinfo.h', - 'Line' => '99', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfoaSERKS1_', + '56167327' => { + 'Artificial' => 1, + 'Class' => '5659853', + 'Header' => 'syslogappender.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZTch0_h0_NK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56186062' + } + }, + 'Return' => '5680203', + 'ShortName' => '_ZTch0_h0_NK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv' + }, + '56167676' => { + 'Class' => '5659844', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185948' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '38', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '56167713' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '38', + 'Static' => 1 + }, + '56167745' => { + 'Class' => '5659844', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185948' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '56167787' => { + 'Class' => '5659844', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185948' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '56168005' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender5closeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + } + }, + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '70', + 'Virt' => 1, + 'VirtPos' => '10' + }, + '56168039' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender17getFacilityStringB5cxx11Ei', + 'Param' => { + '0' => { + 'name' => 'syslogFacility', + 'type' => '190263' + } + }, + 'Return' => '209661', + 'ShortName' => 'getFacilityString', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '104', + 'Static' => 1 + }, + '56168065' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender11getFacilityERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 's', + 'type' => '210597' + } + }, + 'Return' => '190263', + 'ShortName' => 'getFacility', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '178', + 'Static' => 1 + }, + '56168091' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'append', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '274', + 'Virt' => 1, + 'VirtPos' => '17' + }, + '56168136' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender15activateOptionsERNS_7helpers4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' + } + }, + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '375', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '56168176' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '379', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '56168221' => { + 'Class' => '5659844', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 2, + 'Line' => '106', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender14requiresLayoutEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185948' + } + }, + 'Return' => '174077', + 'ShortName' => 'requiresLayout', + 'Virt' => 1, + 'VirtPos' => '16' + }, + '56168258' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender13setSyslogHostERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '1' => { + 'name' => 'syslogHost1', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setSyslogHost', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '399' + }, + '56168291' => { + 'Class' => '5659844', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender13getSyslogHostB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185948' + } + }, + 'Return' => '210597', + 'ShortName' => 'getSyslogHost', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '461' + }, + '56168323' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender11setFacilityERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '1' => { + 'name' => 'facilityName', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'setFacility', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '442' + }, + '56168356' => { + 'Class' => '5659844', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender11getFacilityB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185948' + } + }, + 'Return' => '209661', + 'ShortName' => 'getFacility', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '466' + }, + '56168388' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19setFacilityPrintingEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '1' => { + 'name' => 'facilityPrinting1', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setFacilityPrinting', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '471' + }, + '56168421' => { + 'Class' => '5659844', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender19getFacilityPrintingEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185948' + } + }, + 'Return' => '174077', + 'ShortName' => 'getFacilityPrinting', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '476' + }, + '56168453' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19setMaxMessageLengthEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '1' => { + 'name' => 'maxMessageLength1', + 'type' => '190263' + } + }, + 'Return' => '1', + 'ShortName' => 'setMaxMessageLength', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '481' + }, + '56168486' => { + 'Class' => '5659844', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender19getMaxMessageLengthEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185948' + } + }, + 'Return' => '190263', + 'ShortName' => 'getMaxMessageLength', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '486' + }, + '56168518' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender21initSyslogFacilityStrEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'initSyslogFacilityStr', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '80' + }, + '56168638' => { + 'Data' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7classes26SyslogAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'SyslogAppenderRegistration', + 'Source' => 'syslogappender.cpp' + }, + '561707' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '837', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer3strB5cxx11ERNS0_17WideMessageBufferE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425520' + 'type' => '29685706' }, '1' => { - 'name' => 'src', - 'type' => '839402' + 'name' => 'buf', + 'type' => '573714' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '839414', - 'ShortName' => 'operator=', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '81' + 'Return' => '202841', + 'ShortName' => 'str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '500' }, - '835343' => { - 'Class' => '835117', - 'Header' => 'locationinfo.h', - 'Line' => '104', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfo5clearEv', + '561743' => { + 'Class' => '560672', + 'Header' => 'messagebuffer.h', + 'Line' => '845', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBuffer3strB5cxx11ERSt13basic_ostreamIwSt11char_traitsIwEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425520' + 'type' => '29685706' + }, + '1' => { + 'name' => 'os', + 'type' => '204110' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '1', - 'ShortName' => 'clear', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '92' + 'Return' => '202841', + 'ShortName' => 'str', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '505' }, - '835370' => { - 'Class' => '835117', + '561779' => { + 'Class' => '560672', 'Const' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '108', - 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo12getClassNameB5cxx11Ev', + 'Header' => 'messagebuffer.h', + 'Line' => '869', + 'MnglName' => '_ZNK7log4cxx7helpers13MessageBuffer9hasStreamEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425537' + 'type' => '29685716' } }, - 'Return' => '36910', - 'ShortName' => 'getClassName', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '153' + 'Return' => '174077', + 'ShortName' => 'hasStream', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '407' }, - '835401' => { - 'Class' => '835117', - 'Const' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '114', - 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo11getFileNameEv', + '56187400' => { + 'Constructor' => 1, + 'Header' => 'syslogwriter.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55697680' + }, + '1' => { + 'name' => 'syslogHost', + 'type' => '210597' + }, + '2' => { + 'name' => 'syslogHostPort', + 'type' => '190263' + } + } + }, + '56187705' => { + 'Destructor' => 1, + 'Header' => 'syslogwriter.h', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55697680' + } + } + }, + '561912' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper4trimERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9425537' + 'name' => 's', + 'type' => '210597' + } + }, + 'Return' => '209661', + 'ShortName' => 'trim', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '75', + 'Static' => 1 + }, + '561938' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper10startsWithERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 's', + 'type' => '210597' + }, + '1' => { + 'name' => 'prefix', + 'type' => '210597' + } + }, + 'Return' => '174077', + 'ShortName' => 'startsWith', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '88', + 'Static' => 1 + }, + '561969' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8endsWithERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Param' => { + '0' => { + 'name' => 's', + 'type' => '210597' + }, + '1' => { + 'name' => 'suffix', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '51127', - 'ShortName' => 'getFileName', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '104' + 'Return' => '174077', + 'ShortName' => 'endsWith', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '98', + 'Static' => 1 }, - '835432' => { - 'Class' => '835117', - 'Const' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '121', - 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo16getShortFileNameEv', + '562000' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper16equalsIgnoreCaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcSB_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9425537' + 'name' => 's1', + 'type' => '210597' + }, + '1' => { + 'name' => 'upper', + 'type' => '575792' + }, + '2' => { + 'name' => 'lower', + 'type' => '575792' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '51127', - 'ShortName' => 'getShortFileName', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '109' + 'Return' => '174077', + 'ShortName' => 'equalsIgnoreCase', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '31', + 'Static' => 1 }, - '835463' => { - 'Class' => '835117', - 'Const' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '127', - 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo13getLineNumberEv', + '562036' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper16equalsIgnoreCaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9425537' + 'name' => 's1', + 'type' => '210597' + }, + '1' => { + 'name' => 'upper', + 'type' => '210597' + }, + '2' => { + 'name' => 'lower', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50231', - 'ShortName' => 'getLineNumber', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '117' + 'Return' => '174077', + 'ShortName' => 'equalsIgnoreCase', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '46', + 'Static' => 1 }, - '835494' => { - 'Class' => '835117', - 'Const' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '130', - 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo13getMethodNameB5cxx11Ev', + '562072' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper5toIntERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9425537' + 'name' => 's', + 'type' => '210597' } }, - 'Return' => '36910', - 'ShortName' => 'getMethodName', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '123' + 'Return' => '190263', + 'ShortName' => 'toInt', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '109', + 'Static' => 1 }, - '835593' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '106', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent10getMessageB5cxx11Ev', + '562098' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper7toInt64ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216376' + 'name' => 's', + 'type' => '210597' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getMessage', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '459' + 'Return' => '194872', + 'ShortName' => 'toInt64', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '120', + 'Static' => 1 }, - '835617' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '103', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent13getLoggerNameB5cxx11Ev', + '562124' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8toStringEiRNS0_4PoolERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216376' + 'name' => 'n', + 'type' => '190263' + }, + '1' => { + 'name' => 'pool', + 'type' => '210607' + }, + '2' => { + 'name' => 'dst', + 'type' => '210592' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getLoggerName', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '454' + 'Return' => '1', + 'ShortName' => 'toString', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '131', + 'Static' => 1 }, - '835629' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '143', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent6getNDCERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '562155' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8toStringElRNS0_4PoolERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216376' + 'name' => 'n', + 'type' => '194872' }, '1' => { - 'name' => 'dest', - 'type' => '409210' + 'name' => 'pool', + 'type' => '210607' + }, + '2' => { + 'name' => 'dst', + 'type' => '210592' } }, - 'Private' => 1, - 'Return' => '50284', - 'ShortName' => 'getNDC', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '209' + 'Return' => '1', + 'ShortName' => 'toString', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '153', + 'Static' => 1 }, - '835641' => { - 'Class' => '407370', - 'Const' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '176', - 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent10getMDCCopyEv', + '562186' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8toStringEmRNS0_4PoolERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '10216376' + 'name' => 'n', + 'type' => '190816' + }, + '1' => { + 'name' => 'pool', + 'type' => '210607' + }, + '2' => { + 'name' => 'dst', + 'type' => '210592' } }, - 'Private' => 1, 'Return' => '1', - 'ShortName' => 'getMDCCopy', - 'Source' => 'loggingevent.cpp', - 'SourceLine' => '285' + 'ShortName' => 'toString', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '163', + 'Static' => 1 }, - '836561' => { - 'Class' => '836440', - 'Const' => 1, - 'Header' => 'asyncappender.h', - 'InLine' => 2, - 'Line' => '51', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender18ClazzAsyncAppender7getNameB5cxx11Ev', + '562217' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper8toStringEbRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845178' + 'name' => 'val', + 'type' => '174077' + }, + '1' => { + 'name' => 'dst', + 'type' => '210592' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '1', + 'ShortName' => 'toString', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '140', + 'Static' => 1 }, - '836601' => { - 'Class' => '836440', - 'Const' => 1, - 'Header' => 'asyncappender.h', - 'InLine' => 2, - 'Line' => '51', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv', + '56222462' => { + 'Artificial' => 1, + 'Class' => '56167354', + 'Destructor' => 1, + 'Header' => 'syslogappender_priv.h', + 'InLine' => 1, + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184796' + } + }, + 'ShortName' => 'SyslogAppenderPriv', + 'Virt' => 1 + }, + '56222463' => { + 'Artificial' => 1, + 'Class' => '56167354', + 'Destructor' => 1, + 'Header' => 'syslogappender_priv.h', + 'InLine' => 1, + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184796' + } + }, + 'ShortName' => 'SyslogAppenderPriv', + 'Virt' => 1 + }, + '562243' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper11toLowerCaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845178' + 'name' => 's', + 'type' => '210597' } }, - 'Return' => '843934', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '209661', + 'ShortName' => 'toLowerCase', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '67', + 'Static' => 1 }, - '836641' => { - 'Artificial' => 1, - 'Class' => '836440', - 'Header' => 'asyncappender.h', - 'InLine' => 2, - 'Line' => '51', - 'MnglName' => '_ZTch0_h0_NK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv', + '562269' => { + 'Class' => '561899', + 'Header' => 'stringhelper.h', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx7helpers12StringHelper6formatERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_SaIS7_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845178' + 'name' => 'pattern', + 'type' => '210597' + }, + '1' => { + 'name' => 'params', + 'type' => '6085700' } }, - 'Return' => '843934', - 'ShortName' => '_ZTch0_h0_NK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv' + 'Return' => '209661', + 'ShortName' => 'format', + 'Source' => 'stringhelper.cpp', + 'SourceLine' => '172', + 'Static' => 1 }, - '836990' => { - 'Class' => '836422', - 'Const' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender8getClassEv', + '56228108' => { + 'Artificial' => 1, + 'Class' => '56167354', + 'Destructor' => 1, + 'Header' => 'syslogappender_priv.h', + 'InLine' => 1, + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184796' + } + }, + 'ShortName' => 'SyslogAppenderPriv', + 'Virt' => 1 + }, + '562338' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter19convertSpecialCharsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845085' + 'name' => 's', + 'type' => '210597' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '174', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '837030' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '174', - 'Static' => 1 - }, - '8370321' => { - 'Class' => '8370208', - 'Const' => 1, - 'Header' => 'level.h', - 'InLine' => 2, - 'Line' => '56', - 'MnglName' => '_ZNK7log4cxx5Level10LevelClass7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8373691' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '8370360' => { - 'Class' => '8370208', - 'Const' => 1, - 'Header' => 'level.h', - 'InLine' => 2, - 'Line' => '61', - 'MnglName' => '_ZNK7log4cxx5Level10LevelClass7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8373691' - }, - '1' => { - 'name' => 'sArg', - 'type' => '263006' - } - }, - 'Return' => '409192', - 'ShortName' => 'toLevel', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '8370404' => { - 'Class' => '8370208', - 'Const' => 1, - 'Header' => 'level.h', - 'InLine' => 2, - 'Line' => '66', - 'MnglName' => '_ZNK7log4cxx5Level10LevelClass7toLevelEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8373691' - }, - '1' => { - 'name' => 'val', - 'type' => '50231' - } - }, - 'Return' => '409192', - 'ShortName' => 'toLevel', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '837047' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '174', + 'Return' => '209661', + 'ShortName' => 'convertSpecialChars', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '77', 'Static' => 1 }, - '8370492' => { - 'Class' => '407323', - 'Const' => 1, - 'Header' => 'level.h', - 'MnglName' => '_ZNK7log4cxx5Level8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1021053' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'level.cpp', - 'SourceLine' => '31', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '8370531' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5Level14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'level.cpp', - 'SourceLine' => '31', - 'Static' => 1 - }, - '8370548' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5Level13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'level.cpp', - 'SourceLine' => '31', - 'Static' => 1 - }, - '8370565' => { - 'Class' => '407323', - 'Const' => 1, - 'Header' => 'level.h', - 'InLine' => 2, - 'Line' => '73', - 'MnglName' => '_ZNK7log4cxx5Level4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1021053' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '8370609' => { - 'Class' => '407323', - 'Const' => 1, - 'Header' => 'level.h', - 'InLine' => 2, - 'Line' => '75', - 'MnglName' => '_ZNK7log4cxx5Level10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1021053' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '837064' => { - 'Class' => '836422', - 'Const' => 1, - 'Header' => 'asyncappender.h', - 'InLine' => 2, - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender4castERKNS_7helpers5ClassE', + '562364' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '61', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter9toBooleanERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845085' + 'name' => 'value', + 'type' => '210597' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'dEfault', + 'type' => '174077' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '174077', + 'ShortName' => 'toBoolean', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '122', + 'Static' => 1 }, - '8370695' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5Level7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'sArg', - 'type' => '61535' - } - }, - 'Return' => '409192', - 'ShortName' => 'toLevel', - 'Source' => 'level.cpp', - 'SourceLine' => '141', - 'Static' => 1 - }, - '8370722' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5Level7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrIS0_E', - 'Param' => { - '0' => { - 'name' => 'sArg', - 'type' => '61535' - }, - '1' => { - 'name' => 'defaultLevel', - 'type' => '412081' - } - }, - 'Return' => '409192', - 'ShortName' => 'toLevel', - 'Source' => 'level.cpp', - 'SourceLine' => '146', - 'Static' => 1 - }, - '8370786' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5Level7toLevelERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'sArg', - 'type' => '646944' - } - }, - 'Return' => '409192', - 'ShortName' => 'toLevel', - 'Source' => 'level.cpp', - 'SourceLine' => '158', - 'Static' => 1 - }, - '8370813' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5Level7toLevelERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKSt10shared_ptrIS0_E', - 'Param' => { - '0' => { - 'name' => 'sArg', - 'type' => '646944' - }, - '1' => { - 'name' => 'defaultLevel', - 'type' => '412081' - } - }, - 'Return' => '409192', - 'ShortName' => 'toLevel', - 'Source' => 'level.cpp', - 'SourceLine' => '163', - 'Static' => 1 - }, - '8370845' => { - 'Class' => '407323', - 'Const' => 1, - 'Header' => 'level.h', - 'MnglName' => '_ZNK7log4cxx5Level8toStringERNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1021053' - }, - '1' => { - 'name' => 'dst', - 'type' => '650739' - } - }, - 'Return' => '1', - 'ShortName' => 'toString', - 'Source' => 'level.cpp', - 'SourceLine' => '169' - }, - '8370967' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5Level7toLevelEi', - 'Param' => { - '0' => { - 'name' => 'val', - 'type' => '50231' - } - }, - 'Return' => '409192', - 'ShortName' => 'toLevel', - 'Source' => 'level.cpp', - 'SourceLine' => '103', - 'Static' => 1 - }, - '8370994' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5Level7toLevelEiRKSt10shared_ptrIS0_E', - 'Param' => { - '0' => { - 'name' => 'val', - 'type' => '50231' - }, - '1' => { - 'name' => 'defaultLevel', - 'type' => '412081' - } - }, - 'Return' => '409192', - 'ShortName' => 'toLevel', - 'Source' => 'level.cpp', - 'SourceLine' => '108', - 'Static' => 1 - }, - '8371043' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '223', - 'MnglName' => '_ZN7log4cxx5Level8getFatalEv', - 'Return' => '409192', - 'ShortName' => 'getFatal', - 'Source' => 'level.cpp', - 'SourceLine' => '39', - 'Static' => 1 - }, - '837109' => { - 'Class' => '836422', - 'Const' => 1, - 'Header' => 'asyncappender.h', - 'InLine' => 2, - 'Line' => '56', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender10instanceofERKNS_7helpers5ClassE', + '562395' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter5toIntERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845085' + 'name' => 'value', + 'type' => '210597' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'dEfault', + 'type' => '190263' } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '8371094' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '226', - 'MnglName' => '_ZN7log4cxx5Level7getInfoEv', - 'Return' => '409192', - 'ShortName' => 'getInfo', - 'Source' => 'level.cpp', - 'SourceLine' => '57', - 'Static' => 1 - }, - '8371128' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '228', - 'MnglName' => '_ZN7log4cxx5Level8getTraceEv', - 'Return' => '409192', - 'ShortName' => 'getTrace', - 'Source' => 'level.cpp', - 'SourceLine' => '69', - 'Static' => 1 - }, - '8371145' => { - 'Class' => '407323', - 'Header' => 'level.h', - 'Line' => '229', - 'MnglName' => '_ZN7log4cxx5Level6getOffEv', - 'Return' => '409192', - 'ShortName' => 'getOff', - 'Source' => 'level.cpp', - 'SourceLine' => '33', - 'Static' => 1 - }, - '8371162' => { - 'Class' => '407323', - 'Const' => 1, - 'Header' => 'level.h', - 'MnglName' => '_ZNK7log4cxx5Level6equalsERKSt10shared_ptrIS0_E', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1021053' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50284', - 'ShortName' => 'equals', - 'Source' => 'level.cpp', - 'SourceLine' => '277', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '8371311' => { - 'Class' => '407323', - 'Const' => 1, - 'Header' => 'level.h', - 'MnglName' => '_ZNK7log4cxx5Level16isGreaterOrEqualERKSt10shared_ptrIS0_E', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '1021053' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '50284', - 'ShortName' => 'isGreaterOrEqual', - 'Source' => 'level.cpp', - 'SourceLine' => '282', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '8371560' => { - 'Data' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7classes17LevelRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LevelRegistration', - 'Source' => 'level.cpp' - }, - '837234' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender11addAppenderESt10shared_ptrINS_8AppenderEE', + }, + 'Return' => '190263', + 'ShortName' => 'toInt', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '145', + 'Static' => 1 + }, + '562426' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter10toFileSizeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEl', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '843940' + 'name' => 's', + 'type' => '210597' }, '1' => { - 'name' => 'newAppender', - 'type' => '263000' + 'name' => 'dEfault', + 'type' => '190282' } }, - 'Return' => '1', - 'ShortName' => 'addAppender', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '188', - 'Virt' => 1, - 'VirtPos' => '5' + 'Return' => '190282', + 'ShortName' => 'toFileSize', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '159', + 'Static' => 1 }, - '837275' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '56244140' => { + 'Artificial' => 1, + 'Class' => '56161727', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184685' + } + }, + 'ShortName' => 'WideLife' + }, + '56244141' => { + 'Artificial' => 1, + 'Class' => '56161727', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184685' + } + }, + 'ShortName' => 'WideLife' + }, + '56244283' => { + 'Artificial' => 1, + 'Class' => '56161727', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184685' + } + }, + 'ShortName' => 'WideLife' + }, + '56244284' => { + 'Artificial' => 1, + 'Class' => '56161727', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184685' + } + }, + 'ShortName' => 'WideLife' + }, + '562457' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '84', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_5LevelEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '843940' + 'name' => 'value', + 'type' => '210597' }, '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'pool1', - 'type' => '64643' + 'name' => 'defaultValue', + 'type' => '575807' } }, - 'Return' => '1', - 'ShortName' => 'doAppend', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '218', - 'Virt' => 1, - 'VirtPos' => '12' + 'Return' => '567044', + 'ShortName' => 'toLevel', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '303', + 'Static' => 1 }, - '837321' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '562488' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '92', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter12findAndSubstERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_10PropertiesE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '843940' + 'name' => 'key', + 'type' => '210597' }, '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'props', + 'type' => '575812' } }, - 'Return' => '1', - 'ShortName' => 'append', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '223', - 'Virt' => 1, - 'VirtPos' => '13' + 'Return' => '209661', + 'ShortName' => 'findAndSubst', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '192', + 'Static' => 1 }, - '837367' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender5closeEv', + '562519' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '128', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter9substVarsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_10PropertiesE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '843940' + 'name' => 'val', + 'type' => '210597' + }, + '1' => { + 'name' => 'props', + 'type' => '575812' } }, - 'Return' => '1', - 'ShortName' => 'close', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '302', - 'Virt' => 1, - 'VirtPos' => '14' + 'Return' => '209661', + 'ShortName' => 'substVars', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '213', + 'Static' => 1 }, - '837404' => { - 'Class' => '836422', - 'Const' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender15getAllAppendersEv', + '562550' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '137', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter17getSystemPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845085' + 'name' => 'key', + 'type' => '210597' + }, + '1' => { + 'name' => 'def', + 'type' => '210597' } }, - 'Return' => '262971', - 'ShortName' => 'getAllAppenders', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '328', - 'Virt' => 1, - 'VirtPos' => '6' + 'Return' => '209661', + 'ShortName' => 'getSystemProperty', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '288', + 'Static' => 1 }, - '837445' => { - 'Class' => '836422', - 'Const' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '562581' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '149', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter22instantiateByClassNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS0_5ClassERKSt10shared_ptrINS0_6ObjectEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845085' + 'name' => 'className', + 'type' => '210597' }, '1' => { - 'name' => 'n', - 'type' => '263006' + 'name' => 'superClass', + 'type' => '210728' + }, + '2' => { + 'name' => 'defaultValue', + 'type' => '575817' } }, - 'Return' => '262988', - 'ShortName' => 'getAppender', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '333', - 'Virt' => 1, - 'VirtPos' => '7' + 'Return' => '562699', + 'ShortName' => 'instantiateByClassName', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '382', + 'Static' => 1 }, - '837491' => { - 'Class' => '836422', - 'Const' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender15getLocationInfoEv', + '562617' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '152', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter16instantiateByKeyERNS0_10PropertiesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS0_5ClassERKSt10shared_ptrINS0_6ObjectEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845085' + 'name' => 'props', + 'type' => '575812' + }, + '1' => { + 'name' => 'key', + 'type' => '210597' + }, + '2' => { + 'name' => 'superClass', + 'type' => '210728' + }, + '3' => { + 'name' => 'defaultValue', + 'type' => '575817' } }, - 'Return' => '50284', - 'ShortName' => 'getLocationInfo', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '363' + 'Return' => '562699', + 'ShortName' => 'instantiateByKey', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '364', + 'Static' => 1 }, - '837523' => { - 'Class' => '836422', - 'Const' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender10isAttachedESt10shared_ptrINS_8AppenderEE', + '562658' => { + 'Class' => '562299', + 'Header' => 'optionconverter.h', + 'Line' => '178', + 'MnglName' => '_ZN7log4cxx7helpers15OptionConverter18selectAndConfigureERKNS_4FileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt10shared_ptrINS_3spi16LoggerRepositoryEEi', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '845085' + 'name' => 'configFileName', + 'type' => '575822' }, '1' => { - 'name' => 'appender', - 'type' => '263000' + 'name' => '_clazz', + 'type' => '210597' + }, + '2' => { + 'name' => 'hierarchy', + 'type' => '565552' + }, + '3' => { + 'name' => 'delay', + 'type' => '190263' } }, - 'Return' => '50284', - 'ShortName' => 'isAttached', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '338', - 'Virt' => 1, - 'VirtPos' => '8' + 'Return' => '1', + 'ShortName' => 'selectAndConfigure', + 'Source' => 'optionconverter.cpp', + 'SourceLine' => '409', + 'Static' => 1 }, - '837569' => { - 'Class' => '836422', + '56301631' => { + 'Class' => '5659844', + 'Destructor' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + } + }, + 'ShortName' => 'SyslogAppender', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '64', + 'Virt' => 1 + }, + '56301730' => { + 'Class' => '5659844', + 'Destructor' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + } + }, + 'ShortName' => 'SyslogAppender', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '64', + 'Virt' => 1 + }, + '56302019' => { + 'Class' => '5659844', + 'Destructor' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + } + }, + 'ShortName' => 'SyslogAppender', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '64', + 'Virt' => 1 + }, + '56302210' => { + 'Class' => '5659844', + 'Constructor' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '2' => { + 'name' => 'syslogHost1', + 'type' => '210597' + }, + '3' => { + 'name' => 'syslogFacility1', + 'type' => '190263' + } + }, + 'ShortName' => 'SyslogAppender', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '56' + }, + '56308067' => { + 'Class' => '5659844', + 'Constructor' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '2' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '3' => { + 'name' => 'syslogHost1', + 'type' => '210597' + }, + '4' => { + 'name' => 'syslogFacility1', + 'type' => '190263' + } + }, + 'ShortName' => 'SyslogAppender', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '56' + }, + '56313685' => { + 'Class' => '5659844', + 'Constructor' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC1ERKSt10shared_ptrINS_6LayoutEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '1' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '2' => { + 'name' => 'syslogFacility1', + 'type' => '190263' + } + }, + 'ShortName' => 'SyslogAppender', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '49' + }, + '56319473' => { + 'Class' => '5659844', + 'Constructor' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC2ERKSt10shared_ptrINS_6LayoutEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + }, + '2' => { + 'name' => 'layout1', + 'type' => '1391157' + }, + '3' => { + 'name' => 'syslogFacility1', + 'type' => '190263' + } + }, + 'ShortName' => 'SyslogAppender', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '49' + }, + '56324998' => { + 'Class' => '5659844', + 'Constructor' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + } + }, + 'ShortName' => 'SyslogAppender', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '42' + }, + '56329541' => { + 'Class' => '5659844', + 'Constructor' => 1, + 'Header' => 'syslogappender.h', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56185958' + } + }, + 'ShortName' => 'SyslogAppender', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '42' + }, + '56335049' => { + 'Artificial' => 1, + 'Class' => '56167354', + 'Constructor' => 1, + 'Header' => 'syslogappender_priv.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184796' + }, + '1' => { + 'name' => 'layout', + 'type' => '1391157' + }, + '2' => { + 'name' => 'syslogHost', + 'type' => '210597' + }, + '3' => { + 'name' => 'syslogFacility', + 'type' => '190263' + } + }, + 'ShortName' => 'SyslogAppenderPriv' + }, + '56335050' => { + 'Artificial' => 1, + 'Class' => '56167354', + 'Constructor' => 1, + 'Header' => 'syslogappender_priv.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184796' + }, + '1' => { + 'name' => 'layout', + 'type' => '1391157' + }, + '2' => { + 'name' => 'syslogHost', + 'type' => '210597' + }, + '3' => { + 'name' => 'syslogFacility', + 'type' => '190263' + } + }, + 'ShortName' => 'SyslogAppenderPriv' + }, + '56335135' => { + 'Artificial' => 1, + 'Class' => '56167354', + 'Constructor' => 1, + 'Header' => 'syslogappender_priv.h', + 'InLine' => 1, + 'Line' => '68', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC2ERKSt10shared_ptrINS_6LayoutEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184796' + }, + '1' => { + 'name' => 'layout', + 'type' => '1391157' + }, + '2' => { + 'name' => 'syslogFacility', + 'type' => '190263' + } + }, + 'ShortName' => 'SyslogAppenderPriv' + }, + '56335136' => { + 'Artificial' => 1, + 'Class' => '56167354', + 'Constructor' => 1, + 'Header' => 'syslogappender_priv.h', + 'InLine' => 1, + 'Line' => '68', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC1ERKSt10shared_ptrINS_6LayoutEEi', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184796' + }, + '1' => { + 'name' => 'layout', + 'type' => '1391157' + }, + '2' => { + 'name' => 'syslogFacility', + 'type' => '190263' + } + }, + 'ShortName' => 'SyslogAppenderPriv' + }, + '56335192' => { + 'Artificial' => 1, + 'Class' => '56167354', + 'Constructor' => 1, + 'Header' => 'syslogappender_priv.h', + 'InLine' => 1, + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184796' + } + }, + 'ShortName' => 'SyslogAppenderPriv' + }, + '56335193' => { + 'Artificial' => 1, + 'Class' => '56167354', + 'Constructor' => 1, + 'Header' => 'syslogappender_priv.h', + 'InLine' => 1, + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184796' + } + }, + 'ShortName' => 'SyslogAppenderPriv' + }, + '56354513' => { + 'Artificial' => 1, + 'Class' => '5659853', + 'Destructor' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56186052' + } + }, + 'ShortName' => 'ClazzSyslogAppender', + 'Virt' => 1 + }, + '56354514' => { + 'Artificial' => 1, + 'Class' => '5659853', + 'Destructor' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56186052' + } + }, + 'ShortName' => 'ClazzSyslogAppender', + 'Virt' => 1 + }, + '56354660' => { + 'Artificial' => 1, + 'Class' => '5659853', + 'Destructor' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56186052' + } + }, + 'ShortName' => 'ClazzSyslogAppender', + 'Virt' => 1 + }, + '56354755' => { + 'Artificial' => 1, + 'Class' => '5659853', + 'Constructor' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56186052' + } + }, + 'ShortName' => 'ClazzSyslogAppender' + }, + '56354756' => { + 'Artificial' => 1, + 'Class' => '5659853', + 'Constructor' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56186052' + } + }, + 'ShortName' => 'ClazzSyslogAppender' + }, + '564069' => { + 'Class' => '564020', 'Const' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender14requiresLayoutEv', + 'Header' => 'level.h', + 'InLine' => 2, + 'Line' => '56', + 'MnglName' => '_ZNK7log4cxx5Level10LevelClass7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845085' + 'type' => '21528938' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'requiresLayout', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '343', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, - 'VirtPos' => '15' + 'VirtPos' => '3' }, - '837610' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender18removeAllAppendersEv', + '564106' => { + 'Class' => '564020', + 'Const' => 1, + 'Header' => 'level.h', + 'InLine' => 2, + 'Line' => '61', + 'MnglName' => '_ZNK7log4cxx5Level10LevelClass7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843940' + 'type' => '21528938' + }, + '1' => { + 'name' => 'sArg', + 'type' => '210597' } }, - 'Return' => '1', - 'ShortName' => 'removeAllAppenders', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '348', + 'Return' => '567044', + 'ShortName' => 'toLevel', 'Virt' => 1, - 'VirtPos' => '9' + 'VirtPos' => '4' }, - '837647' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender14removeAppenderESt10shared_ptrINS_8AppenderEE', + '564148' => { + 'Class' => '564020', + 'Const' => 1, + 'Header' => 'level.h', + 'InLine' => 2, + 'Line' => '66', + 'MnglName' => '_ZNK7log4cxx5Level10LevelClass7toLevelEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843940' + 'type' => '21528938' }, '1' => { - 'name' => 'appender', - 'type' => '263000' + 'name' => 'val', + 'type' => '190263' } }, - 'Return' => '1', - 'ShortName' => 'removeAppender', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '353', + 'Return' => '567044', + 'ShortName' => 'toLevel', 'Virt' => 1, - 'VirtPos' => '10' + 'VirtPos' => '5' }, - '8376609' => { - 'Artificial' => 1, - 'Class' => '407323', - 'Destructor' => 1, - 'Header' => 'level.h', - 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx5LevelD0Ev', + '564252' => { + 'Class' => '564239', + 'Data' => 1, + 'Header' => 'locationinfo.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfo2NAE', + 'Return' => '191623', + 'ShortName' => 'NA', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '29' + }, + '564269' => { + 'Class' => '564239', + 'Data' => 1, + 'Header' => 'locationinfo.h', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfo9NA_METHODE', + 'Return' => '191623', + 'ShortName' => 'NA_METHOD', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '30' + }, + '564285' => { + 'Class' => '564239', + 'Header' => 'locationinfo.h', + 'Line' => '58', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfo22getLocationUnavailableEv', + 'Return' => '573016', + 'ShortName' => 'getLocationUnavailable', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '32', + 'Static' => 1 + }, + '5642986' => { + 'Class' => '208442', + 'Const' => 1, + 'Header' => 'class.h', + 'Line' => '36', + 'MnglName' => '_ZNK7log4cxx7helpers5Class8toStringB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8372560' + 'type' => '5678548' } }, - 'ShortName' => 'Level', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'toString', + 'Source' => 'class.cpp', + 'SourceLine' => '101' }, - '8376610' => { - 'Artificial' => 1, - 'Class' => '407323', - 'Destructor' => 1, - 'Header' => 'level.h', - 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx5LevelD1Ev', + '5643016' => { + 'Class' => '208442', + 'Const' => 1, + 'Header' => 'class.h', + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx7helpers5Class7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8372560' + 'type' => '216673' } }, - 'ShortName' => 'Level', - 'Virt' => 1 + 'PureVirt' => 1, + 'Return' => '209661', + 'ShortName' => 'getName', + 'VirtPos' => '3' }, - '837689' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '843940' - }, - '1' => { - 'name' => 'n', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'removeAppender', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '358', - 'Virt' => 1, - 'VirtPos' => '11' - }, - '837731' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender15setLocationInfoEb', + '5643054' => { + 'Class' => '208442', + 'Header' => 'class.h', + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx7helpers5Class7forNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'className', + 'type' => '210597' + } + }, + 'Return' => '210728', + 'ShortName' => 'forName', + 'Source' => 'class.cpp', + 'SourceLine' => '122', + 'Static' => 1 + }, + '5643080' => { + 'Class' => '208442', + 'Header' => 'class.h', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers5Class13registerClassERKS1_', + 'Param' => { + '0' => { + 'name' => 'newClass', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'registerClass', + 'Source' => 'class.cpp', + 'SourceLine' => '165', + 'Static' => 1 + }, + '5643211' => { + 'Class' => '208442', + 'Header' => 'class.h', + 'MnglName' => '_ZN7log4cxx7helpers5Class11getRegistryB5cxx11Ev', + 'Private' => 1, + 'Return' => '5679448', + 'ShortName' => 'getRegistry', + 'Source' => 'class.cpp', + 'SourceLine' => '116', + 'Static' => 1 + }, + '5643227' => { + 'Class' => '208442', + 'Header' => 'class.h', + 'MnglName' => '_ZN7log4cxx7helpers5Class15registerClassesEv', + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'registerClasses', + 'Source' => 'class.cpp', + 'SourceLine' => '171', + 'Static' => 1 + }, + '564430' => { + 'Class' => '564239', + 'Header' => 'locationinfo.h', + 'Line' => '99', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfoaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843940' + 'type' => '21204963' }, '1' => { - 'name' => 'flag', - 'type' => '50284' + 'name' => 'src', + 'type' => '573016' } }, - 'Reg' => { - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setLocationInfo', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '368' + 'Return' => '573026', + 'ShortName' => 'operator=', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '81' }, - '8377409' => { - 'Artificial' => 1, - 'Class' => '407323', - 'Destructor' => 1, - 'Header' => 'level.h', - 'InLine' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx5LevelD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8372560' - } - }, - 'ShortName' => 'Level', - 'Virt' => 1 - }, - '837764' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender13setBufferSizeEi', + '564465' => { + 'Class' => '564239', + 'Header' => 'locationinfo.h', + 'Line' => '104', + 'MnglName' => '_ZN7log4cxx3spi12LocationInfo5clearEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843940' - }, - '1' => { - 'name' => 'size', - 'type' => '50231' + 'type' => '21204963' } }, 'Return' => '1', - 'ShortName' => 'setBufferSize', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '374' + 'ShortName' => 'clear', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '92' }, - '837797' => { - 'Class' => '836422', + '564491' => { + 'Class' => '564239', 'Const' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender13getBufferSizeEv', + 'Header' => 'locationinfo.h', + 'Line' => '108', + 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo12getClassNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845085' + 'type' => '24668802' } }, - 'Return' => '50231', - 'ShortName' => 'getBufferSize', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '386' + 'Return' => '89545', + 'ShortName' => 'getClassName', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '153' }, - '837829' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender11setBlockingEb', + '564521' => { + 'Class' => '564239', + 'Const' => 1, + 'Header' => 'locationinfo.h', + 'Line' => '114', + 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo11getFileNameEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843940' - }, - '1' => { - 'name' => 'value', - 'type' => '50284' + 'type' => '24668802' } }, - 'Return' => '1', - 'ShortName' => 'setBlocking', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '391' + 'Return' => '191618', + 'ShortName' => 'getFileName', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '104' }, - '837862' => { - 'Class' => '836422', + '564551' => { + 'Class' => '564239', 'Const' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZNK7log4cxx13AsyncAppender11getBlockingEv', + 'Header' => 'locationinfo.h', + 'Line' => '121', + 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo16getShortFileNameEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845085' + 'type' => '24668802' } }, - 'Return' => '50284', - 'ShortName' => 'getBlocking', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '398' + 'Return' => '191618', + 'ShortName' => 'getShortFileName', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '109' }, - '837894' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + '564581' => { + 'Class' => '564239', + 'Const' => 1, + 'Header' => 'locationinfo.h', + 'Line' => '127', + 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo13getLineNumberEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843940' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '24668802' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '194', - 'Virt' => 1, - 'VirtPos' => '16' + 'Return' => '190263', + 'ShortName' => 'getLineNumber', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '117' }, - '838016' => { - 'Class' => '836422', - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppender8dispatchEv', + '564611' => { + 'Class' => '564239', + 'Const' => 1, + 'Header' => 'locationinfo.h', + 'Line' => '130', + 'MnglName' => '_ZNK7log4cxx3spi12LocationInfo13getMethodNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '843940' + 'type' => '24668802' } }, - 'Private' => 1, - 'Return' => '1', - 'ShortName' => 'dispatch', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '458' - }, - '838059' => { - 'Data' => 1, - 'Line' => '174', - 'MnglName' => '_ZN7log4cxx7classes25AsyncAppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'AsyncAppenderRegistration', - 'Source' => 'asyncappender.cpp' + 'Return' => '89545', + 'ShortName' => 'getMethodName', + 'Source' => 'locationinfo.cpp', + 'SourceLine' => '123' }, - '8388452' => { - 'Artificial' => 1, - 'Class' => '8369341', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8373220' - } - }, - 'ShortName' => 'WideLife' - }, - '8388453' => { - 'Artificial' => 1, - 'Class' => '8369341', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8373220' - } - }, - 'ShortName' => 'WideLife' - }, - '8389242' => { - 'Artificial' => 1, - 'Class' => '8369341', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEEC2IS4_JEEEOT_DpOT0_', + '5647215' => { + 'Class' => '5647120', + 'Header' => 'cyclicbuffer.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx7helpers12CyclicBuffer3addERKSt10shared_ptrINS_3spi12LoggingEventEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373220' + 'type' => '8373722' }, '1' => { - 'name' => 'arg0', - 'type' => '410212' + 'name' => 'event', + 'type' => '576659' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '370752' - } - } + 'Return' => '1', + 'ShortName' => 'add', + 'Source' => 'cyclicbuffer.cpp', + 'SourceLine' => '65' }, - '8389243' => { - 'Artificial' => 1, - 'Class' => '8369341', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEEC1IS4_JEEEOT_DpOT0_', + '5647247' => { + 'Class' => '5647120', + 'Header' => 'cyclicbuffer.h', + 'Line' => '62', + 'MnglName' => '_ZN7log4cxx7helpers12CyclicBuffer3getEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373220' + 'type' => '8373722' }, '1' => { - 'name' => 'arg0', - 'type' => '410212' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '370752' - } - } - }, - '8389773' => { - 'Artificial' => 1, - 'Class' => '8368579', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8373112' + 'name' => 'i', + 'type' => '190263' } }, - 'ShortName' => 'WideLife' + 'Return' => '565581', + 'ShortName' => 'get', + 'Source' => 'cyclicbuffer.cpp', + 'SourceLine' => '90' }, - '8389774' => { - 'Artificial' => 1, - 'Class' => '8368579', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEED0Ev', + '5647282' => { + 'Class' => '5647120', + 'Const' => 1, + 'Header' => 'cyclicbuffer.h', + 'Line' => '64', + 'MnglName' => '_ZNK7log4cxx7helpers12CyclicBuffer10getMaxSizeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373112' + 'type' => '8373737' } }, - 'ShortName' => 'WideLife' + 'Return' => '190263', + 'ShortName' => 'getMaxSize', + 'Source' => 'cyclicbuffer.cpp', + 'SourceLine' => '174' }, - '8389928' => { - 'Artificial' => 1, - 'Class' => '8370208', - 'Destructor' => 1, - 'Header' => 'level.h', - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx5Level10LevelClassD0Ev', + '5647312' => { + 'Class' => '5647120', + 'Header' => 'cyclicbuffer.h', + 'Line' => '70', + 'MnglName' => '_ZN7log4cxx7helpers12CyclicBuffer3getEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373674' + 'type' => '8373722' } }, - 'ShortName' => 'LevelClass', - 'Virt' => 1 + 'Return' => '565581', + 'ShortName' => 'get', + 'Source' => 'cyclicbuffer.cpp', + 'SourceLine' => '104' }, - '8389929' => { - 'Artificial' => 1, - 'Class' => '8370208', - 'Destructor' => 1, - 'Header' => 'level.h', - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx5Level10LevelClassD1Ev', + '5647342' => { + 'Class' => '5647120', + 'Const' => 1, + 'Header' => 'cyclicbuffer.h', + 'Line' => '77', + 'MnglName' => '_ZNK7log4cxx7helpers12CyclicBuffer6lengthEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373674' + 'type' => '8373737' } }, - 'ShortName' => 'LevelClass', - 'Virt' => 1 + 'Return' => '190263', + 'ShortName' => 'length', + 'Source' => 'cyclicbuffer.cpp', + 'SourceLine' => '179' }, - '8390070' => { - 'Artificial' => 1, - 'Class' => '8370208', - 'Destructor' => 1, - 'Header' => 'level.h', - 'InLine' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx5Level10LevelClassD2Ev', + '5647372' => { + 'Class' => '5647120', + 'Header' => 'cyclicbuffer.h', + 'Line' => '83', + 'MnglName' => '_ZN7log4cxx7helpers12CyclicBuffer6resizeEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373674' + 'type' => '8373722' + }, + '1' => { + 'name' => 'newSize', + 'type' => '190263' } }, - 'ShortName' => 'LevelClass', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'resize', + 'Source' => 'cyclicbuffer.cpp', + 'SourceLine' => '127' }, - '8390160' => { - 'Artificial' => 1, - 'Class' => '8368579', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEEC2Ev', + '5647505' => { + 'Class' => '5647420', + 'Const' => 1, + 'Header' => 'inetaddress.h', + 'InLine' => 2, + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7helpers11InetAddress16ClazzInetAddress7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373112' + 'type' => '19585776' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8390161' => { - 'Artificial' => 1, - 'Class' => '8368579', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEEC1Ev', + '5647644' => { + 'Class' => '5647559', + 'Const' => 1, + 'Header' => 'datagrampacket.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramPacket19ClazzDatagramPacket7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8373112' + 'type' => '51477123' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8403222' => { - 'Class' => '407323', - 'Constructor' => 1, - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5LevelC2EiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + '5647783' => { + 'Class' => '5647698', + 'Const' => 1, + 'Header' => 'datagramsocket.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7helpers14DatagramSocket19ClazzDatagramSocket7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8372560' - }, - '1' => { - 'name' => 'level1', - 'type' => '50231' - }, - '2' => { - 'name' => 'name1', - 'type' => '263006' - }, - '3' => { - 'name' => 'syslogEquivalent1', - 'type' => '50231' + 'type' => '51779416' } }, - 'ShortName' => 'Level', - 'Source' => 'level.cpp', - 'SourceLine' => '84' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8403223' => { - 'Class' => '407323', - 'Constructor' => 1, - 'Header' => 'level.h', - 'MnglName' => '_ZN7log4cxx5LevelC1EiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi', + '5647910' => { + 'Class' => '5647823', + 'Header' => 'syslogwriter.h', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers12SyslogWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8372560' + 'type' => '55697680' }, '1' => { - 'name' => 'level1', - 'type' => '50231' - }, - '2' => { - 'name' => 'name1', - 'type' => '263006' - }, - '3' => { - 'name' => 'syslogEquivalent1', - 'type' => '50231' + 'name' => 'source', + 'type' => '210597' } }, - 'ShortName' => 'Level', - 'Source' => 'level.cpp', - 'SourceLine' => '84' + 'Return' => '1', + 'ShortName' => 'write', + 'Source' => 'syslogwriter.cpp', + 'SourceLine' => '65' }, - '841617' => { - 'Class' => '841514', - 'Line' => '72', - 'MnglName' => '_ZN14DiscardSummaryaSERKS_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '841792' - }, - '1' => { - 'name' => 'src', - 'type' => '841803' - } - }, - 'Return' => '841809', - 'ShortName' => 'operator=', - 'Source' => 'asyncappender.cpp' - }, - '841653' => { - 'Class' => '841514', - 'Line' => '79', - 'MnglName' => '_ZN14DiscardSummary3addERKSt10shared_ptrIN7log4cxx3spi12LoggingEventEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '841792' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - } - }, - 'Return' => '1', - 'ShortName' => 'add', - 'Source' => 'asyncappender.cpp' - }, - '841686' => { - 'Class' => '841514', - 'Line' => '86', - 'MnglName' => '_ZN14DiscardSummary11createEventERN7log4cxx7helpers4PoolE', + '564797' => { + 'Class' => '564713', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '841792' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - } - }, - 'Return' => '151288', - 'ShortName' => 'createEvent', - 'Source' => 'asyncappender.cpp' - }, - '841722' => { - 'Class' => '841514', - 'Line' => '89', - 'MnglName' => '_ZN14DiscardSummary11createEventERN7log4cxx7helpers4PoolEm', - 'Param' => { - '0' => { - 'name' => 'p', - 'type' => '64643' - }, - '1' => { - 'name' => 'discardedCount', - 'type' => '50486' + 'type' => '26822801' } }, - 'Return' => '151288', - 'ShortName' => 'createEvent', - 'Source' => 'asyncappender.cpp', - 'Static' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8462014' => { - 'Artificial' => 1, - 'Class' => '8370208', - 'Constructor' => 1, - 'Header' => 'level.h', - 'InLine' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx5Level10LevelClassC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8373674' - } - }, - 'ShortName' => 'LevelClass' - }, - '8462015' => { - 'Artificial' => 1, - 'Class' => '8370208', - 'Constructor' => 1, - 'Header' => 'level.h', - 'InLine' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx5Level10LevelClassC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8373674' - } - }, - 'ShortName' => 'LevelClass' - }, - '8535978' => { - 'Class' => '8535858', + '5648055' => { + 'Class' => '5647970', 'Const' => 1, - 'Header' => 'levelmatchfilter.h', + 'Header' => 'socket.h', 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter7getNameB5cxx11Ev', + 'Line' => '50', + 'MnglName' => '_ZNK7log4cxx7helpers6Socket11ClazzSocket7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539085' + 'type' => '52889661' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '8536017' => { - 'Class' => '8535858', - 'Const' => 1, - 'Header' => 'levelmatchfilter.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8539085' - } - }, - 'Return' => '8538976', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '8536056' => { - 'Artificial' => 1, - 'Class' => '8535858', - 'Header' => 'levelmatchfilter.h', - 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8539085' - } - }, - 'Return' => '8538976', - 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv' - }, - '8536298' => { - 'Class' => '8535840', - 'Const' => 1, - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter8getClassEv', + '5648288' => { + 'Class' => '562694', + 'Header' => 'properties.h', + 'Line' => '126', + 'MnglName' => '_ZN7log4cxx7helpers10Properties4loadESt10shared_ptrINS0_11InputStreamEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539010' + 'type' => '36347585' + }, + '1' => { + 'name' => 'inStream', + 'type' => '5648504' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '39', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '8536337' => { - 'Class' => '8535840', - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '39', - 'Static' => 1 - }, - '8536354' => { - 'Class' => '8535840', - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '39', - 'Static' => 1 + 'Return' => '1', + 'ShortName' => 'load', + 'Source' => 'properties.cpp', + 'SourceLine' => '430' }, - '8536371' => { - 'Class' => '8535840', - 'Const' => 1, - 'Header' => 'levelmatchfilter.h', - 'InLine' => 2, - 'Line' => '50', - 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter4castERKNS_7helpers5ClassE', + '5648320' => { + 'Class' => '562694', + 'Header' => 'properties.h', + 'Line' => '135', + 'MnglName' => '_ZN7log4cxx7helpers10Properties11setPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539010' + 'type' => '36347585' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'key', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'Return' => '209661', + 'ShortName' => 'setProperty', + 'Source' => 'properties.cpp', + 'SourceLine' => '407' }, - '8536415' => { - 'Class' => '8535840', - 'Const' => 1, - 'Header' => 'levelmatchfilter.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter10instanceofERKNS_7helpers5ClassE', + '564834' => { + 'Class' => '564713', + 'Const' => 1, + 'Header' => 'loggingevent.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26822801' + } + }, + 'Return' => '576748', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '5648360' => { + 'Class' => '562694', + 'Header' => 'properties.h', + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx7helpers10Properties3putERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539010' + 'type' => '36347585' }, '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'name' => 'key', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'Return' => '209661', + 'ShortName' => 'put', + 'Source' => 'properties.cpp', + 'SourceLine' => '412' }, - '8536538' => { - 'Class' => '8535840', - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '5648400' => { + 'Class' => '562694', + 'Const' => 1, + 'Header' => 'properties.h', + 'Line' => '152', + 'MnglName' => '_ZNK7log4cxx7helpers10Properties11getPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538982' + 'type' => '36347605' }, '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'key', + 'type' => '210597' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '49', - 'Virt' => 1, - 'VirtPos' => '6' + 'Return' => '209661', + 'ShortName' => 'getProperty', + 'Source' => 'properties.cpp', + 'SourceLine' => '419' }, - '8536584' => { - 'Class' => '8535840', - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter15setLevelToMatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '5648435' => { + 'Class' => '562694', + 'Const' => 1, + 'Header' => 'properties.h', + 'Line' => '159', + 'MnglName' => '_ZNK7log4cxx7helpers10Properties3getERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538982' + 'type' => '36347605' }, '1' => { - 'name' => 'levelToMatch1', - 'type' => '263006' + 'name' => 'key', + 'type' => '210597' } }, - 'Return' => '1', - 'ShortName' => 'setLevelToMatch', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '66' + 'Return' => '209661', + 'ShortName' => 'get', + 'Source' => 'properties.cpp', + 'SourceLine' => '424' }, - '8536616' => { - 'Class' => '8535840', + '5648470' => { + 'Class' => '562694', 'Const' => 1, - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter15getLevelToMatchB5cxx11Ev', + 'Header' => 'properties.h', + 'Line' => '169', + 'MnglName' => '_ZNK7log4cxx7helpers10Properties13propertyNamesB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539010' + 'type' => '36347605' } }, - 'Return' => '63706', - 'ShortName' => 'getLevelToMatch', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '71' + 'Return' => '6007393', + 'ShortName' => 'propertyNames', + 'Source' => 'properties.cpp', + 'SourceLine' => '440' }, - '8536647' => { - 'Class' => '8535840', - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter16setAcceptOnMatchEb', + '5650433' => { + 'Class' => '5650347', + 'Header' => 'exception.h', + 'Line' => '187', + 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538982' + 'type' => '5681671' }, '1' => { - 'name' => 'acceptOnMatch1', - 'type' => '50284' + 'name' => 'src', + 'type' => '5681676' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setAcceptOnMatch', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '96' + 'Return' => '5681681', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '358' }, - '8536679' => { - 'Class' => '8535840', - 'Const' => 1, - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter16getAcceptOnMatchEv', + '5650468' => { + 'Class' => '5650347', + 'Header' => 'exception.h', + 'Line' => '189', + 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundException13formatMessageERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '8539010' + 'name' => 'className', + 'type' => '210597' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAcceptOnMatch', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '101' + 'Private' => 1, + 'Return' => '209661', + 'ShortName' => 'formatMessage', + 'Source' => 'exception.cpp', + 'SourceLine' => '364', + 'Static' => 1 }, - '8536710' => { - 'Class' => '8535840', - 'Const' => 1, - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', + '5650615' => { + 'Class' => '5650529', + 'Header' => 'exception.h', + 'Line' => '174', + 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionaSERKS1_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539010' + 'type' => '5681691' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'src', + 'type' => '5681696' } }, - 'Return' => '151101', - 'ShortName' => 'decide', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '76', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '8536767' => { - 'Data' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7classes28LevelMatchFilterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LevelMatchFilterRegistration', - 'Source' => 'levelmatchfilter.cpp' + 'Return' => '5681701', + 'ShortName' => 'operator=', + 'Source' => 'exception.cpp', + 'SourceLine' => '341' }, - '854023' => { - 'Artificial' => 1, - 'Class' => '834615', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, + '565147' => { + 'Class' => '565063', + 'Const' => 1, + 'Header' => 'filter.h', + 'InLine' => 2, 'Line' => '77', - 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionD0Ev', + 'MnglName' => '_ZNK7log4cxx3spi6Filter11ClazzFilter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845710' + 'type' => '24286091' } }, - 'ShortName' => 'IllegalArgumentException', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '854024' => { - 'Artificial' => 1, - 'Class' => '834615', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, + '565187' => { + 'Class' => '564875', + 'Const' => 1, + 'Header' => 'filter.h', 'Line' => '77', - 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionD1Ev', + 'MnglName' => '_ZNK7log4cxx3spi6Filter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845710' + 'type' => '577942' } }, - 'ShortName' => 'IllegalArgumentException', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '45', + 'Virt' => 1, + 'VirtPos' => '2' }, - '854262' => { - 'Artificial' => 1, - 'Class' => '834615', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, + '565224' => { + 'Class' => '564875', + 'Header' => 'filter.h', 'Line' => '77', - 'MnglName' => '_ZN7log4cxx7helpers24IllegalArgumentExceptionD2Ev', + 'MnglName' => '_ZN7log4cxx3spi6Filter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '45', + 'Static' => 1 + }, + '565240' => { + 'Class' => '564875', + 'Header' => 'filter.h', + 'Line' => '119', + 'MnglName' => '_ZN7log4cxx3spi6Filter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845710' + 'type' => '576334' + }, + '1' => { + 'name' => 'p1', + 'type' => '210597' + }, + '2' => { + 'name' => 'p2', + 'type' => '210597' } }, - 'ShortName' => 'IllegalArgumentException', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'filter.cpp', + 'SourceLine' => '52', + 'Virt' => 1, + 'VirtPos' => '6' }, - '8544475' => { - 'Artificial' => 1, - 'Class' => '8536083', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8538544' - } - }, - 'ShortName' => 'LevelMatchFilterPrivate', - 'Source' => 'levelmatchfilter.cpp', - 'Virt' => 1 - }, - '8544476' => { - 'Artificial' => 1, - 'Class' => '8536083', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD1Ev', + '5652503' => { + 'Class' => '5652418', + 'Const' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluator7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538544' + 'type' => '24285926' } }, - 'ShortName' => 'LevelMatchFilterPrivate', - 'Source' => 'levelmatchfilter.cpp', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '854460' => { - 'Artificial' => 1, - 'Class' => '834777', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '845733' - } - }, - 'ShortName' => 'RuntimeException', - 'Virt' => 1 - }, - '854461' => { - 'Artificial' => 1, - 'Class' => '834777', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionD1Ev', + '565284' => { + 'Class' => '564875', + 'Header' => 'filter.h', + 'Line' => '110', + 'MnglName' => '_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845733' + 'type' => '576334' + }, + '1' => { + 'name' => 'p1', + 'type' => '210607' } }, - 'ShortName' => 'RuntimeException', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'filter.cpp', + 'SourceLine' => '48', + 'Virt' => 1, + 'VirtPos' => '5' }, - '854483' => { - 'Artificial' => 1, - 'Class' => '834777', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers16RuntimeExceptionD2Ev', + '565323' => { + 'Class' => '564875', + 'Const' => 1, + 'Header' => 'filter.h', + 'Line' => '83', + 'MnglName' => '_ZNK7log4cxx3spi6Filter7getNextEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '845733' + 'type' => '577942' } }, - 'ShortName' => 'RuntimeException', - 'Virt' => 1 + 'Return' => '565564', + 'ShortName' => 'getNext', + 'Source' => 'filter.cpp', + 'SourceLine' => '38' }, - '854553' => { - 'Artificial' => 1, - 'Class' => '832107', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionD0Ev', + '565353' => { + 'Class' => '564875', + 'Header' => 'filter.h', + 'Line' => '84', + 'MnglName' => '_ZN7log4cxx3spi6Filter7setNextERKSt10shared_ptrIS1_E', 'Param' => { '0' => { 'name' => 'this', - 'type' => '854512' + 'type' => '576334' + }, + '1' => { + 'name' => 'newNext', + 'type' => '576654' } }, - 'ShortName' => 'Exception', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setNext', + 'Source' => 'filter.cpp', + 'SourceLine' => '43' }, - '854554' => { - 'Artificial' => 1, - 'Class' => '832107', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionD1Ev', + '565465' => { + 'Class' => '564875', + 'Const' => 1, + 'Header' => 'filter.h', + 'InLine' => 2, + 'Line' => '81', + 'MnglName' => '_ZNK7log4cxx3spi6Filter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '854512' + 'type' => '577942' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'Exception', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '854576' => { - 'Artificial' => 1, - 'Class' => '832107', - 'Destructor' => 1, - 'Header' => 'exception.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx7helpers9ExceptionD2Ev', + '565507' => { + 'Class' => '564875', + 'Const' => 1, + 'Header' => 'filter.h', + 'InLine' => 2, + 'Line' => '78', + 'MnglName' => '_ZNK7log4cxx3spi6Filter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '854512' + 'type' => '577942' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'Exception', - 'Virt' => 1 + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8545872' => { - 'Artificial' => 1, - 'Class' => '8536083', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD2Ev', + '5655892' => { + 'Class' => '3121185', + 'Header' => 'patternlayout.h', + 'Line' => '451', + 'MnglName' => '_ZN7log4cxx13PatternLayout13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'patternlayout.cpp', + 'SourceLine' => '94', + 'Static' => 1 + }, + '5656011' => { + 'Class' => '5655926', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx10JSONLayout15ClazzJSONLayout7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538544' + 'type' => '20767723' } }, - 'ShortName' => 'LevelMatchFilterPrivate', - 'Source' => 'levelmatchfilter.cpp', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8548975' => { - 'Artificial' => 1, - 'Class' => '8534185', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEED2Ev', + '5656049' => { + 'Class' => '5655926', + 'Const' => 1, + 'Header' => 'jsonlayout.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538419' + 'type' => '20767723' } }, - 'ShortName' => 'WideLife' + 'Return' => '5679798', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8548976' => { - 'Artificial' => 1, - 'Class' => '8534185', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEED0Ev', + '5656088' => { + 'Class' => '5655912', + 'Header' => 'jsonlayout.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx10JSONLayout13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'jsonlayout.cpp', + 'SourceLine' => '33', + 'Static' => 1 + }, + '5656204' => { + 'Class' => '5656119', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout15ClazzHTMLLayout7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538419' + 'type' => '19229032' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8549116' => { - 'Artificial' => 1, - 'Class' => '8534185', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEEC2Ev', + '5656242' => { + 'Class' => '5656119', + 'Const' => 1, + 'Header' => 'htmllayout.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538419' + 'type' => '19229032' } }, - 'ShortName' => 'WideLife' + 'Return' => '5679783', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8549117' => { - 'Artificial' => 1, - 'Class' => '8534185', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEEC1Ev', + '5656281' => { + 'Class' => '5656105', + 'Header' => 'htmllayout.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx10HTMLLayout13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'htmllayout.cpp', + 'SourceLine' => '53', + 'Static' => 1 + }, + '5656409' => { + 'Class' => '5656324', + 'Const' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 2, + 'Line' => '59', + 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout14ClazzXMLLayout7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538419' + 'type' => '50838087' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8553120' => { - 'Class' => '8535840', - 'Destructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterD0Ev', + '5656447' => { + 'Class' => '5656324', + 'Const' => 1, + 'Header' => 'xmllayout.h', + 'InLine' => 2, + 'Line' => '59', + 'MnglName' => '_ZNK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538982' + 'type' => '50838087' } }, - 'ShortName' => 'LevelMatchFilter', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '47', - 'Virt' => 1 + 'Return' => '5679753', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8553218' => { - 'Class' => '8535840', - 'Destructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterD1Ev', + '5656486' => { + 'Class' => '5656310', + 'Header' => 'xmllayout.h', + 'Line' => '59', + 'MnglName' => '_ZN7log4cxx3xml9XMLLayout13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'xmllayout.cpp', + 'SourceLine' => '51', + 'Static' => 1 + }, + '5656599' => { + 'Class' => '5656514', + 'Const' => 1, + 'Header' => 'domconfigurator.h', + 'InLine' => 2, + 'Line' => '212', + 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538982' + 'type' => '56984353' } }, - 'ShortName' => 'LevelMatchFilter', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '47', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8553412' => { - 'Class' => '8535840', - 'Destructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterD2Ev', + '5656637' => { + 'Class' => '5656514', + 'Const' => 1, + 'Header' => 'domconfigurator.h', + 'InLine' => 2, + 'Line' => '212', + 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538982' + 'type' => '56984353' } }, - 'ShortName' => 'LevelMatchFilter', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '47', - 'Virt' => 1 + 'Return' => '5679493', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8553542' => { - 'Class' => '8535840', - 'Constructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterC1Ev', + '5656676' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '94', + 'Static' => 1 + }, + '5656805' => { + 'Class' => '5656720', + 'Const' => 1, + 'Header' => 'filterbasedtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538982' + 'type' => '16175008' } }, - 'ShortName' => 'LevelMatchFilter', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '41' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8557088' => { - 'Class' => '8535840', - 'Constructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilterC2Ev', + '5656843' => { + 'Class' => '5656720', + 'Const' => 1, + 'Header' => 'filterbasedtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8538982' + 'type' => '16175008' } }, - 'ShortName' => 'LevelMatchFilter', - 'Source' => 'levelmatchfilter.cpp', - 'SourceLine' => '41' + 'Return' => '5679668', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8564213' => { - 'Artificial' => 1, - 'Class' => '8535858', - 'Destructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD0Ev', + '5656882' => { + 'Class' => '5656706', + 'Header' => 'filterbasedtriggeringpolicy.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'SourceLine' => '26', + 'Static' => 1 + }, + '565691' => { + 'Class' => '565607', + 'Const' => 1, + 'Header' => 'loggerrepository.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository21ClazzLoggerRepository7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286126' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '5657137' => { + 'Class' => '5657052', + 'Const' => 1, + 'Header' => 'rolloverdescription.h', + 'InLine' => 2, + 'Line' => '31', + 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription24ClazzRolloverDescription7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585323' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '5657175' => { + 'Class' => '5657052', + 'Const' => 1, + 'Header' => 'rolloverdescription.h', + 'InLine' => 2, + 'Line' => '31', + 'MnglName' => '_ZNK7log4cxx7rolling19RolloverDescription24ClazzRolloverDescription11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41585323' + } + }, + 'Return' => '5679633', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '5657314' => { + 'Class' => '5657229', + 'Const' => 1, + 'Header' => 'rollingpolicybase.h', + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBase7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41285823' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '5657470' => { + 'Class' => '5657385', + 'Const' => 1, + 'Header' => 'fixedwindowrollingpolicy.h', + 'InLine' => 2, + 'Line' => '73', + 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539074' + 'type' => '16791384' } }, - 'ShortName' => 'ClazzLevelMatchFilter', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8564214' => { - 'Artificial' => 1, - 'Class' => '8535858', - 'Destructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD1Ev', + '5657508' => { + 'Class' => '5657385', + 'Const' => 1, + 'Header' => 'fixedwindowrollingpolicy.h', + 'InLine' => 2, + 'Line' => '73', + 'MnglName' => '_ZNK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539074' + 'type' => '16791384' } }, - 'ShortName' => 'ClazzLevelMatchFilter', - 'Virt' => 1 + 'Return' => '5679598', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8564354' => { - 'Artificial' => 1, - 'Class' => '8535858', - 'Destructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD2Ev', + '5657547' => { + 'Class' => '5657354', + 'Header' => 'fixedwindowrollingpolicy.h', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx7rolling24FixedWindowRollingPolicy13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'SourceLine' => '53', + 'Static' => 1 + }, + '5657663' => { + 'Class' => '5657578', + 'Const' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 2, + 'Line' => '143', + 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539074' + 'type' => '48300869' } }, - 'ShortName' => 'ClazzLevelMatchFilter', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8564444' => { - 'Artificial' => 1, - 'Class' => '8535858', - 'Constructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterC2Ev', + '5657701' => { + 'Class' => '5657578', + 'Const' => 1, + 'Header' => 'timebasedrollingpolicy.h', + 'InLine' => 2, + 'Line' => '143', + 'MnglName' => '_ZNK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539074' + 'type' => '48300869' } }, - 'ShortName' => 'ClazzLevelMatchFilter' + 'Return' => '5679538', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8564445' => { - 'Artificial' => 1, - 'Class' => '8535858', - 'Constructor' => 1, - 'Header' => 'levelmatchfilter.h', - 'InLine' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterC1Ev', + '5657740' => { + 'Class' => '5657564', + 'Header' => 'timebasedrollingpolicy.h', + 'Line' => '143', + 'MnglName' => '_ZN7log4cxx7rolling22TimeBasedRollingPolicy13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'timebasedrollingpolicy.cpp', + 'SourceLine' => '40', + 'Static' => 1 + }, + '5657851' => { + 'Class' => '5657766', + 'Const' => 1, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8539074' + 'type' => '43352191' } }, - 'ShortName' => 'ClazzLevelMatchFilter' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8638149' => { - 'Class' => '8638028', + '5657889' => { + 'Class' => '5657766', 'Const' => 1, - 'Header' => 'levelpatternconverter.h', + 'Header' => 'sizebasedtriggeringpolicy.h', 'InLine' => 2, - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverter7getNameB5cxx11Ev', + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8641367' + 'type' => '43352191' } }, - 'Return' => '63706', - 'ShortName' => 'getName', + 'Return' => '5679553', + 'ShortName' => 'newInstance', 'Virt' => 1, - 'VirtPos' => '3' - }, - '8638278' => { - 'Class' => '8637994', - 'Header' => 'levelpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'levelpatternconverter.cpp', - 'SourceLine' => '30', - 'Static' => 1 + 'VirtPos' => '4' }, - '8638295' => { - 'Class' => '8637994', - 'Header' => 'levelpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter13registerClassEv', - 'Return' => '64684', + '5657928' => { + 'Class' => '5657757', + 'Header' => 'sizebasedtriggeringpolicy.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'levelpatternconverter.cpp', - 'SourceLine' => '30', + 'Source' => 'sizebasedtriggeringpolicy.cpp', + 'SourceLine' => '26', 'Static' => 1 }, - '8638312' => { - 'Class' => '8637994', + '5658039' => { + 'Class' => '5657954', 'Const' => 1, - 'Header' => 'levelpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter8getClassEv', + 'Header' => 'rollingfileappender.h', + 'InLine' => 2, + 'Line' => '81', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640863' + 'type' => '40202367' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'levelpatternconverter.cpp', - 'SourceLine' => '30', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, - 'VirtPos' => '2' + 'VirtPos' => '3' }, - '8638351' => { - 'Class' => '8637994', + '565806' => { + 'Class' => '565732', + 'Header' => 'hierarchyeventlistener.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx3spi22HierarchyEventListener16addAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576763' + }, + '1' => { + 'name' => 'p1', + 'type' => '576768' + }, + '2' => { + 'name' => 'p2', + 'type' => '576773' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'addAppenderEvent', + 'VirtPos' => '5' + }, + '5658077' => { + 'Class' => '5657954', 'Const' => 1, - 'Header' => 'levelpatternconverter.h', + 'Header' => 'rollingfileappender.h', 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter4castERKNS_7helpers5ClassE', + 'Line' => '81', + 'MnglName' => '_ZNK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640863' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '40202367' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '5679568', + 'ShortName' => 'newInstance', 'Virt' => 1, 'VirtPos' => '4' }, - '8638395' => { - 'Class' => '8637994', + '5658116' => { + 'Class' => '5657945', + 'Header' => 'rollingfileappender.h', + 'Line' => '81', + 'MnglName' => '_ZN7log4cxx7rolling19RollingFileAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'rollingfileappender.cpp', + 'SourceLine' => '66', + 'Static' => 1 + }, + '5658227' => { + 'Class' => '5658142', 'Const' => 1, - 'Header' => 'levelpatternconverter.h', + 'Header' => 'manualtriggeringpolicy.h', 'InLine' => 2, - 'Line' => '42', - 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter10instanceofERKNS_7helpers5ClassE', + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640863' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '28800659' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '8638476' => { - 'Class' => '8637994', - 'Header' => 'levelpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + '5658265' => { + 'Class' => '5658142', + 'Const' => 1, + 'Header' => 'manualtriggeringpolicy.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv', 'Param' => { '0' => { - 'name' => 'p1', - 'type' => '410985' + 'name' => 'this', + 'type' => '28800659' } }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', + 'Return' => '5679583', 'ShortName' => 'newInstance', - 'Source' => 'levelpatternconverter.cpp', - 'SourceLine' => '38', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '5658304' => { + 'Class' => '5658133', + 'Header' => 'manualtriggeringpolicy.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7rolling22ManualTriggeringPolicy13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'manualtriggeringpolicy.cpp', + 'SourceLine' => '26', 'Static' => 1 }, - '8638504' => { - 'Class' => '8637994', + '5658415' => { + 'Class' => '5658330', 'Const' => 1, - 'Header' => 'levelpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + 'Header' => 'rollingpolicy.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7rolling13RollingPolicy18ClazzRollingPolicy7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640863' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' + 'type' => '40777239' } }, - 'Reg' => { - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'levelpatternconverter.cpp', - 'SourceLine' => '45', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, - 'VirtPos' => '7' + 'VirtPos' => '3' }, - '8638554' => { - 'Class' => '8637994', + '565850' => { + 'Class' => '565732', + 'Header' => 'hierarchyeventlistener.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx3spi22HierarchyEventListener19removeAppenderEventEPKNS_6LoggerEPKNS_8AppenderE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576763' + }, + '1' => { + 'name' => 'p1', + 'type' => '576768' + }, + '2' => { + 'name' => 'p2', + 'type' => '576773' + } + }, + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'removeAppenderEvent', + 'VirtPos' => '6' + }, + '5658546' => { + 'Class' => '5658461', 'Const' => 1, - 'Header' => 'levelpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE', + 'Header' => 'triggeringpolicy.h', + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicy7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640863' - }, - '1' => { - 'name' => 'obj', - 'type' => '652213' + 'type' => '49657159' } }, - 'Return' => '63706', - 'ShortName' => 'getStyleClass', - 'Source' => 'levelpatternconverter.cpp', - 'SourceLine' => '57', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, - 'VirtPos' => '6' - }, - '8639124' => { - 'Data' => 1, - 'Line' => '30', - 'MnglName' => '_ZN7log4cxx7classes33LevelPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LevelPatternConverterRegistration', - 'Source' => 'levelpatternconverter.cpp' + 'VirtPos' => '3' }, - '8644391' => { - 'Artificial' => 1, - 'Class' => '8637994', - 'Destructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterD0Ev', + '5659102' => { + 'Class' => '5659045', + 'Header' => 'propertysetter.h', + 'Line' => '86', + 'MnglName' => '_ZN7log4cxx6config14PropertySetter13setPropertiesERKSt10shared_ptrINS_7helpers6ObjectEERNS3_10PropertiesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '8640648' + 'name' => 'obj', + 'type' => '575817' + }, + '1' => { + 'name' => 'properties', + 'type' => '575812' + }, + '2' => { + 'name' => 'prefix', + 'type' => '210597' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'LevelPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setProperties', + 'Source' => 'propertysetter.cpp', + 'SourceLine' => '38', + 'Static' => 1 }, - '8644392' => { - 'Artificial' => 1, - 'Class' => '8637994', - 'Destructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterD2Ev', + '5659139' => { + 'Class' => '5659045', + 'Header' => 'propertysetter.h', + 'Line' => '95', + 'MnglName' => '_ZN7log4cxx6config14PropertySetter13setPropertiesERNS_7helpers10PropertiesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS2_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640648' + 'type' => '38405184' + }, + '1' => { + 'name' => 'properties', + 'type' => '575812' + }, + '2' => { + 'name' => 'prefix', + 'type' => '210597' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'LevelPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setProperties', + 'Source' => 'propertysetter.cpp', + 'SourceLine' => '47' }, - '8644659' => { - 'Artificial' => 1, - 'Class' => '8637994', - 'Destructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterD1Ev', + '5659181' => { + 'Class' => '5659045', + 'Header' => 'propertysetter.h', + 'Line' => '108', + 'MnglName' => '_ZN7log4cxx6config14PropertySetter11setPropertyERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640648' + 'type' => '38405184' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'ShortName' => 'LevelPatternConverter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setProperty', + 'Source' => 'propertysetter.cpp', + 'SourceLine' => '86' }, - '8659554' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_21LevelPatternConverterEEJEEEOT_DpOT0_', + '5659223' => { + 'Class' => '5659045', + 'Header' => 'propertysetter.h', + 'Line' => '112', + 'MnglName' => '_ZN7log4cxx6config14PropertySetter8activateERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' + 'type' => '38405184' }, '1' => { - 'name' => 'arg0', - 'type' => '8640670' + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '8613233' - } - } + 'Return' => '1', + 'ShortName' => 'activate', + 'Source' => 'propertysetter.cpp', + 'SourceLine' => '104' }, - '8659555' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, + '5659361' => { + 'Class' => '5659276', + 'Const' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 2, 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_21LevelPatternConverterEEJEEEOT_DpOT0_', + 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8640670' + 'type' => '11940881' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '8613233' - } - } + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8659973' => { - 'Artificial' => 1, - 'Class' => '8636364', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEED2Ev', + '5659399' => { + 'Class' => '5659276', + 'Const' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640340' + 'type' => '11940881' } }, - 'ShortName' => 'WideLife' + 'Return' => '5679463', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8659974' => { - 'Artificial' => 1, - 'Class' => '8636364', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEED0Ev', + '5659438' => { + 'Class' => '5659265', + 'Header' => 'fallbackerrorhandler.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx5varia20FallbackErrorHandler13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'fallbackerrorhandler.cpp', + 'SourceLine' => '33', + 'Static' => 1 + }, + '5659562' => { + 'Class' => '5659477', + 'Const' => 1, + 'Header' => 'xmlsocketappender.h', + 'InLine' => 2, + 'Line' => '117', + 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640340' + 'type' => '55264973' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8660115' => { - 'Artificial' => 1, - 'Class' => '8636364', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEEC2Ev', + '5659600' => { + 'Class' => '5659477', + 'Const' => 1, + 'Header' => 'xmlsocketappender.h', + 'InLine' => 2, + 'Line' => '117', + 'MnglName' => '_ZNK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640340' + 'type' => '55264973' } }, - 'ShortName' => 'WideLife' + 'Return' => '5680163', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8660116' => { - 'Artificial' => 1, - 'Class' => '8636364', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEEC1Ev', + '5659639' => { + 'Class' => '5659468', + 'Header' => 'xmlsocketappender.h', + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx3net17XMLSocketAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'xmlsocketappender.cpp', + 'SourceLine' => '51', + 'Static' => 1 + }, + '5659750' => { + 'Class' => '5659665', + 'Const' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 2, + 'Line' => '73', + 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender19ClazzTelnetAppender7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640340' + 'type' => '53695990' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8678769' => { - 'Class' => '8637994', - 'Constructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterC1Ev', + '5659788' => { + 'Class' => '5659665', + 'Const' => 1, + 'Header' => 'telnetappender.h', + 'InLine' => 2, + 'Line' => '73', + 'MnglName' => '_ZNK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640648' + 'type' => '53695990' } }, - 'ShortName' => 'LevelPatternConverter', - 'Source' => 'levelpatternconverter.cpp', - 'SourceLine' => '32' + 'Return' => '5680178', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8682956' => { - 'Class' => '8637994', - 'Constructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverterC2Ev', + '5659827' => { + 'Class' => '5659656', + 'Header' => 'telnetappender.h', + 'Line' => '73', + 'MnglName' => '_ZN7log4cxx3net14TelnetAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'telnetappender.cpp', + 'SourceLine' => '32', + 'Static' => 1 + }, + '565986' => { + 'Class' => '565902', + 'Const' => 1, + 'Header' => 'loggerfactory.h', + 'InLine' => 2, + 'Line' => '35', + 'MnglName' => '_ZNK7log4cxx3spi13LoggerFactory18ClazzLoggerFactory7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286151' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '5659938' => { + 'Class' => '5659853', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender19ClazzSyslogAppender7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8640648' + 'type' => '56186062' } }, - 'ShortName' => 'LevelPatternConverter', - 'Source' => 'levelpatternconverter.cpp', - 'SourceLine' => '32' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8689080' => { - 'Artificial' => 1, - 'Class' => '8638028', - 'Destructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD0Ev', + '5659976' => { + 'Class' => '5659853', + 'Const' => 1, + 'Header' => 'syslogappender.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8641356' + 'type' => '56186062' } }, - 'ShortName' => 'ClazzLevelPatternConverter', - 'Virt' => 1 + 'Return' => '5680203', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8689081' => { - 'Artificial' => 1, - 'Class' => '8638028', - 'Destructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD1Ev', + '5660015' => { + 'Class' => '5659844', + 'Header' => 'syslogappender.h', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx3net14SyslogAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'syslogappender.cpp', + 'SourceLine' => '38', + 'Static' => 1 + }, + '5660123' => { + 'Class' => '5660038', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'InLine' => 2, + 'Line' => '87', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender17ClazzSMTPAppender7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8641356' + 'type' => '43770427' } }, - 'ShortName' => 'ClazzLevelPatternConverter', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8689222' => { - 'Artificial' => 1, - 'Class' => '8638028', - 'Destructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD2Ev', + '5660161' => { + 'Class' => '5660038', + 'Const' => 1, + 'Header' => 'smtpappender.h', + 'InLine' => 2, + 'Line' => '87', + 'MnglName' => '_ZNK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8641356' + 'type' => '43770427' } }, - 'ShortName' => 'ClazzLevelPatternConverter', - 'Virt' => 1 + 'Return' => '5680248', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8689312' => { - 'Artificial' => 1, - 'Class' => '8638028', - 'Constructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterC2Ev', + '5660200' => { + 'Class' => '5660032', + 'Header' => 'smtpappender.h', + 'Line' => '87', + 'MnglName' => '_ZN7log4cxx3net12SMTPAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'smtpappender.cpp', + 'SourceLine' => '381', + 'Static' => 1 + }, + '5660324' => { + 'Class' => '5660239', + 'Const' => 1, + 'Header' => 'locationinfofilter.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8641356' + 'type' => '25034968' } }, - 'ShortName' => 'ClazzLevelPatternConverter' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8689313' => { - 'Artificial' => 1, - 'Class' => '8638028', - 'Constructor' => 1, - 'Header' => 'levelpatternconverter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterC1Ev', + '5660362' => { + 'Class' => '5660239', + 'Const' => 1, + 'Header' => 'locationinfofilter.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8641356' + 'type' => '25034968' } }, - 'ShortName' => 'ClazzLevelPatternConverter' + 'Return' => '5679693', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '5660401' => { + 'Class' => '5660230', + 'Header' => 'locationinfofilter.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'locationinfofilter.cpp', + 'SourceLine' => '48', + 'Static' => 1 }, - '8764488' => { - 'Class' => '8764367', + '5660512' => { + 'Class' => '5660427', 'Const' => 1, - 'Header' => 'levelrangefilter.h', + 'Header' => 'stringmatchfilter.h', 'InLine' => 2, - 'Line' => '63', - 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter7getNameB5cxx11Ev', + 'Line' => '55', + 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767674' + 'type' => '44725466' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '8764527' => { - 'Class' => '8764367', + '5660550' => { + 'Class' => '5660427', 'Const' => 1, - 'Header' => 'levelrangefilter.h', + 'Header' => 'stringmatchfilter.h', 'InLine' => 2, - 'Line' => '63', - 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv', + 'Line' => '55', + 'MnglName' => '_ZNK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767674' + 'type' => '44725466' } }, - 'Return' => '8767565', + 'Return' => '5679708', 'ShortName' => 'newInstance', 'Virt' => 1, 'VirtPos' => '4' }, - '8764566' => { - 'Artificial' => 1, - 'Class' => '8764367', + '5660589' => { + 'Class' => '5660418', + 'Header' => 'stringmatchfilter.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx6filter17StringMatchFilter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'stringmatchfilter.cpp', + 'SourceLine' => '42', + 'Static' => 1 + }, + '5660700' => { + 'Class' => '5660615', + 'Const' => 1, 'Header' => 'levelrangefilter.h', 'InLine' => 2, 'Line' => '63', - 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv', + 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767674' + 'type' => '22725481' } }, - 'Return' => '8767565', - 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8764823' => { - 'Class' => '8764349', + '5660738' => { + 'Class' => '5660615', 'Const' => 1, 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter8getClassEv', + 'InLine' => 2, + 'Line' => '63', + 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767599' + 'type' => '22725481' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '46', + 'Return' => '5679723', + 'ShortName' => 'newInstance', 'Virt' => 1, - 'VirtPos' => '2' - }, - '8764862' => { - 'Class' => '8764349', - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '46', - 'Static' => 1 + 'VirtPos' => '4' }, - '8764879' => { - 'Class' => '8764349', + '5660777' => { + 'Class' => '5660606', 'Header' => 'levelrangefilter.h', + 'Line' => '63', 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter13registerClassEv', - 'Return' => '64684', + 'Return' => '210733', 'ShortName' => 'registerClass', 'Source' => 'levelrangefilter.cpp', 'SourceLine' => '46', 'Static' => 1 }, - '8764896' => { - 'Class' => '8764349', + '5660885' => { + 'Class' => '5660800', + 'Const' => 1, + 'Header' => 'levelmatchfilter.h', + 'InLine' => 2, + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21957026' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '5660923' => { + 'Class' => '5660800', 'Const' => 1, - 'Header' => 'levelrangefilter.h', + 'Header' => 'levelmatchfilter.h', 'InLine' => 2, - 'Line' => '64', - 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter4castERKNS_7helpers5ClassE', + 'Line' => '49', + 'MnglName' => '_ZNK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767599' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '21957026' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '5679738', + 'ShortName' => 'newInstance', 'Virt' => 1, 'VirtPos' => '4' }, - '8764940' => { - 'Class' => '8764349', + '5660962' => { + 'Class' => '5660794', + 'Header' => 'levelmatchfilter.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx6filter16LevelMatchFilter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'levelmatchfilter.cpp', + 'SourceLine' => '39', + 'Static' => 1 + }, + '5661074' => { + 'Class' => '5660989', 'Const' => 1, - 'Header' => 'levelrangefilter.h', + 'Header' => 'propertyconfigurator.h', 'InLine' => 2, - 'Line' => '67', - 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter10instanceofERKNS_7helpers5ClassE', + 'Line' => '102', + 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767599' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '37484816' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', + 'Return' => '209661', + 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '8765064' => { - 'Class' => '8764349', - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '5661112' => { + 'Class' => '5660989', + 'Const' => 1, + 'Header' => 'propertyconfigurator.h', + 'InLine' => 2, + 'Line' => '102', + 'MnglName' => '_ZNK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767571' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' + 'type' => '37484816' } }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '56', + 'Return' => '5679478', + 'ShortName' => 'newInstance', 'Virt' => 1, - 'VirtPos' => '6' + 'VirtPos' => '4' }, - '8765110' => { - 'Class' => '8764349', - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter11setLevelMinERKSt10shared_ptrINS_5LevelEE', + '5661151' => { + 'Class' => '5660980', + 'Header' => 'propertyconfigurator.h', + 'Line' => '102', + 'MnglName' => '_ZN7log4cxx20PropertyConfigurator13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'propertyconfigurator.cpp', + 'SourceLine' => '75', + 'Static' => 1 + }, + '566120' => { + 'Class' => '566036', + 'Const' => 1, + 'Header' => 'appenderattachable.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachable7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286211' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '5661262' => { + 'Class' => '5661177', + 'Const' => 1, + 'Header' => 'simplelayout.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx12SimpleLayout17ClazzSimpleLayout7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767571' - }, - '1' => { - 'name' => 'levelMin1', - 'type' => '412081' + 'type' => '43012611' } }, - 'Return' => '1', - 'ShortName' => 'setLevelMin', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '108' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8765142' => { - 'Class' => '8764349', + '5661300' => { + 'Class' => '5661177', 'Const' => 1, - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter11getLevelMinEv', + 'Header' => 'simplelayout.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767599' + 'type' => '43012611' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '412081', - 'ShortName' => 'getLevelMin', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '113' + 'Return' => '5679768', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8765173' => { - 'Class' => '8764349', - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter11setLevelMaxERKSt10shared_ptrINS_5LevelEE', + '5661339' => { + 'Class' => '5661168', + 'Header' => 'simplelayout.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx12SimpleLayout13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'simplelayout.cpp', + 'SourceLine' => '25', + 'Static' => 1 + }, + '5661458' => { + 'Class' => '5661373', + 'Const' => 1, + 'Header' => 'odbcappender.h', + 'InLine' => 2, + 'Line' => '145', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender17ClazzODBCAppender7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767571' - }, - '1' => { - 'name' => 'levelMax1', - 'type' => '412081' + 'type' => '32789195' } }, - 'Return' => '1', - 'ShortName' => 'setLevelMax', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '118' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8765205' => { - 'Class' => '8764349', + '5661496' => { + 'Class' => '5661373', 'Const' => 1, - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter11getLevelMaxEv', + 'Header' => 'odbcappender.h', + 'InLine' => 2, + 'Line' => '145', + 'MnglName' => '_ZNK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767599' + 'type' => '32789195' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '412081', - 'ShortName' => 'getLevelMax', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '123' + 'Return' => '5680273', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8765236' => { - 'Class' => '8764349', - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter16setAcceptOnMatchEb', + '5661535' => { + 'Class' => '5661367', + 'Header' => 'odbcappender.h', + 'Line' => '145', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'odbcappender.cpp', + 'SourceLine' => '117', + 'Static' => 1 + }, + '5661648' => { + 'Class' => '5661562', + 'Const' => 1, + 'Header' => 'fileappender.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx12FileAppender17ClazzFileAppender7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767571' - }, - '1' => { - 'name' => 'acceptOnMatch1', - 'type' => '50284' + 'type' => '12982871' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setAcceptOnMatch', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '128' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '8765268' => { - 'Class' => '8764349', + '5661686' => { + 'Class' => '5661562', 'Const' => 1, - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter16getAcceptOnMatchEv', + 'Header' => 'fileappender.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767599' + 'type' => '12982871' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAcceptOnMatch', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '133' + 'Return' => '5680288', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' }, - '8765299' => { - 'Class' => '8764349', - 'Const' => 1, - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZNK7log4cxx6filter16LevelRangeFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', + '5661726' => { + 'Class' => '5661553', + 'Header' => 'fileappender.h', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx12FileAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'fileappender.cpp', + 'SourceLine' => '36', + 'Static' => 1 + }, + '5661917' => { + 'Class' => '3122006', + 'Header' => 'consoleappender.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '41', + 'Static' => 1 + }, + '566254' => { + 'Class' => '566170', + 'Const' => 1, + 'Header' => 'optionhandler.h', + 'InLine' => 2, + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx3spi13OptionHandler18ClazzOptionHandler7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286251' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '5662551' => { + 'Line' => '79', + 'MnglName' => '_ZN7log4cxx14libraryVersionEv', + 'NameSpace' => 'log4cxx', + 'Return' => '194908', + 'ShortName' => 'libraryVersion', + 'Source' => 'class.cpp' + }, + '566294' => { + 'Class' => '566161', + 'Const' => 1, + 'Header' => 'optionhandler.h', + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx3spi13OptionHandler8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24285616' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '42', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '566331' => { + 'Class' => '566161', + 'Header' => 'optionhandler.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandler14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '42', + 'Static' => 1 + }, + '566524' => { + 'Class' => '566440', + 'Const' => 1, + 'Header' => 'logger.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx6Logger11ClazzLogger7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25464754' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '566650' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '70', + 'MnglName' => '_ZN7log4cxx3MDC3putERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Param' => { + '0' => { + 'name' => 'key', + 'type' => '202831' + }, + '1' => { + 'name' => 'value', + 'type' => '202831' + } + }, + 'Return' => '1', + 'ShortName' => 'put', + 'Source' => 'mdc.cpp', + 'SourceLine' => '48', + 'Static' => 1 + }, + '566676' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3MDC5putLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', + 'Param' => { + '0' => { + 'name' => 'key', + 'type' => '210597' + }, + '1' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'putLS', + 'Source' => 'mdc.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '566702' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '86', + 'MnglName' => '_ZN7log4cxx3MDC3getERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'key', + 'type' => '202831' + } + }, + 'Return' => '89533', + 'ShortName' => 'get', + 'Source' => 'mdc.cpp', + 'SourceLine' => '77', + 'Static' => 1 + }, + '566728' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '93', + 'MnglName' => '_ZN7log4cxx3MDC3getERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS6_', + 'Param' => { + '0' => { + 'name' => 'key', + 'type' => '210597' + }, + '1' => { + 'name' => 'value', + 'type' => '210592' + } + }, + 'Return' => '174077', + 'ShortName' => 'get', + 'Source' => 'mdc.cpp', + 'SourceLine' => '55', + 'Static' => 1 + }, + '566759' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '101', + 'MnglName' => '_ZN7log4cxx3MDC6removeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'key', + 'type' => '202831' + } + }, + 'Return' => '89533', + 'ShortName' => 'remove', + 'Source' => 'mdc.cpp', + 'SourceLine' => '112', + 'Static' => 1 + }, + '566820' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '119', + 'MnglName' => '_ZN7log4cxx3MDC3putERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEES8_', + 'Param' => { + '0' => { + 'name' => 'key', + 'type' => '202841' + }, + '1' => { + 'name' => 'value', + 'type' => '202841' + } + }, + 'Return' => '1', + 'ShortName' => 'put', + 'Source' => 'mdc.cpp', + 'SourceLine' => '162', + 'Static' => 1 + }, + '566846' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx3MDC3getERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'key', + 'type' => '202841' + } + }, + 'Return' => '89705', + 'ShortName' => 'get', + 'Source' => 'mdc.cpp', + 'SourceLine' => '148', + 'Static' => 1 + }, + '566872' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '134', + 'MnglName' => '_ZN7log4cxx3MDC6removeERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'key', + 'type' => '202841' + } + }, + 'Return' => '89705', + 'ShortName' => 'remove', + 'Source' => 'mdc.cpp', + 'SourceLine' => '170', + 'Static' => 1 + }, + '566898' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '211', + 'MnglName' => '_ZN7log4cxx3MDC6removeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS6_', + 'Param' => { + '0' => { + 'name' => 'key', + 'type' => '210597' + }, + '1' => { + 'name' => 'value', + 'type' => '210592' + } + }, + 'Return' => '174077', + 'ShortName' => 'remove', + 'Source' => 'mdc.cpp', + 'SourceLine' => '91', + 'Static' => 1 + }, + '566929' => { + 'Class' => '566570', + 'Header' => 'mdc.h', + 'Line' => '219', + 'MnglName' => '_ZN7log4cxx3MDC5clearEv', + 'Return' => '1', + 'ShortName' => 'clear', + 'Source' => 'mdc.cpp', + 'SourceLine' => '127', + 'Static' => 1 + }, + '567215' => { + 'Class' => '567101', + 'Const' => 1, + 'Header' => 'andfilter.h', + 'InLine' => 2, + 'Line' => '82', + 'MnglName' => '_ZNK7log4cxx6filter9AndFilter14ClazzAndFilter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576723' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '567252' => { + 'Class' => '567101', + 'Const' => 1, + 'Header' => 'andfilter.h', + 'InLine' => 2, + 'Line' => '82', + 'MnglName' => '_ZNK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576723' + } + }, + 'Return' => '576614', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '567289' => { + 'Artificial' => 1, + 'Class' => '567101', + 'Header' => 'andfilter.h', + 'InLine' => 2, + 'Line' => '82', + 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576723' + } + }, + 'Return' => '576614', + 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv' + }, + '567581' => { + 'Class' => '567083', + 'Const' => 1, + 'Header' => 'andfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter9AndFilter8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576649' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '43', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '567618' => { + 'Class' => '567083', + 'Header' => 'andfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '567634' => { + 'Class' => '567083', + 'Header' => 'andfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '43', + 'Static' => 1 + }, + '567650' => { + 'Class' => '567083', + 'Const' => 1, + 'Header' => 'andfilter.h', + 'InLine' => 2, + 'Line' => '83', + 'MnglName' => '_ZNK7log4cxx6filter9AndFilter4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576649' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '567692' => { + 'Class' => '567083', + 'Const' => 1, + 'Header' => 'andfilter.h', + 'InLine' => 2, + 'Line' => '85', + 'MnglName' => '_ZNK7log4cxx6filter9AndFilter10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576649' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '567810' => { + 'Class' => '567083', + 'Header' => 'andfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter9addFilterERKSt10shared_ptrINS_3spi6FilterEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576619' + }, + '1' => { + 'name' => 'filter', + 'type' => '576654' + } + }, + 'Return' => '1', + 'ShortName' => 'addFilter', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '52' + }, + '567841' => { + 'Class' => '567083', + 'Header' => 'andfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter16setAcceptOnMatchEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576619' + }, + '1' => { + 'name' => 'newValue', + 'type' => '174077' + } + }, + 'Return' => '1', + 'ShortName' => 'setAcceptOnMatch', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '66' + }, + '567872' => { + 'Class' => '567083', + 'Const' => 1, + 'Header' => 'andfilter.h', + 'MnglName' => '_ZNK7log4cxx6filter9AndFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576649' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + } + }, + 'Return' => '565023', + 'ShortName' => 'decide', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '71', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '567930' => { + 'Data' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7classes21AndFilterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'AndFilterRegistration', + 'Source' => 'andfilter.cpp' + }, + '568040' => { + 'Class' => '567956', + 'Const' => 1, + 'Header' => 'appender.h', + 'InLine' => 2, + 'Line' => '53', + 'MnglName' => '_ZNK7log4cxx8Appender13ClazzAppender7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24286231' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '5681748' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '185', + 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767599' + 'type' => '5681671' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'className', + 'type' => '210597' } - }, - 'Return' => '151101', - 'ShortName' => 'decide', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '77', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '8765356' => { - 'Data' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7classes28LevelRangeFilterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LevelRangeFilterRegistration', - 'Source' => 'levelrangefilter.cpp' + } }, - '8773079' => { - 'Artificial' => 1, - 'Class' => '8764593', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD0Ev', + '5681961' => { + 'Constructor' => 1, + 'Header' => 'exception.h', + 'Line' => '172', + 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767133' + 'type' => '5681691' + }, + '1' => { + 'name' => 'msg', + 'type' => '210597' } - }, - 'ShortName' => 'LevelRangeFilterPrivate', - 'Source' => 'levelrangefilter.cpp', - 'Virt' => 1 + } }, - '8773080' => { + '5682084' => { 'Artificial' => 1, - 'Class' => '8764593', + 'Class' => '5650347', 'Destructor' => 1, + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD1Ev', + 'Line' => '182', + 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767133' + 'type' => '5681671' } }, - 'ShortName' => 'LevelRangeFilterPrivate', - 'Source' => 'levelrangefilter.cpp', + 'ShortName' => 'ClassNotFoundException', 'Virt' => 1 }, - '8775140' => { + '5682085' => { 'Artificial' => 1, - 'Class' => '8764593', + 'Class' => '5650347', 'Destructor' => 1, + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD2Ev', + 'Line' => '182', + 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767133' + 'type' => '5681671' } }, - 'ShortName' => 'LevelRangeFilterPrivate', - 'Source' => 'levelrangefilter.cpp', + 'ShortName' => 'ClassNotFoundException', 'Virt' => 1 }, - '8778595' => { - 'Artificial' => 1, - 'Class' => '8762643', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767008' - } - }, - 'ShortName' => 'WideLife' - }, - '8778596' => { + '5682280' => { 'Artificial' => 1, - 'Class' => '8762643', + 'Class' => '5650347', 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767008' - } - }, - 'ShortName' => 'WideLife' - }, - '8778737' => { - 'Artificial' => 1, - 'Class' => '8762643', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767008' - } - }, - 'ShortName' => 'WideLife' - }, - '8778738' => { - 'Artificial' => 1, - 'Class' => '8762643', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767008' - } - }, - 'ShortName' => 'WideLife' - }, - '8788125' => { - 'Class' => '8764349', - 'Destructor' => 1, - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767571' - } - }, - 'ShortName' => 'LevelRangeFilter', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '54', - 'Virt' => 1 - }, - '8788223' => { - 'Class' => '8764349', - 'Destructor' => 1, - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767571' - } - }, - 'ShortName' => 'LevelRangeFilter', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '54', - 'Virt' => 1 - }, - '8788419' => { - 'Class' => '8764349', - 'Destructor' => 1, - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterD2Ev', + 'Line' => '182', + 'MnglName' => '_ZN7log4cxx7helpers22ClassNotFoundExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767571' + 'type' => '5681671' } }, - 'ShortName' => 'LevelRangeFilter', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '54', + 'ShortName' => 'ClassNotFoundException', 'Virt' => 1 }, - '8788549' => { - 'Class' => '8764349', - 'Constructor' => 1, - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767571' - } - }, - 'ShortName' => 'LevelRangeFilter', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '49' - }, - '8792379' => { - 'Class' => '8764349', - 'Constructor' => 1, - 'Header' => 'levelrangefilter.h', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767571' - } - }, - 'ShortName' => 'LevelRangeFilter', - 'Source' => 'levelrangefilter.cpp', - 'SourceLine' => '49' - }, - '8800022' => { + '5682435' => { 'Artificial' => 1, - 'Class' => '8764367', + 'Class' => '5650529', 'Destructor' => 1, - 'Header' => 'levelrangefilter.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD0Ev', + 'Line' => '169', + 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767663' + 'type' => '5681691' } }, - 'ShortName' => 'ClazzLevelRangeFilter', + 'ShortName' => 'InstantiationException', 'Virt' => 1 }, - '8800023' => { + '5682436' => { 'Artificial' => 1, - 'Class' => '8764367', + 'Class' => '5650529', 'Destructor' => 1, - 'Header' => 'levelrangefilter.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD1Ev', + 'Line' => '169', + 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767663' + 'type' => '5681691' } }, - 'ShortName' => 'ClazzLevelRangeFilter', + 'ShortName' => 'InstantiationException', 'Virt' => 1 }, - '8800164' => { + '5682631' => { 'Artificial' => 1, - 'Class' => '8764367', + 'Class' => '5650529', 'Destructor' => 1, - 'Header' => 'levelrangefilter.h', + 'Header' => 'exception.h', 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD2Ev', + 'Line' => '169', + 'MnglName' => '_ZN7log4cxx7helpers22InstantiationExceptionD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8767663' + 'type' => '5681691' } }, - 'ShortName' => 'ClazzLevelRangeFilter', + 'ShortName' => 'InstantiationException', 'Virt' => 1 }, - '8800254' => { - 'Artificial' => 1, - 'Class' => '8764367', - 'Constructor' => 1, - 'Header' => 'levelrangefilter.h', - 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767663' - } - }, - 'ShortName' => 'ClazzLevelRangeFilter' - }, - '8800255' => { - 'Artificial' => 1, - 'Class' => '8764367', - 'Constructor' => 1, - 'Header' => 'levelrangefilter.h', - 'InLine' => 1, - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8767663' - } - }, - 'ShortName' => 'ClazzLevelRangeFilter' - }, - '8872015' => { - 'Class' => '8871894', - 'Const' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8875233' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '8872144' => { - 'Class' => '8871860', - 'Header' => 'linelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'linelocationpatternconverter.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '8872161' => { - 'Class' => '8871860', - 'Header' => 'linelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'linelocationpatternconverter.cpp', - 'SourceLine' => '29', - 'Static' => 1 - }, - '8872178' => { - 'Class' => '8871860', - 'Const' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8874911' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'linelocationpatternconverter.cpp', - 'SourceLine' => '29', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '8872217' => { - 'Class' => '8871860', - 'Const' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8874911' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '8872261' => { - 'Class' => '8871860', - 'Const' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8874911' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '8872342' => { - 'Class' => '8871860', - 'Header' => 'linelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'linelocationpatternconverter.cpp', - 'SourceLine' => '37', - 'Static' => 1 - }, - '8872369' => { - 'Class' => '8871860', - 'Const' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', + '56955112' => { + 'Artificial' => 1, + 'Class' => '5656514', + 'Header' => 'domconfigurator.h', + 'InLine' => 2, + 'Line' => '212', + 'MnglName' => '_ZTch0_h0_NK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984353' + } + }, + 'Return' => '5679493', + 'ShortName' => '_ZTch0_h0_NK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv' + }, + '56955193' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator18findAppenderByNameERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERSt3mapISI_S5_INS_8AppenderEESt4lessISI_ESaISt4pairISJ_SN_EEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'element', + 'type' => '56978545' + }, + '4' => { + 'name' => 'doc', + 'type' => '56984128' + }, + '5' => { + 'name' => 'appenderName', + 'offset' => '0', + 'type' => '210597' + }, + '6' => { + 'name' => 'appenders', + 'offset' => '8', + 'type' => '56984133' + } + }, + 'Protected' => 1, + 'Return' => '946694', + 'ShortName' => 'findAppenderByName', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '135' + }, + '56955267' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator23findAppenderByReferenceERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'appenderRef', + 'type' => '56978545' + }, + '4' => { + 'name' => 'doc', + 'type' => '56984128' + }, + '5' => { + 'name' => 'appenders', + 'offset' => '0', + 'type' => '56984133' + } + }, + 'Protected' => 1, + 'Return' => '946694', + 'ShortName' => 'findAppenderByReference', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '169' + }, + '56955323' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator13parseAppenderERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'appenderElement', + 'type' => '56978545' + }, + '4' => { + 'name' => 'doc', + 'type' => '56984128' + }, + '5' => { + 'name' => 'appenders', + 'offset' => '0', + 'type' => '56984133' + } + }, + 'Protected' => 1, + 'Return' => '946694', + 'ShortName' => 'parseAppender', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '206' + }, + '56955379' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17parseErrorHandlerERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemRS5_INS_8AppenderEEP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_St4lessISM_ESaISt4pairIKSM_SC_EEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'element', + 'type' => '56978545' + }, + '4' => { + 'name' => 'appender', + 'type' => '56984138' + }, + '5' => { + 'name' => 'doc', + 'type' => '56984128' + }, + '6' => { + 'name' => 'appenders', + 'offset' => '0', + 'type' => '56984133' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseErrorHandler', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '326' + }, + '56955437' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator12parseFiltersERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemRSt6vectorIS5_INS_3spi6FilterEESaISE_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'element', + 'type' => '56978545' + }, + '4' => { + 'name' => 'filters', + 'type' => '56981065' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseFilters', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '387' + }, + '56955485' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator11parseLoggerERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'loggerElement', + 'type' => '56978545' + }, + '4' => { + 'name' => 'doc', + 'type' => '56984128' + }, + '5' => { + 'name' => 'appenders', + 'type' => '56984133' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseLogger', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '422' + }, + '56955538' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator18parseLoggerFactoryERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elem', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'factoryElement', + 'type' => '56978545' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseLoggerFactory', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '451' + }, + '56955581' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator21parseTriggeringPolicyERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elem', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'layout_element', + 'type' => '56978545' + } + }, + 'Protected' => 1, + 'Return' => '562699', + 'ShortName' => 'parseTriggeringPolicy', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '603' + }, + '56955628' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator18parseRollingPolicyERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elem', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'layout_element', + 'type' => '56978545' + } + }, + 'Protected' => 1, + 'Return' => '37465322', + 'ShortName' => 'parseRollingPolicy', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '658' + }, + '56955675' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator9parseRootERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'rootElement', + 'type' => '56978545' + }, + '4' => { + 'name' => 'doc', + 'type' => '56984128' + }, + '5' => { + 'name' => 'appenders', + 'type' => '56984133' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseRoot', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '490' + }, + '56955728' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator28parseChildrenOfLoggerElementERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemS5_INS_6LoggerEEbP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISL_ESaISt4pairIKSL_SN_EEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'loggerElement', + 'type' => '56978545' + }, + '4' => { + 'name' => 'logger', + 'type' => '3121982' + }, + '5' => { + 'name' => 'isRoot', + 'type' => '174077' + }, + '6' => { + 'name' => 'doc', + 'offset' => '0', + 'type' => '56984128' + }, + '7' => { + 'name' => 'appenders', + 'offset' => '8', + 'type' => '56984133' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseChildrenOfLoggerElement', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '504' + }, + '56955791' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator11parseLayoutERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elem', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'layout_element', + 'type' => '56978545' + } + }, + 'Protected' => 1, + 'Return' => '1381467', + 'ShortName' => 'parseLayout', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '563' + }, + '56955838' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator10parseLevelERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemS5_INS_6LoggerEEb', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'element', + 'type' => '56978545' + }, + '4' => { + 'name' => 'logger', + 'type' => '3121982' + }, + '5' => { + 'name' => 'isRoot', + 'type' => '174077' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parseLevel', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '700' + }, + '56955891' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator12setParameterERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemRNS_6config14PropertySetterE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'elem', + 'type' => '56978545' + }, + '4' => { + 'name' => 'propSetter', + 'type' => '56984143' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'setParameter', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '769' + }, + '56955939' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator5parseERNS_7helpers4PoolERSt10shared_ptrINS2_14CharsetDecoderEEP12apr_xml_elemP11apr_xml_docRSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_INS_8AppenderEESt4lessISJ_ESaISt4pairIKSJ_SL_EEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' + }, + '2' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '3' => { + 'name' => 'element', + 'type' => '56978545' + }, + '4' => { + 'name' => 'doc', + 'type' => '56984128' + }, + '5' => { + 'name' => 'appenders', + 'type' => '56984133' + } + }, + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'parse', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '991' + }, + '56956029' => { + 'Class' => '5656503', + 'Const' => 1, + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984153' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '94', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '56956099' => { + 'Class' => '5656503', + 'Const' => 1, + 'Header' => 'domconfigurator.h', + 'InLine' => 2, + 'Line' => '213', + 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator4castERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984153' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '56956142' => { + 'Class' => '5656503', + 'Const' => 1, + 'Header' => 'domconfigurator.h', + 'InLine' => 2, + 'Line' => '215', + 'MnglName' => '_ZNK7log4cxx3xml15DOMConfigurator10instanceofERKNS_7helpers5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984153' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '56956255' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator9configureERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'filename', + 'type' => '202841' + } + }, + 'Return' => '3117865', + 'ShortName' => 'configure', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '859', + 'Static' => 1 + }, + '56956283' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17configureAndWatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'filename', + 'type' => '202831' + } + }, + 'Return' => '3117865', + 'ShortName' => 'configureAndWatch', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '883', + 'Static' => 1 + }, + '56956311' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17configureAndWatchERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'filename', + 'type' => '202841' + } + }, + 'Return' => '3117865', + 'ShortName' => 'configureAndWatch', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '889', + 'Static' => 1 + }, + '56956339' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17configureAndWatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEl', + 'Param' => { + '0' => { + 'name' => 'filename', + 'type' => '202831' + }, + '1' => { + 'name' => 'delay', + 'type' => '190282' + } + }, + 'Return' => '3117865', + 'ShortName' => 'configureAndWatch', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '909', + 'Static' => 1 + }, + '56956372' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator17configureAndWatchERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEEl', + 'Param' => { + '0' => { + 'name' => 'filename', + 'type' => '202841' + }, + '1' => { + 'name' => 'delay', + 'type' => '190282' + } + }, + 'Return' => '3117865', + 'ShortName' => 'configureAndWatch', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '929', + 'Static' => 1 + }, + '56956405' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator11doConfigureERKNS_4FileESt10shared_ptrINS_3spi16LoggerRepositoryEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'filename', + 'type' => '575822' + }, + '2' => { + 'name' => 'repository1', + 'type' => '565552' + } + }, + 'Return' => '3117865', + 'ShortName' => 'doConfigure', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '780', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '56956454' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator12getAttributeERSt10shared_ptrINS_7helpers14CharsetDecoderEEP12apr_xml_elemRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'utf8Decoder', + 'type' => '56984123' + }, + '1' => { + 'name' => 'element', + 'type' => '56978545' + }, + '2' => { + 'name' => 'attrName', + 'type' => '202831' + } + }, + 'Protected' => 1, + 'Return' => '209661', + 'ShortName' => 'getAttribute', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '1117', + 'Static' => 1 + }, + '56956492' => { + 'Class' => '5656503', + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator5substERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + }, + '1' => { + 'name' => 'value', + 'type' => '210597' + } + }, + 'Protected' => 1, + 'Return' => '209661', + 'ShortName' => 'subst', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '1103' + }, + '56956607' => { + 'Class' => '5656503', + 'Data' => 1, + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator4xdogE', + 'Private' => 1, + 'Return' => '56979972', + 'ShortName' => 'xdog', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '91' + }, + '56956757' => { + 'Class' => '56956643', + 'InLine' => 2, + 'Line' => '83', + 'MnglName' => '_ZN7log4cxx3xml11XMLWatchdog10doOnChangeEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56979977' + } + }, + 'Return' => '1', + 'ShortName' => 'doOnChange', + 'Source' => 'domconfigurator.cpp', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '56957484' => { + 'Data' => 1, + 'Line' => '94', + 'MnglName' => '_ZN7log4cxx7classes27DOMConfiguratorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'DOMConfiguratorRegistration', + 'Source' => 'domconfigurator.cpp' + }, + '56958771' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7rolling27FilterBasedTriggeringPolicyENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '1937382' + } + }, + 'Return' => '56835903', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5656706' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } + }, + '56958903' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3spi6FilterENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '1937382' + } + }, + 'Return' => '498401', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '564875' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } + }, + '56958947' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_16AppenderSkeletonENS_8AppenderELb0ELb0EEESt10shared_ptrIT_ERKS3_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '955003' + } + }, + 'Return' => '56823404', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '1379573' + }, + '1' => { + 'key' => 'Type', + 'type' => '567947' + } + } + }, + '56958991' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3spi12ErrorHandlerENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '1937382' + } + }, + 'Return' => '1304882', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '1378014' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } + }, + '56959035' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3spi18AppenderAttachableENS_8AppenderELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '955003' + } + }, + 'Return' => '56818869', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '566027' + }, + '1' => { + 'key' => 'Type', + 'type' => '567947' + } + } + }, + '56959123' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3net12SMTPAppenderENS_8AppenderELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', + 'Param' => { + '0' => { + 'name' => 'incoming', + 'type' => '955003' + } + }, + 'Return' => '56814780', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '5660032' + }, + '1' => { + 'key' => 'Type', + 'type' => '567947' + } + } + }, + '56985925' => { + 'Constructor' => 1, + 'Header' => 'file.h', + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx4FileC1ERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10586409' + }, + '1' => { + 'name' => 'path', + 'type' => '202841' + } + } + }, + '56986371' => { + 'Constructor' => 1, + 'Header' => 'propertysetter.h', + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx6config14PropertySetterC1ERKSt10shared_ptrINS_7helpers6ObjectEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '38405184' + }, + '1' => { + 'name' => 'obj', + 'type' => '575817' + } + } + }, + '56990177' => { + 'Artificial' => 1, + 'Class' => '56956643', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '72', + 'MnglName' => '_ZN7log4cxx3xml11XMLWatchdogD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56979977' + } + }, + 'ShortName' => 'XMLWatchdog', + 'Source' => 'domconfigurator.cpp', + 'Virt' => 1 + }, + '56990178' => { + 'Artificial' => 1, + 'Class' => '56956643', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '72', + 'MnglName' => '_ZN7log4cxx3xml11XMLWatchdogD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56979977' + } + }, + 'ShortName' => 'XMLWatchdog', + 'Source' => 'domconfigurator.cpp', + 'Virt' => 1 + }, + '56990324' => { + 'Artificial' => 1, + 'Class' => '56956643', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '72', + 'MnglName' => '_ZN7log4cxx3xml11XMLWatchdogD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56979977' + } + }, + 'ShortName' => 'XMLWatchdog', + 'Source' => 'domconfigurator.cpp', + 'Virt' => 1 + }, + '57060452' => { + 'Artificial' => 1, + 'Class' => '56946580', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56980003' + } + }, + 'ShortName' => 'WideLife' + }, + '57060453' => { + 'Artificial' => 1, + 'Class' => '56946580', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56980003' + } + }, + 'ShortName' => 'WideLife' + }, + '57060595' => { + 'Artificial' => 1, + 'Class' => '56946580', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56980003' + } + }, + 'ShortName' => 'WideLife' + }, + '57060596' => { + 'Artificial' => 1, + 'Class' => '56946580', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56980003' + } + }, + 'ShortName' => 'WideLife' + }, + '5715876' => { + 'Artificial' => 1, + 'Class' => '5648970', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8874911' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p', - 'type' => '64643' + 'type' => '5678593' } }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'linelocationpatternconverter.cpp', - 'SourceLine' => '44', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '8873257' => { - 'Data' => 1, - 'Line' => '29', - 'MnglName' => '_ZN7log4cxx7classes40LineLocationPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LineLocationPatternConverterRegistration', - 'Source' => 'linelocationpatternconverter.cpp' + 'ShortName' => 'WideLife' }, - '8878234' => { + '5715877' => { 'Artificial' => 1, - 'Class' => '8871860', + 'Class' => '5648970', 'Destructor' => 1, - 'Header' => 'linelocationpatternconverter.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8874712' + 'type' => '5678593' } }, - 'ShortName' => 'LineLocationPatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '8878235' => { + '5716380' => { 'Artificial' => 1, - 'Class' => '8871860', - 'Destructor' => 1, - 'Header' => 'linelocationpatternconverter.h', + 'Class' => '5648970', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8874712' + 'type' => '5678593' } }, - 'ShortName' => 'LineLocationPatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '8878499' => { + '5716381' => { 'Artificial' => 1, - 'Class' => '8871860', - 'Destructor' => 1, - 'Header' => 'linelocationpatternconverter.h', + 'Class' => '5648970', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '8874712' + 'type' => '5678593' } }, - 'ShortName' => 'LineLocationPatternConverter', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '8885347' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_28LineLocationPatternConverterEEJEEEOT_DpOT0_', + '5735744' => { + 'Class' => '208442', + 'Destructor' => 1, + 'Header' => 'class.h', + 'MnglName' => '_ZN7log4cxx7helpers5ClassD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8874734' + 'type' => '216588' } }, - 'ShortName' => 'WideLife >', - 'TParam' => { + 'ShortName' => 'Class', + 'Source' => 'class.cpp', + 'SourceLine' => '97', + 'Virt' => 1 + }, + '5735954' => { + 'Line' => '87', + 'MnglName' => '_Z14libraryVersionv', + 'Return' => '194908', + 'ShortName' => 'libraryVersion', + 'Source' => 'class.cpp' + }, + '57409019' => { + 'Class' => '5656503', + 'Destructor' => 1, + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + } + }, + 'ShortName' => 'DOMConfigurator', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '130', + 'Virt' => 1 + }, + '57409118' => { + 'Class' => '5656503', + 'Destructor' => 1, + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + } + }, + 'ShortName' => 'DOMConfigurator', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '130', + 'Virt' => 1 + }, + '57410900' => { + 'Class' => '5656503', + 'Destructor' => 1, + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + } + }, + 'ShortName' => 'DOMConfigurator', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '130', + 'Virt' => 1 + }, + '57412620' => { + 'Class' => '5656503', + 'Constructor' => 1, + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + } + }, + 'ShortName' => 'DOMConfigurator', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '125' + }, + '57413801' => { + 'Class' => '5656503', + 'Constructor' => 1, + 'Header' => 'domconfigurator.h', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfiguratorC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984108' + } + }, + 'ShortName' => 'DOMConfigurator', + 'Source' => 'domconfigurator.cpp', + 'SourceLine' => '125' + }, + '57418115' => { + 'Artificial' => 1, + 'Class' => '5656514', + 'Destructor' => 1, + 'Header' => 'domconfigurator.h', + 'InLine' => 1, + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984343' + } + }, + 'ShortName' => 'ClazzDOMConfigurator', + 'Virt' => 1 + }, + '57418116' => { + 'Artificial' => 1, + 'Class' => '5656514', + 'Destructor' => 1, + 'Header' => 'domconfigurator.h', + 'InLine' => 1, + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984343' + } + }, + 'ShortName' => 'ClazzDOMConfigurator', + 'Virt' => 1 + }, + '57418262' => { + 'Artificial' => 1, + 'Class' => '5656514', + 'Destructor' => 1, + 'Header' => 'domconfigurator.h', + 'InLine' => 1, + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984343' + } + }, + 'ShortName' => 'ClazzDOMConfigurator', + 'Virt' => 1 + }, + '57418357' => { + 'Artificial' => 1, + 'Class' => '5656514', + 'Constructor' => 1, + 'Header' => 'domconfigurator.h', + 'InLine' => 1, + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984343' + } + }, + 'ShortName' => 'ClazzDOMConfigurator' + }, + '57418358' => { + 'Artificial' => 1, + 'Class' => '5656514', + 'Constructor' => 1, + 'Header' => 'domconfigurator.h', + 'InLine' => 1, + 'Line' => '212', + 'MnglName' => '_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56984343' + } + }, + 'ShortName' => 'ClazzDOMConfigurator' + }, + '57420387' => { + 'Artificial' => 1, + 'Class' => '208912', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17ClassRegistrationEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215344' + } + }, + 'ShortName' => 'WideLife' + }, + '57420388' => { + 'Artificial' => 1, + 'Class' => '208559', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling6Action11ClazzActionEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '215294' + } + }, + 'ShortName' => 'WideLife' + }, + '57420389' => { + 'Artificial' => 1, + 'Class' => '562716', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '575963' + } + }, + 'ShortName' => 'WideLife' + }, + '57420390' => { + 'Artificial' => 1, + 'Class' => '566161', + 'Destructor' => 1, + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '602621' + } + }, + 'ShortName' => 'OptionHandler', + 'Virt' => 1 + }, + '57420392' => { + 'Artificial' => 1, + 'Class' => '942891', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '954611' + } + }, + 'ShortName' => 'WideLife' + }, + '57420393' => { + 'Artificial' => 1, + 'Class' => '566027', + 'Destructor' => 1, + 'Header' => 'appenderattachable.h', + 'InLine' => 1, + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachableD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1014982' + } + }, + 'ShortName' => 'AppenderAttachable', + 'Virt' => 1 + }, + '57420394' => { + 'Artificial' => 1, + 'Class' => '1375460', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_16AppenderSkeleton21ClazzAppenderSkeletonEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1390359' + } + }, + 'ShortName' => 'WideLife' + }, + '57420396' => { + 'Artificial' => 1, + 'Class' => '1913472', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14APRInitializerEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1937227' + } + }, + 'ShortName' => 'WideLife' + }, + '57420397' => { + 'Class' => '1908928', + 'Destructor' => 1, + 'Header' => 'aprinitializer.h', + 'Line' => '91', + 'MnglName' => '_ZN7log4cxx7helpers14APRInitializerD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '1924115' + } + }, + 'ShortName' => 'APRInitializer', + 'Source' => 'aprinitializer.cpp', + 'SourceLine' => '94' + }, + '57420398' => { + 'Artificial' => 1, + 'Class' => '2501628', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2522229' + } + }, + 'ShortName' => 'WideLife' + }, + '57420400' => { + 'Artificial' => 1, + 'Class' => '567947', + 'Destructor' => 1, + 'Header' => 'appender.h', + 'InLine' => 1, + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx8AppenderD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2679474' + } + }, + 'ShortName' => 'Appender', + 'Virt' => 1 + }, + '57420401' => { + 'Artificial' => 1, + 'Class' => '3115821', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3132810' + } + }, + 'ShortName' => 'WideLife' + }, + '57420403' => { + 'Artificial' => 1, + 'Class' => '3335214', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14BufferedWriter19ClazzBufferedWriterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3337149' + } + }, + 'ShortName' => 'WideLife' + }, + '57420405' => { + 'Artificial' => 1, + 'Class' => '3604725', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20ByteArrayInputStream25ClazzByteArrayInputStreamEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3609134' + } + }, + 'ShortName' => 'WideLife' + }, + '57420407' => { + 'Artificial' => 1, + 'Class' => '3831318', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_21ByteArrayOutputStream26ClazzByteArrayOutputStreamEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '3833905' + } + }, + 'ShortName' => 'WideLife' + }, + '57420409' => { + 'Artificial' => 1, + 'Class' => '4540636', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetDecoderEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4559986' + } + }, + 'ShortName' => 'WideLife' + }, + '57420410' => { + 'Artificial' => 1, + 'Class' => '4539241', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetDecoder19ClazzCharsetDecoderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4559694' + } + }, + 'ShortName' => 'WideLife' + }, + '57420411' => { + 'Artificial' => 1, + 'Class' => '4972202', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_14CharsetEncoderEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4993301' + } + }, + 'ShortName' => 'WideLife' + }, + '57420412' => { + 'Artificial' => 1, + 'Class' => '4970671', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14CharsetEncoder19ClazzCharsetEncoderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '4993000' + } + }, + 'ShortName' => 'WideLife' + }, + '57420413' => { + 'Artificial' => 1, + 'Class' => '5648970', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKNS0_5ClassESt4lessIS8_ESaISt4pairIKS8_SB_EEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5678593' + } + }, + 'ShortName' => 'WideLife' + }, + '57420414' => { + 'Artificial' => 1, + 'Class' => '6072360', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085740' + } + }, + 'ShortName' => 'WideLife' + }, + '57420415' => { + 'Artificial' => 1, + 'Class' => '6071600', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085389' + } + }, + 'ShortName' => 'WideLife' + }, + '57420416' => { + 'Artificial' => 1, + 'Class' => '6074647', + 'Destructor' => 1, + 'Header' => 'namepatternconverter.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6087922' + } + }, + 'ShortName' => 'NamePatternConverter', + 'Virt' => 1 + }, + '57420417' => { + 'Artificial' => 1, + 'Class' => '3121054', + 'Destructor' => 1, + 'Header' => 'loggingeventpatternconverter.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6114592' + } + }, + 'ShortName' => 'LoggingEventPatternConverter', + 'Virt' => 1 + }, + '57420418' => { + 'Artificial' => 1, + 'Class' => '6611638', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6625642' + } + }, + 'ShortName' => 'WideLife' + }, + '57420419' => { + 'Artificial' => 1, + 'Class' => '7051911', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7065120' + } + }, + 'ShortName' => 'WideLife' + }, + '57420420' => { + 'Artificial' => 1, + 'Class' => '7401091', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7411725' + } + }, + 'ShortName' => 'WideLife' + }, + '57420421' => { + 'Artificial' => 1, + 'Class' => '7855398', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7874283' + } + }, + 'ShortName' => 'WideLife' + }, + '57420423' => { + 'Artificial' => 1, + 'Class' => '8690155', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '8697515' + } + }, + 'ShortName' => 'WideLife' + }, + '57420424' => { + 'Artificial' => 1, + 'Class' => '8887683', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '8890075' + } + }, + 'ShortName' => 'WideLife' + }, + '57420425' => { + 'Artificial' => 1, + 'Class' => '9332078', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9347629' + } + }, + 'ShortName' => 'WideLife' + }, + '57420426' => { + 'Artificial' => 1, + 'Class' => '9947519', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db10DBAppender15ClazzDBAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '9974191' + } + }, + 'ShortName' => 'WideLife' + }, + '57420427' => { + 'Artificial' => 1, + 'Class' => '10972219', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20DefaultLoggerFactory25ClazzDefaultLoggerFactoryEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10982938' + } + }, + 'ShortName' => 'WideLife' + }, + '57420428' => { + 'Artificial' => 1, + 'Class' => '565893', + 'Destructor' => 1, + 'Header' => 'loggerfactory.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx3spi13LoggerFactoryD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '10999170' + } + }, + 'ShortName' => 'LoggerFactory', + 'Virt' => 1 + }, + '57420430' => { + 'Artificial' => 1, + 'Class' => '3118493', + 'Destructor' => 1, + 'Header' => 'repositoryselector.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx3spi18RepositorySelectorD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11333931' + } + }, + 'ShortName' => 'RepositorySelector', + 'Virt' => 1 + }, + '57420432' => { + 'Artificial' => 1, + 'Class' => '11925401', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '11939749' + } + }, + 'ShortName' => 'WideLife' + }, + '57420433' => { + 'Artificial' => 1, + 'Class' => '1378014', + 'Destructor' => 1, + 'Header' => 'errorhandler.h', + 'InLine' => 1, + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx3spi12ErrorHandlerD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '12065848' + } + }, + 'ShortName' => 'ErrorHandler', + 'Virt' => 1 + }, + '57420435' => { + 'Artificial' => 1, + 'Class' => '12960346', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12FileAppender17ClazzFileAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '12980968' + } + }, + 'ShortName' => 'WideLife' + }, + '57420437' => { + 'Artificial' => 1, + 'Class' => '13845395', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15FileInputStream20ClazzFileInputStreamEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '13864512' + } + }, + 'ShortName' => 'WideLife' + }, + '57420438' => { + 'Artificial' => 1, + 'Class' => '14210113', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '14223374' + } + }, + 'ShortName' => 'WideLife' + }, + '57420440' => { + 'Artificial' => 1, + 'Class' => '14584604', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_16FileOutputStream21ClazzFileOutputStreamEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '14603721' + } + }, + 'ShortName' => 'WideLife' + }, + '57420441' => { + 'Artificial' => 1, + 'Class' => '14948565', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16FileRenameAction21ClazzFileRenameActionEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '14961444' + } + }, + 'ShortName' => 'WideLife' + }, + '57420444' => { + 'Artificial' => 1, + 'Class' => '16161261', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16174472' + } + }, + 'ShortName' => 'WideLife' + }, + '57420445' => { + 'Artificial' => 1, + 'Class' => '16764653', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16787210' + } + }, + 'ShortName' => 'WideLife' + }, + '57420446' => { + 'Artificial' => 1, + 'Class' => '5658321', + 'Destructor' => 1, + 'Header' => 'rollingpolicy.h', + 'InLine' => 1, + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7rolling13RollingPolicyD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '16980265' + } + }, + 'ShortName' => 'RollingPolicy', + 'Virt' => 1 + }, + '57420447' => { + 'Artificial' => 1, + 'Class' => '17165516', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern14FormattingInfoEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '17167789' + } + }, + 'ShortName' => 'WideLife' + }, + '57420448' => { + 'Artificial' => 1, + 'Class' => '17164773', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14FormattingInfo19ClazzFormattingInfoEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '17167568' + } + }, + 'ShortName' => 'WideLife' + }, + '57420449' => { + 'Artificial' => 1, + 'Class' => '17528293', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '17541562' + } + }, + 'ShortName' => 'WideLife' + }, + '57420450' => { + 'Artificial' => 1, + 'Class' => '17909222', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16GZCompressAction21ClazzGZCompressActionEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '17930522' + } + }, + 'ShortName' => 'WideLife' + }, + '57420452' => { + 'Artificial' => 1, + 'Class' => '18599315', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_3spi13LoggerFactoryEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614962' + } + }, + 'ShortName' => 'WideLife' + }, + '57420453' => { + 'Artificial' => 1, + 'Class' => '18598551', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_9Hierarchy14ClazzHierarchyEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18614469' + } + }, + 'ShortName' => 'WideLife' + }, + '57420454' => { + 'Artificial' => 1, + 'Class' => '565598', + 'Destructor' => 1, + 'Header' => 'loggerrepository.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx3spi16LoggerRepositoryD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '18618598' + } + }, + 'ShortName' => 'LoggerRepository', + 'Virt' => 1 + }, + '57420456' => { + 'Artificial' => 1, + 'Class' => '19214033', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10HTMLLayout15ClazzHTMLLayoutEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19228551' + } + }, + 'ShortName' => 'WideLife' + }, + '57420458' => { + 'Artificial' => 1, + 'Class' => '19569840', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InetAddress16ClazzInetAddressEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19584707' + } + }, + 'ShortName' => 'WideLife' + }, + '57420459' => { + 'Artificial' => 1, + 'Class' => '19801645', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_11InputStream16ClazzInputStreamEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19803598' + } + }, + 'ShortName' => 'WideLife' + }, + '57420461' => { + 'Artificial' => 1, + 'Class' => '19983630', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_17InputStreamReader22ClazzInputStreamReaderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '19987159' + } + }, + 'ShortName' => 'WideLife' + }, + '57420462' => { + 'Artificial' => 1, + 'Class' => '20165389', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_7Integer12ClazzIntegerEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '20167293' + } + }, + 'ShortName' => 'WideLife' + }, + '57420463' => { + 'Artificial' => 1, + 'Class' => '20375061', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '20378576' + } + }, + 'ShortName' => 'WideLife' + }, + '57420465' => { + 'Artificial' => 1, + 'Class' => '20752236', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_10JSONLayout15ClazzJSONLayoutEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '20766929' + } + }, + 'ShortName' => 'WideLife' + }, + '57420466' => { + 'Artificial' => 1, + 'Class' => '21195631', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Layout11ClazzLayoutEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21207467' + } + }, + 'ShortName' => 'WideLife' + }, + '57420467' => { + 'Artificial' => 1, + 'Class' => '21519700', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_5LevelEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21528304' + } + }, + 'ShortName' => 'WideLife' + }, + '57420468' => { + 'Artificial' => 1, + 'Class' => '21518949', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_5Level10LevelClassEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21528208' + } + }, + 'ShortName' => 'WideLife' + }, + '57420469' => { + 'Artificial' => 1, + 'Class' => '21942884', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelMatchFilter21ClazzLevelMatchFilterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '21956196' + } + }, + 'ShortName' => 'WideLife' + }, + '57420470' => { + 'Artificial' => 1, + 'Class' => '22315587', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21LevelPatternConverter26ClazzLevelPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '22328996' + } + }, + 'ShortName' => 'WideLife' + }, + '57420471' => { + 'Artificial' => 1, + 'Class' => '22711229', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter16LevelRangeFilter21ClazzLevelRangeFilterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '22724651' + } + }, + 'ShortName' => 'WideLife' + }, + '57420472' => { + 'Artificial' => 1, + 'Class' => '23088153', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '23101394' + } + }, + 'ShortName' => 'WideLife' + }, + '57420473' => { + 'Artificial' => 1, + 'Class' => '23455953', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '23469197' + } + }, + 'ShortName' => 'WideLife' + }, + '57420474' => { + 'Artificial' => 1, + 'Class' => '23838998', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '23852638' + } + }, + 'ShortName' => 'WideLife' + }, + '57420475' => { + 'Artificial' => 1, + 'Class' => '24265840', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284549' + } + }, + 'ShortName' => 'WideLife' + }, + '57420476' => { + 'Artificial' => 1, + 'Class' => '24265119', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284493' + } + }, + 'ShortName' => 'WideLife' + }, + '57420477' => { + 'Artificial' => 1, + 'Class' => '24264398', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284437' + } + }, + 'ShortName' => 'WideLife' + }, + '57420478' => { + 'Artificial' => 1, + 'Class' => '24263634', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284381' + } + }, + 'ShortName' => 'WideLife' + }, + '57420479' => { + 'Artificial' => 1, + 'Class' => '24263286', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284325' + } + }, + 'ShortName' => 'WideLife' + }, + '57420480' => { + 'Artificial' => 1, + 'Class' => '24262938', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284269' + } + }, + 'ShortName' => 'WideLife' + }, + '57420481' => { + 'Artificial' => 1, + 'Class' => '24262590', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284213' + } + }, + 'ShortName' => 'WideLife' + }, + '57420482' => { + 'Artificial' => 1, + 'Class' => '24262242', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284157' + } + }, + 'ShortName' => 'WideLife' + }, + '57420483' => { + 'Artificial' => 1, + 'Class' => '24261894', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284101' + } + }, + 'ShortName' => 'WideLife' + }, + '57420484' => { + 'Artificial' => 1, + 'Class' => '24261546', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24284045' + } + }, + 'ShortName' => 'WideLife' + }, + '57420485' => { + 'Artificial' => 1, + 'Class' => '24261198', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24283989' + } + }, + 'ShortName' => 'WideLife' + }, + '57420486' => { + 'Artificial' => 1, + 'Class' => '24260850', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24283933' + } + }, + 'ShortName' => 'WideLife' + }, + '57420487' => { + 'Artificial' => 1, + 'Class' => '24260502', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24283877' + } + }, + 'ShortName' => 'WideLife' + }, + '57420488' => { + 'Artificial' => 1, + 'Class' => '24260154', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24283821' + } + }, + 'ShortName' => 'WideLife' + }, + '57420489' => { + 'Artificial' => 1, + 'Class' => '24258951', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24283725' + } + }, + 'ShortName' => 'WideLife' + }, + '57420491' => { + 'Class' => '24494847', + 'Destructor' => 1, + 'Header' => 'locale.h', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7helpers6LocaleD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24495749' + } + }, + 'ShortName' => 'Locale', + 'Source' => 'locale.cpp', + 'SourceLine' => '62' + }, + '57420492' => { + 'Artificial' => 1, + 'Class' => '24668421', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24668889' + } + }, + 'ShortName' => 'WideLife' + }, + '57420493' => { + 'Artificial' => 1, + 'Class' => '25020560', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25034143' + } + }, + 'ShortName' => 'WideLife' + }, + '57420495' => { + 'Artificial' => 1, + 'Class' => '25445478', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25463332' + } + }, + 'ShortName' => 'WideLife' + }, + '57420496' => { + 'Artificial' => 1, + 'Class' => '25978367', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '25991644' + } + }, + 'ShortName' => 'WideLife' + }, + '57420497' => { + 'Artificial' => 1, + 'Class' => '26357996', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26371756' + } + }, + 'ShortName' => 'WideLife' + }, + '57420498' => { + 'Artificial' => 1, + 'Class' => '26799011', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LoggingEvent17ClazzLoggingEventEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '26821814' + } + }, + 'ShortName' => 'WideLife' + }, + '57420500' => { + 'Artificial' => 1, + 'Class' => '27270068', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '27282695' + } + }, + 'ShortName' => 'WideLife' + }, + '57420501' => { + 'Artificial' => 1, + 'Class' => '27581394', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6LogLogEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '27589174' + } + }, + 'ShortName' => 'WideLife' + }, + '57420502' => { + 'Class' => '1374445', + 'Destructor' => 1, + 'Header' => 'loglog.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx7helpers6LogLogD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '27587455' + } + }, + 'ShortName' => 'LogLog', + 'Source' => 'loglog.cpp', + 'SourceLine' => '60' + }, + '57420504' => { + 'Artificial' => 1, + 'Class' => '28001275', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '28017007' + } + }, + 'ShortName' => 'WideLife' + }, + '57420505' => { + 'Artificial' => 1, + 'Class' => '28787918', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '28800228' + } + }, + 'ShortName' => 'WideLife' + }, + '57420506' => { + 'Artificial' => 1, + 'Class' => '29164560', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9MapFilter14ClazzMapFilterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29178638' + } + }, + 'ShortName' => 'WideLife' + }, + '57420507' => { + 'Class' => '566570', + 'Destructor' => 1, + 'Header' => 'mdc.h', + 'Line' => '60', + 'MnglName' => '_ZN7log4cxx3MDCD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29424743' + } + }, + 'ShortName' => 'MDC', + 'Source' => 'mdc.cpp', + 'SourceLine' => '37' + }, + '57420511' => { + 'Class' => '560672', + 'Destructor' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '585', + 'MnglName' => '_ZN7log4cxx7helpers13MessageBufferD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685706' + } + }, + 'ShortName' => 'MessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '403' + }, + '57420512' => { + 'Class' => '559739', + 'Destructor' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '414', + 'MnglName' => '_ZN7log4cxx7helpers17WideMessageBufferD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685391' + } + }, + 'ShortName' => 'WideMessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '241' + }, + '57420513' => { + 'Class' => '558842', + 'Destructor' => 1, + 'Header' => 'messagebuffer.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7helpers17CharMessageBufferD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '29685050' + } + }, + 'ShortName' => 'CharMessageBuffer', + 'Source' => 'messagebuffer.cpp', + 'SourceLine' => '97' + }, + '57420514' => { + 'Artificial' => 1, + 'Class' => '30133707', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23MessagePatternConverter28ClazzMessagePatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '30146970' + } + }, + 'ShortName' => 'WideLife' + }, + '57420515' => { + 'Artificial' => 1, + 'Class' => '30527107', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '30540366' + } + }, + 'ShortName' => 'WideLife' + }, + '57420516' => { + 'Artificial' => 1, + 'Class' => '30792495', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern15NameAbbreviatorEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '30797363' + } + }, + 'ShortName' => 'WideLife' + }, + '57420517' => { + 'Artificial' => 1, + 'Class' => '30792140', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern18PatternAbbreviator23ClazzPatternAbbreviatorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '30796992' + } + }, + 'ShortName' => 'WideLife' + }, + '57420518' => { + 'Artificial' => 1, + 'Class' => '30791785', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '30796936' + } + }, + 'ShortName' => 'WideLife' + }, + '57420519' => { + 'Artificial' => 1, + 'Class' => '30791430', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern14NOPAbbreviator19ClazzNOPAbbreviatorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '30796880' + } + }, + 'ShortName' => 'WideLife' + }, + '57420520' => { + 'Artificial' => 1, + 'Class' => '30790674', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern15NameAbbreviator20ClazzNameAbbreviatorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '30796474' + } + }, + 'ShortName' => 'WideLife' + }, + '57420521' => { + 'Artificial' => 1, + 'Class' => '31207286', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20NamePatternConverter25ClazzNamePatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '31220575' + } + }, + 'ShortName' => 'WideLife' + }, + '57420522' => { + 'Class' => '1914500', + 'Destructor' => 1, + 'Header' => 'ndc.h', + 'Line' => '100', + 'MnglName' => '_ZN7log4cxx3NDCD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '31437217' + } + }, + 'ShortName' => 'NDC', + 'Source' => 'ndc.cpp', + 'SourceLine' => '30' + }, + '57420523' => { + 'Artificial' => 1, + 'Class' => '31849174', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19MDCPatternConverter24ClazzMDCPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '31864119' + } + }, + 'ShortName' => 'WideLife' + }, + '57420524' => { + 'Artificial' => 1, + 'Class' => '32256187', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern19NDCPatternConverter24ClazzNDCPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32269424' + } + }, + 'ShortName' => 'WideLife' + }, + '57420525' => { + 'Artificial' => 1, + 'Class' => '32766881', + 'Destructor' => 1, + 'Header' => 'odbcappender_priv.h', + 'InLine' => 1, + 'Line' => '118', + 'MnglName' => '_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPriv11DataBindingD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32785759' + } + }, + 'ShortName' => 'DataBinding' + }, + '57420526' => { + 'Artificial' => 1, + 'Class' => '32757731', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_2db12ODBCAppender17ClazzODBCAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '32786827' + } + }, + 'ShortName' => 'WideLife' + }, + '57420528' => { + 'Artificial' => 1, + 'Class' => '33225233', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '33237427' + } + }, + 'ShortName' => 'WideLife' + }, + '57420529' => { + 'Artificial' => 1, + 'Class' => '34036427', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_12OutputStream17ClazzOutputStreamEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34038426' + } + }, + 'ShortName' => 'WideLife' + }, + '57420531' => { + 'Artificial' => 1, + 'Class' => '34245665', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18OutputStreamWriter23ClazzOutputStreamWriterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34248809' + } + }, + 'ShortName' => 'WideLife' + }, + '57420532' => { + 'Artificial' => 1, + 'Class' => '34463068', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern16PatternConverter21ClazzPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34465761' + } + }, + 'ShortName' => 'WideLife' + }, + '57420534' => { + 'Artificial' => 1, + 'Class' => '34956498', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13PatternLayout18ClazzPatternLayoutEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '34977202' + } + }, + 'ShortName' => 'WideLife' + }, + '57420535' => { + 'Artificial' => 1, + 'Class' => '36808280', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '36822013' + } + }, + 'ShortName' => 'WideLife' + }, + '57420536' => { + 'Artificial' => 1, + 'Class' => '37457020', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_20PropertyConfigurator25ClazzPropertyConfiguratorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '37481005' + } + }, + 'ShortName' => 'WideLife' + }, + '57420537' => { + 'Artificial' => 1, + 'Class' => '3118759', + 'Destructor' => 1, + 'Header' => 'configurator.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '7412106' + } + }, + 'ShortName' => 'Configurator', + 'Virt' => 1 + }, + '57420538' => { + 'Artificial' => 1, + 'Class' => '38047346', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22PropertyResourceBundle27ClazzPropertyResourceBundleEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '38049968' + } + }, + 'ShortName' => 'WideLife' + }, + '57420539' => { + 'Artificial' => 1, + 'Class' => '5659045', + 'Destructor' => 1, + 'Header' => 'propertysetter.h', + 'InLine' => 1, + 'Line' => '62', + 'MnglName' => '_ZN7log4cxx6config14PropertySetterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '38405184' + } + }, + 'ShortName' => 'PropertySetter' + }, + '57420540' => { + 'Artificial' => 1, + 'Class' => '38610738', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Reader11ClazzReaderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '38612687' + } + }, + 'ShortName' => 'WideLife' + }, + '57420541' => { + 'Artificial' => 1, + 'Class' => '39270123', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39283392' + } + }, + 'ShortName' => 'WideLife' + }, + '57420542' => { + 'Artificial' => 1, + 'Class' => '39533046', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14ResourceBundle19ClazzResourceBundleEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '39535719' + } + }, + 'ShortName' => 'WideLife' + }, + '57420543' => { + 'Artificial' => 1, + 'Class' => '40172502', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RollingFileAppender24ClazzRollingFileAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40199129' + } + }, + 'ShortName' => 'WideLife' + }, + '57420544' => { + 'Artificial' => 1, + 'Class' => '40764331', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling13RollingPolicy18ClazzRollingPolicyEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '40776838' + } + }, + 'ShortName' => 'WideLife' + }, + '57420545' => { + 'Artificial' => 1, + 'Class' => '41262238', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17RollingPolicyBase22ClazzRollingPolicyBaseEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41284079' + } + }, + 'ShortName' => 'WideLife' + }, + '57420547' => { + 'Artificial' => 1, + 'Class' => '41577678', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling19RolloverDescription24ClazzRolloverDescriptionEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '41584782' + } + }, + 'ShortName' => 'WideLife' + }, + '57420548' => { + 'Artificial' => 1, + 'Class' => '42265495', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '42278747' + } + }, + 'ShortName' => 'WideLife' + }, + '57420550' => { + 'Artificial' => 1, + 'Class' => '42999619', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_12SimpleLayout17ClazzSimpleLayoutEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43012100' + } + }, + 'ShortName' => 'WideLife' + }, + '57420551' => { + 'Artificial' => 1, + 'Class' => '43339375', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43351760' + } + }, + 'ShortName' => 'WideLife' + }, + '57420552' => { + 'Artificial' => 1, + 'Class' => '43745315', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net12SMTPAppender17ClazzSMTPAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769021' + } + }, + 'ShortName' => 'WideLife' + }, + '57420553' => { + 'Artificial' => 1, + 'Class' => '43744564', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net16DefaultEvaluator21ClazzDefaultEvaluatorEED1Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '8848576' + 'name' => 'this', + 'type' => '43768925' + } + }, + 'ShortName' => 'WideLife' + }, + '57420554' => { + 'Artificial' => 1, + 'Class' => '5652409', + 'Destructor' => 1, + 'Header' => 'triggeringeventevaluator.h', + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluatorD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '43769182' + } + }, + 'ShortName' => 'TriggeringEventEvaluator', + 'Virt' => 1 + }, + '57420556' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Destructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '64', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIxxcJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44355613' } } - }, - '8885348' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_28LineLocationPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8874734' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { + }, + '57420557' => { + 'Artificial' => 1, + 'Class' => '44355499', + 'Destructor' => 1, + 'Header' => 'string_conversions.h', + 'InLine' => 1, + 'Line' => '64', + 'MnglName' => '_ZZN9__gnu_cxx6__stoaIlicJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD1Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '8848576' + 'name' => 'this', + 'type' => '44355613' } } - }, - '8885763' => { - 'Artificial' => 1, - 'Class' => '8870208', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8874404' - } - }, - 'ShortName' => 'WideLife' - }, - '8885764' => { - 'Artificial' => 1, - 'Class' => '8870208', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8874404' - } - }, - 'ShortName' => 'WideLife' - }, - '8885904' => { - 'Artificial' => 1, - 'Class' => '8870208', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8874404' - } - }, - 'ShortName' => 'WideLife' - }, - '8885905' => { - 'Artificial' => 1, - 'Class' => '8870208', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8874404' - } - }, - 'ShortName' => 'WideLife' - }, - '8890977' => { - 'Class' => '8871860', - 'Constructor' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8874712' - } - }, - 'ShortName' => 'LineLocationPatternConverter', - 'Source' => 'linelocationpatternconverter.cpp', - 'SourceLine' => '31' - }, - '8895094' => { - 'Class' => '8871860', - 'Constructor' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8874712' - } - }, - 'ShortName' => 'LineLocationPatternConverter', - 'Source' => 'linelocationpatternconverter.cpp', - 'SourceLine' => '31' - }, - '8901129' => { - 'Artificial' => 1, - 'Class' => '8871894', - 'Destructor' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8875222' - } - }, - 'ShortName' => 'ClazzLineLocationPatternConverter', - 'Virt' => 1 - }, - '8901130' => { - 'Artificial' => 1, - 'Class' => '8871894', - 'Destructor' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8875222' - } - }, - 'ShortName' => 'ClazzLineLocationPatternConverter', - 'Virt' => 1 - }, - '8901270' => { - 'Artificial' => 1, - 'Class' => '8871894', - 'Destructor' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8875222' - } - }, - 'ShortName' => 'ClazzLineLocationPatternConverter', - 'Virt' => 1 - }, - '8901360' => { - 'Artificial' => 1, - 'Class' => '8871894', - 'Constructor' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8875222' - } - }, - 'ShortName' => 'ClazzLineLocationPatternConverter' - }, - '8901361' => { - 'Artificial' => 1, - 'Class' => '8871894', - 'Constructor' => 1, - 'Header' => 'linelocationpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8875222' - } - }, - 'ShortName' => 'ClazzLineLocationPatternConverter' - }, - '8971285' => { - 'Class' => '8971164', - 'Const' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 2, - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973930' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '8971414' => { - 'Class' => '8971130', - 'Header' => 'lineseparatorpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'lineseparatorpatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '8971431' => { - 'Class' => '8971130', - 'Header' => 'lineseparatorpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'lineseparatorpatternconverter.cpp', - 'SourceLine' => '28', - 'Static' => 1 - }, - '8971448' => { - 'Class' => '8971130', - 'Const' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973602' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'lineseparatorpatternconverter.cpp', - 'SourceLine' => '28', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '8971487' => { - 'Class' => '8971130', - 'Const' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973602' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '8971531' => { - 'Class' => '8971130', - 'Const' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973602' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '8971612' => { - 'Class' => '8971130', - 'Header' => 'lineseparatorpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', - 'Param' => { - '0' => { - 'name' => 'p1', - 'type' => '410985' - } - }, - 'Reg' => { - '0' => 'rsi' - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'lineseparatorpatternconverter.cpp', - 'SourceLine' => '36', - 'Static' => 1 - }, - '8971640' => { - 'Class' => '8971130', - 'Const' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973602' - }, - '1' => { - 'name' => 'p1', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' - } - }, - 'Reg' => { - '1' => 'rsi', - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'lineseparatorpatternconverter.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '8971690' => { - 'Class' => '8971130', - 'Const' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern29LineSeparatorPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973602' - }, - '1' => { - 'name' => 'p1', - 'type' => '652213' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' - } - }, - 'Reg' => { - '1' => 'rsi', - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'lineseparatorpatternconverter.cpp', - 'SourceLine' => '51', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '8972090' => { - 'Data' => 1, - 'Line' => '28', - 'MnglName' => '_ZN7log4cxx7classes41LineSeparatorPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LineSeparatorPatternConverterRegistration', - 'Source' => 'lineseparatorpatternconverter.cpp' - }, - '8976931' => { - 'Artificial' => 1, - 'Class' => '8971130', - 'Destructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973503' - } - }, - 'ShortName' => 'LineSeparatorPatternConverter', - 'Virt' => 1 - }, - '8976932' => { - 'Artificial' => 1, - 'Class' => '8971130', - 'Destructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973503' - } - }, - 'ShortName' => 'LineSeparatorPatternConverter', - 'Virt' => 1 - }, - '8977196' => { - 'Artificial' => 1, - 'Class' => '8971130', - 'Destructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973503' - } - }, - 'ShortName' => 'LineSeparatorPatternConverter', - 'Virt' => 1 - }, - '8986784' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_29LineSeparatorPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8973525' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { + }, + '57420558' => { + 'Artificial' => 1, + 'Class' => '44711390', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17StringMatchFilter22ClazzStringMatchFilterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '44724641' + } + }, + 'ShortName' => 'WideLife' + }, + '57420560' => { + 'Artificial' => 1, + 'Class' => '45266023', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemErrWriter20ClazzSystemErrWriterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45268431' + } + }, + 'ShortName' => 'WideLife' + }, + '57420561' => { + 'Artificial' => 1, + 'Class' => '45437084', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_15SystemOutWriter20ClazzSystemOutWriterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45439492' + } + }, + 'ShortName' => 'WideLife' + }, + '57420562' => { + 'Class' => '45603519', + 'Destructor' => 1, + 'Header' => 'threadlocal.h', + 'Line' => '56', + 'MnglName' => '_ZN7log4cxx7helpers11ThreadLocalD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45604911' + } + }, + 'ShortName' => 'ThreadLocal', + 'Source' => 'threadlocal.cpp', + 'SourceLine' => '44' + }, + '57420563' => { + 'Artificial' => 1, + 'Class' => '45942353', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern22ThreadPatternConverter27ClazzThreadPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '45955580' + } + }, + 'ShortName' => 'WideLife' + }, + '57420564' => { + 'Artificial' => 1, + 'Class' => '46314345', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46327504' + } + }, + 'ShortName' => 'WideLife' + }, + '57420566' => { + 'Artificial' => 1, + 'Class' => '46699645', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18ThreadSpecificDataEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '46716546' + } + }, + 'ShortName' => 'WideLife' + }, + '57420568' => { + 'Artificial' => 1, + 'Class' => '47244044', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13ThreadUtilityEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47249002' + } + }, + 'ShortName' => 'WideLife' + }, + '57420569' => { + 'Class' => '2500954', + 'Destructor' => 1, + 'Header' => 'threadutility.h', + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx7helpers13ThreadUtilityD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '2520206' + } + }, + 'ShortName' => 'ThreadUtility', + 'Source' => 'threadutility.cpp', + 'SourceLine' => '67' + }, + '57420570' => { + 'Artificial' => 1, + 'Class' => '47646539', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '47660196' + } + }, + 'ShortName' => 'WideLife' + }, + '57420572' => { + 'Artificial' => 1, + 'Class' => '48266740', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48297191' + } + }, + 'ShortName' => 'WideLife' + }, + '57420573' => { + 'Artificial' => 1, + 'Class' => '48786878', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS0_8TimeZoneEEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803587' + } + }, + 'ShortName' => 'WideLife' + }, + '57420574' => { + 'Artificial' => 1, + 'Class' => '48785538', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_8TimeZone13ClazzTimeZoneEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '48803396' + } + }, + 'ShortName' => 'WideLife' + }, + '57420575' => { + 'Artificial' => 1, + 'Class' => '49645189', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling16TriggeringPolicy21ClazzTriggeringPolicyEED1Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '8949071' + 'name' => 'this', + 'type' => '49656738' } - } - }, - '8986785' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_29LineSeparatorPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '8973525' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { + }, + 'ShortName' => 'WideLife' + }, + '57420576' => { + 'Artificial' => 1, + 'Class' => '49871657', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Writer11ClazzWriterEED1Ev', + 'Param' => { '0' => { - 'key' => 'Arg0', - 'type' => '8949071' + 'name' => 'this', + 'type' => '49878243' } - } - }, - '8987200' => { - 'Artificial' => 1, - 'Class' => '8969500', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973195' - } - }, - 'ShortName' => 'WideLife' - }, - '8987201' => { - 'Artificial' => 1, - 'Class' => '8969500', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973195' - } - }, - 'ShortName' => 'WideLife' - }, - '8987341' => { - 'Artificial' => 1, - 'Class' => '8969500', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973195' - } - }, - 'ShortName' => 'WideLife' - }, - '8987342' => { - 'Artificial' => 1, - 'Class' => '8969500', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973195' - } - }, - 'ShortName' => 'WideLife' - }, - '8992805' => { - 'Class' => '8971130', - 'Constructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973503' - } - }, - 'ShortName' => 'LineSeparatorPatternConverter', - 'Source' => 'lineseparatorpatternconverter.cpp', - 'SourceLine' => '30' - }, - '8996922' => { - 'Class' => '8971130', - 'Constructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973503' - } - }, - 'ShortName' => 'LineSeparatorPatternConverter', - 'Source' => 'lineseparatorpatternconverter.cpp', - 'SourceLine' => '30' - }, - '9002957' => { - 'Artificial' => 1, - 'Class' => '8971164', - 'Destructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973919' - } - }, - 'ShortName' => 'ClazzLineSeparatorPatternConverter', - 'Virt' => 1 - }, - '9002958' => { - 'Artificial' => 1, - 'Class' => '8971164', - 'Destructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973919' - } - }, - 'ShortName' => 'ClazzLineSeparatorPatternConverter', - 'Virt' => 1 - }, - '9003098' => { - 'Artificial' => 1, - 'Class' => '8971164', - 'Destructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973919' - } - }, - 'ShortName' => 'ClazzLineSeparatorPatternConverter', - 'Virt' => 1 - }, - '9003188' => { - 'Artificial' => 1, - 'Class' => '8971164', - 'Constructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973919' - } - }, - 'ShortName' => 'ClazzLineSeparatorPatternConverter' - }, - '9003189' => { - 'Artificial' => 1, - 'Class' => '8971164', - 'Constructor' => 1, - 'Header' => 'lineseparatorpatternconverter.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '8973919' - } - }, - 'ShortName' => 'ClazzLineSeparatorPatternConverter' - }, - '901029' => { + }, + 'ShortName' => 'WideLife' + }, + '57420577' => { + 'Artificial' => 1, + 'Class' => '50309642', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_14WriterAppender19ClazzWriterAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50327533' + } + }, + 'ShortName' => 'WideLife' + }, + '57420578' => { + 'Artificial' => 1, + 'Class' => '50822309', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml9XMLLayout14ClazzXMLLayoutEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '50837066' + } + }, + 'ShortName' => 'WideLife' + }, + '57420579' => { + 'Artificial' => 1, + 'Class' => '51229374', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7rolling17ZipCompressAction22ClazzZipCompressActionEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51250671' + } + }, + 'ShortName' => 'WideLife' + }, + '57420581' => { + 'Artificial' => 1, + 'Class' => '51474467', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramPacket19ClazzDatagramPacketEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51476712' + } + }, + 'ShortName' => 'WideLife' + }, + '57420582' => { + 'Artificial' => 1, + 'Class' => '5647693', + 'Destructor' => 1, + 'Header' => 'datagramsocket_priv.h', + 'InLine' => 1, + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7helpers14DatagramSocket18DatagramSocketPrivD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '5672933' + } + }, + 'ShortName' => 'DatagramSocketPriv' + }, + '57420583' => { + 'Artificial' => 1, + 'Class' => '51771364', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14DatagramSocket19ClazzDatagramSocketEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '51778455' + } + }, + 'ShortName' => 'WideLife' + }, + '57420585' => { + 'Artificial' => 1, + 'Class' => '52886089', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Socket11ClazzSocketEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '52888672' + } + }, + 'ShortName' => 'WideLife' + }, + '57420586' => { + 'Artificial' => 1, + 'Class' => '53674354', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14TelnetAppender19ClazzTelnetAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '53693616' + } + }, + 'ShortName' => 'WideLife' + }, + '57420588' => { + 'Artificial' => 1, + 'Class' => '54716918', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_18SocketOutputStream23ClazzSocketOutputStreamEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '54720543' + } + }, + 'ShortName' => 'WideLife' + }, + '57420589' => { + 'Artificial' => 1, + 'Class' => '55242029', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net17XMLSocketAppender22ClazzXMLSocketAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '55262174' + } + }, + 'ShortName' => 'WideLife' + }, + '57420591' => { + 'Artificial' => 1, + 'Class' => '56161727', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3net14SyslogAppender19ClazzSyslogAppenderEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56184685' + } + }, + 'ShortName' => 'WideLife' + }, + '57420593' => { + 'Artificial' => 1, + 'Class' => '56946580', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3xml15DOMConfigurator20ClazzDOMConfiguratorEED1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '56980003' + } + }, + 'ShortName' => 'WideLife' + }, + '577947' => { + 'Class' => '564875', + 'Destructor' => 1, + 'Header' => 'filter.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx3spi6FilterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576334' + } + }, + 'ShortName' => 'Filter', + 'Source' => 'filter.cpp', + 'SourceLine' => '36', + 'Virt' => 1 + }, + '577983' => { + 'Class' => '564875', + 'Constructor' => 1, + 'Header' => 'filter.h', + 'Line' => '74', + 'MnglName' => '_ZN7log4cxx3spi6FilterC2ESt10unique_ptrINS1_13FilterPrivateESt14default_deleteIS3_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576334' + }, + '2' => { + 'name' => 'priv', + 'offset' => '0', + 'type' => '496857' + } + }, + 'ShortName' => 'Filter', + 'Source' => 'filter.cpp', + 'SourceLine' => '30' + }, + '581666' => { + 'Artificial' => 1, + 'Class' => '567316', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576074' + } + }, + 'ShortName' => 'AndFilterPrivate', + 'Source' => 'andfilter.cpp', + 'Virt' => 1 + }, + '581667' => { + 'Artificial' => 1, + 'Class' => '567316', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576074' + } + }, + 'ShortName' => 'AndFilterPrivate', + 'Source' => 'andfilter.cpp', + 'Virt' => 1 + }, + '583716' => { + 'Artificial' => 1, + 'Class' => '567316', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576074' + } + }, + 'ShortName' => 'AndFilterPrivate', + 'Source' => 'andfilter.cpp', + 'Virt' => 1 + }, + '589089' => { + 'Artificial' => 1, + 'Class' => '562716', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '575963' + } + }, + 'ShortName' => 'WideLife' + }, + '589090' => { + 'Artificial' => 1, + 'Class' => '562716', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '575963' + } + }, + 'ShortName' => 'WideLife' + }, + '589232' => { + 'Artificial' => 1, + 'Class' => '562716', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '575963' + } + }, + 'ShortName' => 'WideLife' + }, + '589233' => { + 'Artificial' => 1, + 'Class' => '562716', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter9AndFilter14ClazzAndFilterEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '575963' + } + }, + 'ShortName' => 'WideLife' + }, + '596134' => { + 'Class' => '567083', + 'Destructor' => 1, + 'Header' => 'andfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9AndFilterD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576619' + } + }, + 'ShortName' => 'AndFilter', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '50', + 'Virt' => 1 + }, + '596233' => { + 'Class' => '567083', + 'Destructor' => 1, + 'Header' => 'andfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9AndFilterD1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576619' + } + }, + 'ShortName' => 'AndFilter', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '50', + 'Virt' => 1 + }, + '596433' => { + 'Class' => '567083', + 'Destructor' => 1, + 'Header' => 'andfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9AndFilterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576619' + } + }, + 'ShortName' => 'AndFilter', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '50', + 'Virt' => 1 + }, + '596568' => { + 'Class' => '567083', + 'Constructor' => 1, + 'Header' => 'andfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9AndFilterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576619' + } + }, + 'ShortName' => 'AndFilter', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '45' + }, + '599695' => { + 'Class' => '567083', + 'Constructor' => 1, + 'Header' => 'andfilter.h', + 'MnglName' => '_ZN7log4cxx6filter9AndFilterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576619' + } + }, + 'ShortName' => 'AndFilter', + 'Source' => 'andfilter.cpp', + 'SourceLine' => '45' + }, + '602671' => { + 'Artificial' => 1, + 'Class' => '566161', + 'Constructor' => 1, + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '602621' + } + }, + 'ShortName' => 'OptionHandler' + }, + '602672' => { + 'Artificial' => 1, + 'Class' => '566161', + 'Constructor' => 1, + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '602621' + } + }, + 'ShortName' => 'OptionHandler' + }, + '602726' => { + 'Artificial' => 1, + 'Class' => '209311', + 'Constructor' => 1, + 'Header' => 'object.h', + 'InLine' => 1, + 'Line' => '105', + 'MnglName' => '_ZN7log4cxx7helpers6ObjectC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576863' + } + }, + 'ShortName' => 'Object' + }, + '602727' => { + 'Artificial' => 1, + 'Class' => '209311', + 'Constructor' => 1, + 'Header' => 'object.h', + 'InLine' => 1, + 'Line' => '105', + 'MnglName' => '_ZN7log4cxx7helpers6ObjectC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576863' + } + }, + 'ShortName' => 'Object' + }, + '603820' => { + 'Artificial' => 1, + 'Class' => '564884', + 'Constructor' => 1, + 'Header' => 'filter_priv.h', + 'InLine' => 1, + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '575527' + } + }, + 'ShortName' => 'FilterPrivate' + }, + '603821' => { + 'Artificial' => 1, + 'Class' => '564884', + 'Constructor' => 1, + 'Header' => 'filter_priv.h', + 'InLine' => 1, + 'Line' => '27', + 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '575527' + } + }, + 'ShortName' => 'FilterPrivate' + }, + '603970' => { 'Artificial' => 1, - 'Class' => '836668', + 'Class' => '564884', 'Destructor' => 1, + 'Header' => 'filter_priv.h', 'InLine' => 1, - 'Line' => '99', - 'MnglName' => '_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD0Ev', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '842719' + 'type' => '575527' } }, - 'ShortName' => 'AsyncAppenderPriv', - 'Source' => 'asyncappender.cpp', + 'ShortName' => 'FilterPrivate', 'Virt' => 1 }, - '901030' => { + '603971' => { 'Artificial' => 1, - 'Class' => '836668', + 'Class' => '564884', 'Destructor' => 1, + 'Header' => 'filter_priv.h', 'InLine' => 1, - 'Line' => '99', - 'MnglName' => '_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD1Ev', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '842719' + 'type' => '575527' } }, - 'ShortName' => 'AsyncAppenderPriv', - 'Source' => 'asyncappender.cpp', + 'ShortName' => 'FilterPrivate', 'Virt' => 1 }, - '907458' => { + '604715' => { 'Artificial' => 1, - 'Class' => '836668', + 'Class' => '564884', 'Destructor' => 1, + 'Header' => 'filter_priv.h', 'InLine' => 1, - 'Line' => '99', - 'MnglName' => '_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD2Ev', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx3spi6Filter13FilterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '842719' + 'type' => '575527' } }, - 'ShortName' => 'AsyncAppenderPriv', - 'Source' => 'asyncappender.cpp', + 'ShortName' => 'FilterPrivate', 'Virt' => 1 }, - '9081404' => { - 'Class' => '9081283', - 'Const' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084957' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9081705' => { - 'Class' => '9081249', - 'Header' => 'literalpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'literalpatternconverter.cpp', - 'SourceLine' => '43', - 'Static' => 1 - }, - '9081722' => { - 'Class' => '9081249', - 'Header' => 'literalpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'literalpatternconverter.cpp', - 'SourceLine' => '43', - 'Static' => 1 - }, - '9081739' => { - 'Class' => '9081249', - 'Const' => 1, - 'Header' => 'literalpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084528' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'literalpatternconverter.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9081778' => { - 'Class' => '9081249', - 'Const' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 2, - 'Line' => '41', - 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter4castERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084528' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' - }, - '9081822' => { - 'Class' => '9081249', - 'Const' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter10instanceofERKNS_7helpers5ClassE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084528' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' - } - }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9081908' => { - 'Class' => '9081249', - 'Header' => 'literalpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter11newInstanceERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'literal', - 'type' => '263006' - } - }, - 'Return' => '2271807', - 'ShortName' => 'newInstance', - 'Source' => 'literalpatternconverter.cpp', - 'SourceLine' => '51', - 'Static' => 1 - }, - '9081936' => { - 'Class' => '9081249', - 'Const' => 1, - 'Header' => 'literalpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084528' - }, - '1' => { - 'name' => 'p1', - 'type' => '154261' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' - } - }, - 'Reg' => { - '1' => 'rsi', - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'literalpatternconverter.cpp', - 'SourceLine' => '63', - 'Virt' => 1, - 'VirtPos' => '7' - }, - '9081986' => { - 'Class' => '9081249', - 'Const' => 1, - 'Header' => 'literalpatternconverter.h', - 'MnglName' => '_ZNK7log4cxx7pattern23LiteralPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084528' - }, - '1' => { - 'name' => 'p1', - 'type' => '652213' - }, - '2' => { - 'name' => 'toAppendTo', - 'type' => '409210' - }, - '3' => { - 'name' => 'p3', - 'type' => '64643' - } - }, - 'Reg' => { - '1' => 'rsi', - '3' => 'rcx' - }, - 'Return' => '1', - 'ShortName' => 'format', - 'Source' => 'literalpatternconverter.cpp', - 'SourceLine' => '71', - 'Virt' => 1, - 'VirtPos' => '5' - }, - '9082387' => { - 'Data' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7classes35LiteralPatternConverterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LiteralPatternConverterRegistration', - 'Source' => 'literalpatternconverter.cpp' - }, - '9087965' => { - 'Artificial' => 1, - 'Class' => '9081249', - 'Destructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084413' - } - }, - 'ShortName' => 'LiteralPatternConverter', - 'Virt' => 1 - }, - '9087966' => { - 'Artificial' => 1, - 'Class' => '9081249', - 'Destructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084413' - } - }, - 'ShortName' => 'LiteralPatternConverter', - 'Virt' => 1 - }, - '9088233' => { - 'Artificial' => 1, - 'Class' => '9081249', - 'Destructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084413' - } - }, - 'ShortName' => 'LiteralPatternConverter', - 'Virt' => 1 - }, - '9100041' => { - 'Artificial' => 1, - 'Class' => '9081446', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9083929' - } - }, - 'ShortName' => 'LiteralPatternConverterPrivate', - 'Source' => 'literalpatternconverter.cpp', - 'Virt' => 1 - }, - '9100042' => { - 'Artificial' => 1, - 'Class' => '9081446', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9083929' - } - }, - 'ShortName' => 'LiteralPatternConverterPrivate', - 'Source' => 'literalpatternconverter.cpp', - 'Virt' => 1 - }, - '9102087' => { - 'Artificial' => 1, - 'Class' => '9081446', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9083929' - } - }, - 'ShortName' => 'LiteralPatternConverterPrivate', - 'Source' => 'literalpatternconverter.cpp', - 'Virt' => 1 - }, - '9106042' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_23LiteralPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '9084435' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '9057135' - } - } - }, - '9106043' => { - 'Artificial' => 1, - 'Class' => '2269898', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_23LiteralPatternConverterEEJEEEOT_DpOT0_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '2273889' - }, - '1' => { - 'name' => 'arg0', - 'type' => '9084435' - } - }, - 'ShortName' => 'WideLife >', - 'TParam' => { - '0' => { - 'key' => 'Arg0', - 'type' => '9057135' - } - } - }, - '9107007' => { - 'Artificial' => 1, - 'Class' => '9079449', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9083804' - } - }, - 'ShortName' => 'WideLife' - }, - '9107008' => { - 'Artificial' => 1, - 'Class' => '9079449', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9083804' - } - }, - 'ShortName' => 'WideLife' - }, - '9107149' => { - 'Artificial' => 1, - 'Class' => '9079449', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9083804' - } - }, - 'ShortName' => 'WideLife' - }, - '9107150' => { - 'Artificial' => 1, - 'Class' => '9079449', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9083804' - } - }, - 'ShortName' => 'WideLife' - }, - '9116317' => { - 'Class' => '9081249', - 'Constructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084413' - }, - '1' => { - 'name' => 'literal1', - 'type' => '263006' - } - }, - 'ShortName' => 'LiteralPatternConverter', - 'Source' => 'literalpatternconverter.cpp', - 'SourceLine' => '45' - }, - '9127282' => { - 'Class' => '9081249', - 'Constructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084413' - }, - '2' => { - 'name' => 'literal1', - 'type' => '263006' - } - }, - 'ShortName' => 'LiteralPatternConverter', - 'Source' => 'literalpatternconverter.cpp', - 'SourceLine' => '45' - }, - '9143062' => { - 'Artificial' => 1, - 'Class' => '9081283', - 'Destructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084946' - } - }, - 'ShortName' => 'ClazzLiteralPatternConverter', - 'Virt' => 1 - }, - '9143063' => { - 'Artificial' => 1, - 'Class' => '9081283', - 'Destructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084946' - } - }, - 'ShortName' => 'ClazzLiteralPatternConverter', - 'Virt' => 1 - }, - '9143204' => { - 'Artificial' => 1, - 'Class' => '9081283', - 'Destructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084946' - } - }, - 'ShortName' => 'ClazzLiteralPatternConverter', - 'Virt' => 1 - }, - '9143294' => { - 'Artificial' => 1, - 'Class' => '9081283', - 'Constructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084946' - } - }, - 'ShortName' => 'ClazzLiteralPatternConverter' - }, - '9143295' => { - 'Artificial' => 1, - 'Class' => '9081283', - 'Constructor' => 1, - 'Header' => 'literalpatternconverter.h', - 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9084946' - } - }, - 'ShortName' => 'ClazzLiteralPatternConverter' - }, - '921975' => { + '606416' => { 'Artificial' => 1, - 'Class' => '833512', + 'Class' => '567101', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'andfilter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEED2Ev', + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '842594' + 'type' => '576713' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzAndFilter', + 'Virt' => 1 }, - '921976' => { + '606417' => { 'Artificial' => 1, - 'Class' => '833512', + 'Class' => '567101', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'andfilter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEED0Ev', + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '842594' + 'type' => '576713' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzAndFilter', + 'Virt' => 1 + }, + '606563' => { + 'Artificial' => 1, + 'Class' => '567101', + 'Destructor' => 1, + 'Header' => 'andfilter.h', + 'InLine' => 1, + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576713' + } + }, + 'ShortName' => 'ClazzAndFilter', + 'Virt' => 1 }, - '922117' => { + '606658' => { 'Artificial' => 1, - 'Class' => '833512', + 'Class' => '567101', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'andfilter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEEC2Ev', + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576713' + } + }, + 'ShortName' => 'ClazzAndFilter' + }, + '606659' => { + 'Artificial' => 1, + 'Class' => '567101', + 'Constructor' => 1, + 'Header' => 'andfilter.h', + 'InLine' => 1, + 'Line' => '82', + 'MnglName' => '_ZN7log4cxx6filter9AndFilter14ClazzAndFilterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576713' + } + }, + 'ShortName' => 'ClazzAndFilter' + }, + '606812' => { + 'Artificial' => 1, + 'Class' => '566161', + 'Destructor' => 1, + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '602621' + } + }, + 'ShortName' => 'OptionHandler', + 'Virt' => 1 + }, + '606813' => { + 'Artificial' => 1, + 'Class' => '566161', + 'Destructor' => 1, + 'Header' => 'optionhandler.h', + 'InLine' => 1, + 'Line' => '38', + 'MnglName' => '_ZN7log4cxx3spi13OptionHandlerD0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '602621' + } + }, + 'ShortName' => 'OptionHandler', + 'Virt' => 1 + }, + '606873' => { + 'Artificial' => 1, + 'Class' => '209311', + 'Destructor' => 1, + 'Header' => 'object.h', + 'InLine' => 1, + 'Line' => '108', + 'MnglName' => '_ZN7log4cxx7helpers6ObjectD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '842594' + 'type' => '576863' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'Object', + 'Virt' => 1 }, - '922118' => { + '606874' => { 'Artificial' => 1, - 'Class' => '833512', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '209311', + 'Destructor' => 1, + 'Header' => 'object.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_13AsyncAppender18ClazzAsyncAppenderEEC1Ev', + 'Line' => '108', + 'MnglName' => '_ZN7log4cxx7helpers6ObjectD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '842594' + 'type' => '576863' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'Object', + 'Virt' => 1 }, - '9226673' => { - 'Class' => '9226660', - 'Header' => 'loader.h', - 'Line' => '36', - 'MnglName' => '_ZN7log4cxx7helpers6Loader9loadClassERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'clazz', - 'type' => '263006' - } - }, - 'Return' => '64678', - 'ShortName' => 'loadClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '57', - 'Static' => 1 - }, - '9226701' => { - 'Class' => '9226660', - 'Header' => 'loader.h', - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx7helpers6Loader19getResourceAsStreamERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '263006' - } - }, - 'Return' => '4044621', - 'ShortName' => 'getResourceAsStream', - 'Source' => 'loader.cpp', - 'SourceLine' => '63', - 'Static' => 1 - }, - '9226912' => { - 'Class' => '9226794', - 'Const' => 1, - 'Header' => 'xml.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNode7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245177' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9226968' => { - 'Class' => '9226738', - 'Header' => 'xml.h', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '51', - 'Static' => 1 - }, - '9226985' => { - 'Class' => '9226738', - 'Header' => 'xml.h', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '51', - 'Static' => 1 - }, - '9227002' => { - 'Class' => '9226738', - 'Const' => 1, - 'Header' => 'xml.h', - 'MnglName' => '_ZNK7log4cxx7helpers10XMLDOMNode8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244844' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '51', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9227041' => { - 'Class' => '9226738', - 'Header' => 'xml.h', - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode13getChildNodesEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244849' - } - }, - 'PureVirt' => 1, - 'Return' => '9234675', - 'ShortName' => 'getChildNodes', - 'VirtPos' => '5' - }, - '9227080' => { - 'Class' => '9226738', - 'Header' => 'xml.h', - 'Line' => '62', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode11getNodeTypeEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244849' - } - }, - 'PureVirt' => 1, - 'Return' => '9226755', - 'ShortName' => 'getNodeType', - 'VirtPos' => '6' - }, - '9227119' => { - 'Class' => '9226738', - 'Header' => 'xml.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode16getOwnerDocumentEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244849' - } - }, - 'PureVirt' => 1, - 'Return' => '9234687', - 'ShortName' => 'getOwnerDocument', - 'VirtPos' => '7' - }, - '9227701' => { - 'Class' => '9227583', - 'Const' => 1, - 'Header' => 'object.h', - 'InLine' => 2, - 'Line' => '112', - 'MnglName' => '_ZNK7log4cxx7helpers6Object11ClazzObject7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245460' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9232501' => { - 'Class' => '9232383', - 'Const' => 1, - 'Header' => 'xml.h', - 'InLine' => 2, - 'Line' => '89', - 'MnglName' => '_ZNK7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocument7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245133' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9232557' => { - 'Class' => '9232366', - 'Header' => 'xml.h', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '52', - 'Static' => 1 - }, - '9232574' => { - 'Class' => '9232366', - 'Header' => 'xml.h', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '52', - 'Static' => 1 - }, - '9232591' => { - 'Class' => '9232366', - 'Const' => 1, - 'Header' => 'xml.h', - 'MnglName' => '_ZNK7log4cxx7helpers14XMLDOMDocument8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244827' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '52', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9232630' => { - 'Class' => '9232366', - 'Header' => 'xml.h', - 'Line' => '90', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument4loadERKNS_4FileE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244832' - }, - '1' => { - 'name' => 'p1', - 'type' => '840075' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'load', - 'VirtPos' => '8' - }, - '9232670' => { - 'Class' => '9232366', - 'Header' => 'xml.h', - 'Line' => '91', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument18getDocumentElementEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244832' - } - }, - 'PureVirt' => 1, - 'Return' => '9234663', - 'ShortName' => 'getDocumentElement', - 'VirtPos' => '9' - }, - '9232709' => { - 'Class' => '9232366', - 'Header' => 'xml.h', - 'Line' => '92', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument14getElementByIdERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244832' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '263006' - } - }, - 'PureVirt' => 1, - 'Return' => '9234663', - 'ShortName' => 'getElementById', - 'VirtPos' => '10' - }, - '9233291' => { - 'Class' => '9233173', - 'Const' => 1, - 'Header' => 'xml.h', - 'InLine' => 2, - 'Line' => '74', - 'MnglName' => '_ZNK7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElement7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245155' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9233347' => { - 'Class' => '9233156', - 'Header' => 'xml.h', - 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '53', - 'Static' => 1 - }, - '9233364' => { - 'Class' => '9233156', - 'Header' => 'xml.h', - 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '53', - 'Static' => 1 - }, - '9233381' => { - 'Class' => '9233156', - 'Const' => 1, - 'Header' => 'xml.h', - 'MnglName' => '_ZNK7log4cxx7helpers13XMLDOMElement8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244810' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '53', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9233420' => { - 'Class' => '9233156', - 'Header' => 'xml.h', - 'Line' => '75', - 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement10getTagNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244815' - } - }, - 'PureVirt' => 1, - 'Return' => '63706', - 'ShortName' => 'getTagName', - 'VirtPos' => '8' - }, - '9233459' => { - 'Class' => '9233156', - 'Header' => 'xml.h', - 'Line' => '76', - 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement12getAttributeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244815' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - } - }, - 'PureVirt' => 1, - 'Return' => '63706', - 'ShortName' => 'getAttribute', - 'VirtPos' => '9' - }, - '9234036' => { - 'Class' => '9233918', - 'Const' => 1, - 'Header' => 'xml.h', - 'InLine' => 2, - 'Line' => '110', - 'MnglName' => '_ZNK7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeList7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245111' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9234092' => { - 'Class' => '9233901', - 'Header' => 'xml.h', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '54', - 'Static' => 1 - }, - '9234109' => { - 'Class' => '9233901', - 'Header' => 'xml.h', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '54', - 'Static' => 1 - }, - '9234126' => { - 'Class' => '9233901', - 'Const' => 1, - 'Header' => 'xml.h', - 'MnglName' => '_ZNK7log4cxx7helpers14XMLDOMNodeList8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244793' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '54', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9234165' => { - 'Class' => '9233901', - 'Header' => 'xml.h', - 'Line' => '111', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList9getLengthEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244798' - } - }, - 'PureVirt' => 1, - 'Return' => '50231', - 'ShortName' => 'getLength', - 'VirtPos' => '5' - }, - '9234204' => { - 'Class' => '9233901', - 'Header' => 'xml.h', - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList4itemEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244798' - }, - '1' => { - 'name' => 'p1', - 'type' => '50231' - } - }, - 'PureVirt' => 1, - 'Return' => '9234651', - 'ShortName' => 'item', - 'VirtPos' => '6' - }, - '9234913' => { - 'Class' => '9234795', - 'Const' => 1, - 'Header' => 'filter.h', - 'InLine' => 2, - 'Line' => '77', - 'MnglName' => '_ZNK7log4cxx3spi6Filter11ClazzFilter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245265' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9235252' => { - 'Class' => '9235134', - 'Const' => 1, - 'Header' => 'optionhandler.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx3spi13OptionHandler18ClazzOptionHandler7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245375' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9235400' => { - 'Class' => '151305', - 'Header' => 'optionhandler.h', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandler13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '42', - 'Static' => 1 - }, - '9235417' => { - 'Class' => '151305', - 'Const' => 1, - 'Header' => 'optionhandler.h', - 'MnglName' => '_ZNK7log4cxx3spi13OptionHandler8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245067' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '42', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9235498' => { - 'Class' => '151305', - 'Header' => 'optionhandler.h', - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandler15activateOptionsERNS_7helpers4PoolE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '179907' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'activateOptions', - 'VirtPos' => '5' - }, - '9235538' => { - 'Class' => '151305', - 'Header' => 'optionhandler.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '179907' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '263006' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'setOption', - 'VirtPos' => '6' - }, - '9235721' => { - 'Class' => '9235603', - 'Const' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 2, - 'Line' => '61', - 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler17ClazzErrorHandler7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245243' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9235794' => { - 'Class' => '407466', - 'Header' => 'errorhandler.h', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '43', - 'Static' => 1 - }, - '9235811' => { - 'Class' => '407466', - 'Const' => 1, - 'Header' => 'errorhandler.h', - 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4643925' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '43', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9235980' => { - 'Class' => '407466', - 'Header' => 'errorhandler.h', - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4641326' - }, - '1' => { - 'name' => 'p1', - 'type' => '4509554' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'setLogger', - 'VirtPos' => '7' - }, - '9236020' => { - 'Class' => '407466', - 'Const' => 1, - 'Header' => 'errorhandler.h', - 'Line' => '85', - 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4643919' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '66067' - }, - '3' => { - 'name' => 'p3', - 'type' => '50231' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'error', - 'VirtPos' => '8' - }, - '9236070' => { - 'Class' => '407466', - 'Const' => 1, - 'Header' => 'errorhandler.h', - 'Line' => '92', - 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4643919' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'error', - 'VirtPos' => '9' - }, - '9236110' => { - 'Class' => '407466', - 'Const' => 1, - 'Header' => 'errorhandler.h', - 'Line' => '103', - 'MnglName' => '_ZNK7log4cxx3spi12ErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS0_12LoggingEventEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4643919' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - }, - '2' => { - 'name' => 'p2', - 'type' => '66067' - }, - '3' => { - 'name' => 'p3', - 'type' => '50231' - }, - '4' => { - 'name' => 'p4', - 'type' => '154261' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'error', - 'VirtPos' => '10' - }, - '9236165' => { - 'Class' => '407466', - 'Header' => 'errorhandler.h', - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4641326' - }, - '1' => { - 'name' => 'p1', - 'type' => '1151508' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'setAppender', - 'VirtPos' => '11' - }, - '9236205' => { - 'Class' => '407466', - 'Header' => 'errorhandler.h', - 'Line' => '115', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4641326' - }, - '1' => { - 'name' => 'p1', - 'type' => '1151508' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'setBackupAppender', - 'VirtPos' => '12' - }, - '9236383' => { - 'Class' => '9236265', - 'Const' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 2, - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachable7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245331' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9236490' => { - 'Class' => '262822', - 'Header' => 'appenderattachable.h', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '46', - 'Static' => 1 - }, - '9236507' => { - 'Class' => '262822', + '606896' => { + 'Artificial' => 1, + 'Class' => '209311', + 'Destructor' => 1, + 'Header' => 'object.h', + 'InLine' => 1, + 'Line' => '108', + 'MnglName' => '_ZN7log4cxx7helpers6ObjectD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '576863' + } + }, + 'ShortName' => 'Object', + 'Virt' => 1 + }, + '6073372' => { + 'Class' => '3120362', 'Const' => 1, - 'Header' => 'appenderattachable.h', - 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable8getClassEv', + 'Header' => 'patternconverter.h', + 'Line' => '63', + 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245004' + 'type' => '6087839' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '46', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '26', 'Virt' => 1, 'VirtPos' => '2' }, - '9236546' => { - 'Class' => '262822', - 'Header' => 'appenderattachable.h', - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable11addAppenderESt10shared_ptrINS_8AppenderEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '322567' - }, - '1' => { - 'name' => 'p1', - 'type' => '262988' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'addAppender', - 'VirtPos' => '5' - }, - '9236586' => { - 'Class' => '262822', - 'Const' => 1, - 'Header' => 'appenderattachable.h', - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable15getAllAppendersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244998' - } - }, - 'PureVirt' => 1, - 'Return' => '262971', - 'ShortName' => 'getAllAppenders', - 'VirtPos' => '6' + '6073450' => { + 'Class' => '3120362', + 'Header' => 'patternconverter.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '26', + 'Static' => 1 }, - '9236625' => { - 'Class' => '262822', + '6073466' => { + 'Class' => '3120362', 'Const' => 1, - 'Header' => 'appenderattachable.h', - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'patternconverter.h', + 'Line' => '96', + 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244998' + 'type' => '6087839' }, '1' => { 'name' => 'p1', - 'type' => '263006' + 'type' => '575817' } }, - 'PureVirt' => 1, - 'Return' => '262988', - 'ShortName' => 'getAppender', - 'VirtPos' => '7' + 'Return' => '209661', + 'ShortName' => 'getStyleClass', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '50', + 'Virt' => 1, + 'VirtPos' => '6' }, - '9236669' => { - 'Class' => '262822', - 'Const' => 1, - 'Header' => 'appenderattachable.h', - 'Line' => '58', - 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable10isAttachedESt10shared_ptrINS_8AppenderEE', + '6073508' => { + 'Class' => '3120362', + 'Header' => 'patternconverter.h', + 'Line' => '104', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter6appendERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9244998' + 'name' => 'toAppendTo', + 'type' => '210592' }, '1' => { - 'name' => 'p1', - 'type' => '262988' - } - }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'isAttached', - 'VirtPos' => '8' - }, - '9236713' => { - 'Class' => '262822', - 'Header' => 'appenderattachable.h', - 'Line' => '63', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable18removeAllAppendersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '322567' + 'name' => 'src', + 'type' => '202831' } }, - 'PureVirt' => 1, + 'Protected' => 1, 'Return' => '1', - 'ShortName' => 'removeAllAppenders', - 'VirtPos' => '9' + 'ShortName' => 'append', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '55', + 'Static' => 1 }, - '9236748' => { - 'Class' => '262822', - 'Header' => 'appenderattachable.h', - 'Line' => '68', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable14removeAppenderESt10shared_ptrINS_8AppenderEE', + '6073536' => { + 'Class' => '3120362', + 'Const' => 1, + 'Header' => 'patternconverter.h', + 'InLine' => 2, + 'Line' => '66', + 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '322567' + 'type' => '6087839' }, '1' => { - 'name' => 'p1', - 'type' => '262988' + 'name' => 'clazz', + 'type' => '210728' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'removeAppender', - 'VirtPos' => '10' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9236788' => { - 'Class' => '262822', - 'Header' => 'appenderattachable.h', - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '6073578' => { + 'Class' => '3120362', + 'Const' => 1, + 'Header' => 'patternconverter.h', + 'InLine' => 2, + 'Line' => '64', + 'MnglName' => '_ZNK7log4cxx7pattern16PatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '322567' + 'type' => '6087839' }, '1' => { - 'name' => 'p1', - 'type' => '263006' + 'name' => 'clazz', + 'type' => '210728' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'removeAppender', - 'VirtPos' => '11' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '9237008' => { - 'Class' => '9236890', + '6073769' => { + 'Class' => '6073656', 'Const' => 1, - 'Header' => 'loggerfactory.h', + 'Header' => 'classnamepatternconverter.h', 'InLine' => 2, - 'Line' => '35', - 'MnglName' => '_ZNK7log4cxx3spi13LoggerFactory18ClazzLoggerFactory7getNameB5cxx11Ev', + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245309' + 'type' => '6086556' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '9237081' => { - 'Class' => '4199656', - 'Header' => 'loggerfactory.h', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory13registerClassEv', - 'Return' => '64684', + '6073934' => { + 'Class' => '6073622', + 'Header' => 'classnamepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'classnamepatternconverter.cpp', + 'SourceLine' => '28', + 'Static' => 1 + }, + '6073950' => { + 'Class' => '6073622', + 'Header' => 'classnamepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '47', + 'Source' => 'classnamepatternconverter.cpp', + 'SourceLine' => '28', 'Static' => 1 }, - '9237098' => { - 'Class' => '4199656', + '6073966' => { + 'Class' => '6073622', 'Const' => 1, - 'Header' => 'loggerfactory.h', - 'MnglName' => '_ZNK7log4cxx3spi13LoggerFactory8getClassEv', + 'Header' => 'classnamepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244969' + 'type' => '6086391' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '47', + 'Source' => 'classnamepatternconverter.cpp', + 'SourceLine' => '28', 'Virt' => 1, 'VirtPos' => '2' }, - '9237179' => { - 'Class' => '4199656', - 'Const' => 1, - 'Header' => 'loggerfactory.h', - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx3spi13LoggerFactory21makeNewLoggerInstanceERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244963' - }, - '1' => { - 'name' => 'p1', - 'type' => '64643' - }, - '2' => { - 'name' => 'p2', - 'type' => '263006' - } - }, - 'PureVirt' => 1, - 'Return' => '1150380', - 'ShortName' => 'makeNewLoggerInstance', - 'VirtPos' => '5' - }, - '9237365' => { - 'Class' => '9237247', + '6074003' => { + 'Class' => '6073622', 'Const' => 1, - 'Header' => 'loggerrepository.h', + 'Header' => 'classnamepatternconverter.h', 'InLine' => 2, 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository21ClazzLoggerRepository7getNameB5cxx11Ev', + 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245287' + 'type' => '6086391' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '63706', - 'ShortName' => 'getName', + 'Return' => '195352', + 'ShortName' => 'cast', 'Virt' => 1, - 'VirtPos' => '3' - }, - '9237438' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '48', - 'Static' => 1 + 'VirtPos' => '4' }, - '9237455' => { - 'Class' => '1149751', + '6074045' => { + 'Class' => '6073622', 'Const' => 1, - 'Header' => 'loggerrepository.h', - 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244912' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '48', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9237536' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository25addHierarchyEventListenerERKSt10shared_ptrINS0_22HierarchyEventListenerEE', + 'Header' => 'classnamepatternconverter.h', + 'InLine' => 2, + 'Line' => '48', + 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4544193' + 'type' => '6086391' }, '1' => { - 'name' => 'p1', - 'type' => '7074452' + 'name' => 'clazz', + 'type' => '210728' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'addHierarchyEventListener', - 'VirtPos' => '5' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9237576' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '66', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository18ensureIsConfiguredESt8functionIFvvEE', + '6074087' => { + 'Class' => '6073622', + 'Header' => 'classnamepatternconverter.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '4544193' - }, - '1' => { - 'name' => 'p1', - 'type' => '755445' + 'name' => 'options', + 'type' => '6085700' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'ensureIsConfigured', - 'VirtPos' => '6' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'classnamepatternconverter.cpp', + 'SourceLine' => '37', + 'Static' => 1 }, - '9237616' => { - 'Class' => '1149751', + '6074114' => { + 'Class' => '6073622', 'Const' => 1, - 'Header' => 'loggerrepository.h', - 'Line' => '72', - 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository10isDisabledEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244906' - }, - '1' => { - 'name' => 'p1', - 'type' => '50231' - } - }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'isDisabled', - 'VirtPos' => '7' - }, - '9237660' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '78', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository12setThresholdERKSt10shared_ptrINS_5LevelEE', + 'Header' => 'classnamepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern25ClassNamePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4544193' + 'type' => '6086391' }, '1' => { - 'name' => 'p1', - 'type' => '412081' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'setThreshold', - 'VirtPos' => '8' - }, - '9237700' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '84', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository12setThresholdERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4544193' + 'name' => 'event', + 'type' => '576659' }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'setThreshold', - 'VirtPos' => '9' - }, - '9237740' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '86', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21emitNoAppenderWarningEPKNS_6LoggerE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4544193' + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' }, - '1' => { - 'name' => 'p1', - 'type' => '4201534' + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'PureVirt' => 1, 'Return' => '1', - 'ShortName' => 'emitNoAppenderWarning', - 'VirtPos' => '10' + 'ShortName' => 'format', + 'Source' => 'classnamepatternconverter.cpp', + 'SourceLine' => '49', + 'Virt' => 1, + 'VirtPos' => '7' }, - '9237780' => { - 'Class' => '1149751', + '6074212' => { + 'Class' => '3121054', 'Const' => 1, - 'Header' => 'loggerrepository.h', - 'Line' => '93', - 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository12getThresholdEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244906' - } - }, - 'PureVirt' => 1, - 'Return' => '409192', - 'ShortName' => 'getThreshold', - 'VirtPos' => '11' - }, - '9237819' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '98', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4544193' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - } - }, - 'PureVirt' => 1, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'VirtPos' => '12' - }, - '9237863' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS0_13LoggerFactoryEE', + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '68', + 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '4544193' + 'type' => '6085333' }, '1' => { - 'name' => 'p1', - 'type' => '263006' + 'name' => 'obj', + 'type' => '575817' }, '2' => { - 'name' => 'p2', - 'type' => '1152981' - } - }, - 'PureVirt' => 1, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'VirtPos' => '13' - }, - '9237912' => { - 'Class' => '1149751', - 'Const' => 1, - 'Header' => 'loggerrepository.h', - 'Line' => '128', - 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository13getRootLoggerEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244906' - } - }, - 'PureVirt' => 1, - 'Return' => '1150380', - 'ShortName' => 'getRootLogger', - 'VirtPos' => '14' - }, - '9237951' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '130', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository6existsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4544193' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' - } - }, - 'PureVirt' => 1, - 'Return' => '1150380', - 'ShortName' => 'exists', - 'VirtPos' => '15' - }, - '9237995' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '132', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository8shutdownEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4544193' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'shutdown', - 'VirtPos' => '16' - }, - '9238030' => { - 'Class' => '1149751', - 'Const' => 1, - 'Header' => 'loggerrepository.h', - 'Line' => '134', - 'MnglName' => '_ZNK7log4cxx3spi16LoggerRepository17getCurrentLoggersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244906' - } - }, - 'PureVirt' => 1, - 'Return' => '1150392', - 'ShortName' => 'getCurrentLoggers', - 'VirtPos' => '17' - }, - '9238159' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '140', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository18resetConfigurationEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4544193' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'resetConfiguration', - 'VirtPos' => '20' - }, - '9238194' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '142', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository12isConfiguredEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4544193' - } - }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'isConfigured', - 'VirtPos' => '21' - }, - '9238233' => { - 'Class' => '1149751', - 'Header' => 'loggerrepository.h', - 'Line' => '143', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository13setConfiguredEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4544193' + 'name' => 'output', + 'type' => '210592' }, - '1' => { - 'name' => 'p1', - 'type' => '50284' + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'PureVirt' => 1, 'Return' => '1', - 'ShortName' => 'setConfigured', - 'VirtPos' => '22' - }, - '9238411' => { - 'Class' => '9238293', - 'Const' => 1, - 'Header' => 'repositoryselector.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx3spi18RepositorySelector23ClazzRepositorySelector7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245199' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9238467' => { - 'Class' => '4279770', - 'Header' => 'repositoryselector.h', - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '50', - 'Static' => 1 - }, - '9238484' => { - 'Class' => '4279770', - 'Header' => 'repositoryselector.h', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '50', - 'Static' => 1 - }, - '9238501' => { - 'Class' => '4279770', - 'Const' => 1, - 'Header' => 'repositoryselector.h', - 'MnglName' => '_ZNK7log4cxx3spi18RepositorySelector8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244861' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '50', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9238582' => { - 'Class' => '4279770', - 'Header' => 'repositoryselector.h', - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector19getLoggerRepositoryEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '4290264' - } - }, - 'PureVirt' => 1, - 'Return' => '835664', - 'ShortName' => 'getLoggerRepository', - 'VirtPos' => '5' - }, - '9238758' => { - 'Class' => '9238640', - 'Const' => 1, - 'Header' => 'triggeringeventevaluator.h', - 'InLine' => 2, - 'Line' => '40', - 'MnglName' => '_ZNK7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluator7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245089' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9238814' => { - 'Class' => '9238623', - 'Header' => 'triggeringeventevaluator.h', - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '55', - 'Static' => 1 - }, - '9238831' => { - 'Class' => '9238623', - 'Header' => 'triggeringeventevaluator.h', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '55', - 'Static' => 1 - }, - '9238848' => { - 'Class' => '9238623', - 'Const' => 1, - 'Header' => 'triggeringeventevaluator.h', - 'MnglName' => '_ZNK7log4cxx3spi24TriggeringEventEvaluator8getClassEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244759' - } - }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '55', - 'Virt' => 1, - 'VirtPos' => '2' - }, - '9238887' => { - 'Class' => '9238623', - 'Header' => 'triggeringeventevaluator.h', - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator17isTriggeringEventERKSt10shared_ptrINS0_12LoggingEventEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244764' - }, - '1' => { - 'name' => 'p1', - 'type' => '154261' - } - }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'isTriggeringEvent', - 'VirtPos' => '5' - }, - '9240085' => { - 'Class' => '9239967', - 'Const' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245221' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9240124' => { - 'Class' => '9239967', - 'Const' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245221' - } - }, - 'Return' => '9244872', - 'ShortName' => 'newInstance', + 'ShortName' => 'format', + 'Source' => 'loggingeventpatternconverter.cpp', + 'SourceLine' => '43', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '5' }, - '9240163' => { - 'Artificial' => 1, - 'Class' => '9239967', - 'Header' => 'denyallfilter.h', - 'InLine' => 2, - 'Line' => '43', - 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv', + '6074261' => { + 'Class' => '3121054', + 'Const' => 1, + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '63', + 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245221' + 'type' => '6085328' + }, + '1' => { + 'name' => 'p1', + 'type' => '576659' + }, + '2' => { + 'name' => 'p2', + 'type' => '210592' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, - 'Return' => '9244872', - 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv' + 'PureVirt' => 1, + 'Return' => '1', + 'ShortName' => 'format', + 'VirtPos' => '7' }, - '9240312' => { - 'Class' => '9239950', + '6074433' => { + 'Class' => '3121054', 'Const' => 1, - 'Header' => 'denyallfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter8getClassEv', + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '51', + 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244901' + 'type' => '6085333' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '49', + 'Source' => 'loggingeventpatternconverter.cpp', + 'SourceLine' => '28', 'Virt' => 1, 'VirtPos' => '2' }, - '9240351' => { - 'Class' => '9239950', - 'Header' => 'denyallfilter.h', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter14getStaticClassEv', - 'Return' => '64678', + '6074470' => { + 'Class' => '3121054', + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverter14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '49', - 'Static' => 1 - }, - '9240368' => { - 'Class' => '9239950', - 'Header' => 'denyallfilter.h', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '49', + 'Source' => 'loggingeventpatternconverter.cpp', + 'SourceLine' => '28', 'Static' => 1 }, - '9240385' => { - 'Class' => '9239950', + '6074486' => { + 'Class' => '3121054', 'Const' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 2, - 'Line' => '44', - 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter4castERKNS_7helpers5ClassE', + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '81', + 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244901' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '6085333' } }, - 'Return' => '54166', - 'ShortName' => 'cast', + 'Return' => '174077', + 'ShortName' => 'handlesThrowable', + 'Source' => 'loggingeventpatternconverter.cpp', + 'SourceLine' => '55', 'Virt' => 1, - 'VirtPos' => '4' + 'VirtPos' => '8' }, - '9240429' => { - 'Class' => '9239950', + '6074561' => { + 'Class' => '3121054', 'Const' => 1, - 'Header' => 'denyallfilter.h', + 'Header' => 'loggingeventpatternconverter.h', 'InLine' => 2, - 'Line' => '47', - 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter10instanceofERKNS_7helpers5ClassE', + 'Line' => '55', + 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244901' + 'type' => '6085333' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '9240473' => { - 'Class' => '9239950', + '6074603' => { + 'Class' => '3121054', 'Const' => 1, - 'Header' => 'denyallfilter.h', + 'Header' => 'loggingeventpatternconverter.h', 'InLine' => 2, - 'Line' => '55', - 'MnglName' => '_ZNK7log4cxx6filter13DenyAllFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx7pattern28LoggingEventPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244901' + 'type' => '6085333' }, '1' => { - 'name' => 'event', - 'type' => '154261' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '151101', - 'ShortName' => 'decide', + 'Return' => '195352', + 'ShortName' => 'cast', 'Virt' => 1, - 'VirtPos' => '7' - }, - '9240572' => { - 'Data' => 1, - 'Line' => '41', - 'MnglName' => '_ZN7log4cxx7classes18ObjectRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ObjectRegistration', - 'Source' => 'loader.cpp' - }, - '9240588' => { - 'Data' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7classes25OptionHandlerRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'OptionHandlerRegistration', - 'Source' => 'loader.cpp' - }, - '9240604' => { - 'Data' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx7classes24ErrorHandlerRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'ErrorHandlerRegistration', - 'Source' => 'loader.cpp' - }, - '9240620' => { - 'Data' => 1, - 'Line' => '44', - 'MnglName' => '_ZN7log4cxx7classes20AppenderRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'AppenderRegistration', - 'Source' => 'loader.cpp' - }, - '9240636' => { - 'Data' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx7classes18FilterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'FilterRegistration', - 'Source' => 'loader.cpp' - }, - '9240652' => { - 'Data' => 1, - 'Line' => '46', - 'MnglName' => '_ZN7log4cxx7classes30AppenderAttachableRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'AppenderAttachableRegistration', - 'Source' => 'loader.cpp' - }, - '9240668' => { - 'Data' => 1, - 'Line' => '47', - 'MnglName' => '_ZN7log4cxx7classes25LoggerFactoryRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LoggerFactoryRegistration', - 'Source' => 'loader.cpp' - }, - '9240684' => { - 'Data' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7classes28LoggerRepositoryRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LoggerRepositoryRegistration', - 'Source' => 'loader.cpp' - }, - '9240700' => { - 'Data' => 1, - 'Line' => '49', - 'MnglName' => '_ZN7log4cxx7classes25DenyAllFilterRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'DenyAllFilterRegistration', - 'Source' => 'loader.cpp' - }, - '9240716' => { - 'Data' => 1, - 'Line' => '50', - 'MnglName' => '_ZN7log4cxx7classes30RepositorySelectorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'RepositorySelectorRegistration', - 'Source' => 'loader.cpp' - }, - '9240732' => { - 'Data' => 1, - 'Line' => '51', - 'MnglName' => '_ZN7log4cxx7classes22XMLDOMNodeRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'XMLDOMNodeRegistration', - 'Source' => 'loader.cpp' - }, - '9240748' => { - 'Data' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7classes26XMLDOMDocumentRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'XMLDOMDocumentRegistration', - 'Source' => 'loader.cpp' - }, - '9240764' => { - 'Data' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7classes25XMLDOMElementRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'XMLDOMElementRegistration', - 'Source' => 'loader.cpp' - }, - '9240780' => { - 'Data' => 1, - 'Line' => '54', - 'MnglName' => '_ZN7log4cxx7classes26XMLDOMNodeListRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'XMLDOMNodeListRegistration', - 'Source' => 'loader.cpp' - }, - '9240796' => { - 'Data' => 1, - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx7classes36TriggeringEventEvaluatorRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'TriggeringEventEvaluatorRegistration', - 'Source' => 'loader.cpp' + 'VirtPos' => '4' }, - '9240948' => { - 'Class' => '9240830', + '6074740' => { + 'Class' => '6074656', 'Const' => 1, - 'Header' => 'appender.h', + 'Header' => 'namepatternconverter.h', 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx8Appender13ClazzAppender7getNameB5cxx11Ev', + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245353' + 'type' => '31221490' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '9241021' => { - 'Class' => '262983', - 'Header' => 'appender.h', - 'MnglName' => '_ZN7log4cxx8Appender13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '44', - 'Static' => 1 - }, - '9241038' => { - 'Class' => '262983', + '6074779' => { + 'Class' => '6074647', 'Const' => 1, - 'Header' => 'appender.h', - 'MnglName' => '_ZNK7log4cxx8Appender8getClassEv', + 'Header' => 'namepatternconverter.h', + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244958' + 'type' => '6087849' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'loader.cpp', - 'SourceLine' => '44', + 'Source' => 'namepatternconverter.cpp', + 'SourceLine' => '42', 'Virt' => 1, 'VirtPos' => '2' }, - '9241119' => { - 'Class' => '262983', - 'Header' => 'appender.h', - 'Line' => '60', - 'MnglName' => '_ZN7log4cxx8Appender9addFilterESt10shared_ptrINS_3spi6FilterEE', + '6074816' => { + 'Class' => '6074647', + 'Header' => 'namepatternconverter.h', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'namepatternconverter.cpp', + 'SourceLine' => '42', + 'Static' => 1 + }, + '6074832' => { + 'Class' => '6074647', + 'Const' => 1, + 'Header' => 'namepatternconverter.h', + 'Line' => '65', + 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '264877' + 'type' => '6087849' }, '1' => { - 'name' => 'p1', - 'type' => '151271' + 'name' => 'nameStart', + 'type' => '51887' + }, + '2' => { + 'name' => 'buf', + 'type' => '210592' } }, - 'PureVirt' => 1, + 'Protected' => 1, 'Return' => '1', - 'ShortName' => 'addFilter', - 'VirtPos' => '7' + 'ShortName' => 'abbreviate', + 'Source' => 'namepatternconverter.cpp', + 'SourceLine' => '69' }, - '9241159' => { - 'Class' => '262983', + '6074959' => { + 'Class' => '6074647', 'Const' => 1, - 'Header' => 'appender.h', - 'Line' => '68', - 'MnglName' => '_ZNK7log4cxx8Appender9getFilterEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '7074470' - } - }, - 'PureVirt' => 1, - 'Return' => '151271', - 'ShortName' => 'getFilter', - 'VirtPos' => '8' - }, - '9241198' => { - 'Class' => '262983', - 'Header' => 'appender.h', - 'Line' => '73', - 'MnglName' => '_ZN7log4cxx8Appender12clearFiltersEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '264877' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'clearFilters', - 'VirtPos' => '9' - }, - '9241233' => { - 'Class' => '262983', - 'Header' => 'appender.h', - 'Line' => '80', - 'MnglName' => '_ZN7log4cxx8Appender5closeEv', + 'Header' => 'namepatternconverter.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '264877' + 'type' => '6087849' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'close', - 'VirtPos' => '10' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9241268' => { - 'Class' => '262983', - 'Header' => 'appender.h', - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx8Appender8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '6075001' => { + 'Class' => '6074647', + 'Const' => 1, + 'Header' => 'namepatternconverter.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7pattern20NamePatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '264877' + 'type' => '6087849' }, '1' => { - 'name' => 'p1', - 'type' => '154261' - }, - '2' => { - 'name' => 'p2', - 'type' => '64643' + 'name' => 'clazz', + 'type' => '210728' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'doAppend', - 'VirtPos' => '11' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '9241313' => { - 'Class' => '262983', + '6075147' => { + 'Class' => '6075063', 'Const' => 1, - 'Header' => 'appender.h', - 'Line' => '95', - 'MnglName' => '_ZNK7log4cxx8Appender7getNameB5cxx11Ev', + 'Header' => 'nameabbreviator.h', + 'InLine' => 2, + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviator7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7074470' + 'type' => '30798696' } }, - 'PureVirt' => 1, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', - 'VirtPos' => '12' - }, - '9241352' => { - 'Class' => '262983', - 'Header' => 'appender.h', - 'Line' => '101', - 'MnglName' => '_ZN7log4cxx8Appender9setLayoutESt10shared_ptrINS_6LayoutEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '264877' - }, - '1' => { - 'name' => 'p1', - 'type' => '409175' - } - }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'setLayout', - 'VirtPos' => '13' + 'Virt' => 1, + 'VirtPos' => '3' }, - '9241392' => { - 'Class' => '262983', + '6076139' => { + 'Class' => '564699', 'Const' => 1, - 'Header' => 'appender.h', - 'Line' => '106', - 'MnglName' => '_ZNK7log4cxx8Appender9getLayoutEv', + 'Header' => 'loggingevent.h', + 'Line' => '132', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent22getLocationInformationEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7074470' + 'type' => '26822716' } }, - 'PureVirt' => 1, - 'Return' => '409175', - 'ShortName' => 'getLayout', - 'VirtPos' => '14' + 'Return' => '573016', + 'ShortName' => 'getLocationInformation', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '479' }, - '9241431' => { - 'Class' => '262983', - 'Header' => 'appender.h', - 'Line' => '113', - 'MnglName' => '_ZN7log4cxx8Appender7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '6077515' => { + 'Data' => 1, + 'Line' => '28', + 'MnglName' => '_ZN7log4cxx7classes37ClassNamePatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ClassNamePatternConverterRegistration', + 'Source' => 'classnamepatternconverter.cpp' + }, + '6087854' => { + 'Class' => '3120362', + 'Destructor' => 1, + 'Header' => 'patternconverter.h', + 'Line' => '60', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '264877' - }, - '1' => { - 'name' => 'p1', - 'type' => '263006' + 'type' => '6085855' } }, - 'PureVirt' => 1, - 'Return' => '1', - 'ShortName' => 'setName', - 'VirtPos' => '15' + 'Protected' => 1, + 'ShortName' => 'PatternConverter', + 'Source' => 'patternconverter.cpp', + 'SourceLine' => '41', + 'Virt' => 1 }, - '9241471' => { - 'Class' => '262983', - 'Const' => 1, - 'Header' => 'appender.h', - 'Line' => '129', - 'MnglName' => '_ZNK7log4cxx8Appender14requiresLayoutEv', + '6087927' => { + 'Class' => '6074647', + 'Constructor' => 1, + 'Header' => 'namepatternconverter.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RKSt6vectorIS7_SaIS7_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '7074470' + 'type' => '6087922' + }, + '2' => { + 'name' => 'name1', + 'type' => '210597' + }, + '3' => { + 'name' => 'style1', + 'type' => '210597' + }, + '4' => { + 'name' => 'options', + 'type' => '6085700' } }, - 'PureVirt' => 1, - 'Return' => '50284', - 'ShortName' => 'requiresLayout', - 'VirtPos' => '16' + 'Protected' => 1, + 'ShortName' => 'NamePatternConverter', + 'Source' => 'namepatternconverter.cpp', + 'SourceLine' => '44' }, - '9248588' => { + '6090767' => { 'Artificial' => 1, - 'Class' => '9239950', + 'Class' => '6073622', 'Destructor' => 1, - 'Header' => 'denyallfilter.h', + 'Header' => 'classnamepatternconverter.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterD0Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244878' + 'type' => '6085865' } }, - 'ShortName' => 'DenyAllFilter', + 'ShortName' => 'ClassNamePatternConverter', 'Virt' => 1 }, - '9248589' => { + '6090768' => { 'Artificial' => 1, - 'Class' => '9239950', + 'Class' => '6073622', 'Destructor' => 1, - 'Header' => 'denyallfilter.h', + 'Header' => 'classnamepatternconverter.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterD2Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244878' + 'type' => '6085865' } }, - 'ShortName' => 'DenyAllFilter', + 'ShortName' => 'ClassNamePatternConverter', 'Virt' => 1 }, - '9248857' => { + '6091101' => { 'Artificial' => 1, - 'Class' => '9239950', + 'Class' => '6073622', 'Destructor' => 1, - 'Header' => 'denyallfilter.h', + 'Header' => 'classnamepatternconverter.h', 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterD1Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244878' + 'type' => '6085865' } }, - 'ShortName' => 'DenyAllFilter', + 'ShortName' => 'ClassNamePatternConverter', 'Virt' => 1 }, - '9255224' => { + '6097745' => { 'Artificial' => 1, - 'Class' => '9234290', + 'Class' => '6072360', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244059' + 'type' => '6085740' } }, 'ShortName' => 'WideLife' }, - '9255225' => { + '6097746' => { 'Artificial' => 1, - 'Class' => '9234290', + 'Class' => '6072360', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244059' + 'type' => '6085740' } }, 'ShortName' => 'WideLife' }, - '9255365' => { + '6098537' => { 'Artificial' => 1, - 'Class' => '9234290', + 'Class' => '6072360', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEEC2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_25ClassNamePatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244059' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '6085835' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '6012050' + } + } }, - '9255366' => { + '6098538' => { 'Artificial' => 1, - 'Class' => '9234290', + 'Class' => '6072360', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorEEC1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_25ClassNamePatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244059' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '6085835' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '6012050' + } + } }, - '9255445' => { + '6099036' => { 'Artificial' => 1, - 'Class' => '9233545', + 'Class' => '6071600', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243997' + 'type' => '6085389' } }, 'ShortName' => 'WideLife' }, - '9255446' => { + '6099037' => { 'Artificial' => 1, - 'Class' => '9233545', + 'Class' => '6071600', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243997' + 'type' => '6085389' } }, 'ShortName' => 'WideLife' }, - '9255586' => { + '6099180' => { 'Artificial' => 1, - 'Class' => '9233545', + 'Class' => '6071600', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243997' + 'type' => '6085389' } }, 'ShortName' => 'WideLife' }, - '9255587' => { + '6099181' => { 'Artificial' => 1, - 'Class' => '9233545', + 'Class' => '6071600', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMNodeList19ClazzXMLDOMNodeListEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243997' + 'type' => '6085389' } }, 'ShortName' => 'WideLife' }, - '9255666' => { + '6108437' => { + 'Class' => '6073622', + 'Constructor' => 1, + 'Header' => 'classnamepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterC1ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085865' + }, + '1' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'ShortName' => 'ClassNamePatternConverter', + 'Source' => 'classnamepatternconverter.cpp', + 'SourceLine' => '30' + }, + '6111529' => { + 'Class' => '6073622', + 'Constructor' => 1, + 'Header' => 'classnamepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverterC2ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6085865' + }, + '2' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'ShortName' => 'ClassNamePatternConverter', + 'Source' => 'classnamepatternconverter.cpp', + 'SourceLine' => '30' + }, + '6114559' => { 'Artificial' => 1, - 'Class' => '9232800', + 'Class' => '6074647', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'namepatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEED2Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243935' + 'type' => '6087922' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'NamePatternConverter', + 'Virt' => 1 }, - '9255667' => { + '6114560' => { 'Artificial' => 1, - 'Class' => '9232800', + 'Class' => '6074647', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'namepatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEED0Ev', + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7pattern20NamePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243935' + 'type' => '6087922' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'NamePatternConverter', + 'Virt' => 1 }, - '9255807' => { + '6114642' => { 'Artificial' => 1, - 'Class' => '9232800', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '3121054', + 'Destructor' => 1, + 'Header' => 'loggingeventpatternconverter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEEC2Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243935' + 'type' => '6114592' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'LoggingEventPatternConverter', + 'Virt' => 1 }, - '9255808' => { + '6114643' => { 'Artificial' => 1, - 'Class' => '9232800', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '3121054', + 'Destructor' => 1, + 'Header' => 'loggingeventpatternconverter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_13XMLDOMElement18ClazzXMLDOMElementEEC1Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243935' + 'type' => '6114592' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'LoggingEventPatternConverter', + 'Virt' => 1 }, - '9255887' => { + '6116450' => { 'Artificial' => 1, - 'Class' => '9232010', + 'Class' => '6073656', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'classnamepatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEED2Ev', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243873' + 'type' => '6086546' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzClassNamePatternConverter', + 'Virt' => 1 }, - '9255888' => { + '6116451' => { 'Artificial' => 1, - 'Class' => '9232010', + 'Class' => '6073656', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'classnamepatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEED0Ev', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243873' + 'type' => '6086546' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzClassNamePatternConverter', + 'Virt' => 1 + }, + '6116597' => { + 'Artificial' => 1, + 'Class' => '6073656', + 'Destructor' => 1, + 'Header' => 'classnamepatternconverter.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6086546' + } + }, + 'ShortName' => 'ClazzClassNamePatternConverter', + 'Virt' => 1 }, - '9256028' => { + '6116692' => { 'Artificial' => 1, - 'Class' => '9232010', + 'Class' => '6073656', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'classnamepatternconverter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEEC2Ev', + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243873' + 'type' => '6086546' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzClassNamePatternConverter' + }, + '6116693' => { + 'Artificial' => 1, + 'Class' => '6073656', + 'Constructor' => 1, + 'Header' => 'classnamepatternconverter.h', + 'InLine' => 1, + 'Line' => '44', + 'MnglName' => '_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6086546' + } + }, + 'ShortName' => 'ClazzClassNamePatternConverter' + }, + '6272695' => { + 'Class' => '208316', + 'Constructor' => 1, + 'Header' => 'classregistration.h', + 'Line' => '32', + 'MnglName' => '_ZN7log4cxx7helpers17ClassRegistrationC2EPFRKNS0_5ClassEvE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '210712' + }, + '1' => { + 'name' => 'accessor', + 'type' => '208360' + } + }, + 'ShortName' => 'ClassRegistration', + 'Source' => 'classregistration.cpp', + 'SourceLine' => '24' + }, + '6613932' => { + 'Class' => '6613819', + 'Const' => 1, + 'Header' => 'colorstartpatternconverter.h', + 'InLine' => 2, + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverter7getNameB5cxx11Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '6626950' + } + }, + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '6614289' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '30', + 'Static' => 1 + }, + '6614305' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '30', + 'Static' => 1 }, - '9256029' => { - 'Artificial' => 1, - 'Class' => '9232010', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_14XMLDOMDocument19ClazzXMLDOMDocumentEEC1Ev', + '6614321' => { + 'Class' => '6613785', + 'Const' => 1, + 'Header' => 'colorstartpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243873' + 'type' => '6626736' } }, - 'ShortName' => 'WideLife' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '30', + 'Virt' => 1, + 'VirtPos' => '2' }, - '9256108' => { - 'Artificial' => 1, - 'Class' => '9231654', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEED2Ev', + '6614358' => { + 'Class' => '6613785', + 'Const' => 1, + 'Header' => 'colorstartpatternconverter.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243811' + 'type' => '6626736' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '9256109' => { - 'Artificial' => 1, - 'Class' => '9231654', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEED0Ev', + '6614400' => { + 'Class' => '6613785', + 'Const' => 1, + 'Header' => 'colorstartpatternconverter.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243811' + 'type' => '6626736' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9256249' => { - 'Artificial' => 1, - 'Class' => '9231654', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEEC2Ev', + '6614478' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9243811' + 'name' => 'p1', + 'type' => '575797' } }, - 'ShortName' => 'WideLife' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '154', + 'Static' => 1 }, - '9256250' => { - 'Artificial' => 1, - 'Class' => '9231654', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10XMLDOMNode15ClazzXMLDOMNodeEEC1Ev', + '6614504' => { + 'Class' => '6613785', + 'Const' => 1, + 'Header' => 'colorstartpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern26ColorStartPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243811' + 'type' => '6626736' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '161', + 'Virt' => 1, + 'VirtPos' => '7' }, - '9256329' => { - 'Artificial' => 1, - 'Class' => '9231298', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEED2Ev', + '6614553' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13setFatalColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243749' + 'type' => '6626395' + }, + '1' => { + 'name' => 'color', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setFatalColor', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '200' }, - '9256330' => { - 'Artificial' => 1, - 'Class' => '9231298', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEED0Ev', + '6614584' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'Line' => '64', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13setErrorColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243749' + 'type' => '6626395' + }, + '1' => { + 'name' => 'color', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setErrorColor', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '204' }, - '9256470' => { - 'Artificial' => 1, - 'Class' => '9231298', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEEC2Ev', + '6614615' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'Line' => '65', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter12setWarnColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243749' + 'type' => '6626395' + }, + '1' => { + 'name' => 'color', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setWarnColor', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '208' }, - '9256471' => { - 'Artificial' => 1, - 'Class' => '9231298', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18RepositorySelector23ClazzRepositorySelectorEEC1Ev', + '6614646' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'Line' => '66', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter12setInfoColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243749' + 'type' => '6626395' + }, + '1' => { + 'name' => 'color', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setInfoColor', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '212' }, - '9256550' => { - 'Artificial' => 1, - 'Class' => '9230942', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEED2Ev', + '6614677' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'Line' => '67', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13setDebugColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243687' + 'type' => '6626395' + }, + '1' => { + 'name' => 'color', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setDebugColor', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '216' }, - '9256551' => { - 'Artificial' => 1, - 'Class' => '9230942', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEED0Ev', + '6614708' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'Line' => '68', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter13setTraceColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243687' + 'type' => '6626395' + }, + '1' => { + 'name' => 'color', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'setTraceColor', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '220' }, - '9256691' => { - 'Artificial' => 1, - 'Class' => '9230942', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEEC2Ev', + '6614739' => { + 'Class' => '6613785', + 'Header' => 'colorstartpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter10parseColorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243687' + 'type' => '6626395' + }, + '1' => { + 'name' => 'color', + 'type' => '210597' + }, + '2' => { + 'name' => 'result', + 'type' => '6626896' } }, - 'ShortName' => 'WideLife' + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'parseColor', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '224' }, - '9256692' => { - 'Artificial' => 1, - 'Class' => '9230942', + '6617667' => { + 'Data' => 1, + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx7classes38ColorStartPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ColorStartPatternConverterRegistration', + 'Source' => 'colorstartpatternconverter.cpp' + }, + '6628321' => { + 'Class' => '3121054', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter13DenyAllFilter18ClazzDenyAllFilterEEC1Ev', + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '48', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterC2ESt10unique_ptrINS0_16PatternConverter23PatternConverterPrivateESt14default_deleteIS4_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243687' + 'type' => '6114592' + }, + '2' => { + 'name' => 'priv', + 'type' => '2968054' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'ShortName' => 'LoggingEventPatternConverter', + 'Source' => 'loggingeventpatternconverter.cpp', + 'SourceLine' => '37' }, - '9256771' => { + '6631136' => { 'Artificial' => 1, - 'Class' => '9230586', + 'Class' => '6613785', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'colorstartpatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEED2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243625' + 'type' => '6626395' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ColorStartPatternConverter', + 'Virt' => 1 }, - '9256772' => { + '6631137' => { 'Artificial' => 1, - 'Class' => '9230586', + 'Class' => '6613785', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'colorstartpatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEED0Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243625' + 'type' => '6626395' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ColorStartPatternConverter', + 'Virt' => 1 }, - '9256912' => { + '6631409' => { 'Artificial' => 1, - 'Class' => '9230586', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '6613785', + 'Destructor' => 1, + 'Header' => 'colorstartpatternconverter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEEC2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243625' + 'type' => '6626395' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ColorStartPatternConverter', + 'Virt' => 1 }, - '9256913' => { + '6640104' => { 'Artificial' => 1, - 'Class' => '9230586', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '6613972', + 'Destructor' => 1, 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi16LoggerRepository21ClazzLoggerRepositoryEEC1Ev', + 'Line' => '135', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243625' + 'type' => '6625753' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ColorPatternConverterPrivate', + 'Source' => 'colorstartpatternconverter.cpp', + 'Virt' => 1 }, - '9256992' => { + '6640105' => { 'Artificial' => 1, - 'Class' => '9230230', + 'Class' => '6613972', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEED2Ev', + 'Line' => '135', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243563' + 'type' => '6625753' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ColorPatternConverterPrivate', + 'Source' => 'colorstartpatternconverter.cpp', + 'Virt' => 1 }, - '9256993' => { + '6645485' => { 'Artificial' => 1, - 'Class' => '9230230', + 'Class' => '6613972', 'Destructor' => 1, - 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEED0Ev', + 'Line' => '135', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243563' + 'type' => '6625753' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ColorPatternConverterPrivate', + 'Source' => 'colorstartpatternconverter.cpp', + 'Virt' => 1 }, - '9257133' => { + '6656039' => { 'Artificial' => 1, - 'Class' => '9230230', + 'Class' => '6072360', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEEC2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_26ColorStartPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243563' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '6626193' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '6548546' + } + } }, - '9257134' => { + '6656040' => { 'Artificial' => 1, - 'Class' => '9230230', + 'Class' => '6072360', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13LoggerFactory18ClazzLoggerFactoryEEC1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_26ColorStartPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243563' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '6626193' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '6548546' + } + } }, - '9257213' => { + '6657733' => { 'Artificial' => 1, - 'Class' => '9229874', + 'Class' => '6611638', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243501' + 'type' => '6625642' } }, 'ShortName' => 'WideLife' }, - '9257214' => { + '6657734' => { 'Artificial' => 1, - 'Class' => '9229874', + 'Class' => '6611638', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243501' + 'type' => '6625642' } }, 'ShortName' => 'WideLife' }, - '9257354' => { + '6657877' => { 'Artificial' => 1, - 'Class' => '9229874', + 'Class' => '6611638', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243501' + 'type' => '6625642' } }, 'ShortName' => 'WideLife' }, - '9257355' => { + '6657878' => { 'Artificial' => 1, - 'Class' => '9229874', + 'Class' => '6611638', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi18AppenderAttachable23ClazzAppenderAttachableEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9243501' - } - }, - 'ShortName' => 'WideLife' - }, - '9257434' => { - 'Artificial' => 1, - 'Class' => '9229518', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243439' + 'type' => '6625642' } }, 'ShortName' => 'WideLife' }, - '9257435' => { - 'Artificial' => 1, - 'Class' => '9229518', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEED0Ev', + '6681757' => { + 'Class' => '6613785', + 'Constructor' => 1, + 'Header' => 'colorstartpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243439' + 'type' => '6626395' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ColorStartPatternConverter', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '148' }, - '9257575' => { - 'Artificial' => 1, - 'Class' => '9229518', + '6693152' => { + 'Class' => '6613785', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEEC2Ev', + 'Header' => 'colorstartpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243439' + 'type' => '6626395' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ColorStartPatternConverter', + 'Source' => 'colorstartpatternconverter.cpp', + 'SourceLine' => '148' }, - '9257576' => { + '6718482' => { 'Artificial' => 1, - 'Class' => '9229518', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '3120371', + 'Destructor' => 1, + 'Header' => 'patternconverter_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi6Filter11ClazzFilterEEC1Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243439' + 'type' => '3130056' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PatternConverterPrivate', + 'Virt' => 1 }, - '9257655' => { + '6718483' => { 'Artificial' => 1, - 'Class' => '9229162', + 'Class' => '3120371', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'patternconverter_priv.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEED2Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243377' + 'type' => '3130056' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PatternConverterPrivate', + 'Virt' => 1 }, - '9257656' => { + '6719908' => { 'Artificial' => 1, - 'Class' => '9229162', + 'Class' => '3120371', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'patternconverter_priv.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEED0Ev', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243377' + 'type' => '3130056' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PatternConverterPrivate', + 'Virt' => 1 }, - '9257796' => { + '6721304' => { 'Artificial' => 1, - 'Class' => '9229162', + 'Class' => '3120371', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'patternconverter_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEEC2Ev', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243377' + 'type' => '3130056' + }, + '1' => { + 'name' => '_name', + 'type' => '210597' + }, + '2' => { + 'name' => '_style', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PatternConverterPrivate' }, - '9257797' => { + '6721305' => { 'Artificial' => 1, - 'Class' => '9229162', + 'Class' => '3120371', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'patternconverter_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_8Appender13ClazzAppenderEEC1Ev', + 'Line' => '33', + 'MnglName' => '_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243377' + 'type' => '3130056' + }, + '1' => { + 'name' => '_name', + 'type' => '210597' + }, + '2' => { + 'name' => '_style', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'PatternConverterPrivate' }, - '9257876' => { + '6722068' => { 'Artificial' => 1, - 'Class' => '9228806', + 'Class' => '6613819', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'colorstartpatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEED2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243315' + 'type' => '6626940' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzColorStartPatternConverter', + 'Virt' => 1 }, - '9257877' => { + '6722069' => { 'Artificial' => 1, - 'Class' => '9228806', + 'Class' => '6613819', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'colorstartpatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEED0Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243315' + 'type' => '6626940' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzColorStartPatternConverter', + 'Virt' => 1 }, - '9258017' => { + '6722215' => { 'Artificial' => 1, - 'Class' => '9228806', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '6613819', + 'Destructor' => 1, + 'Header' => 'colorstartpatternconverter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEEC2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243315' + 'type' => '6626940' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzColorStartPatternConverter', + 'Virt' => 1 }, - '9258018' => { + '6722310' => { 'Artificial' => 1, - 'Class' => '9228806', + 'Class' => '6613819', 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'colorstartpatternconverter.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12ErrorHandler17ClazzErrorHandlerEEC1Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243315' + 'type' => '6626940' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzColorStartPatternConverter' }, - '9258097' => { + '6722311' => { 'Artificial' => 1, - 'Class' => '9228450', - 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '6613819', + 'Constructor' => 1, + 'Header' => 'colorstartpatternconverter.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEED2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243253' + 'type' => '6626940' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ClazzColorStartPatternConverter' }, - '9258098' => { - 'Artificial' => 1, - 'Class' => '9228450', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEED0Ev', + '7054034' => { + 'Class' => '7053922', + 'Const' => 1, + 'Header' => 'colorendpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243253' + 'type' => '7065987' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9258238' => { - 'Artificial' => 1, - 'Class' => '9228450', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEEC2Ev', + '7054157' => { + 'Class' => '7053888', + 'Header' => 'colorendpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'colorendpatternconverter.cpp', + 'SourceLine' => '29', + 'Static' => 1 + }, + '7054173' => { + 'Class' => '7053888', + 'Header' => 'colorendpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'colorendpatternconverter.cpp', + 'SourceLine' => '29', + 'Static' => 1 + }, + '7054189' => { + 'Class' => '7053888', + 'Const' => 1, + 'Header' => 'colorendpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243253' + 'type' => '7065822' } }, - 'ShortName' => 'WideLife' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'colorendpatternconverter.cpp', + 'SourceLine' => '29', + 'Virt' => 1, + 'VirtPos' => '2' }, - '9258239' => { - 'Artificial' => 1, - 'Class' => '9228450', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi13OptionHandler18ClazzOptionHandlerEEC1Ev', + '7054226' => { + 'Class' => '7053888', + 'Const' => 1, + 'Header' => 'colorendpatternconverter.h', + 'InLine' => 2, + 'Line' => '40', + 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243253' + 'type' => '7065822' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '9258567' => { - 'Artificial' => 1, - 'Class' => '9227210', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEED2Ev', + '7054268' => { + 'Class' => '7053888', + 'Const' => 1, + 'Header' => 'colorendpatternconverter.h', + 'InLine' => 2, + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243146' + 'type' => '7065822' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'WideLife' - }, - '9258568' => { - 'Artificial' => 1, - 'Class' => '9227210', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '7054346' => { + 'Class' => '7053888', + 'Header' => 'colorendpatternconverter.h', 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEED0Ev', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9243146' + 'name' => 'p1', + 'type' => '575797' } }, - 'ShortName' => 'WideLife' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'colorendpatternconverter.cpp', + 'SourceLine' => '37', + 'Static' => 1 }, - '9258708' => { - 'Artificial' => 1, - 'Class' => '9227210', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEEC2Ev', + '7054372' => { + 'Class' => '7053888', + 'Const' => 1, + 'Header' => 'colorendpatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern24ColorEndPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243146' + 'type' => '7065822' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'WideLife' + 'Return' => '1', + 'ShortName' => 'format', + 'Source' => 'colorendpatternconverter.cpp', + 'SourceLine' => '44', + 'Virt' => 1, + 'VirtPos' => '7' }, - '9258709' => { - 'Artificial' => 1, - 'Class' => '9227210', + '7057237' => { + 'Data' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7classes36ColorEndPatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ColorEndPatternConverterRegistration', + 'Source' => 'colorendpatternconverter.cpp' + }, + '7067323' => { + 'Class' => '3121054', 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_6Object11ClazzObjectEEC1Ev', + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '45', + 'MnglName' => '_ZN7log4cxx7pattern28LoggingEventPatternConverterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9243146' + 'type' => '6114592' + }, + '2' => { + 'name' => 'name1', + 'type' => '210597' + }, + '3' => { + 'name' => 'style1', + 'type' => '210597' } }, - 'ShortName' => 'WideLife' + 'Protected' => 1, + 'ShortName' => 'LoggingEventPatternConverter', + 'Source' => 'loggingeventpatternconverter.cpp', + 'SourceLine' => '32' }, - '9277745' => { + '7070118' => { 'Artificial' => 1, - 'Class' => '9238640', + 'Class' => '7053888', 'Destructor' => 1, - 'Header' => 'triggeringeventevaluator.h', + 'Header' => 'colorendpatternconverter.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD0Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245078' + 'type' => '7065481' } }, - 'ShortName' => 'ClazzTriggeringEventEvaluator', + 'ShortName' => 'ColorEndPatternConverter', 'Virt' => 1 }, - '9277746' => { + '7070119' => { 'Artificial' => 1, - 'Class' => '9238640', + 'Class' => '7053888', 'Destructor' => 1, - 'Header' => 'triggeringeventevaluator.h', + 'Header' => 'colorendpatternconverter.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD1Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245078' + 'type' => '7065481' } }, - 'ShortName' => 'ClazzTriggeringEventEvaluator', + 'ShortName' => 'ColorEndPatternConverter', 'Virt' => 1 }, - '9277886' => { + '7070388' => { 'Artificial' => 1, - 'Class' => '9238640', + 'Class' => '7053888', 'Destructor' => 1, - 'Header' => 'triggeringeventevaluator.h', + 'Header' => 'colorendpatternconverter.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD2Ev', + 'Line' => '35', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245078' + 'type' => '7065481' } }, - 'ShortName' => 'ClazzTriggeringEventEvaluator', + 'ShortName' => 'ColorEndPatternConverter', 'Virt' => 1 }, - '9277976' => { + '7080164' => { 'Artificial' => 1, - 'Class' => '9238640', + 'Class' => '6072360', 'Constructor' => 1, - 'Header' => 'triggeringeventevaluator.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorC2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC2IS2_INS3_24ColorEndPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245078' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '7065396' } }, - 'ShortName' => 'ClazzTriggeringEventEvaluator' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '6993962' + } + } }, - '9277977' => { + '7080165' => { 'Artificial' => 1, - 'Class' => '9238640', + 'Class' => '6072360', 'Constructor' => 1, - 'Header' => 'triggeringeventevaluator.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '40', - 'MnglName' => '_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorC1Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeISt10shared_ptrINS_7pattern16PatternConverterEEEC1IS2_INS3_24ColorEndPatternConverterEEJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245078' + 'type' => '6085740' + }, + '1' => { + 'name' => 'arg0', + 'type' => '7065396' } }, - 'ShortName' => 'ClazzTriggeringEventEvaluator' + 'ShortName' => 'WideLife >', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '6993962' + } + } }, - '9278775' => { + '7080592' => { 'Artificial' => 1, - 'Class' => '9233918', + 'Class' => '7051911', 'Destructor' => 1, - 'Header' => 'xml.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245100' + 'type' => '7065120' } }, - 'ShortName' => 'ClazzXMLDOMNodeList', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '9278776' => { + '7080593' => { 'Artificial' => 1, - 'Class' => '9233918', + 'Class' => '7051911', 'Destructor' => 1, - 'Header' => 'xml.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245100' + 'type' => '7065120' } }, - 'ShortName' => 'ClazzXMLDOMNodeList', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '9278916' => { + '7080735' => { 'Artificial' => 1, - 'Class' => '9233918', - 'Destructor' => 1, - 'Header' => 'xml.h', + 'Class' => '7051911', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245100' + 'type' => '7065120' } }, - 'ShortName' => 'ClazzXMLDOMNodeList', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '9279006' => { + '7080736' => { 'Artificial' => 1, - 'Class' => '9233918', + 'Class' => '7051911', 'Constructor' => 1, - 'Header' => 'xml.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245100' + 'type' => '7065120' } }, - 'ShortName' => 'ClazzXMLDOMNodeList' + 'ShortName' => 'WideLife' }, - '9279007' => { - 'Artificial' => 1, - 'Class' => '9233918', + '7086062' => { + 'Class' => '7053888', 'Constructor' => 1, - 'Header' => 'xml.h', - 'InLine' => 1, - 'Line' => '110', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListC1Ev', + 'Header' => 'colorendpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245100' + 'type' => '7065481' } }, - 'ShortName' => 'ClazzXMLDOMNodeList' + 'ShortName' => 'ColorEndPatternConverter', + 'Source' => 'colorendpatternconverter.cpp', + 'SourceLine' => '31' }, - '9279805' => { - 'Artificial' => 1, - 'Class' => '9232383', - 'Destructor' => 1, - 'Header' => 'xml.h', - 'InLine' => 1, - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD0Ev', + '7089087' => { + 'Class' => '7053888', + 'Constructor' => 1, + 'Header' => 'colorendpatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245122' + 'type' => '7065481' } }, - 'ShortName' => 'ClazzXMLDOMDocument', - 'Virt' => 1 + 'ShortName' => 'ColorEndPatternConverter', + 'Source' => 'colorendpatternconverter.cpp', + 'SourceLine' => '31' }, - '9279806' => { + '7093842' => { 'Artificial' => 1, - 'Class' => '9232383', + 'Class' => '7053922', 'Destructor' => 1, - 'Header' => 'xml.h', + 'Header' => 'colorendpatternconverter.h', 'InLine' => 1, - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245122' + 'type' => '7065977' } }, - 'ShortName' => 'ClazzXMLDOMDocument', + 'ShortName' => 'ClazzColorEndPatternConverter', 'Virt' => 1 }, - '9279946' => { + '7093843' => { 'Artificial' => 1, - 'Class' => '9232383', + 'Class' => '7053922', 'Destructor' => 1, - 'Header' => 'xml.h', + 'Header' => 'colorendpatternconverter.h', 'InLine' => 1, - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245122' + 'type' => '7065977' } }, - 'ShortName' => 'ClazzXMLDOMDocument', + 'ShortName' => 'ClazzColorEndPatternConverter', 'Virt' => 1 }, - '9280036' => { + '7093988' => { 'Artificial' => 1, - 'Class' => '9232383', - 'Constructor' => 1, - 'Header' => 'xml.h', + 'Class' => '7053922', + 'Destructor' => 1, + 'Header' => 'colorendpatternconverter.h', 'InLine' => 1, - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245122' + 'type' => '7065977' } }, - 'ShortName' => 'ClazzXMLDOMDocument' + 'ShortName' => 'ClazzColorEndPatternConverter', + 'Virt' => 1 }, - '9280037' => { + '7094083' => { 'Artificial' => 1, - 'Class' => '9232383', + 'Class' => '7053922', 'Constructor' => 1, - 'Header' => 'xml.h', + 'Header' => 'colorendpatternconverter.h', 'InLine' => 1, - 'Line' => '89', - 'MnglName' => '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentC1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245122' + 'type' => '7065977' } }, - 'ShortName' => 'ClazzXMLDOMDocument' + 'ShortName' => 'ClazzColorEndPatternConverter' }, - '9280835' => { + '7094084' => { 'Artificial' => 1, - 'Class' => '9233173', - 'Destructor' => 1, - 'Header' => 'xml.h', + 'Class' => '7053922', + 'Constructor' => 1, + 'Header' => 'colorendpatternconverter.h', 'InLine' => 1, - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD0Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245144' + 'type' => '7065977' } }, - 'ShortName' => 'ClazzXMLDOMElement', - 'Virt' => 1 + 'ShortName' => 'ClazzColorEndPatternConverter' }, - '9280836' => { - 'Artificial' => 1, - 'Class' => '9233173', - 'Destructor' => 1, - 'Header' => 'xml.h', - 'InLine' => 1, - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245144' - } - }, - 'ShortName' => 'ClazzXMLDOMElement', - 'Virt' => 1 + '7403239' => { + 'Class' => '3118759', + 'Header' => 'configurator.h', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx3spi12Configurator14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'configurator.cpp', + 'SourceLine' => '26', + 'Static' => 1 }, - '9280976' => { - 'Artificial' => 1, - 'Class' => '9233173', - 'Destructor' => 1, - 'Header' => 'xml.h', - 'InLine' => 1, - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD2Ev', + '7403255' => { + 'Class' => '3118759', + 'Header' => 'configurator.h', + 'MnglName' => '_ZN7log4cxx3spi12Configurator13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'configurator.cpp', + 'SourceLine' => '26', + 'Static' => 1 + }, + '7403271' => { + 'Class' => '3118759', + 'Const' => 1, + 'Header' => 'configurator.h', + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx3spi12Configurator8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245144' + 'type' => '7412096' } }, - 'ShortName' => 'ClazzXMLDOMElement', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'configurator.cpp', + 'SourceLine' => '26', + 'Virt' => 1, + 'VirtPos' => '2' }, - '9281066' => { - 'Artificial' => 1, - 'Class' => '9233173', - 'Constructor' => 1, - 'Header' => 'xml.h', - 'InLine' => 1, - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementC2Ev', + '7403308' => { + 'Class' => '3118759', + 'Header' => 'configurator.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx3spi12Configurator11doConfigureERKNS_4FileESt10shared_ptrINS0_16LoggerRepositoryEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245144' + 'type' => '7412101' + }, + '1' => { + 'name' => 'p1', + 'type' => '575822' + }, + '2' => { + 'name' => 'p2', + 'type' => '565552' } }, - 'ShortName' => 'ClazzXMLDOMElement' + 'PureVirt' => 1, + 'Return' => '3117865', + 'ShortName' => 'doConfigure', + 'VirtPos' => '5' + }, + '7404364' => { + 'Data' => 1, + 'Line' => '26', + 'MnglName' => '_ZN7log4cxx7classes24ConfiguratorRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ConfiguratorRegistration', + 'Source' => 'configurator.cpp' }, - '9281067' => { + '7416366' => { 'Artificial' => 1, - 'Class' => '9233173', - 'Constructor' => 1, - 'Header' => 'xml.h', + 'Class' => '7401091', + 'Destructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '74', - 'MnglName' => '_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementC1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245144' + 'type' => '7411725' } }, - 'ShortName' => 'ClazzXMLDOMElement' + 'ShortName' => 'WideLife' }, - '9281865' => { + '7416367' => { 'Artificial' => 1, - 'Class' => '9226794', + 'Class' => '7401091', 'Destructor' => 1, - 'Header' => 'xml.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD0Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245166' + 'type' => '7411725' } }, - 'ShortName' => 'ClazzXMLDOMNode', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '9281866' => { + '7416509' => { 'Artificial' => 1, - 'Class' => '9226794', - 'Destructor' => 1, - 'Header' => 'xml.h', + 'Class' => '7401091', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD1Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245166' + 'type' => '7411725' } }, - 'ShortName' => 'ClazzXMLDOMNode', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '9282006' => { + '7416510' => { 'Artificial' => 1, - 'Class' => '9226794', - 'Destructor' => 1, - 'Header' => 'xml.h', + 'Class' => '7401091', + 'Constructor' => 1, + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12Configurator17ClazzConfiguratorEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245166' + 'type' => '7411725' } }, - 'ShortName' => 'ClazzXMLDOMNode', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '9282096' => { - 'Artificial' => 1, - 'Class' => '9226794', + '7416897' => { + 'Class' => '3118759', 'Constructor' => 1, - 'Header' => 'xml.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeC2Ev', + 'Header' => 'configurator.h', + 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245166' + 'type' => '7412106' } }, - 'ShortName' => 'ClazzXMLDOMNode' + 'Protected' => 1, + 'ShortName' => 'Configurator', + 'Source' => 'configurator.cpp', + 'SourceLine' => '31' }, - '9282097' => { - 'Artificial' => 1, - 'Class' => '9226794', + '7416942' => { + 'Class' => '3118759', 'Constructor' => 1, - 'Header' => 'xml.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeC1Ev', + 'Header' => 'configurator.h', + 'MnglName' => '_ZN7log4cxx3spi12ConfiguratorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245166' + 'type' => '7412106' } }, - 'ShortName' => 'ClazzXMLDOMNode' + 'Protected' => 1, + 'ShortName' => 'Configurator', + 'Source' => 'configurator.cpp', + 'SourceLine' => '31' }, - '9282895' => { + '7418633' => { 'Artificial' => 1, - 'Class' => '9238293', + 'Class' => '3118768', 'Destructor' => 1, - 'Header' => 'repositoryselector.h', + 'Header' => 'configurator.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD0Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245188' + 'type' => '7412141' } }, - 'ShortName' => 'ClazzRepositorySelector', + 'ShortName' => 'ClazzConfigurator', 'Virt' => 1 }, - '9282896' => { + '7418634' => { 'Artificial' => 1, - 'Class' => '9238293', + 'Class' => '3118768', 'Destructor' => 1, - 'Header' => 'repositoryselector.h', + 'Header' => 'configurator.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD1Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245188' + 'type' => '7412141' } }, - 'ShortName' => 'ClazzRepositorySelector', + 'ShortName' => 'ClazzConfigurator', 'Virt' => 1 }, - '9283036' => { + '7418779' => { 'Artificial' => 1, - 'Class' => '9238293', + 'Class' => '3118768', 'Destructor' => 1, - 'Header' => 'repositoryselector.h', + 'Header' => 'configurator.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245188' + 'type' => '7412141' } }, - 'ShortName' => 'ClazzRepositorySelector', + 'ShortName' => 'ClazzConfigurator', 'Virt' => 1 }, - '9283126' => { + '7418874' => { 'Artificial' => 1, - 'Class' => '9238293', + 'Class' => '3118768', 'Constructor' => 1, - 'Header' => 'repositoryselector.h', + 'Header' => 'configurator.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorC2Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245188' + 'type' => '7412141' } }, - 'ShortName' => 'ClazzRepositorySelector' + 'ShortName' => 'ClazzConfigurator' }, - '9283127' => { + '7418875' => { 'Artificial' => 1, - 'Class' => '9238293', + 'Class' => '3118768', 'Constructor' => 1, - 'Header' => 'repositoryselector.h', + 'Header' => 'configurator.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorC1Ev', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx3spi12Configurator17ClazzConfiguratorC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245188' + 'type' => '7412141' } }, - 'ShortName' => 'ClazzRepositorySelector' + 'ShortName' => 'ClazzConfigurator' }, - '9284256' => { - 'Artificial' => 1, - 'Class' => '9239967', - 'Destructor' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD0Ev', + '7856241' => { + 'Class' => '7856158', + 'Const' => 1, + 'Header' => 'systemoutwriter.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245210' + 'type' => '45439903' } }, - 'ShortName' => 'ClazzDenyAllFilter', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9284257' => { - 'Artificial' => 1, - 'Class' => '9239967', - 'Destructor' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD1Ev', + '7856279' => { + 'Class' => '7856158', + 'Const' => 1, + 'Header' => 'systemoutwriter.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245210' + 'type' => '45439903' } }, - 'ShortName' => 'ClazzDenyAllFilter', - 'Virt' => 1 + 'Return' => '7875014', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '2' }, - '9284397' => { - 'Artificial' => 1, - 'Class' => '9239967', - 'Destructor' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD2Ev', + '7856836' => { + 'Class' => '7856753', + 'Const' => 1, + 'Header' => 'systemerrwriter.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245210' + 'type' => '45268842' } }, - 'ShortName' => 'ClazzDenyAllFilter', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9284487' => { - 'Artificial' => 1, - 'Class' => '9239967', - 'Constructor' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 1, - 'Line' => '43', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterC2Ev', + '7856874' => { + 'Class' => '7856753', + 'Const' => 1, + 'Header' => 'systemerrwriter.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriter11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245210' + 'type' => '45268842' } }, - 'ShortName' => 'ClazzDenyAllFilter' + 'Return' => '7875170', + 'ShortName' => 'newInstance', + 'Virt' => 1, + 'VirtPos' => '2' }, - '9284488' => { + '7861808' => { 'Artificial' => 1, - 'Class' => '9239967', - 'Constructor' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 1, + 'Class' => '3122015', + 'Header' => 'consoleappender.h', + 'InLine' => 2, 'Line' => '43', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterC1Ev', + 'MnglName' => '_ZTch0_h0_NK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245210' + 'type' => '7876276' } }, - 'ShortName' => 'ClazzDenyAllFilter' + 'Return' => '3133115', + 'ShortName' => '_ZTch0_h0_NK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv' }, - '9284552' => { - 'Artificial' => 1, - 'Class' => '9239950', - 'Constructor' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterC1Ev', + '7862043' => { + 'Class' => '3122006', + 'Const' => 1, + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZNK7log4cxx15ConsoleAppender8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9244878' + 'type' => '7876162' } }, - 'ShortName' => 'DenyAllFilter' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '41', + 'Virt' => 1, + 'VirtPos' => '2' }, - '9284553' => { - 'Artificial' => 1, - 'Class' => '9239950', - 'Constructor' => 1, - 'Header' => 'denyallfilter.h', - 'InLine' => 1, - 'Line' => '38', - 'MnglName' => '_ZN7log4cxx6filter13DenyAllFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9244878' - } - }, - 'ShortName' => 'DenyAllFilter' + '7862081' => { + 'Class' => '3122006', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '41', + 'Static' => 1 }, - '9285565' => { - 'Artificial' => 1, - 'Class' => '9235603', - 'Destructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD0Ev', + '7862113' => { + 'Class' => '3122006', + 'Const' => 1, + 'Header' => 'consoleappender.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx15ConsoleAppender4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245232' + 'type' => '7876162' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzErrorHandler', - 'Virt' => 1 + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '9285566' => { - 'Artificial' => 1, - 'Class' => '9235603', - 'Destructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD1Ev', + '7862156' => { + 'Class' => '3122006', + 'Const' => 1, + 'Header' => 'consoleappender.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx15ConsoleAppender10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245232' + 'type' => '7876162' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzErrorHandler', - 'Virt' => 1 + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9285706' => { - 'Artificial' => 1, - 'Class' => '9235603', - 'Destructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD2Ev', + '7862362' => { + 'Class' => '3122006', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender9setTargetERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245232' + 'type' => '3133120' + }, + '1' => { + 'name' => 'value', + 'type' => '210597' } }, - 'ShortName' => 'ClazzErrorHandler', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setTarget', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '83' }, - '9285796' => { - 'Artificial' => 1, - 'Class' => '9235603', - 'Constructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerC2Ev', + '7862393' => { + 'Class' => '3122006', + 'Const' => 1, + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZNK7log4cxx15ConsoleAppender9getTargetB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245232' + 'type' => '7876162' } }, - 'ShortName' => 'ClazzErrorHandler' + 'Return' => '209661', + 'ShortName' => 'getTarget', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '103' }, - '9285797' => { - 'Artificial' => 1, - 'Class' => '9235603', - 'Constructor' => 1, - 'Header' => 'errorhandler.h', - 'InLine' => 1, - 'Line' => '61', - 'MnglName' => '_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerC1Ev', + '7862423' => { + 'Class' => '3122006', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245232' + 'type' => '3133120' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ClazzErrorHandler' + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '115', + 'Virt' => 1, + 'VirtPos' => '5' }, - '9286684' => { - 'Artificial' => 1, - 'Class' => '9234795', - 'Destructor' => 1, - 'Header' => 'filter.h', - 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterD0Ev', + '7862462' => { + 'Class' => '3122006', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245254' + 'type' => '3133120' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'ShortName' => 'ClazzFilter', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '133', + 'Virt' => 1, + 'VirtPos' => '6' }, - '9286685' => { - 'Artificial' => 1, - 'Class' => '9234795', - 'Destructor' => 1, - 'Header' => 'filter.h', - 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245254' - } - }, - 'ShortName' => 'ClazzFilter', - 'Virt' => 1 + '7862506' => { + 'Class' => '3122006', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender12getSystemOutB5cxx11Ev', + 'Return' => '210597', + 'ShortName' => 'getSystemOut', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '71', + 'Static' => 1 }, - '9286825' => { - 'Artificial' => 1, - 'Class' => '9234795', - 'Destructor' => 1, - 'Header' => 'filter.h', - 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245254' - } - }, - 'ShortName' => 'ClazzFilter', - 'Virt' => 1 + '7862522' => { + 'Class' => '3122006', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender12getSystemErrB5cxx11Ev', + 'Return' => '210597', + 'ShortName' => 'getSystemErr', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '77', + 'Static' => 1 }, - '9286915' => { - 'Artificial' => 1, - 'Class' => '9234795', - 'Constructor' => 1, - 'Header' => 'filter.h', - 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterC2Ev', + '7862538' => { + 'Class' => '3122006', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender10targetWarnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245254' + 'type' => '3133120' + }, + '1' => { + 'name' => 'val', + 'type' => '210597' } }, - 'ShortName' => 'ClazzFilter' + 'Private' => 1, + 'Return' => '1', + 'ShortName' => 'targetWarn', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '108' }, - '9286916' => { - 'Artificial' => 1, - 'Class' => '9234795', - 'Constructor' => 1, - 'Header' => 'filter.h', - 'InLine' => 1, - 'Line' => '77', - 'MnglName' => '_ZN7log4cxx3spi6Filter11ClazzFilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245254' - } - }, - 'ShortName' => 'ClazzFilter' + '7862585' => { + 'Data' => 1, + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx7classes27ConsoleAppenderRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'ConsoleAppenderRegistration', + 'Source' => 'consoleappender.cpp' }, - '9287862' => { - 'Artificial' => 1, - 'Class' => '9237247', - 'Destructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245276' - } - }, - 'ShortName' => 'ClazzLoggerRepository', - 'Virt' => 1 + '7862985' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '41', + 'MnglName' => '_ZN7log4cxx14WriterAppender14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '32', + 'Static' => 1 }, - '9287863' => { - 'Artificial' => 1, - 'Class' => '9237247', - 'Destructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD1Ev', + '7863001' => { + 'Class' => '3122360', + 'Const' => 1, + 'Header' => 'writerappender.h', + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx14WriterAppender8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245276' + 'type' => '7877625' } }, - 'ShortName' => 'ClazzLoggerRepository', - 'Virt' => 1 + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '32', + 'Virt' => 1, + 'VirtPos' => '2' }, - '9288003' => { - 'Artificial' => 1, - 'Class' => '9237247', - 'Destructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD2Ev', + '7863039' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '189', + 'MnglName' => '_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245276' + 'type' => '7877635' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ClazzLoggerRepository', - 'Virt' => 1 + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'writeHeader', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '280', + 'Virt' => 1, + 'VirtPos' => '22' }, - '9288093' => { - 'Artificial' => 1, - 'Class' => '9237247', - 'Constructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryC2Ev', + '7863078' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '184', + 'MnglName' => '_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245276' + 'type' => '7877635' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ClazzLoggerRepository' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'writeFooter', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '270', + 'Virt' => 1, + 'VirtPos' => '21' }, - '9288094' => { - 'Artificial' => 1, - 'Class' => '9237247', - 'Constructor' => 1, - 'Header' => 'loggerrepository.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryC1Ev', + '7863117' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '178', + 'MnglName' => '_ZN7log4cxx14WriterAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245276' + 'type' => '7877635' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ClazzLoggerRepository' + 'Protected' => 1, + 'Return' => '1', + 'ShortName' => 'subAppend', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '253', + 'Virt' => 1, + 'VirtPos' => '20' }, - '9288892' => { - 'Artificial' => 1, - 'Class' => '9236890', - 'Destructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD0Ev', + '7863161' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '131', + 'MnglName' => '_ZN7log4cxx14WriterAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245298' + 'type' => '7877635' + }, + '1' => { + 'name' => 'os', + 'type' => '7877645' } }, - 'ShortName' => 'ClazzLoggerFactory', - 'Virt' => 1 + 'Protected' => 1, + 'Return' => '3335202', + 'ShortName' => 'createWriter', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '209', + 'Virt' => 1, + 'VirtPos' => '19' }, - '9288893' => { - 'Artificial' => 1, - 'Class' => '9236890', - 'Destructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD1Ev', + '7863204' => { + 'Class' => '3122360', + 'Const' => 1, + 'Header' => 'writerappender.h', + 'Line' => '107', + 'MnglName' => '_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245298' + 'type' => '7877625' } }, - 'ShortName' => 'ClazzLoggerFactory', - 'Virt' => 1 + 'Protected' => 1, + 'Return' => '174077', + 'ShortName' => 'checkEntryConditions', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '108', + 'Virt' => 1, + 'VirtPos' => '18' }, - '9289033' => { - 'Artificial' => 1, - 'Class' => '9236890', - 'Destructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD2Ev', + '7863242' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '97', + 'MnglName' => '_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245298' + 'type' => '7877635' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'pool1', + 'type' => '210607' } }, - 'ShortName' => 'ClazzLoggerFactory', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'append', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '91', + 'Virt' => 1, + 'VirtPos' => '17' }, - '9289123' => { - 'Artificial' => 1, - 'Class' => '9236890', - 'Constructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryC2Ev', + '7863286' => { + 'Class' => '3122360', + 'Const' => 1, + 'Header' => 'writerappender.h', + 'Line' => '172', + 'MnglName' => '_ZNK7log4cxx14WriterAppender14requiresLayoutEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245298' + 'type' => '7877625' } }, - 'ShortName' => 'ClazzLoggerFactory' + 'Return' => '174077', + 'ShortName' => 'requiresLayout', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '302', + 'Virt' => 1, + 'VirtPos' => '16' }, - '9289124' => { - 'Artificial' => 1, - 'Class' => '9236890', - 'Constructor' => 1, - 'Header' => 'loggerfactory.h', - 'InLine' => 1, - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryC1Ev', + '7863324' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '117', + 'MnglName' => '_ZN7log4cxx14WriterAppender5closeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245298' + 'type' => '7877635' } }, - 'ShortName' => 'ClazzLoggerFactory' + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '164', + 'Virt' => 1, + 'VirtPos' => '10' }, - '9289922' => { - 'Artificial' => 1, - 'Class' => '9236265', - 'Destructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD0Ev', + '7863358' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '156', + 'MnglName' => '_ZN7log4cxx14WriterAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245320' + 'type' => '7877635' + }, + '1' => { + 'name' => 'option', + 'type' => '210597' + }, + '2' => { + 'name' => 'value', + 'type' => '210597' } }, - 'ShortName' => 'ClazzAppenderAttachable', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setOption', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '307', + 'Virt' => 1, + 'VirtPos' => '6' }, - '9289923' => { - 'Artificial' => 1, - 'Class' => '9236265', - 'Destructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD1Ev', + '7863443' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '63', + 'MnglName' => '_ZN7log4cxx14WriterAppender15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245320' + 'type' => '7877635' + }, + '1' => { + 'name' => 'p', + 'type' => '210607' } }, - 'ShortName' => 'ClazzAppenderAttachable', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'activateOptions', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '63', + 'Virt' => 1, + 'VirtPos' => '5' }, - '9290063' => { - 'Artificial' => 1, - 'Class' => '9236265', - 'Destructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD2Ev', + '7863482' => { + 'Class' => '3122360', + 'Header' => 'writerappender.h', + 'Line' => '168', + 'MnglName' => '_ZN7log4cxx14WriterAppender9setWriterERKSt10shared_ptrINS_7helpers6WriterEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245320' + 'type' => '7877635' + }, + '1' => { + 'name' => 'newWriter', + 'type' => '7877740' } }, - 'ShortName' => 'ClazzAppenderAttachable', - 'Virt' => 1 + 'Return' => '1', + 'ShortName' => 'setWriter', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '291' }, - '9290153' => { - 'Artificial' => 1, - 'Class' => '9236265', - 'Constructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableC2Ev', + '7863555' => { + 'Class' => '3122360', + 'Const' => 1, + 'Header' => 'writerappender.h', + 'InLine' => 2, + 'Line' => '45', + 'MnglName' => '_ZNK7log4cxx14WriterAppender10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245320' + 'type' => '7877625' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzAppenderAttachable' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9290154' => { - 'Artificial' => 1, - 'Class' => '9236265', - 'Constructor' => 1, - 'Header' => 'appenderattachable.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableC1Ev', + '7863598' => { + 'Class' => '3122360', + 'Const' => 1, + 'Header' => 'writerappender.h', + 'InLine' => 2, + 'Line' => '42', + 'MnglName' => '_ZNK7log4cxx14WriterAppender4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245320' + 'type' => '7877625' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' } }, - 'ShortName' => 'ClazzAppenderAttachable' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '9290952' => { - 'Artificial' => 1, - 'Class' => '9240830', - 'Destructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderD0Ev', + '7877650' => { + 'Constructor' => 1, + 'Header' => 'systemerrwriter.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers15SystemErrWriterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245342' + 'type' => '7875175' } - }, - 'ShortName' => 'ClazzAppender', - 'Virt' => 1 + } }, - '9290953' => { - 'Artificial' => 1, - 'Class' => '9240830', - 'Destructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderD1Ev', + '7877677' => { + 'Constructor' => 1, + 'Header' => 'systemoutwriter.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers15SystemOutWriterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245342' + 'type' => '7875019' } - }, - 'ShortName' => 'ClazzAppender', - 'Virt' => 1 + } }, - '9291093' => { - 'Artificial' => 1, - 'Class' => '9240830', + '7877704' => { + 'Class' => '3122360', 'Destructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderD2Ev', + 'Header' => 'writerappender.h', + 'Line' => '57', + 'MnglName' => '_ZN7log4cxx14WriterAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245342' + 'type' => '7877635' } }, - 'ShortName' => 'ClazzAppender', + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '58', 'Virt' => 1 }, - '9291183' => { - 'Artificial' => 1, - 'Class' => '9240830', - 'Constructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245342' - } - }, - 'ShortName' => 'ClazzAppender' - }, - '9291184' => { - 'Artificial' => 1, - 'Class' => '9240830', + '7877849' => { + 'Class' => '3122360', 'Constructor' => 1, - 'Header' => 'appender.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx8Appender13ClazzAppenderC1Ev', + 'Header' => 'writerappender.h', + 'Line' => '54', + 'MnglName' => '_ZN7log4cxx14WriterAppenderC2ESt10unique_ptrINS0_18WriterAppenderPrivESt14default_deleteIS2_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245342' + 'type' => '7877635' + }, + '2' => { + 'name' => 'priv', + 'type' => '7778362' } }, - 'ShortName' => 'ClazzAppender' + 'Protected' => 1, + 'ShortName' => 'WriterAppender', + 'Source' => 'writerappender.cpp', + 'SourceLine' => '52' }, - '9292052' => { + '7902651' => { 'Artificial' => 1, - 'Class' => '9235134', + 'Class' => '7861835', 'Destructor' => 1, - 'Header' => 'optionhandler.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD0Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245364' + 'type' => '7874394' } }, - 'ShortName' => 'ClazzOptionHandler', + 'ShortName' => 'ConsoleAppenderPriv', + 'Source' => 'consoleappender.cpp', 'Virt' => 1 }, - '9292053' => { + '7902652' => { 'Artificial' => 1, - 'Class' => '9235134', + 'Class' => '7861835', 'Destructor' => 1, - 'Header' => 'optionhandler.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD1Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245364' + 'type' => '7874394' } }, - 'ShortName' => 'ClazzOptionHandler', + 'ShortName' => 'ConsoleAppenderPriv', + 'Source' => 'consoleappender.cpp', 'Virt' => 1 }, - '9292193' => { + '7908617' => { 'Artificial' => 1, - 'Class' => '9235134', + 'Class' => '7861835', 'Destructor' => 1, - 'Header' => 'optionhandler.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD2Ev', + 'Line' => '30', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245364' + 'type' => '7874394' } }, - 'ShortName' => 'ClazzOptionHandler', + 'ShortName' => 'ConsoleAppenderPriv', + 'Source' => 'consoleappender.cpp', 'Virt' => 1 }, - '9292283' => { + '7918298' => { 'Artificial' => 1, - 'Class' => '9235134', + 'Class' => '3115821', 'Constructor' => 1, - 'Header' => 'optionhandler.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerC2Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2IRA11_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245364' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '2523110' } }, - 'ShortName' => 'ClazzOptionHandler' + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '2523110' + } + } }, - '9292284' => { + '7918299' => { 'Artificial' => 1, - 'Class' => '9235134', + 'Class' => '3115821', 'Constructor' => 1, - 'Header' => 'optionhandler.h', - 'InLine' => 1, - 'Line' => '37', - 'MnglName' => '_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245364' - } - }, - 'ShortName' => 'ClazzOptionHandler' - }, - '9293082' => { - 'Artificial' => 1, - 'Class' => '9227583', - 'Destructor' => 1, - 'Header' => 'object.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectD0Ev', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC1IRA11_KcJEEEOT_DpOT0_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245449' + 'type' => '3132810' + }, + '1' => { + 'name' => 'arg0', + 'type' => '2523110' } }, - 'ShortName' => 'ClazzObject', - 'Virt' => 1 + 'ShortName' => 'WideLife', + 'TParam' => { + '0' => { + 'key' => 'Arg0', + 'type' => '2523110' + } + } }, - '9293083' => { + '7919919' => { 'Artificial' => 1, - 'Class' => '9227583', + 'Class' => '7855398', 'Destructor' => 1, - 'Header' => 'object.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectD1Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245449' + 'type' => '7874283' } }, - 'ShortName' => 'ClazzObject', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '9293223' => { + '7919920' => { 'Artificial' => 1, - 'Class' => '9227583', + 'Class' => '7855398', 'Destructor' => 1, - 'Header' => 'object.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectD2Ev', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245449' + 'type' => '7874283' } }, - 'ShortName' => 'ClazzObject', - 'Virt' => 1 + 'ShortName' => 'WideLife' }, - '9293313' => { + '7920061' => { 'Artificial' => 1, - 'Class' => '9227583', + 'Class' => '7855398', 'Constructor' => 1, - 'Header' => 'object.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectC2Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9245449' + 'type' => '7874283' } }, - 'ShortName' => 'ClazzObject' + 'ShortName' => 'WideLife' }, - '9293314' => { + '7920062' => { 'Artificial' => 1, - 'Class' => '9227583', + 'Class' => '7855398', 'Constructor' => 1, - 'Header' => 'object.h', + 'Header' => 'widelife.h', 'InLine' => 1, - 'Line' => '112', - 'MnglName' => '_ZN7log4cxx7helpers6Object11ClazzObjectC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9245449' - } - }, - 'ShortName' => 'ClazzObject' - }, - '9351116' => { - 'Class' => '9350773', - 'Const' => 1, - 'Header' => 'locale.h', - 'Line' => '37', - 'MnglName' => '_ZNK7log4cxx7helpers6Locale11getLanguageB5cxx11Ev', + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_15ConsoleAppender20ClazzConsoleAppenderEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9351641' + 'type' => '7874283' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getLanguage', - 'Source' => 'locale.cpp', - 'SourceLine' => '64' + 'ShortName' => 'WideLife' }, - '9351147' => { - 'Class' => '9350773', - 'Const' => 1, - 'Header' => 'locale.h', - 'Line' => '38', - 'MnglName' => '_ZNK7log4cxx7helpers6Locale10getCountryB5cxx11Ev', + '7941870' => { + 'Class' => '3122006', + 'Destructor' => 1, + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9351641' + 'type' => '3133120' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getCountry', - 'Source' => 'locale.cpp', - 'SourceLine' => '69' + 'ShortName' => 'ConsoleAppender', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '66', + 'Virt' => 1 }, - '9351178' => { - 'Class' => '9350773', - 'Const' => 1, - 'Header' => 'locale.h', - 'Line' => '39', - 'MnglName' => '_ZNK7log4cxx7helpers6Locale10getVariantB5cxx11Ev', + '7941968' => { + 'Class' => '3122006', + 'Destructor' => 1, + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9351641' + 'type' => '3133120' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '263006', - 'ShortName' => 'getVariant', - 'Source' => 'locale.cpp', - 'SourceLine' => '74' + 'ShortName' => 'ConsoleAppender', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '66', + 'Virt' => 1 }, - '9357197' => { - 'Class' => '9350773', + '7942256' => { + 'Class' => '3122006', 'Destructor' => 1, - 'Header' => 'locale.h', - 'Line' => '35', - 'MnglName' => '_ZN7log4cxx7helpers6LocaleD2Ev', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9351630' + 'type' => '3133120' } }, - 'ShortName' => 'Locale', - 'Source' => 'locale.cpp', - 'SourceLine' => '62' + 'ShortName' => 'ConsoleAppender', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '66', + 'Virt' => 1 }, - '9359525' => { - 'Class' => '9350773', + '7942448' => { + 'Class' => '3122006', 'Constructor' => 1, - 'Header' => 'locale.h', - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx7helpers6LocaleC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC1ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9351630' + 'type' => '3133120' }, '1' => { - 'name' => 'language1', - 'type' => '263006' + 'name' => 'layout', + 'type' => '1391157' }, '2' => { - 'name' => 'country1', - 'type' => '263006' - }, - '3' => { - 'name' => 'variant1', - 'type' => '263006' + 'name' => 'target', + 'type' => '210597' } }, - 'ShortName' => 'Locale', - 'Source' => 'locale.cpp', - 'SourceLine' => '56' + 'ShortName' => 'ConsoleAppender', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '57' }, - '9359526' => { - 'Class' => '9350773', + '7950472' => { + 'Class' => '3122006', 'Constructor' => 1, - 'Header' => 'locale.h', - 'Line' => '33', - 'MnglName' => '_ZN7log4cxx7helpers6LocaleC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC2ERKSt10shared_ptrINS_6LayoutEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9351630' - }, - '1' => { - 'name' => 'language1', - 'type' => '263006' + 'type' => '3133120' }, '2' => { - 'name' => 'country1', - 'type' => '263006' + 'name' => 'layout', + 'type' => '1391157' }, '3' => { - 'name' => 'variant1', - 'type' => '263006' - } - }, - 'ShortName' => 'Locale', - 'Source' => 'locale.cpp', - 'SourceLine' => '56' - }, - '9364445' => { - 'Class' => '9350773', - 'Constructor' => 1, - 'Header' => 'locale.h', - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers6LocaleC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9351630' - }, - '1' => { - 'name' => 'language1', - 'type' => '263006' - }, - '2' => { - 'name' => 'country1', - 'type' => '263006' + 'name' => 'target', + 'type' => '210597' } }, - 'ShortName' => 'Locale', - 'Source' => 'locale.cpp', - 'SourceLine' => '51' + 'ShortName' => 'ConsoleAppender', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '57' }, - '9364446' => { - 'Class' => '9350773', + '7970203' => { + 'Class' => '3122006', 'Constructor' => 1, - 'Header' => 'locale.h', - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx7helpers6LocaleC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC2ERKSt10shared_ptrINS_6LayoutEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9351630' - }, - '1' => { - 'name' => 'language1', - 'type' => '263006' + 'type' => '3133120' }, '2' => { - 'name' => 'country1', - 'type' => '263006' + 'name' => 'layout', + 'type' => '1391157' } }, - 'ShortName' => 'Locale', - 'Source' => 'locale.cpp', - 'SourceLine' => '51' + 'ShortName' => 'ConsoleAppender', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '48' }, - '9368389' => { - 'Class' => '9350773', + '7981999' => { + 'Class' => '3122006', 'Constructor' => 1, - 'Header' => 'locale.h', - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers6LocaleC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9351630' - }, - '1' => { - 'name' => 'language1', - 'type' => '263006' + 'type' => '3133120' } }, - 'ShortName' => 'Locale', - 'Source' => 'locale.cpp', - 'SourceLine' => '46' + 'ShortName' => 'ConsoleAppender', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '43' }, - '9368390' => { - 'Class' => '9350773', + '7988604' => { + 'Class' => '3122006', 'Constructor' => 1, - 'Header' => 'locale.h', - 'Line' => '31', - 'MnglName' => '_ZN7log4cxx7helpers6LocaleC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9351630' - }, - '1' => { - 'name' => 'language1', - 'type' => '263006' - } - }, - 'ShortName' => 'Locale', - 'Source' => 'locale.cpp', - 'SourceLine' => '46' - }, - '9425558' => { - 'Class' => '835117', - 'Data' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '55', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfo2NAE', - 'Return' => '51133', - 'ShortName' => 'NA', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '29' - }, - '9425581' => { - 'Class' => '835117', - 'Data' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '56', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfo9NA_METHODE', - 'Return' => '51133', - 'ShortName' => 'NA_METHOD', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '30' - }, - '9431091' => { - 'Artificial' => 1, - 'Class' => '9425144', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEED2Ev', + 'Header' => 'consoleappender.h', + 'MnglName' => '_ZN7log4cxx15ConsoleAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425610' + 'type' => '3133120' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'WideLife' + 'ShortName' => 'ConsoleAppender', + 'Source' => 'consoleappender.cpp', + 'SourceLine' => '43' }, - '9431092' => { + '7996198' => { 'Artificial' => 1, - 'Class' => '9425144', + 'Class' => '7862611', 'Destructor' => 1, - 'Header' => 'widelife.h', + 'Header' => 'writerappender_priv.h', 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEED0Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425610' + 'type' => '7874674' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WriterAppenderPriv', + 'Virt' => 1 }, - '9431158' => { + '7996199' => { 'Artificial' => 1, - 'Class' => '9425144', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '7862611', + 'Destructor' => 1, + 'Header' => 'writerappender_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEEC2Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425610' + 'type' => '7874674' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WriterAppenderPriv', + 'Virt' => 1 }, - '9431159' => { + '8001476' => { 'Artificial' => 1, - 'Class' => '9425144', - 'Constructor' => 1, - 'Header' => 'widelife.h', + 'Class' => '7862611', + 'Destructor' => 1, + 'Header' => 'writerappender_priv.h', 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_3spi12LocationInfoEEC1Ev', + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425610' + 'type' => '7874674' } }, - 'ShortName' => 'WideLife' + 'ShortName' => 'WriterAppenderPriv', + 'Virt' => 1 }, - '9438579' => { - 'Class' => '835117', + '8006712' => { + 'Artificial' => 1, + 'Class' => '7862611', 'Constructor' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '93', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC2ERKS1_', + 'Header' => 'writerappender_priv.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425520' - }, - '1' => { - 'name' => 'src', - 'type' => '839402' + 'type' => '7874674' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'LocationInfo', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '69' + 'ShortName' => 'WriterAppenderPriv' }, - '9438580' => { - 'Class' => '835117', + '8006713' => { + 'Artificial' => 1, + 'Class' => '7862611', 'Constructor' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '93', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC1ERKS1_', + 'Header' => 'writerappender_priv.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx14WriterAppender18WriterAppenderPrivC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425520' - }, - '1' => { - 'name' => 'src', - 'type' => '839402' + 'type' => '7874674' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'LocationInfo', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '69' + 'ShortName' => 'WriterAppenderPriv' }, - '9438656' => { - 'Class' => '835117', - 'Constructor' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC2Ev', + '8021056' => { + 'Artificial' => 1, + 'Class' => '3122015', + 'Destructor' => 1, + 'Header' => 'consoleappender.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425520' + 'type' => '7876266' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'LocationInfo', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '57' + 'ShortName' => 'ClazzConsoleAppender', + 'Virt' => 1 }, - '9438657' => { - 'Class' => '835117', - 'Constructor' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC1Ev', + '8021057' => { + 'Artificial' => 1, + 'Class' => '3122015', + 'Destructor' => 1, + 'Header' => 'consoleappender.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425520' + 'type' => '7876266' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'ShortName' => 'LocationInfo', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '57' + 'ShortName' => 'ClazzConsoleAppender', + 'Virt' => 1 }, - '9438774' => { - 'Class' => '835117', - 'Constructor' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC2EPKcS3_S3_i', + '8021202' => { + 'Artificial' => 1, + 'Class' => '3122015', + 'Destructor' => 1, + 'Header' => 'consoleappender.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425520' - }, - '1' => { - 'name' => 'fileName1', - 'type' => '51133' - }, - '2' => { - 'name' => 'shortFileName1', - 'type' => '51133' - }, - '3' => { - 'name' => 'methodName1', - 'type' => '51133' - }, - '4' => { - 'name' => 'lineNumber1', - 'type' => '50231' + 'type' => '7876266' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx', - '3' => 'rcx', - '4' => 'r8' - }, - 'ShortName' => 'LocationInfo', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '43' + 'ShortName' => 'ClazzConsoleAppender', + 'Virt' => 1 }, - '9438775' => { - 'Class' => '835117', + '8021296' => { + 'Artificial' => 1, + 'Class' => '3122015', 'Constructor' => 1, - 'Header' => 'locationinfo.h', - 'Line' => '79', - 'MnglName' => '_ZN7log4cxx3spi12LocationInfoC1EPKcS3_S3_i', + 'Header' => 'consoleappender.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9425520' - }, - '1' => { - 'name' => 'fileName1', - 'type' => '51133' - }, - '2' => { - 'name' => 'shortFileName1', - 'type' => '51133' - }, - '3' => { - 'name' => 'methodName1', - 'type' => '51133' - }, - '4' => { - 'name' => 'lineNumber1', - 'type' => '50231' + 'type' => '7876266' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi', - '2' => 'rdx', - '3' => 'rcx', - '4' => 'r8' - }, - 'ShortName' => 'LocationInfo', - 'Source' => 'locationinfo.cpp', - 'SourceLine' => '43' + 'ShortName' => 'ClazzConsoleAppender' }, - '9527074' => { - 'Class' => '9526953', - 'Const' => 1, - 'Header' => 'locationinfofilter.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter7getNameB5cxx11Ev', + '8021297' => { + 'Artificial' => 1, + 'Class' => '3122015', + 'Constructor' => 1, + 'Header' => 'consoleappender.h', + 'InLine' => 1, + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530649' + 'type' => '7876266' } }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzConsoleAppender' }, - '9527113' => { - 'Class' => '9526953', - 'Const' => 1, - 'Header' => 'locationinfofilter.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv', + '8415531' => { + 'Class' => '5647120', + 'Destructor' => 1, + 'Header' => 'cyclicbuffer.h', + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7helpers12CyclicBufferD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530649' + 'type' => '8373722' } }, - 'Return' => '9530540', - 'ShortName' => 'newInstance', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'CyclicBuffer', + 'Source' => 'cyclicbuffer.cpp', + 'SourceLine' => '58' }, - '9527152' => { - 'Artificial' => 1, - 'Class' => '9526953', - 'Header' => 'locationinfofilter.h', - 'InLine' => 2, - 'Line' => '45', - 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv', + '8417491' => { + 'Class' => '5647120', + 'Constructor' => 1, + 'Header' => 'cyclicbuffer.h', + 'Line' => '49', + 'MnglName' => '_ZN7log4cxx7helpers12CyclicBufferC2Ei', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530649' + 'type' => '8373722' + }, + '1' => { + 'name' => 'maxSize1', + 'type' => '190263' } }, - 'Return' => '9530540', - 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv' + 'ShortName' => 'CyclicBuffer', + 'Source' => 'cyclicbuffer.cpp', + 'SourceLine' => '45' }, - '9527422' => { - 'Class' => '9526935', + '8690774' => { + 'Class' => '1914272', 'Const' => 1, - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter8getClassEv', + 'Header' => 'date.h', + 'MnglName' => '_ZNK7log4cxx7helpers4Date8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530574' + 'type' => '8698023' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '48', + 'Source' => 'date.cpp', + 'SourceLine' => '29', 'Virt' => 1, 'VirtPos' => '2' }, - '9527461' => { - 'Class' => '9526935', - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter14getStaticClassEv', - 'Return' => '64678', + '8690811' => { + 'Class' => '1914272', + 'Header' => 'date.h', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers4Date14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '48', + 'Source' => 'date.cpp', + 'SourceLine' => '29', 'Static' => 1 }, - '9527478' => { - 'Class' => '9526935', - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter13registerClassEv', - 'Return' => '64684', + '8690827' => { + 'Class' => '1914272', + 'Header' => 'date.h', + 'MnglName' => '_ZN7log4cxx7helpers4Date13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '48', + 'Source' => 'date.cpp', + 'SourceLine' => '29', 'Static' => 1 }, - '9527495' => { - 'Class' => '9526935', + '8690843' => { + 'Class' => '1914272', 'Const' => 1, - 'Header' => 'locationinfofilter.h', + 'Header' => 'date.h', 'InLine' => 2, - 'Line' => '46', - 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter4castERKNS_7helpers5ClassE', + 'Line' => '41', + 'MnglName' => '_ZNK7log4cxx7helpers4Date4castERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530574' + 'type' => '8698023' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '9527539' => { - 'Class' => '9526935', + '8690885' => { + 'Class' => '1914272', 'Const' => 1, - 'Header' => 'locationinfofilter.h', + 'Header' => 'date.h', 'InLine' => 2, - 'Line' => '49', - 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter10instanceofERKNS_7helpers5ClassE', + 'Line' => '43', + 'MnglName' => '_ZNK7log4cxx7helpers4Date10instanceofERKNS0_5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530574' + 'type' => '8698023' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '9527663' => { - 'Class' => '9526935', - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530546' - }, - '1' => { - 'name' => 'option', - 'type' => '263006' - }, - '2' => { - 'name' => 'value', - 'type' => '263006' - } - }, - 'Return' => '1', - 'ShortName' => 'setOption', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '57', - 'Virt' => 1, - 'VirtPos' => '6' - }, - '9527709' => { - 'Class' => '9526935', - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter13setLineNumberEi', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530546' - }, - '1' => { - 'name' => 'lineNum', - 'type' => '50231' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setLineNumber', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '134' - }, - '9527741' => { - 'Class' => '9526935', - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter13setMethodNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '8691050' => { + 'Class' => '1914272', + 'Const' => 1, + 'Header' => 'date.h', + 'Line' => '57', + 'MnglName' => '_ZNK7log4cxx7helpers4Date13getNextSecondEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530546' - }, - '1' => { - 'name' => 'methodName', - 'type' => '263006' + 'type' => '8698023' } }, - 'Return' => '1', - 'ShortName' => 'setMethodName', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '138' + 'Return' => '1914488', + 'ShortName' => 'getNextSecond', + 'Source' => 'date.cpp', + 'SourceLine' => '58' }, - '9527773' => { - 'Class' => '9526935', - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter16setAcceptOnMatchEb', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530546' - }, - '1' => { - 'name' => 'acceptOnMatch1', - 'type' => '50284' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'Return' => '1', - 'ShortName' => 'setAcceptOnMatch', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '114' + '8691080' => { + 'Class' => '1914272', + 'Header' => 'date.h', + 'MnglName' => '_ZN7log4cxx7helpers4Date21getMicrosecondsPerDayEv', + 'Return' => '1914488', + 'ShortName' => 'getMicrosecondsPerDay', + 'Source' => 'date.cpp', + 'SourceLine' => '47', + 'Static' => 1 }, - '9527805' => { - 'Class' => '9526935', - 'Const' => 1, - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter16getAcceptOnMatchEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530574' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAcceptOnMatch', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '119' + '8691096' => { + 'Class' => '1914272', + 'Header' => 'date.h', + 'MnglName' => '_ZN7log4cxx7helpers4Date24getMicrosecondsPerSecondEv', + 'Return' => '1914488', + 'ShortName' => 'getMicrosecondsPerSecond', + 'Source' => 'date.cpp', + 'SourceLine' => '52', + 'Static' => 1 }, - '9527836' => { - 'Class' => '9526935', - 'Const' => 1, - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter15getMustMatchAllEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530574' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getMustMatchAll', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '124' + '8691112' => { + 'Class' => '1914272', + 'Header' => 'date.h', + 'MnglName' => '_ZN7log4cxx7helpers4Date17getCurrentTimeStdEv', + 'Return' => '1914488', + 'ShortName' => 'getCurrentTimeStd', + 'Source' => 'date.cpp', + 'SourceLine' => '71', + 'Static' => 1 }, - '9527867' => { - 'Class' => '9526935', - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter15setMustMatchAllEb', + '8691144' => { + 'Class' => '1914272', + 'Header' => 'date.h', + 'MnglName' => '_ZN7log4cxx7helpers4Date25setGetCurrentTimeFunctionESt8functionIFlvEE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9530546' - }, - '1' => { - 'name' => 'mustMatchAll1', - 'type' => '50284' + 'name' => 'fn', + 'type' => '8690714' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'setMustMatchAll', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '129' - }, - '9527899' => { - 'Class' => '9526935', - 'Const' => 1, - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZNK7log4cxx6filter18LocationInfoFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530574' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - } - }, - 'Return' => '151101', - 'ShortName' => 'decide', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '80', - 'Virt' => 1, - 'VirtPos' => '7' + 'ShortName' => 'setGetCurrentTimeFunction', + 'Source' => 'date.cpp', + 'SourceLine' => '63', + 'Static' => 1 }, - '9527956' => { + '8692005' => { 'Data' => 1, - 'Line' => '48', - 'MnglName' => '_ZN7log4cxx7classes30LocationInfoFilterRegistrationE', + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7classes16DateRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LocationInfoFilterRegistration', - 'Source' => 'locationinfofilter.cpp' - }, - '9541661' => { - 'Artificial' => 1, - 'Class' => '9527179', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530060' - } - }, - 'ShortName' => 'LocationInfoFilterPrivate', - 'Source' => 'locationinfofilter.cpp', - 'Virt' => 1 - }, - '9541662' => { - 'Artificial' => 1, - 'Class' => '9527179', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530060' - } - }, - 'ShortName' => 'LocationInfoFilterPrivate', - 'Source' => 'locationinfofilter.cpp', - 'Virt' => 1 - }, - '9543072' => { - 'Artificial' => 1, - 'Class' => '9527179', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '34', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530060' - } - }, - 'ShortName' => 'LocationInfoFilterPrivate', - 'Source' => 'locationinfofilter.cpp', - 'Virt' => 1 + 'Return' => '210733', + 'ShortName' => 'DateRegistration', + 'Source' => 'date.cpp' }, - '9547008' => { + '8703230' => { 'Artificial' => 1, - 'Class' => '9524830', + 'Class' => '8690155', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEED2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9529935' + 'type' => '8697515' } }, 'ShortName' => 'WideLife' }, - '9547009' => { + '8703231' => { 'Artificial' => 1, - 'Class' => '9524830', + 'Class' => '8690155', 'Destructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEED0Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9529935' + 'type' => '8697515' } }, 'ShortName' => 'WideLife' }, - '9547150' => { + '8703372' => { 'Artificial' => 1, - 'Class' => '9524830', + 'Class' => '8690155', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEEC2Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9529935' + 'type' => '8697515' } }, 'ShortName' => 'WideLife' }, - '9547151' => { + '8703373' => { 'Artificial' => 1, - 'Class' => '9524830', + 'Class' => '8690155', 'Constructor' => 1, 'Header' => 'widelife.h', 'InLine' => 1, 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter18LocationInfoFilter23ClazzLocationInfoFilterEEC1Ev', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_4Date9ClazzDateEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9529935' + 'type' => '8697515' } }, 'ShortName' => 'WideLife' }, - '955992' => { - 'Class' => '841514', - 'Constructor' => 1, - 'Line' => '70', - 'MnglName' => '_ZN14DiscardSummaryC2ERKS_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '841792' - }, - '1' => { - 'name' => 'src', - 'type' => '841803' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'DiscardSummary', - 'Source' => 'asyncappender.cpp' - }, - '955993' => { - 'Class' => '841514', - 'Constructor' => 1, - 'Line' => '70', - 'MnglName' => '_ZN14DiscardSummaryC1ERKS_', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '841792' - }, - '1' => { - 'name' => 'src', - 'type' => '841803' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'DiscardSummary', - 'Source' => 'asyncappender.cpp' - }, - '9563220' => { - 'Class' => '9526935', - 'Destructor' => 1, - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530546' - } - }, - 'ShortName' => 'LocationInfoFilter', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '55', - 'Virt' => 1 - }, - '9563318' => { - 'Class' => '9526935', + '8705197' => { + 'Class' => '1914272', 'Destructor' => 1, - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterD1Ev', + 'Header' => 'date.h', + 'MnglName' => '_ZN7log4cxx7helpers4DateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530546' + 'type' => '8698008' } }, - 'ShortName' => 'LocationInfoFilter', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '55', + 'ShortName' => 'Date', + 'Source' => 'date.cpp', + 'SourceLine' => '43', 'Virt' => 1 }, - '9563514' => { - 'Class' => '9526935', + '8705292' => { + 'Class' => '1914272', 'Destructor' => 1, - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterD2Ev', + 'Header' => 'date.h', + 'MnglName' => '_ZN7log4cxx7helpers4DateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530546' + 'type' => '8698008' } }, - 'ShortName' => 'LocationInfoFilter', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '55', + 'ShortName' => 'Date', + 'Source' => 'date.cpp', + 'SourceLine' => '43', 'Virt' => 1 }, - '9563644' => { - 'Class' => '9526935', + '8705417' => { + 'Class' => '1914272', 'Constructor' => 1, - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterC1Ev', + 'Header' => 'date.h', + 'MnglName' => '_ZN7log4cxx7helpers4DateC2El', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530546' + 'type' => '8698008' + }, + '1' => { + 'name' => 't', + 'type' => '1914488' } }, - 'ShortName' => 'LocationInfoFilter', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '50' + 'ShortName' => 'Date', + 'Source' => 'date.cpp', + 'SourceLine' => '39' }, - '956474' => { - 'Class' => '841514', - 'Constructor' => 1, - 'Line' => '68', - 'MnglName' => '_ZN14DiscardSummaryC2ERKSt10shared_ptrIN7log4cxx3spi12LoggingEventEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '841792' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'DiscardSummary', - 'Source' => 'asyncappender.cpp' - }, - '956475' => { - 'Class' => '841514', - 'Constructor' => 1, - 'Line' => '68', - 'MnglName' => '_ZN14DiscardSummaryC1ERKSt10shared_ptrIN7log4cxx3spi12LoggingEventEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '841792' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' - } - }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, - 'ShortName' => 'DiscardSummary', - 'Source' => 'asyncappender.cpp' - }, - '9567677' => { - 'Class' => '9526935', + '8705540' => { + 'Class' => '1914272', 'Constructor' => 1, - 'Header' => 'locationinfofilter.h', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530546' - } - }, - 'ShortName' => 'LocationInfoFilter', - 'Source' => 'locationinfofilter.cpp', - 'SourceLine' => '50' - }, - '9575530' => { - 'Artificial' => 1, - 'Class' => '9526953', - 'Destructor' => 1, - 'Header' => 'locationinfofilter.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD0Ev', + 'Header' => 'date.h', + 'MnglName' => '_ZN7log4cxx7helpers4DateC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530638' + 'type' => '8698008' } }, - 'ShortName' => 'ClazzLocationInfoFilter', - 'Virt' => 1 + 'ShortName' => 'Date', + 'Source' => 'date.cpp', + 'SourceLine' => '35' }, - '9575531' => { + '8707797' => { 'Artificial' => 1, - 'Class' => '9526953', + 'Class' => '1914278', 'Destructor' => 1, - 'Header' => 'locationinfofilter.h', + 'Header' => 'date.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD1Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530638' + 'type' => '8698033' } }, - 'ShortName' => 'ClazzLocationInfoFilter', + 'ShortName' => 'ClazzDate', 'Virt' => 1 }, - '9575672' => { + '8707798' => { 'Artificial' => 1, - 'Class' => '9526953', + 'Class' => '1914278', 'Destructor' => 1, - 'Header' => 'locationinfofilter.h', + 'Header' => 'date.h', 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD2Ev', + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9530638' + 'type' => '8698033' } }, - 'ShortName' => 'ClazzLocationInfoFilter', + 'ShortName' => 'ClazzDate', 'Virt' => 1 }, - '9575762' => { - 'Artificial' => 1, - 'Class' => '9526953', - 'Constructor' => 1, - 'Header' => 'locationinfofilter.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530638' - } - }, - 'ShortName' => 'ClazzLocationInfoFilter' - }, - '9575763' => { - 'Artificial' => 1, - 'Class' => '9526953', - 'Constructor' => 1, - 'Header' => 'locationinfofilter.h', - 'InLine' => 1, - 'Line' => '45', - 'MnglName' => '_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9530638' - } - }, - 'ShortName' => 'ClazzLocationInfoFilter' - }, - '9679741' => { - 'Class' => '9679620', - 'Const' => 1, - 'Header' => 'logger.h', - 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx6Logger11ClazzLogger7getNameB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9687351' - } - }, - 'Return' => '63706', - 'ShortName' => 'getName', - 'Virt' => 1, - 'VirtPos' => '3' - }, - '9679799' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx6Logger14getStaticClassEv', - 'Return' => '64678', - 'ShortName' => 'getStaticClass', - 'Source' => 'logger.cpp', - 'SourceLine' => '87', - 'Static' => 1 - }, - '9679816' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6Logger13registerClassEv', - 'Return' => '64684', - 'ShortName' => 'registerClass', - 'Source' => 'logger.cpp', - 'SourceLine' => '87', - 'Static' => 1 - }, - '9679833' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger8getClassEv', + '8707942' => { + 'Artificial' => 1, + 'Class' => '1914278', + 'Destructor' => 1, + 'Header' => 'date.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '8698033' } }, - 'Return' => '64678', - 'ShortName' => 'getClass', - 'Source' => 'logger.cpp', - 'SourceLine' => '87', - 'Virt' => 1, - 'VirtPos' => '2' + 'ShortName' => 'ClazzDate', + 'Virt' => 1 }, - '9679872' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'InLine' => 2, - 'Line' => '54', - 'MnglName' => '_ZNK7log4cxx6Logger4castERKNS_7helpers5ClassE', + '8708036' => { + 'Artificial' => 1, + 'Class' => '1914278', + 'Constructor' => 1, + 'Header' => 'date.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '8698033' } }, - 'Return' => '54166', - 'ShortName' => 'cast', - 'Virt' => 1, - 'VirtPos' => '4' + 'ShortName' => 'ClazzDate' }, - '9679916' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'InLine' => 2, - 'Line' => '57', - 'MnglName' => '_ZNK7log4cxx6Logger10instanceofERKNS_7helpers5ClassE', + '8708037' => { + 'Artificial' => 1, + 'Class' => '1914278', + 'Constructor' => 1, + 'Header' => 'date.h', + 'InLine' => 1, + 'Line' => '40', + 'MnglName' => '_ZN7log4cxx7helpers4Date9ClazzDateC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'clazz', - 'type' => '64678' + 'type' => '8698033' } }, - 'Return' => '50284', - 'ShortName' => 'instanceof', - 'Virt' => 1, - 'VirtPos' => '3' + 'ShortName' => 'ClazzDate' }, - '9680076' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6Logger11addAppenderESt10shared_ptrINS_8AppenderEE', + '8888227' => { + 'Class' => '4207448', + 'Header' => 'dateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormat13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '26', + 'Static' => 1 + }, + '8888400' => { + 'Class' => '4207448', + 'Const' => 1, + 'Header' => 'dateformat.h', + 'Line' => '52', + 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9685904' + 'type' => '4213873' }, '1' => { - 'name' => 'newAppender', - 'type' => '263000' + 'name' => 'p1', + 'type' => '210592' + }, + '2' => { + 'name' => 'p2', + 'type' => '1914488' + }, + '3' => { + 'name' => 'p3', + 'type' => '210607' } }, + 'PureVirt' => 1, 'Return' => '1', - 'ShortName' => 'addAppender', - 'Source' => 'logger.cpp', - 'SourceLine' => '99', - 'Virt' => 1, + 'ShortName' => 'format', 'VirtPos' => '5' }, - '9680117' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger13callAppendersERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', + '8888449' => { + 'Class' => '4207448', + 'Header' => 'dateformat.h', + 'Line' => '58', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '4212689' }, '1' => { - 'name' => 'event', - 'type' => '154261' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' + 'name' => 'p1', + 'type' => '4213117' } }, 'Return' => '1', - 'ShortName' => 'callAppenders', - 'Source' => 'logger.cpp', - 'SourceLine' => '127' + 'ShortName' => 'setTimeZone', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '30', + 'Virt' => 1, + 'VirtPos' => '6' }, - '9680181' => { - 'Class' => '1149757', + '8888488' => { + 'Class' => '4207448', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5debugERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + 'Header' => 'dateformat.h', + 'Line' => '68', + 'MnglName' => '_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '4213878' }, '1' => { - 'name' => 'msg', - 'type' => '61535' + 'name' => 's', + 'type' => '210592' }, '2' => { - 'name' => 'location', - 'type' => '839402' + 'name' => 'n', + 'type' => '190263' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, 'Return' => '1', - 'ShortName' => 'debug', - 'Source' => 'logger.cpp', - 'SourceLine' => '625' + 'ShortName' => 'numberFormat', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '32', + 'Virt' => 1, + 'VirtPos' => '7' }, - '9680219' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5debugERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '8889656' => { + 'Data' => 1, + 'Line' => '26', + 'MnglName' => '_ZN7log4cxx7classes22DateFormatRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'DateFormatRegistration', + 'Source' => 'dateformat.cpp' + }, + '8894527' => { + 'Artificial' => 1, + 'Class' => '8887683', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' + 'type' => '8890075' } }, - 'Return' => '1', - 'ShortName' => 'debug', - 'Source' => 'logger.cpp', - 'SourceLine' => '633' + 'ShortName' => 'WideLife' }, - '9680252' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5debugERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + '8894528' => { + 'Artificial' => 1, + 'Class' => '8887683', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '8890075' } }, - 'Return' => '1', - 'ShortName' => 'debug', - 'Source' => 'logger.cpp', - 'SourceLine' => '808' + 'ShortName' => 'WideLife' }, - '9680290' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5debugERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '8894669' => { + 'Artificial' => 1, + 'Class' => '8887683', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' + 'type' => '8890075' } }, - 'Return' => '1', - 'ShortName' => 'debug', - 'Source' => 'logger.cpp', - 'SourceLine' => '816' + 'ShortName' => 'WideLife' }, - '9680323' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + '8894670' => { + 'Artificial' => 1, + 'Class' => '8887683', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_10DateFormat15ClazzDateFormatEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '8890075' } }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'logger.cpp', - 'SourceLine' => '642' + 'ShortName' => 'WideLife' }, - '9680361' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '8895401' => { + 'Class' => '4207448', + 'Destructor' => 1, + 'Header' => 'dateformat.h', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormatD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' + 'type' => '4212689' } }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'logger.cpp', - 'SourceLine' => '651' + 'ShortName' => 'DateFormat', + 'Source' => 'dateformat.cpp', + 'SourceLine' => '28', + 'Virt' => 1 }, - '9680394' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5errorERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '8897419' => { + 'Artificial' => 1, + 'Class' => '4207458', + 'Destructor' => 1, + 'Header' => 'dateformat.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' + 'type' => '8890481' } }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'logger.cpp', - 'SourceLine' => '832' + 'ShortName' => 'ClazzDateFormat', + 'Virt' => 1 }, - '9680427' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5errorERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + '8897420' => { + 'Artificial' => 1, + 'Class' => '4207458', + 'Destructor' => 1, + 'Header' => 'dateformat.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '8890481' } }, - 'Return' => '1', - 'ShortName' => 'error', - 'Source' => 'logger.cpp', - 'SourceLine' => '824' + 'ShortName' => 'ClazzDateFormat', + 'Virt' => 1 }, - '9680465' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5fatalERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + '8897564' => { + 'Artificial' => 1, + 'Class' => '4207458', + 'Destructor' => 1, + 'Header' => 'dateformat.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '8890481' } }, - 'Return' => '1', - 'ShortName' => 'fatal', - 'Source' => 'logger.cpp', - 'SourceLine' => '659' + 'ShortName' => 'ClazzDateFormat', + 'Virt' => 1 }, - '9680503' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5fatalERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '8897658' => { + 'Artificial' => 1, + 'Class' => '4207458', + 'Constructor' => 1, + 'Header' => 'dateformat.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' + 'type' => '8890481' } }, - 'Return' => '1', - 'ShortName' => 'fatal', - 'Source' => 'logger.cpp', - 'SourceLine' => '667' + 'ShortName' => 'ClazzDateFormat' }, - '9680536' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5fatalERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + '8897659' => { + 'Artificial' => 1, + 'Class' => '4207458', + 'Constructor' => 1, + 'Header' => 'dateformat.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '8890481' } }, - 'Return' => '1', - 'ShortName' => 'fatal', - 'Source' => 'logger.cpp', - 'SourceLine' => '840' + 'ShortName' => 'ClazzDateFormat' }, - '9680574' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5fatalERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '9330781' => { + 'Class' => '5648110', + 'Header' => 'simpledateformat.h', + 'Line' => '95', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9348535' }, '1' => { - 'name' => 'msg', - 'type' => '646944' + 'name' => 'zone', + 'type' => '4213117' } }, 'Return' => '1', - 'ShortName' => 'fatal', - 'Source' => 'logger.cpp', - 'SourceLine' => '848' + 'ShortName' => 'setTimeZone', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '864', + 'Virt' => 1, + 'VirtPos' => '6' }, - '9680607' => { - 'Class' => '1149757', + '9330820' => { + 'Class' => '5648110', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger8addEventERKSt10shared_ptrINS_5LevelEEONSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + 'Header' => 'simpledateformat.h', + 'Line' => '87', + 'MnglName' => '_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '42544991' }, '1' => { - 'name' => 'level', - 'type' => '412081' + 'name' => 's', + 'type' => '210592' }, '2' => { - 'name' => 'message', - 'type' => '9687292' + 'name' => 'time', + 'type' => '1914488' }, '3' => { - 'name' => 'location', - 'type' => '839402' + 'name' => 'p', + 'type' => '210607' } }, 'Return' => '1', - 'ShortName' => 'addEvent', - 'Source' => 'logger.cpp', - 'SourceLine' => '161' + 'ShortName' => 'format', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '850', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '9333425' => { + 'Class' => '4208199', + 'Header' => 'timezone.h', + 'Line' => '43', + 'MnglName' => '_ZN7log4cxx7helpers8TimeZone11getTimeZoneERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'id', + 'type' => '210597' + } + }, + 'Return' => '4207815', + 'ShortName' => 'getTimeZone', + 'Source' => 'timezone.cpp', + 'SourceLine' => '201', + 'Static' => 1 }, - '9680649' => { - 'Class' => '1149757', + '9334997' => { + 'Class' => '9334884', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger9forcedLogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + 'Header' => 'datepatternconverter.h', + 'InLine' => 2, + 'Line' => '46', + 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level', - 'type' => '412081' - }, - '2' => { - 'name' => 'message', - 'type' => '61535' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '9351677' } }, - 'Return' => '1', - 'ShortName' => 'forcedLog', - 'Source' => 'logger.cpp', - 'SourceLine' => '175' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '9335253' => { + 'Class' => '9334866', + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter13getDateFormatERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'options', + 'type' => '9351288' + } + }, + 'Private' => 1, + 'Return' => '4207786', + 'ShortName' => 'getDateFormat', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '61', + 'Static' => 1 + }, + '9335279' => { + 'Class' => '9334866', + 'Header' => 'datepatternconverter.h', + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '50', + 'Static' => 1 }, - '9680691' => { - 'Class' => '1149757', + '9335296' => { + 'Class' => '9334866', + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '50', + 'Static' => 1 + }, + '9335313' => { + 'Class' => '9334866', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger9forcedLogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'message', - 'type' => '61535' + 'type' => '9351023' } }, - 'Return' => '1', - 'ShortName' => 'forcedLog', - 'Source' => 'logger.cpp', - 'SourceLine' => '190' + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '50', + 'Virt' => 1, + 'VirtPos' => '2' }, - '9680728' => { - 'Class' => '1149757', + '9335351' => { + 'Class' => '9334866', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger8addEventERKSt10shared_ptrINS_5LevelEEONSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + 'Header' => 'datepatternconverter.h', + 'InLine' => 2, + 'Line' => '47', + 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9351023' }, '1' => { - 'name' => 'level', - 'type' => '412081' - }, - '2' => { - 'name' => 'message', - 'type' => '9687298' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '1', - 'ShortName' => 'addEvent', - 'Source' => 'logger.cpp', - 'SourceLine' => '742' + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' }, - '9680771' => { - 'Class' => '1149757', + '9335394' => { + 'Class' => '9334866', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger9forcedLogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + 'Header' => 'datepatternconverter.h', + 'InLine' => 2, + 'Line' => '50', + 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9351023' }, '1' => { - 'name' => 'level', - 'type' => '412081' - }, - '2' => { - 'name' => 'message', - 'type' => '646944' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' + 'name' => 'clazz', + 'type' => '210728' } }, - 'Return' => '1', - 'ShortName' => 'forcedLog', - 'Source' => 'logger.cpp', - 'SourceLine' => '756' + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '9335519' => { + 'Class' => '9334866', + 'Header' => 'datepatternconverter.h', + 'Line' => '75', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'options', + 'type' => '6085700' + } + }, + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '133', + 'Static' => 1 }, - '9680814' => { - 'Class' => '1149757', + '9335546' => { + 'Class' => '9334866', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger9forcedLogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9351023' }, '1' => { - 'name' => 'level1', - 'type' => '412081' + 'name' => 'event', + 'type' => '576659' }, '2' => { - 'name' => 'message', - 'type' => '646944' + 'name' => 'toAppendTo', + 'type' => '210592' + }, + '3' => { + 'name' => 'p', + 'type' => '210607' } }, 'Return' => '1', - 'ShortName' => 'forcedLog', - 'Source' => 'logger.cpp', - 'SourceLine' => '771' + 'ShortName' => 'format', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '139', + 'Virt' => 1, + 'VirtPos' => '7' }, - '9680852' => { - 'Class' => '1149757', + '9335595' => { + 'Class' => '9334866', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger10addEventLSERKSt10shared_ptrINS_5LevelEEONSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9351023' }, '1' => { - 'name' => 'level', - 'type' => '412081' + 'name' => 'obj', + 'type' => '575817' }, '2' => { - 'name' => 'message', - 'type' => '9687304' + 'name' => 'toAppendTo', + 'type' => '210592' }, '3' => { - 'name' => 'location', - 'type' => '839402' + 'name' => 'p', + 'type' => '210607' } }, 'Return' => '1', - 'ShortName' => 'addEventLS', - 'Source' => 'logger.cpp', - 'SourceLine' => '195' + 'ShortName' => 'format', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '150', + 'Virt' => 1, + 'VirtPos' => '5' }, - '9680894' => { - 'Class' => '1149757', + '9335644' => { + 'Class' => '9334866', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger11forcedLogLSERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_7helpers4DateEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9351023' }, '1' => { - 'name' => 'level1', - 'type' => '412081' + 'name' => 'date', + 'type' => '9351303' }, '2' => { - 'name' => 'message', - 'type' => '263006' + 'name' => 'toAppendTo', + 'type' => '210592' }, '3' => { - 'name' => 'location', - 'type' => '839402' + 'name' => 'p', + 'type' => '210607' } }, 'Return' => '1', - 'ShortName' => 'forcedLogLS', - 'Source' => 'logger.cpp', - 'SourceLine' => '204' + 'ShortName' => 'format', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '177' }, - '9680936' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger13getAdditivityEv', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9687264' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAdditivity', - 'Source' => 'logger.cpp', - 'SourceLine' => '215' + '9337119' => { + 'Class' => '564699', + 'Header' => 'loggingevent.h', + 'Line' => '53', + 'MnglName' => '_ZN7log4cxx3spi12LoggingEvent14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '168', + 'Static' => 1 }, - '9680967' => { - 'Class' => '1149757', + '9337136' => { + 'Class' => '564699', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger15getAllAppendersEv', + 'Header' => 'loggingevent.h', + 'Line' => '127', + 'MnglName' => '_ZNK7log4cxx3spi12LoggingEvent12getTimeStampEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '26822716' } }, - 'Return' => '262971', - 'ShortName' => 'getAllAppenders', - 'Source' => 'logger.cpp', - 'SourceLine' => '220', - 'Virt' => 1, - 'VirtPos' => '6' + 'Return' => '1914488', + 'ShortName' => 'getTimeStamp', + 'Source' => 'loggingevent.cpp', + 'SourceLine' => '474' }, - '9681006' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'name1', - 'type' => '263006' - } - }, - 'Return' => '262988', - 'ShortName' => 'getAppender', - 'Source' => 'logger.cpp', - 'SourceLine' => '225', - 'Virt' => 1, - 'VirtPos' => '7' + '9338518' => { + 'Data' => 1, + 'Line' => '50', + 'MnglName' => '_ZN7log4cxx7classes32DatePatternConverterRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'DatePatternConverterRegistration', + 'Source' => 'datepatternconverter.cpp' }, - '9681050' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger17getEffectiveLevelEv', + '9338699' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_3spi12LoggingEventENS_7helpers6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS5_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9687264' + 'name' => 'incoming', + 'type' => '1937382' } }, - 'Return' => '412081', - 'ShortName' => 'getEffectiveLevel', - 'Source' => 'logger.cpp', - 'SourceLine' => '230', - 'Virt' => 1, - 'VirtPos' => '12' + 'Return' => '517723', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '564699' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '9681152' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger7getNameERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9338743' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7helpers4DateENS1_6ObjectELb0ELb1EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'rv', - 'type' => '650733' + 'name' => 'incoming', + 'type' => '1937382' } }, - 'Return' => '1', - 'ShortName' => 'getName', - 'Source' => 'logger.cpp', - 'SourceLine' => '602' + 'Return' => '9226878', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '1914272' + }, + '1' => { + 'key' => 'Type', + 'type' => '209311' + } + } }, - '9681185' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger7getNameERNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '9352990' => { + 'Constructor' => 1, + 'Header' => 'cacheddateformat.h', + 'Line' => '96', + 'MnglName' => '_ZN7log4cxx7pattern16CachedDateFormatC1ERKSt10shared_ptrINS_7helpers10DateFormatEEi', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '4213097' }, '1' => { - 'name' => 'rv', - 'type' => '650739' + 'name' => 'dateFormat', + 'type' => '4213102' + }, + '2' => { + 'name' => 'expiration', + 'type' => '190263' } - }, - 'Return' => '1', - 'ShortName' => 'getName', - 'Source' => 'logger.cpp', - 'SourceLine' => '776' + } }, - '9681250' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'Line' => '702', - 'MnglName' => '_ZNK7log4cxx6Logger8getLevelEv', + '9353041' => { + 'Constructor' => 1, + 'Header' => 'strftimedateformat.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7helpers18StrftimeDateFormatC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - } - }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '412081', - 'ShortName' => 'getLevel', - 'Source' => 'logger.cpp', - 'SourceLine' => '303' - }, - '9681282' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '708', - 'MnglName' => '_ZN7log4cxx6Logger9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', - 'Param' => { - '0' => { - 'name' => 'name', - 'type' => '61535' + 'type' => '9348656' + }, + '1' => { + 'name' => 'pattern', + 'type' => '210597' } - }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'logger.cpp', - 'SourceLine' => '575', - 'Static' => 1 + } }, - '9681310' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '713', - 'MnglName' => '_ZN7log4cxx6Logger9getLoggerEPKc', + '9353080' => { + 'Constructor' => 1, + 'Header' => 'simpledateformat.h', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'name', - 'type' => '51133' + 'name' => 'this', + 'type' => '9348535' + }, + '1' => { + 'name' => 'pattern', + 'type' => '210597' } - }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'logger.cpp', - 'SourceLine' => '581', - 'Static' => 1 + } }, - '9681338' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '719', - 'MnglName' => '_ZN7log4cxx6Logger9getLoggerERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '9353119' => { + 'Class' => '5648110', + 'Destructor' => 1, + 'Header' => 'simpledateformat.h', + 'Line' => '85', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatD2Ev', 'Param' => { '0' => { - 'name' => 'name', - 'type' => '646944' + 'name' => 'this', + 'type' => '9348535' } }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'logger.cpp', - 'SourceLine' => '781', - 'Static' => 1 + 'ShortName' => 'SimpleDateFormat', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '841', + 'Virt' => 1 }, - '9681366' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '724', - 'MnglName' => '_ZN7log4cxx6Logger9getLoggerEPKw', + '9353120' => { + 'Class' => '5648110', + 'Destructor' => 1, + 'Header' => 'simpledateformat.h', + 'Line' => '85', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatD1Ev', 'Param' => { '0' => { - 'name' => 'name', - 'type' => '636552' + 'name' => 'this', + 'type' => '9348535' } }, - 'Return' => '1150380', - 'ShortName' => 'getLogger', - 'Source' => 'logger.cpp', - 'SourceLine' => '786', - 'Static' => 1 + 'ShortName' => 'SimpleDateFormat', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '841', + 'Virt' => 1 }, - '9681394' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6Logger11getLoggerLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9353161' => { + 'Class' => '5648110', + 'Constructor' => 1, + 'Header' => 'simpledateformat.h', + 'Line' => '77', + 'MnglName' => '_ZN7log4cxx7helpers16SimpleDateFormatC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', 'Param' => { '0' => { - 'name' => 'name', - 'type' => '263006' + 'name' => 'this', + 'type' => '9348535' + }, + '1' => { + 'name' => 'fmt', + 'type' => '210597' } }, - 'Return' => '1150380', - 'ShortName' => 'getLoggerLS', - 'Source' => 'logger.cpp', - 'SourceLine' => '733', - 'Static' => 1 + 'ShortName' => 'SimpleDateFormat', + 'Source' => 'simpledateformat.cpp', + 'SourceLine' => '815' }, - '9681441' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6Logger11getLoggerLSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE', + '9370188' => { + 'Artificial' => 1, + 'Class' => '9332978', + 'Destructor' => 1, + 'Header' => 'absolutetimedateformat.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD0Ev', 'Param' => { '0' => { - 'name' => 'name', - 'type' => '263006' - }, - '1' => { - 'name' => 'factory', - 'type' => '1152981' + 'name' => 'this', + 'type' => '9348345' } }, - 'Return' => '1150380', - 'ShortName' => 'getLoggerLS', - 'Source' => 'logger.cpp', - 'SourceLine' => '596', - 'Static' => 1 + 'ShortName' => 'AbsoluteTimeDateFormat', + 'Virt' => 1 }, - '9681540' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger17getResourceBundleEv', + '9370189' => { + 'Artificial' => 1, + 'Class' => '9332978', + 'Destructor' => 1, + 'Header' => 'absolutetimedateformat.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9348345' } }, - 'Return' => '9677043', - 'ShortName' => 'getResourceBundle', - 'Source' => 'logger.cpp', - 'SourceLine' => '256' + 'ShortName' => 'AbsoluteTimeDateFormat', + 'Virt' => 1 }, - '9681572' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger23getResourceBundleStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9370334' => { + 'Artificial' => 1, + 'Class' => '9332978', + 'Destructor' => 1, + 'Header' => 'absolutetimedateformat.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'key', - 'type' => '263006' + 'type' => '9348345' } }, - 'Protected' => 1, - 'Return' => '63706', - 'ShortName' => 'getResourceBundleString', - 'Source' => 'logger.cpp', - 'SourceLine' => '271' + 'ShortName' => 'AbsoluteTimeDateFormat', + 'Virt' => 1 }, - '9681609' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger4infoERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + '9370440' => { + 'Artificial' => 1, + 'Class' => '9333119', + 'Destructor' => 1, + 'Header' => 'datetimedateformat.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '9348440' } }, - 'Return' => '1', - 'ShortName' => 'info', - 'Source' => 'logger.cpp', - 'SourceLine' => '675' + 'ShortName' => 'DateTimeDateFormat', + 'Virt' => 1 }, - '9681647' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger4infoERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9370441' => { + 'Artificial' => 1, + 'Class' => '9333119', + 'Destructor' => 1, + 'Header' => 'datetimedateformat.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' + 'type' => '9348440' } }, - 'Return' => '1', - 'ShortName' => 'info', - 'Source' => 'logger.cpp', - 'SourceLine' => '683' + 'ShortName' => 'DateTimeDateFormat', + 'Virt' => 1 }, - '9681680' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger4infoERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + '9370586' => { + 'Artificial' => 1, + 'Class' => '9333119', + 'Destructor' => 1, + 'Header' => 'datetimedateformat.h', + 'InLine' => 1, + 'Line' => '31', + 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '9348440' } }, - 'Return' => '1', - 'ShortName' => 'info', - 'Source' => 'logger.cpp', - 'SourceLine' => '856' + 'ShortName' => 'DateTimeDateFormat', + 'Virt' => 1 }, - '9681718' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger4infoERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '9370692' => { + 'Artificial' => 1, + 'Class' => '5649596', + 'Destructor' => 1, + 'Header' => 'iso8601dateformat.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' + 'type' => '9348250' } }, - 'Return' => '1', - 'ShortName' => 'info', - 'Source' => 'logger.cpp', - 'SourceLine' => '864' + 'ShortName' => 'ISO8601DateFormat', + 'Virt' => 1 }, - '9681751' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger10isAttachedESt10shared_ptrINS_8AppenderEE', + '9370693' => { + 'Artificial' => 1, + 'Class' => '5649596', + 'Destructor' => 1, + 'Header' => 'iso8601dateformat.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'appender', - 'type' => '263000' + 'type' => '9348250' } }, - 'Return' => '50284', - 'ShortName' => 'isAttached', - 'Source' => 'logger.cpp', - 'SourceLine' => '308', - 'Virt' => 1, - 'VirtPos' => '8' + 'ShortName' => 'ISO8601DateFormat', + 'Virt' => 1 }, - '9681797' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger14isDebugEnabledEv', + '9370838' => { + 'Artificial' => 1, + 'Class' => '5649596', + 'Destructor' => 1, + 'Header' => 'iso8601dateformat.h', + 'InLine' => 1, + 'Line' => '36', + 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9348250' } }, - 'Return' => '50284', - 'ShortName' => 'isDebugEnabled', - 'Source' => 'logger.cpp', - 'SourceLine' => '325' + 'ShortName' => 'ISO8601DateFormat', + 'Virt' => 1 }, - '9681857' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'Line' => '1058', - 'MnglName' => '_ZNK7log4cxx6Logger12isEnabledForERKSt10shared_ptrINS_5LevelEE', + '939124' => { + 'Class' => '558569', + 'Header' => 'appenderattachableimpl.h', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '29', + 'Static' => 1 + }, + '939140' => { + 'Class' => '558569', + 'Header' => 'appenderattachableimpl.h', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl13registerClassEv', + 'Return' => '210733', + 'ShortName' => 'registerClass', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '29', + 'Static' => 1 + }, + '939156' => { + 'Class' => '558569', + 'Const' => 1, + 'Header' => 'appenderattachableimpl.h', + 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955438' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '29', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '939193' => { + 'Class' => '558569', + 'Const' => 1, + 'Header' => 'appenderattachableimpl.h', + 'InLine' => 2, + 'Line' => '55', + 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl4castERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955438' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '195352', + 'ShortName' => 'cast', + 'Virt' => 1, + 'VirtPos' => '4' + }, + '939235' => { + 'Class' => '558569', + 'Const' => 1, + 'Header' => 'appenderattachableimpl.h', + 'InLine' => 2, + 'Line' => '58', + 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl10instanceofERKNS0_5ClassE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955438' + }, + '1' => { + 'name' => 'clazz', + 'type' => '210728' + } + }, + 'Return' => '174077', + 'ShortName' => 'instanceof', + 'Virt' => 1, + 'VirtPos' => '3' + }, + '939277' => { + 'Class' => '558569', + 'Header' => 'appenderattachableimpl.h', + 'Line' => '64', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl11addAppenderESt10shared_ptrINS_8AppenderEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955418' + }, + '1' => { + 'name' => 'newAppender', + 'type' => '946706' + } + }, + 'Return' => '1', + 'ShortName' => 'addAppender', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '49', + 'Virt' => 1, + 'VirtPos' => '5' + }, + '939316' => { + 'Class' => '558569', + 'Header' => 'appenderattachableimpl.h', + 'Line' => '69', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl21appendLoopOnAppendersERKSt10shared_ptrINS_3spi12LoggingEventEERNS0_4PoolE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955418' + }, + '1' => { + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' + } + }, + 'Return' => '190263', + 'ShortName' => 'appendLoopOnAppenders', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '67' + }, + '939357' => { + 'Class' => '558569', + 'Const' => 1, + 'Header' => 'appenderattachableimpl.h', + 'Line' => '75', + 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl15getAllAppendersEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955438' + } + }, + 'Return' => '946544', + 'ShortName' => 'getAllAppenders', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '86', + 'Virt' => 1, + 'VirtPos' => '6' + }, + '939394' => { + 'Class' => '558569', + 'Const' => 1, + 'Header' => 'appenderattachableimpl.h', + 'Line' => '80', + 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955438' + }, + '1' => { + 'name' => 'name', + 'type' => '210597' + } + }, + 'Return' => '946694', + 'ShortName' => 'getAppender', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '92', + 'Virt' => 1, + 'VirtPos' => '7' + }, + '939436' => { + 'Class' => '558569', + 'Const' => 1, + 'Header' => 'appenderattachableimpl.h', + 'Line' => '86', + 'MnglName' => '_ZNK7log4cxx7helpers22AppenderAttachableImpl10isAttachedESt10shared_ptrINS_8AppenderEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955438' + }, + '1' => { + 'name' => 'appender', + 'type' => '946706' + } + }, + 'Return' => '174077', + 'ShortName' => 'isAttached', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '116', + 'Virt' => 1, + 'VirtPos' => '8' + }, + '939478' => { + 'Class' => '558569', + 'Header' => 'appenderattachableimpl.h', + 'Line' => '91', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl18removeAllAppendersEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955418' + } + }, + 'Return' => '1', + 'ShortName' => 'removeAllAppenders', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '130', + 'Virt' => 1, + 'VirtPos' => '9' + }, + '939512' => { + 'Class' => '558569', + 'Header' => 'appenderattachableimpl.h', + 'Line' => '96', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl14removeAppenderESt10shared_ptrINS_8AppenderEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955418' + }, + '1' => { + 'name' => 'appender', + 'type' => '946706' + } + }, + 'Return' => '1', + 'ShortName' => 'removeAppender', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '145', + 'Virt' => 1, + 'VirtPos' => '10' + }, + '939551' => { + 'Class' => '558569', + 'Header' => 'appenderattachableimpl.h', + 'MnglName' => '_ZN7log4cxx7helpers22AppenderAttachableImpl14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '955418' + }, + '1' => { + 'name' => 'name', + 'type' => '210597' + } + }, + 'Return' => '1', + 'ShortName' => 'removeAppender', + 'Source' => 'appenderattachableimpl.cpp', + 'SourceLine' => '162', + 'Virt' => 1, + 'VirtPos' => '11' + }, + '9402321' => { + 'Artificial' => 1, + 'Class' => '9335037', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' + 'type' => '9347740' } }, - 'Return' => '50284', - 'ShortName' => 'isEnabledFor', - 'Source' => 'logger.cpp', - 'SourceLine' => '337' + 'ShortName' => 'DatePatternConverterPrivate', + 'Source' => 'datepatternconverter.cpp', + 'Virt' => 1 }, - '9681894' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger13isInfoEnabledEv', + '9402322' => { + 'Artificial' => 1, + 'Class' => '9335037', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9347740' } }, - 'Return' => '50284', - 'ShortName' => 'isInfoEnabled', - 'Source' => 'logger.cpp', - 'SourceLine' => '350' + 'ShortName' => 'DatePatternConverterPrivate', + 'Source' => 'datepatternconverter.cpp', + 'Virt' => 1 }, - '9681954' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger13isWarnEnabledEv', + '9404416' => { + 'Artificial' => 1, + 'Class' => '9335037', + 'Destructor' => 1, + 'InLine' => 1, + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9347740' } }, - 'Return' => '50284', - 'ShortName' => 'isWarnEnabled', - 'Source' => 'logger.cpp', - 'SourceLine' => '374' + 'ShortName' => 'DatePatternConverterPrivate', + 'Source' => 'datepatternconverter.cpp', + 'Virt' => 1 }, - '9682014' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger14isErrorEnabledEv', + '9421079' => { + 'Artificial' => 1, + 'Class' => '9332078', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEED2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9347629' } }, - 'Return' => '50284', - 'ShortName' => 'isErrorEnabled', - 'Source' => 'logger.cpp', - 'SourceLine' => '362' + 'ShortName' => 'WideLife' }, - '9682074' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger14isFatalEnabledEv', + '9421080' => { + 'Artificial' => 1, + 'Class' => '9332078', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEED0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9347629' } }, - 'Return' => '50284', - 'ShortName' => 'isFatalEnabled', - 'Source' => 'logger.cpp', - 'SourceLine' => '386' + 'ShortName' => 'WideLife' }, - '9682134' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger14isTraceEnabledEv', + '9421221' => { + 'Artificial' => 1, + 'Class' => '9332078', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEEC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9347629' } }, - 'Return' => '50284', - 'ShortName' => 'isTraceEnabled', - 'Source' => 'logger.cpp', - 'SourceLine' => '313' + 'ShortName' => 'WideLife' }, - '9682194' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoERKSt6vectorISB_SaISB_EE', + '9421222' => { + 'Artificial' => 1, + 'Class' => '9332078', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_7pattern20DatePatternConverter25ClazzDatePatternConverterEEC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'key', - 'type' => '263006' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' - }, - '4' => { - 'name' => 'params', - 'type' => '2273842' + 'type' => '9347629' } }, - 'Return' => '1', - 'ShortName' => 'l7dlog', - 'Source' => 'logger.cpp', - 'SourceLine' => '425' + 'ShortName' => 'WideLife' }, - '9682242' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + '945190' => { + 'Class' => '566027', + 'Const' => 1, + 'Header' => 'appenderattachable.h', + 'Line' => '37', + 'MnglName' => '_ZNK7log4cxx3spi18AppenderAttachable8getClassEv', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '24285561' + } + }, + 'Return' => '210728', + 'ShortName' => 'getClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '46', + 'Virt' => 1, + 'VirtPos' => '2' + }, + '945227' => { + 'Class' => '566027', + 'Header' => 'appenderattachable.h', + 'Line' => '37', + 'MnglName' => '_ZN7log4cxx3spi18AppenderAttachable14getStaticClassEv', + 'Return' => '210728', + 'ShortName' => 'getStaticClass', + 'Source' => 'loader.cpp', + 'SourceLine' => '46', + 'Static' => 1 + }, + '946527' => { + 'Data' => 1, + 'Line' => '29', + 'MnglName' => '_ZN7log4cxx7classes34AppenderAttachableImplRegistrationE', + 'NameSpace' => 'log4cxx::classes', + 'Return' => '210733', + 'ShortName' => 'AppenderAttachableImplRegistration', + 'Source' => 'appenderattachableimpl.cpp' + }, + '9471323' => { + 'Class' => '9334866', + 'Destructor' => 1, + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'key', - 'type' => '61535' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '9349021' } }, - 'Return' => '1', - 'ShortName' => 'l7dlog', - 'Source' => 'logger.cpp', - 'SourceLine' => '453' + 'ShortName' => 'DatePatternConverter', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '59', + 'Virt' => 1 }, - '9682285' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoESD_', + '9471421' => { + 'Class' => '9334866', + 'Destructor' => 1, + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'key', - 'type' => '61535' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' - }, - '4' => { - 'name' => 'val1', - 'type' => '61535' + 'type' => '9349021' } }, - 'Return' => '1', - 'ShortName' => 'l7dlog', - 'Source' => 'logger.cpp', - 'SourceLine' => '462' + 'ShortName' => 'DatePatternConverter', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '59', + 'Virt' => 1 }, - '9682333' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoESD_SD_', + '9471616' => { + 'Class' => '9334866', + 'Destructor' => 1, + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'key', - 'type' => '61535' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' - }, - '4' => { - 'name' => 'val1', - 'type' => '61535' - }, - '5' => { - 'name' => 'val2', - 'type' => '61535' + 'type' => '9349021' } }, - 'Return' => '1', - 'ShortName' => 'l7dlog', - 'Source' => 'logger.cpp', - 'SourceLine' => '473' + 'ShortName' => 'DatePatternConverter', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '59', + 'Virt' => 1 }, - '9682386' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger6l7dlogERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoESD_SD_SD_', + '9471823' => { + 'Class' => '9334866', + 'Constructor' => 1, + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterC1ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9349021' }, '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'key', - 'type' => '61535' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' - }, - '4' => { - 'name' => 'val1', - 'type' => '61535' - }, - '5' => { - 'name' => 'val2', - 'type' => '61535' - }, - '6' => { - 'name' => 'val3', - 'offset' => '0', - 'type' => '61535' + 'name' => 'options', + 'type' => '6085700' } }, - 'Return' => '1', - 'ShortName' => 'l7dlog', - 'Source' => 'logger.cpp', - 'SourceLine' => '487' + 'ShortName' => 'DatePatternConverter', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '52' }, - '9682646' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'Line' => '1550', - 'MnglName' => '_ZNK7log4cxx6Logger3logERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + '9474591' => { + 'Class' => '9334866', + 'Constructor' => 1, + 'Header' => 'datepatternconverter.h', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverterC2ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' + 'type' => '9349021' }, '2' => { - 'name' => 'message', - 'type' => '61535' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' + 'name' => 'options', + 'type' => '6085700' } }, - 'Return' => '1', - 'ShortName' => 'log', - 'Source' => 'logger.cpp', - 'SourceLine' => '691' + 'ShortName' => 'DatePatternConverter', + 'Source' => 'datepatternconverter.cpp', + 'SourceLine' => '52' }, - '9682690' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger3logERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9481674' => { + 'Artificial' => 1, + 'Class' => '5649596', + 'Constructor' => 1, + 'Header' => 'iso8601dateformat.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'message', - 'type' => '61535' + 'type' => '9348250' } }, - 'Return' => '1', - 'ShortName' => 'log', - 'Source' => 'logger.cpp', - 'SourceLine' => '700' + 'ShortName' => 'ISO8601DateFormat' }, - '9682729' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'Line' => '1570', - 'MnglName' => '_ZNK7log4cxx6Logger3logERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + '9481675' => { + 'Artificial' => 1, + 'Class' => '5649596', + 'Constructor' => 1, + 'Header' => 'iso8601dateformat.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers17ISO8601DateFormatC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'message', - 'type' => '646944' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '9348250' } }, - 'Return' => '1', - 'ShortName' => 'log', - 'Source' => 'logger.cpp', - 'SourceLine' => '872' + 'ShortName' => 'ISO8601DateFormat' }, - '9682773' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger3logERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '9481721' => { + 'Artificial' => 1, + 'Class' => '9333119', + 'Constructor' => 1, + 'Header' => 'datetimedateformat.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'message', - 'type' => '646944' + 'type' => '9348440' } }, - 'Return' => '1', - 'ShortName' => 'log', - 'Source' => 'logger.cpp', - 'SourceLine' => '881' + 'ShortName' => 'DateTimeDateFormat' }, - '9682812' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5logLSERKSt10shared_ptrINS_5LevelEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + '9481722' => { + 'Artificial' => 1, + 'Class' => '9333119', + 'Constructor' => 1, + 'Header' => 'datetimedateformat.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers18DateTimeDateFormatC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'level1', - 'type' => '412081' - }, - '2' => { - 'name' => 'message', - 'type' => '263006' - }, - '3' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '9348440' } }, - 'Return' => '1', - 'ShortName' => 'logLS', - 'Source' => 'logger.cpp', - 'SourceLine' => '708' + 'ShortName' => 'DateTimeDateFormat' }, - '9682855' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6Logger18removeAllAppendersEv', + '9481768' => { + 'Artificial' => 1, + 'Class' => '9332978', + 'Constructor' => 1, + 'Header' => 'absolutetimedateformat.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9685904' + 'type' => '9348345' } }, - 'Return' => '1', - 'ShortName' => 'removeAllAppenders', - 'Source' => 'logger.cpp', - 'SourceLine' => '503', - 'Virt' => 1, - 'VirtPos' => '9' + 'ShortName' => 'AbsoluteTimeDateFormat' }, - '9682892' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6Logger14removeAppenderESt10shared_ptrINS_8AppenderEE', + '9481769' => { + 'Artificial' => 1, + 'Class' => '9332978', + 'Constructor' => 1, + 'Header' => 'absolutetimedateformat.h', + 'InLine' => 1, + 'Line' => '34', + 'MnglName' => '_ZN7log4cxx7helpers22AbsoluteTimeDateFormatC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9685904' - }, - '1' => { - 'name' => 'appender', - 'type' => '263000' + 'type' => '9348345' } }, - 'Return' => '1', - 'ShortName' => 'removeAppender', - 'Source' => 'logger.cpp', - 'SourceLine' => '516', - 'Virt' => 1, - 'VirtPos' => '10' + 'ShortName' => 'AbsoluteTimeDateFormat' }, - '9682934' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6Logger14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9482521' => { + 'Artificial' => 1, + 'Class' => '9334884', + 'Destructor' => 1, + 'Header' => 'datepatternconverter.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD0Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9685904' - }, - '1' => { - 'name' => 'name1', - 'type' => '263006' + 'type' => '9351667' } }, - 'Return' => '1', - 'ShortName' => 'removeAppender', - 'Source' => 'logger.cpp', - 'SourceLine' => '525', - 'Virt' => 1, - 'VirtPos' => '11' + 'ShortName' => 'ClazzDatePatternConverter', + 'Virt' => 1 }, - '9683131' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger12getHierarchyEv', + '9482522' => { + 'Artificial' => 1, + 'Class' => '9334884', + 'Destructor' => 1, + 'Header' => 'datepatternconverter.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' + 'type' => '9351667' } }, - 'Private' => 1, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '4544193', - 'ShortName' => 'getHierarchy', - 'Source' => 'logger.cpp', - 'SourceLine' => '251' + 'ShortName' => 'ClazzDatePatternConverter', + 'Virt' => 1 }, - '9683161' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '1689', - 'MnglName' => '_ZN7log4cxx6Logger8setLevelESt10shared_ptrINS_5LevelEE', + '9482667' => { + 'Artificial' => 1, + 'Class' => '9334884', + 'Destructor' => 1, + 'Header' => 'datepatternconverter.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9685904' - }, - '1' => { - 'name' => 'level1', - 'type' => '409204' + 'type' => '9351667' } }, - 'Return' => '1', - 'ShortName' => 'setLevel', - 'Source' => 'logger.cpp', - 'SourceLine' => '554', - 'Virt' => 1, - 'VirtPos' => '13' + 'ShortName' => 'ClazzDatePatternConverter', + 'Virt' => 1 }, - '9683236' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger4warnERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + '9482761' => { + 'Artificial' => 1, + 'Class' => '9334884', + 'Constructor' => 1, + 'Header' => 'datepatternconverter.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterC2Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '9351667' } }, - 'Return' => '1', - 'ShortName' => 'warn', - 'Source' => 'logger.cpp', - 'SourceLine' => '889' + 'ShortName' => 'ClazzDatePatternConverter' }, - '9683274' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger4warnERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '9482762' => { + 'Artificial' => 1, + 'Class' => '9334884', + 'Constructor' => 1, + 'Header' => 'datepatternconverter.h', + 'InLine' => 1, + 'Line' => '46', + 'MnglName' => '_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterC1Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' + 'type' => '9351667' } }, - 'Return' => '1', - 'ShortName' => 'warn', - 'Source' => 'logger.cpp', - 'SourceLine' => '897' + 'ShortName' => 'ClazzDatePatternConverter' }, - '9683307' => { - 'Class' => '1149757', + '978460' => { + 'Artificial' => 1, + 'Class' => '942891', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEED2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '954611' + } + }, + 'ShortName' => 'WideLife' + }, + '978461' => { + 'Artificial' => 1, + 'Class' => '942891', + 'Destructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEED0Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '954611' + } + }, + 'ShortName' => 'WideLife' + }, + '978603' => { + 'Artificial' => 1, + 'Class' => '942891', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEEC2Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '954611' + } + }, + 'ShortName' => 'WideLife' + }, + '978604' => { + 'Artificial' => 1, + 'Class' => '942891', + 'Constructor' => 1, + 'Header' => 'widelife.h', + 'InLine' => 1, + 'Line' => '39', + 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS0_22AppenderAttachableImpl27ClazzAppenderAttachableImplEEC1Ev', + 'Param' => { + '0' => { + 'name' => 'this', + 'type' => '954611' + } + }, + 'ShortName' => 'WideLife' + }, + '9953854' => { + 'Class' => '9953770', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger4warnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + 'Header' => 'loggerpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '26372923' } }, - 'Return' => '1', - 'ShortName' => 'warn', - 'Source' => 'logger.cpp', - 'SourceLine' => '717' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9683345' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger4warnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9953893' => { + 'Class' => '9953745', + 'Header' => 'loggerpatternconverter.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7pattern22LoggerPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' + 'name' => 'options', + 'type' => '6085700' } }, - 'Return' => '1', - 'ShortName' => 'warn', - 'Source' => 'logger.cpp', - 'SourceLine' => '725' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'loggerpatternconverter.cpp', + 'SourceLine' => '37', + 'Static' => 1 }, - '9683378' => { - 'Class' => '1149757', + '9954496' => { + 'Class' => '9954412', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5traceERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEERKNS_3spi12LocationInfoE', + 'Header' => 'filelocationpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '14224331' } }, - 'Return' => '1', - 'ShortName' => 'trace', - 'Source' => 'logger.cpp', - 'SourceLine' => '791' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9683416' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5traceERKNSt7__cxx1112basic_stringIwSt11char_traitsIwESaIwEEE', + '9954535' => { + 'Class' => '9954387', + 'Header' => 'filelocationpatternconverter.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7pattern28FileLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '646944' + 'name' => 'p1', + 'type' => '575797' } }, - 'Return' => '1', - 'ShortName' => 'trace', - 'Source' => 'logger.cpp', - 'SourceLine' => '800' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'filelocationpatternconverter.cpp', + 'SourceLine' => '35', + 'Static' => 1 }, - '9683449' => { - 'Class' => '1149757', + '9954668' => { + 'Class' => '9954584', 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5traceERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_3spi12LocationInfoE', + 'Header' => 'fulllocationpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' - }, - '2' => { - 'name' => 'location', - 'type' => '839402' + 'type' => '17542514' } }, - 'Return' => '1', - 'ShortName' => 'trace', - 'Source' => 'logger.cpp', - 'SourceLine' => '608' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9683487' => { - 'Class' => '1149757', - 'Const' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZNK7log4cxx6Logger5traceERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9954707' => { + 'Class' => '9954559', + 'Header' => 'fulllocationpatternconverter.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7pattern28FullLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9687264' - }, - '1' => { - 'name' => 'msg', - 'type' => '61535' + 'name' => 'p1', + 'type' => '575797' } }, - 'Return' => '1', - 'ShortName' => 'trace', - 'Source' => 'logger.cpp', - 'SourceLine' => '617' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'fulllocationpatternconverter.cpp', + 'SourceLine' => '37', + 'Static' => 1 }, - '9683520' => { - 'Class' => '1149757', - 'Header' => 'logger.h', - 'Line' => '1964', - 'MnglName' => '_ZN7log4cxx6Logger11reconfigureERKSt6vectorISt10shared_ptrINS_8AppenderEESaIS4_EEb', + '9954840' => { + 'Class' => '9954756', + 'Const' => 1, + 'Header' => 'shortfilelocationpatternconverter.h', + 'InLine' => 2, + 'Line' => '44', + 'MnglName' => '_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9685904' - }, - '1' => { - 'name' => 'appenders', - 'type' => '264761' - }, - '2' => { - 'name' => 'additive1', - 'type' => '50284' + 'type' => '42279423' } }, - 'Return' => '1', - 'ShortName' => 'reconfigure', - 'Source' => 'logger.cpp', - 'SourceLine' => '108' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9684154' => { - 'Data' => 1, - 'Line' => '87', - 'MnglName' => '_ZN7log4cxx7classes18LoggerRegistrationE', - 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LoggerRegistration', - 'Source' => 'logger.cpp' + '9954879' => { + 'Class' => '9954731', + 'Header' => 'shortfilelocationpatternconverter.h', + 'Line' => '55', + 'MnglName' => '_ZN7log4cxx7pattern33ShortFileLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', + 'Param' => { + '0' => { + 'name' => 'p1', + 'type' => '575797' + } + }, + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'shortfilelocationpatternconverter.cpp', + 'SourceLine' => '35', + 'Static' => 1 }, - '9719463' => { - 'Artificial' => 1, - 'Class' => '9677060', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEED2Ev', + '9955012' => { + 'Class' => '9954928', + 'Const' => 1, + 'Header' => 'linelocationpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9686022' + 'type' => '23102346' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9719464' => { - 'Artificial' => 1, - 'Class' => '9677060', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, + '9955051' => { + 'Class' => '9954903', + 'Header' => 'linelocationpatternconverter.h', 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEED0Ev', + 'MnglName' => '_ZN7log4cxx7pattern28LineLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9686022' + 'name' => 'p1', + 'type' => '575797' } }, - 'ShortName' => 'WideLife' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'linelocationpatternconverter.cpp', + 'SourceLine' => '37', + 'Static' => 1 }, - '9719605' => { - 'Artificial' => 1, - 'Class' => '9677060', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEEC2Ev', + '9955184' => { + 'Class' => '9955100', + 'Const' => 1, + 'Header' => 'messagepatternconverter.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9686022' + 'type' => '30148750' } }, - 'ShortName' => 'WideLife' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9719606' => { - 'Artificial' => 1, - 'Class' => '9677060', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6Logger11ClazzLoggerEEC1Ev', + '9955223' => { + 'Class' => '9955075', + 'Header' => 'messagepatternconverter.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern23MessagePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9686022' + 'name' => 'options', + 'type' => '6085700' } }, - 'ShortName' => 'WideLife' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'messagepatternconverter.cpp', + 'SourceLine' => '70', + 'Static' => 1 }, - '9860420' => { - 'Class' => '1149757', - 'Destructor' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6LoggerD0Ev', + '9955356' => { + 'Class' => '9955272', + 'Const' => 1, + 'Header' => 'methodlocationpatternconverter.h', + 'InLine' => 2, + 'Line' => '39', + 'MnglName' => '_ZNK7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9685904' + 'type' => '30541323' } }, - 'ShortName' => 'Logger', - 'Source' => 'logger.cpp', - 'SourceLine' => '95', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9860518' => { - 'Class' => '1149757', - 'Destructor' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6LoggerD1Ev', + '9955395' => { + 'Class' => '9955247', + 'Header' => 'methodlocationpatternconverter.h', + 'Line' => '52', + 'MnglName' => '_ZN7log4cxx7pattern30MethodLocationPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9685904' + 'name' => 'p1', + 'type' => '575797' } }, - 'ShortName' => 'Logger', - 'Source' => 'logger.cpp', - 'SourceLine' => '95', - 'Virt' => 1 + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'methodlocationpatternconverter.cpp', + 'SourceLine' => '36', + 'Static' => 1 }, - '9863575' => { - 'Class' => '1149757', - 'Destructor' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6LoggerD2Ev', + '9955528' => { + 'Class' => '9955444', + 'Const' => 1, + 'Header' => 'levelpatternconverter.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9685904' + 'type' => '22330139' } }, - 'ShortName' => 'Logger', - 'Source' => 'logger.cpp', - 'SourceLine' => '95', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9866592' => { - 'Class' => '1149757', - 'Constructor' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6LoggerC1ERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9955567' => { + 'Class' => '9955419', + 'Header' => 'levelpatternconverter.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern21LevelPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9685904' - }, - '1' => { - 'name' => 'p', - 'type' => '64643' - }, - '2' => { - 'name' => 'name1', - 'type' => '263006' + 'name' => 'p1', + 'type' => '575797' } }, - 'ShortName' => 'Logger', - 'Source' => 'logger.cpp', - 'SourceLine' => '89' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'levelpatternconverter.cpp', + 'SourceLine' => '38', + 'Static' => 1 }, - '9869947' => { - 'Class' => '1149757', - 'Constructor' => 1, - 'Header' => 'logger.h', - 'MnglName' => '_ZN7log4cxx6LoggerC2ERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9955700' => { + 'Class' => '9955616', + 'Const' => 1, + 'Header' => 'threadpatternconverter.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9685904' - }, - '2' => { - 'name' => 'p', - 'type' => '64643' - }, - '3' => { - 'name' => 'name1', - 'type' => '263006' + 'type' => '45956537' } }, - 'ShortName' => 'Logger', - 'Source' => 'logger.cpp', - 'SourceLine' => '89' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9875529' => { - 'Artificial' => 1, - 'Class' => '9679620', - 'Destructor' => 1, - 'Header' => 'logger.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerD0Ev', + '9955739' => { + 'Class' => '9955591', + 'Header' => 'threadpatternconverter.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern22ThreadPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9687340' + 'name' => 'p1', + 'type' => '575797' } }, - 'ShortName' => 'ClazzLogger', - 'Virt' => 1 + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'threadpatternconverter.cpp', + 'SourceLine' => '36', + 'Static' => 1 }, - '9875530' => { - 'Artificial' => 1, - 'Class' => '9679620', - 'Destructor' => 1, - 'Header' => 'logger.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerD1Ev', + '9955872' => { + 'Class' => '9955788', + 'Const' => 1, + 'Header' => 'ndcpatternconverter.h', + 'InLine' => 2, + 'Line' => '38', + 'MnglName' => '_ZNK7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687340' + 'type' => '32270381' } }, - 'ShortName' => 'ClazzLogger', - 'Virt' => 1 + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9875671' => { - 'Artificial' => 1, - 'Class' => '9679620', - 'Destructor' => 1, - 'Header' => 'logger.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerD2Ev', + '9955911' => { + 'Class' => '9955763', + 'Header' => 'ndcpatternconverter.h', + 'Line' => '51', + 'MnglName' => '_ZN7log4cxx7pattern19NDCPatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9687340' + 'name' => 'p1', + 'type' => '575797' } }, - 'ShortName' => 'ClazzLogger', - 'Virt' => 1 + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'ndcpatternconverter.cpp', + 'SourceLine' => '36', + 'Static' => 1 }, - '9875761' => { - 'Artificial' => 1, - 'Class' => '9679620', - 'Constructor' => 1, - 'Header' => 'logger.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerC2Ev', + '9956028' => { + 'Class' => '9955944', + 'Const' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'InLine' => 2, + 'Line' => '34', + 'MnglName' => '_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverter7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9687340' + 'type' => '46328466' } }, - 'ShortName' => 'ClazzLogger' + 'Return' => '209661', + 'ShortName' => 'getName', + 'Virt' => 1, + 'VirtPos' => '3' }, - '9875762' => { - 'Artificial' => 1, - 'Class' => '9679620', - 'Constructor' => 1, - 'Header' => 'logger.h', - 'InLine' => 1, - 'Line' => '53', - 'MnglName' => '_ZN7log4cxx6Logger11ClazzLoggerC1Ev', + '9956067' => { + 'Class' => '9955935', + 'Header' => 'threadusernamepatternconverter.h', + 'Line' => '42', + 'MnglName' => '_ZN7log4cxx7pattern30ThreadUsernamePatternConverter11newInstanceERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EE', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9687340' + 'name' => 'p1', + 'type' => '575797' } }, - 'ShortName' => 'ClazzLogger' + 'Return' => '3121025', + 'ShortName' => 'newInstance', + 'Source' => 'threadusernamepatternconverter.cpp', + 'SourceLine' => '36', + 'Static' => 1 }, - '9950740' => { - 'Class' => '9950620', + '9956991' => { + 'Class' => '9956878', 'Const' => 1, - 'Header' => 'loggermatchfilter.h', + 'Header' => 'dbappender.h', 'InLine' => 2, - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter7getNameB5cxx11Ev', + 'Line' => '116', + 'MnglName' => '_ZNK7log4cxx2db10DBAppender15ClazzDBAppender7getNameB5cxx11Ev', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953829' + 'type' => '9977540' } }, - 'Return' => '63706', + 'Return' => '209661', 'ShortName' => 'getName', 'Virt' => 1, 'VirtPos' => '3' }, - '9950779' => { - 'Class' => '9950620', + '9957028' => { + 'Class' => '9956878', 'Const' => 1, - 'Header' => 'loggermatchfilter.h', + 'Header' => 'dbappender.h', 'InLine' => 2, - 'Line' => '52', - 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv', + 'Line' => '116', + 'MnglName' => '_ZNK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953829' + 'type' => '9977540' } }, - 'Return' => '9953720', + 'Return' => '9977221', 'ShortName' => 'newInstance', 'Virt' => 1, 'VirtPos' => '4' }, - '9950818' => { + '9957065' => { 'Artificial' => 1, - 'Class' => '9950620', - 'Header' => 'loggermatchfilter.h', + 'Class' => '9956878', + 'Header' => 'dbappender.h', 'InLine' => 2, - 'Line' => '52', - 'MnglName' => '_ZTch0_h0_NK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv', + 'Line' => '116', + 'MnglName' => '_ZTch0_h0_NK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953829' + 'type' => '9977540' } }, - 'Return' => '9953720', - 'ShortName' => '_ZTch0_h0_NK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv' + 'Return' => '9977221', + 'ShortName' => '_ZTch0_h0_NK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv' }, - '9951062' => { - 'Class' => '9950602', + '9957384' => { + 'Class' => '9956860', 'Const' => 1, - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter8getClassEv', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZNK7log4cxx2db10DBAppender8getClassEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953754' + 'type' => '9977216' } }, - 'Return' => '64678', + 'Return' => '210728', 'ShortName' => 'getClass', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '42', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '47', 'Virt' => 1, 'VirtPos' => '2' }, - '9951101' => { - 'Class' => '9950602', - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter14getStaticClassEv', - 'Return' => '64678', + '9957421' => { + 'Class' => '9956860', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppender14getStaticClassEv', + 'Return' => '210728', 'ShortName' => 'getStaticClass', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '42', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '47', 'Static' => 1 }, - '9951118' => { - 'Class' => '9950602', - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter13registerClassEv', - 'Return' => '64684', + '9957438' => { + 'Class' => '9956860', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppender13registerClassEv', + 'Return' => '210733', 'ShortName' => 'registerClass', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '42', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '47', 'Static' => 1 }, - '9951135' => { - 'Class' => '9950602', + '9957455' => { + 'Class' => '9956860', 'Const' => 1, - 'Header' => 'loggermatchfilter.h', + 'Header' => 'dbappender.h', 'InLine' => 2, - 'Line' => '53', - 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter4castERKNS_7helpers5ClassE', + 'Line' => '117', + 'MnglName' => '_ZNK7log4cxx2db10DBAppender4castERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953754' + 'type' => '9977216' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '54166', + 'Return' => '195352', 'ShortName' => 'cast', 'Virt' => 1, 'VirtPos' => '4' }, - '9951179' => { - 'Class' => '9950602', + '9957497' => { + 'Class' => '9956860', 'Const' => 1, - 'Header' => 'loggermatchfilter.h', + 'Header' => 'dbappender.h', 'InLine' => 2, - 'Line' => '56', - 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter10instanceofERKNS_7helpers5ClassE', + 'Line' => '120', + 'MnglName' => '_ZNK7log4cxx2db10DBAppender10instanceofERKNS_7helpers5ClassE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953754' + 'type' => '9977216' }, '1' => { 'name' => 'clazz', - 'type' => '64678' + 'type' => '210728' } }, - 'Return' => '50284', + 'Return' => '174077', 'ShortName' => 'instanceof', 'Virt' => 1, 'VirtPos' => '3' }, - '9951302' => { - 'Class' => '9950602', - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', + '9957616' => { + 'Class' => '9956860', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953726' + 'type' => '9977226' }, '1' => { 'name' => 'option', - 'type' => '263006' + 'type' => '210597' }, '2' => { 'name' => 'value', - 'type' => '263006' + 'type' => '210597' } }, 'Return' => '1', 'ShortName' => 'setOption', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '62', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '120', 'Virt' => 1, 'VirtPos' => '6' }, - '9951348' => { - 'Class' => '9950602', - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter16setLoggerToMatchERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE', + '9957660' => { + 'Class' => '9956860', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppender15activateOptionsERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953726' + 'type' => '9977226' }, '1' => { - 'name' => 'value', - 'type' => '263006' + 'name' => 'p', + 'type' => '210607' } }, 'Return' => '1', - 'ShortName' => 'setLoggerToMatch', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '52' - }, - '9951380' => { - 'Class' => '9950602', - 'Const' => 1, - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter16getLoggerToMatchB5cxx11Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953754' - } - }, - 'Return' => '63706', - 'ShortName' => 'getLoggerToMatch', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '57' + 'ShortName' => 'activateOptions', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '147', + 'Virt' => 1, + 'VirtPos' => '5' }, - '9951411' => { - 'Class' => '9950602', - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter16setAcceptOnMatchEb', + '9957699' => { + 'Class' => '9956860', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953726' + 'type' => '9977226' }, '1' => { - 'name' => 'acceptOnMatch1', - 'type' => '50284' + 'name' => 'event', + 'type' => '576659' + }, + '2' => { + 'name' => 'p', + 'type' => '210607' } }, - 'Reg' => { - '0' => 'rdi', - '1' => 'rsi' - }, 'Return' => '1', - 'ShortName' => 'setAcceptOnMatch', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '100' + 'ShortName' => 'append', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '211', + 'Virt' => 1, + 'VirtPos' => '17' }, - '9951443' => { - 'Class' => '9950602', - 'Const' => 1, - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter16getAcceptOnMatchEv', + '9957743' => { + 'Class' => '9956860', + 'Header' => 'dbappender.h', + 'MnglName' => '_ZN7log4cxx2db10DBAppender5closeEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953754' + 'type' => '9977226' } }, - 'Reg' => { - '0' => 'rdi' - }, - 'Return' => '50284', - 'ShortName' => 'getAcceptOnMatch', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '105' + 'Return' => '1', + 'ShortName' => 'close', + 'Source' => 'dbappender.cpp', + 'SourceLine' => '112', + 'Virt' => 1, + 'VirtPos' => '10' }, - '9951474' => { - 'Class' => '9950602', + '9957777' => { + 'Class' => '9956860', 'Const' => 1, - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZNK7log4cxx6filter17LoggerMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE', + 'Header' => 'dbappender.h', + 'InLine' => 2, + 'Line' => '156', + 'MnglName' => '_ZNK7log4cxx2db10DBAppender14requiresLayoutEv', 'Param' => { '0' => { 'name' => 'this', - 'type' => '9953754' - }, - '1' => { - 'name' => 'event', - 'type' => '154261' + 'type' => '9977216' } }, - 'Return' => '151101', - 'ShortName' => 'decide', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '78', + 'Return' => '174077', + 'ShortName' => 'requiresLayout', 'Virt' => 1, - 'VirtPos' => '7' + 'VirtPos' => '16' }, - '9951531' => { + '9957970' => { 'Data' => 1, - 'Line' => '42', - 'MnglName' => '_ZN7log4cxx7classes29LoggerMatchFilterRegistrationE', + 'Line' => '47', + 'MnglName' => '_ZN7log4cxx7classes22DBAppenderRegistrationE', 'NameSpace' => 'log4cxx::classes', - 'Return' => '64684', - 'ShortName' => 'LoggerMatchFilterRegistration', - 'Source' => 'loggermatchfilter.cpp' - }, - '995164' => { - 'Class' => '836422', - 'Destructor' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppenderD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '843940' - } - }, - 'ShortName' => 'AsyncAppender', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '183', - 'Virt' => 1 - }, - '995262' => { - 'Class' => '836422', - 'Destructor' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppenderD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '843940' - } - }, - 'ShortName' => 'AsyncAppender', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '183', - 'Virt' => 1 - }, - '995611' => { - 'Class' => '836422', - 'Destructor' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppenderD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '843940' - } - }, - 'ShortName' => 'AsyncAppender', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '183', - 'Virt' => 1 - }, - '995728' => { - 'Class' => '836422', - 'Constructor' => 1, - 'Header' => 'asyncappender.h', - 'MnglName' => '_ZN7log4cxx13AsyncAppenderC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '843940' - } - }, - 'ShortName' => 'AsyncAppender', - 'Source' => 'asyncappender.cpp', - 'SourceLine' => '178' - }, - '9962146' => { - 'Artificial' => 1, - 'Class' => '9950845', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953282' - } - }, - 'ShortName' => 'LoggerMatchFilterPrivate', - 'Source' => 'loggermatchfilter.cpp', - 'Virt' => 1 - }, - '9962147' => { - 'Artificial' => 1, - 'Class' => '9950845', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953282' - } - }, - 'ShortName' => 'LoggerMatchFilterPrivate', - 'Source' => 'loggermatchfilter.cpp', - 'Virt' => 1 - }, - '9963531' => { - 'Artificial' => 1, - 'Class' => '9950845', - 'Destructor' => 1, - 'InLine' => 1, - 'Line' => '32', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953282' - } - }, - 'ShortName' => 'LoggerMatchFilterPrivate', - 'Source' => 'loggermatchfilter.cpp', - 'Virt' => 1 - }, - '9966415' => { - 'Artificial' => 1, - 'Class' => '9948965', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEED2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953157' - } - }, - 'ShortName' => 'WideLife' - }, - '9966416' => { - 'Artificial' => 1, - 'Class' => '9948965', - 'Destructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEED0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953157' - } - }, - 'ShortName' => 'WideLife' - }, - '9966556' => { - 'Artificial' => 1, - 'Class' => '9948965', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEEC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953157' - } - }, - 'ShortName' => 'WideLife' - }, - '9966557' => { - 'Artificial' => 1, - 'Class' => '9948965', - 'Constructor' => 1, - 'Header' => 'widelife.h', - 'InLine' => 1, - 'Line' => '39', - 'MnglName' => '_ZN7log4cxx7helpers8WideLifeINS_6filter17LoggerMatchFilter22ClazzLoggerMatchFilterEEC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953157' - } - }, - 'ShortName' => 'WideLife' - }, - '9970081' => { - 'Class' => '9950602', - 'Destructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953726' - } - }, - 'ShortName' => 'LoggerMatchFilter', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '50', - 'Virt' => 1 - }, - '9970179' => { - 'Class' => '9950602', - 'Destructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953726' - } - }, - 'ShortName' => 'LoggerMatchFilter', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '50', - 'Virt' => 1 - }, - '9970373' => { - 'Class' => '9950602', - 'Destructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953726' - } - }, - 'ShortName' => 'LoggerMatchFilter', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '50', - 'Virt' => 1 - }, - '9970503' => { - 'Class' => '9950602', - 'Constructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterC1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953726' - } - }, - 'ShortName' => 'LoggerMatchFilter', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '45' - }, - '9974738' => { - 'Class' => '9950602', - 'Constructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953726' - } - }, - 'ShortName' => 'LoggerMatchFilter', - 'Source' => 'loggermatchfilter.cpp', - 'SourceLine' => '45' - }, - '9982744' => { - 'Artificial' => 1, - 'Class' => '9950620', - 'Destructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD0Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953818' - } - }, - 'ShortName' => 'ClazzLoggerMatchFilter', - 'Virt' => 1 - }, - '9982745' => { - 'Artificial' => 1, - 'Class' => '9950620', - 'Destructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD1Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953818' - } - }, - 'ShortName' => 'ClazzLoggerMatchFilter', - 'Virt' => 1 - }, - '9982885' => { - 'Artificial' => 1, - 'Class' => '9950620', - 'Destructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953818' - } - }, - 'ShortName' => 'ClazzLoggerMatchFilter', - 'Virt' => 1 - }, - '9982975' => { - 'Artificial' => 1, - 'Class' => '9950620', - 'Constructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterC2Ev', - 'Param' => { - '0' => { - 'name' => 'this', - 'type' => '9953818' - } - }, - 'ShortName' => 'ClazzLoggerMatchFilter' + 'Return' => '210733', + 'ShortName' => 'DBAppenderRegistration', + 'Source' => 'dbappender.cpp' }, - '9982976' => { - 'Artificial' => 1, - 'Class' => '9950620', - 'Constructor' => 1, - 'Header' => 'loggermatchfilter.h', - 'InLine' => 1, - 'Line' => '52', - 'MnglName' => '_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterC1Ev', + '9958272' => { + 'Header' => 'object.h', + 'InLine' => 2, + 'Line' => '127', + 'MnglName' => '_ZN7log4cxx4castINS_7pattern28LoggingEventPatternConverterENS1_16PatternConverterELb0ELb0EEESt10shared_ptrIT_ERKS4_IT0_E', + 'NameSpace' => 'log4cxx', 'Param' => { '0' => { - 'name' => 'this', - 'type' => '9953818' + 'name' => 'incoming', + 'type' => '6085545' } }, - 'ShortName' => 'ClazzLoggerMatchFilter' + 'Return' => '9811909', + 'ShortName' => 'cast', + 'TParam' => { + '0' => { + 'key' => 'Ret', + 'type' => '3121054' + }, + '1' => { + 'key' => 'Type', + 'type' => '3120362' + } + } } }, 'SymbolVersion' => {}, @@ -91176,6 +89907,10 @@ $VAR1 = { '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD0Ev' => 1, '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD1Ev' => 1, '_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD2Ev' => 1, + '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC1ESt10shared_ptrINS_6LayoutEE' => 1, + '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC1Ev' => 1, + '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC2ESt10shared_ptrINS_6LayoutEE' => 1, + '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateC2Ev' => 1, '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD0Ev' => 1, '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD1Ev' => 1, '_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD2Ev' => 1, @@ -91365,6 +90100,8 @@ $VAR1 = { '_ZN7log4cxx3net12SMTPAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE' => 1, '_ZN7log4cxx3net12SMTPAppender6setBccERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE' => 1, '_ZN7log4cxx3net12SMTPAppender7setFromERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE' => 1, + '_ZN7log4cxx3net12SMTPAppender8SMTPPrivC1Ev' => 1, + '_ZN7log4cxx3net12SMTPAppender8SMTPPrivC2Ev' => 1, '_ZN7log4cxx3net12SMTPAppender8SMTPPrivD0Ev' => 1, '_ZN7log4cxx3net12SMTPAppender8SMTPPrivD1Ev' => 1, '_ZN7log4cxx3net12SMTPAppender8SMTPPrivD2Ev' => 1, @@ -92156,6 +90893,9 @@ $VAR1 = { '_ZN7log4cxx7helpers12OutputStreamD1Ev' => 1, '_ZN7log4cxx7helpers12OutputStreamD2Ev' => 1, '_ZN7log4cxx7helpers12ServerSocket12setSoTimeoutEi' => 1, + '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD0Ev' => 1, + '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD1Ev' => 1, + '_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD2Ev' => 1, '_ZN7log4cxx7helpers12ServerSocket5closeEv' => 1, '_ZN7log4cxx7helpers12ServerSocket6createEi' => 1, '_ZN7log4cxx7helpers12ServerSocketC1ESt10unique_ptrINS1_19ServerSocketPrivateESt14default_deleteIS3_EE' => 1, @@ -92181,6 +90921,7 @@ $VAR1 = { '_ZN7log4cxx7helpers12SyslogWriterC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi' => 1, '_ZN7log4cxx7helpers12SyslogWriterD1Ev' => 1, '_ZN7log4cxx7helpers12SyslogWriterD2Ev' => 1, + '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZone11getInstanceEv' => 1, '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD0Ev' => 1, '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD1Ev' => 1, '_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD2Ev' => 1, @@ -92240,6 +90981,10 @@ $VAR1 = { '_ZN7log4cxx7helpers13PoolExceptionD1Ev' => 1, '_ZN7log4cxx7helpers13PoolExceptionD2Ev' => 1, '_ZN7log4cxx7helpers13PoolExceptionaSERKS1_' => 1, + '_ZN7log4cxx7helpers13ThreadUtility12createThreadIMNS0_12FileWatchdogEFvvEJPS3_EEESt6threadNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEOT_DpOT0_' => 1, + '_ZN7log4cxx7helpers13ThreadUtility12createThreadIMNS_13AsyncAppenderEFvvEJPS3_EEESt6threadNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEOT_DpOT0_' => 1, + '_ZN7log4cxx7helpers13ThreadUtility12createThreadIMNS_3net14TelnetAppenderEFvvEJPS4_EEESt6threadNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEOT_DpOT0_' => 1, + '_ZN7log4cxx7helpers13ThreadUtility12createThreadIMNS_3net22SocketAppenderSkeletonEFvvEJPS4_EEESt6threadNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEOT_DpOT0_' => 1, '_ZN7log4cxx7helpers13ThreadUtility14configureFuncsESt8functionIFvvEES2_IFvNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENSt6thread2idEmEES4_' => 1, '_ZN7log4cxx7helpers13ThreadUtility16preStartFunctionEv' => 1, '_ZN7log4cxx7helpers13ThreadUtility17postStartFunctionEv' => 1, @@ -92364,6 +91109,9 @@ $VAR1 = { '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD1Ev' => 1, '_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD2Ev' => 1, '_ZN7log4cxx7helpers14ResourceBundle9getBundleERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS0_6LocaleE' => 1, + '_ZN7log4cxx7helpers14ResourceBundleD0Ev' => 1, + '_ZN7log4cxx7helpers14ResourceBundleD1Ev' => 1, + '_ZN7log4cxx7helpers14ResourceBundleD2Ev' => 1, '_ZN7log4cxx7helpers14XMLDOMDocument13registerClassEv' => 1, '_ZN7log4cxx7helpers14XMLDOMDocument14getStaticClassEv' => 1, '_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD0Ev' => 1, @@ -93467,6 +92215,8 @@ $VAR1 = { '_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD0Ev' => 1, '_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD1Ev' => 1, '_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD2Ev' => 1, + '_ZN7log4cxx7pattern18PatternAbbreviatorC1ERKSt6vectorINS0_26PatternAbbreviatorFragmentESaIS3_EE' => 1, + '_ZN7log4cxx7pattern18PatternAbbreviatorC2ERKSt6vectorINS0_26PatternAbbreviatorFragmentESaIS3_EE' => 1, '_ZN7log4cxx7pattern18PatternAbbreviatorD0Ev' => 1, '_ZN7log4cxx7pattern18PatternAbbreviatorD1Ev' => 1, '_ZN7log4cxx7pattern18PatternAbbreviatorD2Ev' => 1, @@ -94733,6 +93483,7 @@ $VAR1 = { '_ZNK7log4cxx7pattern26ColorStartPatternConverter4castERKNS_7helpers5ClassE' => 1, '_ZNK7log4cxx7pattern26ColorStartPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE' => 1, '_ZNK7log4cxx7pattern26ColorStartPatternConverter8getClassEv' => 1, + '_ZNK7log4cxx7pattern26PatternAbbreviatorFragment10abbreviateERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm' => 1, '_ZNK7log4cxx7pattern26PropertiesPatternConverter10instanceofERKNS_7helpers5ClassE' => 1, '_ZNK7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverter7getNameB5cxx11Ev' => 1, '_ZNK7log4cxx7pattern26PropertiesPatternConverter4castERKNS_7helpers5ClassE' => 1, @@ -95851,6 +94602,7 @@ $VAR1 = { '_ZTVN7log4cxx7helpers12FileWatchdogE' => -40, '_ZTVN7log4cxx7helpers12OutputStream17ClazzOutputStreamE' => -48, '_ZTVN7log4cxx7helpers12OutputStreamE' => -80, + '_ZTVN7log4cxx7helpers12ServerSocket19ServerSocketPrivateE' => -32, '_ZTVN7log4cxx7helpers12ServerSocketE' => -48, '_ZTVN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneE' => -64, '_ZTVN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneE' => -64, @@ -95915,6 +94667,8 @@ $VAR1 = { '_ZTVN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenE' => -56, '_ZTVN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenE' => -56, '_ZTVN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenE' => -48, + '_ZTVN7log4cxx7helpers20SimpleDateFormatImpl12NumericTokenE' => -56, + '_ZTVN7log4cxx7helpers20SimpleDateFormatImpl12PatternTokenE' => -48, '_ZTVN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenE' => -56, '_ZTVN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenE' => -56, '_ZTVN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenE' => -56, @@ -96103,6 +94857,7 @@ $VAR1 = { '_ZTVSt15_Sp_counted_ptrIPN7log4cxx7helpers6ObjectELN9__gnu_cxx12_Lock_policyE2EE' => -56, '_ZTVSt15_Sp_counted_ptrIPN7log4cxx7pattern33ShortFileLocationPatternConverterELN9__gnu_cxx12_Lock_policyE2EE' => -56, '_ZTVSt15_Sp_counted_ptrIPN7log4cxx9HierarchyELN9__gnu_cxx12_Lock_policyE2EE' => -56, + '_ZTVSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE' => -56, '_ZTVSt19_Sp_counted_deleterIPN7log4cxx7helpers14DatagramSocketESt14default_deleteIS2_ESaIvELN9__gnu_cxx12_Lock_policyE2EE' => -56, '_ZTVSt19_Sp_counted_deleterIPN7log4cxx7helpers6SocketESt14default_deleteIS2_ESaIvELN9__gnu_cxx12_Lock_policyE2EE' => -56, '_ZTVSt23_Sp_counted_ptr_inplaceIN7log4cxx13PatternLayoutESaIS1_ELN9__gnu_cxx12_Lock_policyE2EE' => -56, @@ -96738,6 +95493,10 @@ $VAR1 = { '_ZTv0_n96_NK7log4cxx16AppenderSkeleton9getFilterEv' => 1, '_ZTv0_n96_NK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni' => 1, '_ZTv0_n96_NK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni' => 1, + '_ZZN9__gnu_cxx6__stoaIlicJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD1Ev' => 1, + '_ZZN9__gnu_cxx6__stoaIlicJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD2Ev' => 1, + '_ZZN9__gnu_cxx6__stoaIxxcJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD1Ev' => 1, + '_ZZN9__gnu_cxx6__stoaIxxcJiEEET0_PFT_PKT1_PPS3_DpT2_EPKcS5_PmS9_EN11_Save_errnoD2Ev' => 1, 'tlsDestruct' => 1 } }, @@ -96751,118 +95510,2324 @@ $VAR1 = { 'Name' => 'void', 'Type' => 'Intrinsic' }, - '10034816' => { + '1014977' => { + 'BaseType' => '566027', + 'Name' => 'log4cxx::spi::AppenderAttachable*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1014982' => { + 'BaseType' => '1014977', + 'Name' => 'log4cxx::spi::AppenderAttachable*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '101540' => { + 'Header' => 'ios_base.h', + 'Line' => '57', + 'Memb' => { + '0' => { + 'name' => '_S_boolalpha', + 'value' => '1' + }, + '1' => { + 'name' => '_S_dec', + 'value' => '2' + }, + '10' => { + 'name' => '_S_showpoint', + 'value' => '1024' + }, + '11' => { + 'name' => '_S_showpos', + 'value' => '2048' + }, + '12' => { + 'name' => '_S_skipws', + 'value' => '4096' + }, + '13' => { + 'name' => '_S_unitbuf', + 'value' => '8192' + }, + '14' => { + 'name' => '_S_uppercase', + 'value' => '16384' + }, + '15' => { + 'name' => '_S_adjustfield', + 'value' => '176' + }, + '16' => { + 'name' => '_S_basefield', + 'value' => '74' + }, + '17' => { + 'name' => '_S_floatfield', + 'value' => '260' + }, + '18' => { + 'name' => '_S_ios_fmtflags_end', + 'value' => '65536' + }, + '19' => { + 'name' => '_S_ios_fmtflags_max', + 'value' => '2147483647' + }, + '2' => { + 'name' => '_S_fixed', + 'value' => '4' + }, + '20' => { + 'name' => '_S_ios_fmtflags_min', + 'value' => '18446744071562067968 (-2147483648)' + }, + '3' => { + 'name' => '_S_hex', + 'value' => '8' + }, + '4' => { + 'name' => '_S_internal', + 'value' => '16' + }, + '5' => { + 'name' => '_S_left', + 'value' => '32' + }, + '6' => { + 'name' => '_S_oct', + 'value' => '64' + }, + '7' => { + 'name' => '_S_right', + 'value' => '128' + }, + '8' => { + 'name' => '_S_scientific', + 'value' => '256' + }, + '9' => { + 'name' => '_S_showbase', + 'value' => '512' + } + }, + 'Name' => 'enum std::_Ios_Fmtflags', + 'NameSpace' => 'std', + 'Size' => '4', + 'Type' => 'Enum' + }, + '101951' => { + 'Copied' => 1, + 'Name' => 'std::ios_base', + 'NameSpace' => 'std', + 'Type' => 'Class' + }, + '10457937' => { + 'Base' => { + '10509264' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '40', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '3117865' + } + }, + 'Type' => 'Class' + }, + '10508199' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '51677' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::__cxx11::basic_string >', + 'NameSpace' => 'std', + 'Size' => '32', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '51677' + } + }, + 'Type' => 'Struct' + }, + '10508537' => { + 'Base' => { + '10508199' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::__cxx11::basic_string >', + 'NameSpace' => 'std', + 'Size' => '32', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '51677' + } + }, + 'Type' => 'Struct' + }, + '10508926' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3117865' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::spi::ConfigurationStatus>', + 'NameSpace' => 'std', + 'Size' => '4', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '3117865' + } + }, + 'Type' => 'Struct' + }, + '10509264' => { + 'Base' => { + '10508537' => { + 'pos' => '0' + }, + '10508926' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::spi::ConfigurationStatus>', + 'NameSpace' => 'std', + 'Size' => '40', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '3117865' + } + }, + 'Type' => 'Struct' + }, + '105297' => { + 'Copied' => 1, + 'Name' => 'std::basic_ostream', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'key' => '_CharT', + 'type' => '191030' + } + }, + 'Type' => 'Class' + }, + '105464' => { + 'Copied' => 1, + 'Name' => 'std::basic_ostream', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'key' => '_CharT', + 'type' => '190393' + } + }, + 'Type' => 'Class' + }, + '10575955' => { + 'Header' => 'defaultconfigurator.h', + 'Line' => '32', + 'Name' => 'log4cxx::DefaultConfigurator', + 'NameSpace' => 'log4cxx', + 'Size' => '1', + 'Type' => 'Class' + }, + '105767' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '103', + 'Name' => 'std::_Mutex_base<2>', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '10586409' => { + 'BaseType' => '1934221', + 'Name' => 'log4cxx::File*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '10588285' => { + 'BaseType' => '565598', + 'Name' => 'log4cxx::spi::LoggerRepository*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '10588767' => { + 'BaseType' => '191037', + 'Name' => 'char const[20]', + 'Size' => '20', + 'Type' => 'Array' + }, + '10588783' => { + 'BaseType' => '10588767', + 'Name' => 'char const[20]&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '10588793' => { + 'BaseType' => '191037', + 'Name' => 'char const[36]', + 'Size' => '36', + 'Type' => 'Array' + }, + '10588809' => { + 'BaseType' => '10588793', + 'Name' => 'char const[36]&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '105995' => { + 'Copied' => 1, + 'Header' => 'std_mutex.h', + 'Line' => '57', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => '_M_mutex', + 'offset' => '0', + 'type' => '106008' + } + }, + 'Name' => 'std::__mutex_base', + 'NameSpace' => 'std', + 'Size' => '40', + 'Type' => 'Class' + }, + '106008' => { + 'BaseType' => '200699', + 'Header' => 'std_mutex.h', + 'Line' => '60', + 'Name' => 'std::__mutex_base::__native_type', + 'NameSpace' => 'std::__mutex_base', + 'Protected' => 1, + 'Size' => '40', + 'Type' => 'Typedef' + }, + '106135' => { + 'Base' => { + '105995' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'std_mutex.h', + 'Line' => '83', + 'Name' => 'std::mutex', + 'NameSpace' => 'std', + 'Size' => '40', + 'Type' => 'Class' + }, + '106412' => { + 'Copied' => 1, + 'Header' => 'std_mutex.h', + 'Line' => '127', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => '_M_cond', + 'offset' => '0', + 'type' => '200723' + } + }, + 'Name' => 'std::__condvar', + 'NameSpace' => 'std', + 'Size' => '48', + 'Type' => 'Class' + }, + '108095' => { + 'Header' => 'stl_tree.h', + 'Line' => '99', + 'Memb' => { + '0' => { + 'name' => '_S_red', + 'value' => '0' + }, + '1' => { + 'name' => '_S_black', + 'value' => '1' + } + }, + 'Name' => 'enum std::_Rb_tree_color', + 'NameSpace' => 'std', + 'Size' => '4', + 'Type' => 'Enum' + }, + '108124' => { + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '101', + 'Memb' => { + '0' => { + 'name' => '_M_color', + 'offset' => '0', + 'type' => '108095' + }, + '1' => { + 'name' => '_M_parent', + 'offset' => '8', + 'type' => '108150' + }, + '2' => { + 'name' => '_M_left', + 'offset' => '22', + 'type' => '108150' + }, + '3' => { + 'name' => '_M_right', + 'offset' => '36', + 'type' => '108150' + } + }, + 'Name' => 'struct std::_Rb_tree_node_base', + 'NameSpace' => 'std', + 'Size' => '32', + 'Type' => 'Struct' + }, + '108150' => { + 'BaseType' => '210647', + 'Header' => 'stl_tree.h', + 'Line' => '103', + 'Name' => 'std::_Rb_tree_node_base::_Base_ptr', + 'NameSpace' => 'std::_Rb_tree_node_base', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '108320' => { + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '168', + 'Memb' => { + '0' => { + 'name' => '_M_header', + 'offset' => '0', + 'type' => '108124' + }, + '1' => { + 'name' => '_M_node_count', + 'offset' => '50', + 'type' => '3463' + } + }, + 'Name' => 'struct std::_Rb_tree_header', + 'NameSpace' => 'std', + 'Size' => '40', + 'Type' => 'Struct' + }, + '10972219' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '10975132' + } + }, + 'Type' => 'Class' + }, + '10974367' => { + 'BaseType' => '565893', + 'Name' => 'log4cxx::spi::LoggerFactory const', + 'Type' => 'Const' + }, + '10975114' => { + 'Base' => { + '209311' => { + 'pos' => '1', + 'virtual' => 1 + }, + '565893' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'defaultloggerfactory.h', + 'Line' => '29', + 'Name' => 'log4cxx::DefaultLoggerFactory', + 'NameSpace' => 'log4cxx', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx20DefaultLoggerFactory4castERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::makeNewLoggerInstance(log4cxx::helpers::Pool&, std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx20DefaultLoggerFactory21makeNewLoggerInstanceERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '(int (*)(...)) (& typeinfo for log4cxx::DefaultLoggerFactory) [_ZTIN7log4cxx20DefaultLoggerFactoryE]', + '72' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::~DefaultLoggerFactory() [_ZN7log4cxx20DefaultLoggerFactoryD1Ev]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::~DefaultLoggerFactory() [_ZN7log4cxx20DefaultLoggerFactoryD0Ev]', + '88' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::getClass() const [_ZNK7log4cxx20DefaultLoggerFactory8getClassEv]', + '96' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx20DefaultLoggerFactory10instanceofERKNS_7helpers5ClassE]' + } + }, + '10975132' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'defaultloggerfactory.h', + 'Line' => '34', + 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory', + 'NameSpace' => 'log4cxx::DefaultLoggerFactory', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory::~ClazzDefaultLoggerFactory() [_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD2Ev]', + '24' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory::~ClazzDefaultLoggerFactory() [_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory::getName[abi:cxx11]() const [_ZNK7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactory7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory) [_ZTIN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryE]' + } + }, + '10975279' => { + 'BaseType' => '10975132', + 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory const', + 'Size' => '8', + 'Type' => 'Const' + }, + '10975547' => { + 'BaseType' => '10975114', + 'Name' => 'log4cxx::DefaultLoggerFactory const', + 'Size' => '8', + 'Type' => 'Const' + }, + '10982933' => { + 'BaseType' => '10972219', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '10982938' => { + 'BaseType' => '10982933', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '10983084' => { + 'BaseType' => '566426', + 'Name' => 'log4cxx::Logger*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '10983089' => { + 'BaseType' => '10983084', + 'Name' => 'log4cxx::Logger*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '10983535' => { + 'BaseType' => '10975547', + 'Name' => 'log4cxx::DefaultLoggerFactory const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '10983540' => { + 'BaseType' => '10983535', + 'Name' => 'log4cxx::DefaultLoggerFactory const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '10983545' => { + 'BaseType' => '10975114', + 'Name' => 'log4cxx::DefaultLoggerFactory*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '10983550' => { + 'BaseType' => '10983545', + 'Name' => 'log4cxx::DefaultLoggerFactory*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '10983565' => { + 'BaseType' => '10975132', + 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '10983570' => { + 'BaseType' => '10983565', + 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '10983575' => { + 'BaseType' => '10975279', + 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '10983580' => { + 'BaseType' => '10983575', + 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '10984793' => { + 'BaseType' => '10974367', + 'Name' => 'log4cxx::spi::LoggerFactory const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '10999165' => { + 'BaseType' => '565893', + 'Name' => 'log4cxx::spi::LoggerFactory*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '10999170' => { + 'BaseType' => '10999165', + 'Name' => 'log4cxx::spi::LoggerFactory*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11254113' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '11314120' + } + }, + 'Type' => 'Struct' + }, + '11255087' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '11257503' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '11314120' + }, + '1' => { + 'key' => '_Dp', + 'type' => '11254113' + } + }, + 'Type' => 'Class' + }, + '11255717' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '11254113' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '11254113' + } + }, + 'Type' => 'Struct' + }, + '11255975' => { + 'Base' => { + '11255717' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '11254113' + } + }, + 'Type' => 'Struct' + }, + '11256281' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '11322991' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::spi::DefaultRepositorySelector::DefaultRepositorySelectorPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '11322991' + } + }, + 'Type' => 'Struct' + }, + '11256539' => { + 'Base' => { + '11255975' => { + 'pos' => '0' + }, + '11256281' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::spi::DefaultRepositorySelector::DefaultRepositorySelectorPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '11322991' + } + }, + 'Type' => 'Struct' + }, + '11257503' => { + 'Base' => { + '11256539' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '11322991' + } + }, + 'Type' => 'Class' + }, + '11258983' => { + 'Base' => { + '11255087' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '11314120' + }, + '1' => { + 'key' => '_Dp', + 'type' => '11254113' + } + }, + 'Type' => 'Struct' + }, + '11259214' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '11258983' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '11314120' + }, + '1' => { + 'key' => '_Dp', + 'type' => '11254113' + } + }, + 'Type' => 'Class' + }, + '11314111' => { + 'Base' => { + '209311' => { + 'pos' => '1', + 'virtual' => 1 + }, + '3118493' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'defaultrepositoryselector.h', + 'Line' => '30', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '11259214' + } + }, + 'Name' => 'log4cxx::spi::DefaultRepositorySelector', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi25DefaultRepositorySelector4castERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::getLoggerRepository() [_ZN7log4cxx3spi25DefaultRepositorySelector19getLoggerRepositoryEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '(int (*)(...)) (& typeinfo for log4cxx::spi::DefaultRepositorySelector) [_ZTIN7log4cxx3spi25DefaultRepositorySelectorE]', + '72' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::~DefaultRepositorySelector() [_ZN7log4cxx3spi25DefaultRepositorySelectorD1Ev]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::~DefaultRepositorySelector() [_ZN7log4cxx3spi25DefaultRepositorySelectorD0Ev]', + '88' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::getClass() const [_ZNK7log4cxx3spi25DefaultRepositorySelector8getClassEv]', + '96' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi25DefaultRepositorySelector10instanceofERKNS_7helpers5ClassE]' + } + }, + '11314120' => { + 'Line' => '24', + 'Memb' => { + '0' => { + 'name' => 'repository', + 'offset' => '0', + 'type' => '565552' + } + }, + 'Name' => 'struct log4cxx::spi::DefaultRepositorySelector::DefaultRepositorySelectorPrivate', + 'NameSpace' => 'log4cxx::spi::DefaultRepositorySelector', + 'Private' => 1, + 'Size' => '16', + 'Source' => 'defaultrepositoryselector.cpp', + 'Type' => 'Struct' + }, + '11314196' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'defaultrepositoryselector.h', + 'Line' => '35', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector', + 'NameSpace' => 'log4cxx::spi::DefaultRepositorySelector', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector::~ClazzDefaultRepositorySelector() [_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD2Ev]', + '24' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector::~ClazzDefaultRepositorySelector() [_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector::getName[abi:cxx11]() const [_ZNK7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelector7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector) [_ZTIN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorE]' + } + }, + '11314312' => { + 'BaseType' => '11314196', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11314552' => { + 'BaseType' => '11314111', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector const', + 'Type' => 'Const' + }, + '11314700' => { + 'BaseType' => '565552', + 'Name' => 'log4cxx::spi::LoggerRepositoryPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '11315515' => { + 'BaseType' => '3118493', + 'Name' => 'log4cxx::spi::RepositorySelector const', + 'Type' => 'Const' + }, + '11322991' => { + 'BaseType' => '11314120', + 'Name' => 'struct log4cxx::spi::DefaultRepositorySelector::DefaultRepositorySelectorPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11323653' => { + 'BaseType' => '11314196', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11323658' => { + 'BaseType' => '11314312', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11324886' => { + 'BaseType' => '11315515', + 'Name' => 'log4cxx::spi::RepositorySelector const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11324891' => { + 'BaseType' => '11314552', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11324896' => { + 'BaseType' => '11324891', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11326698' => { + 'BaseType' => '11314111', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11326703' => { + 'BaseType' => '11326698', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11333926' => { + 'BaseType' => '3118493', + 'Name' => 'log4cxx::spi::RepositorySelector*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11333931' => { + 'BaseType' => '11333926', + 'Name' => 'log4cxx::spi::RepositorySelector*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11515853' => { + 'Base' => { + '11516005' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '274', + 'Name' => 'log4cxx::helpers::SocketTimeoutException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SocketTimeoutException::~SocketTimeoutException() [_ZN7log4cxx7helpers22SocketTimeoutExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SocketTimeoutException::~SocketTimeoutException() [_ZN7log4cxx7helpers22SocketTimeoutExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SocketTimeoutException) [_ZTIN7log4cxx7helpers22SocketTimeoutExceptionE]' + } + }, + '11516000' => { + 'BaseType' => '11515853', + 'Name' => 'log4cxx::helpers::SocketTimeoutException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11516005' => { + 'Base' => { + '11516162' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '259', + 'Name' => 'log4cxx::helpers::InterruptedIOException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::InterruptedIOException::~InterruptedIOException() [_ZN7log4cxx7helpers22InterruptedIOExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::InterruptedIOException::~InterruptedIOException() [_ZN7log4cxx7helpers22InterruptedIOExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InterruptedIOException) [_ZTIN7log4cxx7helpers22InterruptedIOExceptionE]' + } + }, + '11516157' => { + 'BaseType' => '11516005', + 'Name' => 'log4cxx::helpers::InterruptedIOException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11516162' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '89', + 'Name' => 'log4cxx::helpers::IOException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::IOException::~IOException() [_ZN7log4cxx7helpers11IOExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::IOException::~IOException() [_ZN7log4cxx7helpers11IOExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::IOException) [_ZTIN7log4cxx7helpers11IOExceptionE]' + } + }, + '11516394' => { + 'BaseType' => '11516162', + 'Name' => 'log4cxx::helpers::IOException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11516399' => { + 'Base' => { + '11516556' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '245', + 'Name' => 'log4cxx::helpers::BindException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::BindException::~BindException() [_ZN7log4cxx7helpers13BindExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::BindException::~BindException() [_ZN7log4cxx7helpers13BindExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::BindException) [_ZTIN7log4cxx7helpers13BindExceptionE]' + } + }, + '11516551' => { + 'BaseType' => '11516399', + 'Name' => 'log4cxx::helpers::BindException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11516556' => { + 'Base' => { + '11516162' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '212', + 'Name' => 'log4cxx::helpers::SocketException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SocketException::~SocketException() [_ZN7log4cxx7helpers15SocketExceptionD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SocketException::~SocketException() [_ZN7log4cxx7helpers15SocketExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SocketException) [_ZTIN7log4cxx7helpers15SocketExceptionE]' + } + }, + '11516740' => { + 'BaseType' => '11516556', + 'Name' => 'log4cxx::helpers::SocketException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11516745' => { + 'Base' => { + '11516556' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '233', + 'Name' => 'log4cxx::helpers::ClosedChannelException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::ClosedChannelException::~ClosedChannelException() [_ZN7log4cxx7helpers22ClosedChannelExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ClosedChannelException::~ClosedChannelException() [_ZN7log4cxx7helpers22ClosedChannelExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ClosedChannelException) [_ZTIN7log4cxx7helpers22ClosedChannelExceptionE]' + } + }, + '11516892' => { + 'BaseType' => '11516745', + 'Name' => 'log4cxx::helpers::ClosedChannelException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11516897' => { + 'Base' => { + '11516556' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '225', + 'Name' => 'log4cxx::helpers::ConnectException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::ConnectException::~ConnectException() [_ZN7log4cxx7helpers16ConnectExceptionD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ConnectException::~ConnectException() [_ZN7log4cxx7helpers16ConnectExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ConnectException) [_ZTIN7log4cxx7helpers16ConnectExceptionE]' + } + }, + '11517049' => { + 'BaseType' => '11516897', + 'Name' => 'log4cxx::helpers::ConnectException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11517054' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '201', + 'Name' => 'log4cxx::helpers::IllegalStateException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::IllegalStateException::~IllegalStateException() [_ZN7log4cxx7helpers21IllegalStateExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::IllegalStateException::~IllegalStateException() [_ZN7log4cxx7helpers21IllegalStateExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::IllegalStateException) [_ZTIN7log4cxx7helpers21IllegalStateExceptionE]' + } + }, + '11517201' => { + 'BaseType' => '11517054', + 'Name' => 'log4cxx::helpers::IllegalStateException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11517206' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '193', + 'Name' => 'log4cxx::helpers::NoSuchElementException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::NoSuchElementException::~NoSuchElementException() [_ZN7log4cxx7helpers22NoSuchElementExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::NoSuchElementException::~NoSuchElementException() [_ZN7log4cxx7helpers22NoSuchElementExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::NoSuchElementException) [_ZTIN7log4cxx7helpers22NoSuchElementExceptionE]' + } + }, + '11517353' => { + 'BaseType' => '11517206', + 'Name' => 'log4cxx::helpers::NoSuchElementException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11517699' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '155', + 'Name' => 'log4cxx::helpers::IllegalMonitorStateException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::IllegalMonitorStateException::~IllegalMonitorStateException() [_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::IllegalMonitorStateException::~IllegalMonitorStateException() [_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::IllegalMonitorStateException) [_ZTIN7log4cxx7helpers28IllegalMonitorStateExceptionE]' + } + }, + '11517851' => { + 'BaseType' => '11517699', + 'Name' => 'log4cxx::helpers::IllegalMonitorStateException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11517856' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '145', + 'Name' => 'log4cxx::helpers::TranscoderException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::TranscoderException::~TranscoderException() [_ZN7log4cxx7helpers19TranscoderExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::TranscoderException::~TranscoderException() [_ZN7log4cxx7helpers19TranscoderExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TranscoderException) [_ZTIN7log4cxx7helpers19TranscoderExceptionE]' + } + }, + '11518031' => { + 'BaseType' => '11517856', + 'Name' => 'log4cxx::helpers::TranscoderException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11518036' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '133', + 'Name' => 'log4cxx::helpers::ThreadException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::ThreadException::~ThreadException() [_ZN7log4cxx7helpers15ThreadExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ThreadException::~ThreadException() [_ZN7log4cxx7helpers15ThreadExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ThreadException) [_ZTIN7log4cxx7helpers15ThreadExceptionE]' + } + }, + '11518247' => { + 'BaseType' => '11518036', + 'Name' => 'log4cxx::helpers::ThreadException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11518252' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '122', + 'Name' => 'log4cxx::helpers::InterruptedException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::InterruptedException::~InterruptedException() [_ZN7log4cxx7helpers20InterruptedExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::InterruptedException::~InterruptedException() [_ZN7log4cxx7helpers20InterruptedExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InterruptedException) [_ZTIN7log4cxx7helpers20InterruptedExceptionE]' + } + }, + '11518458' => { + 'BaseType' => '11518252', + 'Name' => 'log4cxx::helpers::InterruptedException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11518463' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '111', + 'Name' => 'log4cxx::helpers::PoolException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::PoolException::~PoolException() [_ZN7log4cxx7helpers13PoolExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::PoolException::~PoolException() [_ZN7log4cxx7helpers13PoolExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::PoolException) [_ZTIN7log4cxx7helpers13PoolExceptionE]' + } + }, + '11518638' => { + 'BaseType' => '11518463', + 'Name' => 'log4cxx::helpers::PoolException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11518643' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '101', + 'Name' => 'log4cxx::helpers::MissingResourceException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::MissingResourceException::~MissingResourceException() [_ZN7log4cxx7helpers24MissingResourceExceptionD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::MissingResourceException::~MissingResourceException() [_ZN7log4cxx7helpers24MissingResourceExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::MissingResourceException) [_ZTIN7log4cxx7helpers24MissingResourceExceptionE]' + } + }, + '11518818' => { + 'BaseType' => '11518643', + 'Name' => 'log4cxx::helpers::MissingResourceException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11519188' => { + 'Base' => { + '2503005' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '67', + 'Name' => 'log4cxx::helpers::NullPointerException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::NullPointerException::~NullPointerException() [_ZN7log4cxx7helpers20NullPointerExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::NullPointerException::~NullPointerException() [_ZN7log4cxx7helpers20NullPointerExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::NullPointerException) [_ZTIN7log4cxx7helpers20NullPointerExceptionE]' + } + }, + '11519337' => { + 'BaseType' => '11519188', + 'Name' => 'log4cxx::helpers::NullPointerException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '11524945' => { + 'BaseType' => '11524950', + 'Name' => 'char const[18]&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11524950' => { + 'BaseType' => '191037', + 'Name' => 'char const[18]', + 'Size' => '18', + 'Type' => 'Array' + }, + '11525256' => { + 'BaseType' => '2499676', + 'Name' => 'log4cxx::helpers::Exception const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525261' => { + 'BaseType' => '1374417', + 'Name' => 'log4cxx::helpers::Exception&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525271' => { + 'BaseType' => '2526621', + 'Name' => 'log4cxx::helpers::Exception const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525276' => { + 'BaseType' => '191030', + 'Name' => 'char[129]', + 'Size' => '129', + 'Type' => 'Array' + }, + '11525292' => { + 'BaseType' => '11515853', + 'Name' => 'log4cxx::helpers::SocketTimeoutException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525297' => { + 'BaseType' => '11525292', + 'Name' => 'log4cxx::helpers::SocketTimeoutException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525302' => { + 'BaseType' => '11516000', + 'Name' => 'log4cxx::helpers::SocketTimeoutException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525307' => { + 'BaseType' => '11515853', + 'Name' => 'log4cxx::helpers::SocketTimeoutException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525312' => { + 'BaseType' => '11516005', + 'Name' => 'log4cxx::helpers::InterruptedIOException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525317' => { + 'BaseType' => '11525312', + 'Name' => 'log4cxx::helpers::InterruptedIOException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525322' => { + 'BaseType' => '11516157', + 'Name' => 'log4cxx::helpers::InterruptedIOException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525327' => { + 'BaseType' => '11516005', + 'Name' => 'log4cxx::helpers::InterruptedIOException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525332' => { + 'BaseType' => '11516399', + 'Name' => 'log4cxx::helpers::BindException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525337' => { + 'BaseType' => '11525332', + 'Name' => 'log4cxx::helpers::BindException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525342' => { + 'BaseType' => '11516551', + 'Name' => 'log4cxx::helpers::BindException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525347' => { + 'BaseType' => '11516399', + 'Name' => 'log4cxx::helpers::BindException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525352' => { + 'BaseType' => '11516745', + 'Name' => 'log4cxx::helpers::ClosedChannelException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525357' => { + 'BaseType' => '11525352', + 'Name' => 'log4cxx::helpers::ClosedChannelException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525362' => { + 'BaseType' => '11516892', + 'Name' => 'log4cxx::helpers::ClosedChannelException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525367' => { + 'BaseType' => '11516745', + 'Name' => 'log4cxx::helpers::ClosedChannelException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525372' => { + 'BaseType' => '11516897', + 'Name' => 'log4cxx::helpers::ConnectException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525377' => { + 'BaseType' => '11525372', + 'Name' => 'log4cxx::helpers::ConnectException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525382' => { + 'BaseType' => '11517049', + 'Name' => 'log4cxx::helpers::ConnectException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525387' => { + 'BaseType' => '11516897', + 'Name' => 'log4cxx::helpers::ConnectException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525392' => { + 'BaseType' => '11516556', + 'Name' => 'log4cxx::helpers::SocketException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525397' => { + 'BaseType' => '11525392', + 'Name' => 'log4cxx::helpers::SocketException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525402' => { + 'BaseType' => '11516740', + 'Name' => 'log4cxx::helpers::SocketException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525407' => { + 'BaseType' => '11516556', + 'Name' => 'log4cxx::helpers::SocketException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525412' => { + 'BaseType' => '11517054', + 'Name' => 'log4cxx::helpers::IllegalStateException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525417' => { + 'BaseType' => '11525412', + 'Name' => 'log4cxx::helpers::IllegalStateException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525422' => { + 'BaseType' => '11517201', + 'Name' => 'log4cxx::helpers::IllegalStateException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525427' => { + 'BaseType' => '11517054', + 'Name' => 'log4cxx::helpers::IllegalStateException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525432' => { + 'BaseType' => '11517206', + 'Name' => 'log4cxx::helpers::NoSuchElementException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525437' => { + 'BaseType' => '11525432', + 'Name' => 'log4cxx::helpers::NoSuchElementException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525442' => { + 'BaseType' => '11517353', + 'Name' => 'log4cxx::helpers::NoSuchElementException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525447' => { + 'BaseType' => '11517206', + 'Name' => 'log4cxx::helpers::NoSuchElementException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525492' => { + 'BaseType' => '11517699', + 'Name' => 'log4cxx::helpers::IllegalMonitorStateException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525497' => { + 'BaseType' => '11525492', + 'Name' => 'log4cxx::helpers::IllegalMonitorStateException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525502' => { + 'BaseType' => '11517851', + 'Name' => 'log4cxx::helpers::IllegalMonitorStateException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525507' => { + 'BaseType' => '11517699', + 'Name' => 'log4cxx::helpers::IllegalMonitorStateException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525512' => { + 'BaseType' => '11517856', + 'Name' => 'log4cxx::helpers::TranscoderException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525517' => { + 'BaseType' => '11525512', + 'Name' => 'log4cxx::helpers::TranscoderException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525522' => { + 'BaseType' => '11518031', + 'Name' => 'log4cxx::helpers::TranscoderException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525527' => { + 'BaseType' => '11517856', + 'Name' => 'log4cxx::helpers::TranscoderException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525532' => { + 'BaseType' => '11518036', + 'Name' => 'log4cxx::helpers::ThreadException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525537' => { + 'BaseType' => '11525532', + 'Name' => 'log4cxx::helpers::ThreadException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525542' => { + 'BaseType' => '11518247', + 'Name' => 'log4cxx::helpers::ThreadException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525547' => { + 'BaseType' => '11518036', + 'Name' => 'log4cxx::helpers::ThreadException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525552' => { + 'BaseType' => '11518252', + 'Name' => 'log4cxx::helpers::InterruptedException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525557' => { + 'BaseType' => '11525552', + 'Name' => 'log4cxx::helpers::InterruptedException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525562' => { + 'BaseType' => '11518458', + 'Name' => 'log4cxx::helpers::InterruptedException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525567' => { + 'BaseType' => '11518252', + 'Name' => 'log4cxx::helpers::InterruptedException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525572' => { + 'BaseType' => '11518463', + 'Name' => 'log4cxx::helpers::PoolException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525577' => { + 'BaseType' => '11525572', + 'Name' => 'log4cxx::helpers::PoolException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525582' => { + 'BaseType' => '11518638', + 'Name' => 'log4cxx::helpers::PoolException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525587' => { + 'BaseType' => '11518463', + 'Name' => 'log4cxx::helpers::PoolException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525592' => { + 'BaseType' => '11518643', + 'Name' => 'log4cxx::helpers::MissingResourceException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525597' => { + 'BaseType' => '11525592', + 'Name' => 'log4cxx::helpers::MissingResourceException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525602' => { + 'BaseType' => '11518818', + 'Name' => 'log4cxx::helpers::MissingResourceException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525607' => { + 'BaseType' => '11518643', + 'Name' => 'log4cxx::helpers::MissingResourceException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525612' => { + 'BaseType' => '11516162', + 'Name' => 'log4cxx::helpers::IOException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525617' => { + 'BaseType' => '11525612', + 'Name' => 'log4cxx::helpers::IOException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525622' => { + 'BaseType' => '11516394', + 'Name' => 'log4cxx::helpers::IOException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525627' => { + 'BaseType' => '11516162', + 'Name' => 'log4cxx::helpers::IOException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525652' => { + 'BaseType' => '11519188', + 'Name' => 'log4cxx::helpers::NullPointerException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11525657' => { + 'BaseType' => '11525652', + 'Name' => 'log4cxx::helpers::NullPointerException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11525662' => { + 'BaseType' => '11519337', + 'Name' => 'log4cxx::helpers::NullPointerException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11525667' => { + 'BaseType' => '11519188', + 'Name' => 'log4cxx::helpers::NullPointerException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11845864' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '10060076' + 'type' => '11930666' + } + }, + 'Type' => 'Struct' + }, + '11846838' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '11849260' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '11930666' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Dp', + 'type' => '11845864' } }, 'Type' => 'Class' }, - '10034964' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + '11847474' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '11845864' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '11845864' + } + }, + 'Type' => 'Struct' + }, + '11847732' => { + 'Base' => { + '11847474' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '11845864' + } + }, + 'Type' => 'Struct' + }, + '11848038' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '11939483' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::Hierarchy::HierarchyPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '11939483' + } + }, + 'Type' => 'Struct' + }, + '11848296' => { + 'Base' => { + '11847732' => { + 'pos' => '0' + }, + '11848038' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::Hierarchy::HierarchyPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '11939483' + } + }, + 'Type' => 'Struct' + }, + '11849260' => { + 'Base' => { + '11848296' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '11939483' + } + }, + 'Type' => 'Class' + }, + '11850702' => { + 'Base' => { + '11846838' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '10060076' + 'type' => '11930666' + }, + '1' => { + 'key' => '_Dp', + 'type' => '11845864' } }, 'Type' => 'Struct' }, - '10034978' => { - 'BaseType' => '10060076', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' + '11850904' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '11850702' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '11930666' + }, + '1' => { + 'key' => '_Dp', + 'type' => '11845864' + } + }, + 'Type' => 'Class' }, - '10035001' => { + '11851511' => { 'Base' => { - '10034816' => { + '11857322' => { + 'access' => 'protected', 'pos' => '0' } }, 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '457528' + } + }, + 'Type' => 'Class' + }, + '11854759' => { + 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1591', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '10062772' + 'type' => '11939900' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '1216676' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__weak_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '10060076' + 'type' => '567947' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '10035287' => { - 'BaseType' => '10034978', + '11855167' => { + 'BaseType' => '877883', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', + 'Line' => '1602', + 'Name' => 'std::__weak_ptr::element_type', + 'NameSpace' => 'std::__weak_ptr', 'Type' => 'Typedef' }, - '10036181' => { + '11856543' => { 'Base' => { - '10035001' => { + '11900554' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '457528' + } + }, + 'Type' => 'Class' + }, + '11856829' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '11856543' + } + }, + 'Type' => 'Struct' + }, + '11856843' => { + 'BaseType' => '574259', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '11857322' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '84', + 'Memb' => { + '0' => { + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '11857521' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '457528' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '11856543' + } + }, + 'Type' => 'Struct' + }, + '11857335' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', + 'Memb' => { + '0' => { + 'name' => '_M_start', + 'offset' => '0', + 'type' => '11857509' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '11857509' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '11857509' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '11857509' => { + 'BaseType' => '11901023', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '11857521' => { + 'Base' => { + '11856543' => { + 'pos' => '0' + }, + '11857335' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '11900554' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '10060076' + 'type' => '457528' } }, 'Type' => 'Class' }, - '10058446' => { + '11900798' => { + 'Base' => { + '11856829' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '11856543' + } + }, + 'Type' => 'Struct' + }, + '11901023' => { + 'BaseType' => '11856843', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '11925401' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -96870,1824 +97835,1445 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '10060110' + 'type' => '5659276' } }, 'Type' => 'Class' }, - '10060076' => { + '11928021' => { + 'BaseType' => '1378014', + 'Name' => 'log4cxx::spi::ErrorHandler const', + 'Type' => 'Const' + }, + '11930651' => { + 'BaseType' => '5659265', + 'Name' => 'log4cxx::varia::FallbackErrorHandler const', + 'Size' => '16', + 'Type' => 'Const' + }, + '11930657' => { 'Base' => { - '2271640' => { - 'pos' => '0' - } + '565598' => { + 'pos' => '0' + } }, - 'Header' => 'loggerpatternconverter.h', - 'Line' => '36', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter', - 'NameSpace' => 'log4cxx::pattern', + 'Copied' => 1, + 'Header' => 'hierarchy.h', + 'Line' => '55', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '11850904' + } + }, + 'Name' => 'log4cxx::Hierarchy', + 'NameSpace' => 'log4cxx', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern22LoggerPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '104' => '(int (*)(...)) log4cxx::Hierarchy::ensureIsConfigured(std::function) [_ZN7log4cxx9Hierarchy18ensureIsConfiguredESt8functionIFvvEE]', + '112' => '(int (*)(...)) log4cxx::Hierarchy::isDisabled(int) const [_ZNK7log4cxx9Hierarchy10isDisabledEi]', + '120' => '(int (*)(...)) log4cxx::Hierarchy::setThreshold(std::shared_ptr const&) [_ZN7log4cxx9Hierarchy12setThresholdERKSt10shared_ptrINS_5LevelEE]', + '128' => '(int (*)(...)) log4cxx::Hierarchy::setThreshold(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx9Hierarchy12setThresholdERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '136' => '(int (*)(...)) log4cxx::Hierarchy::emitNoAppenderWarning(log4cxx::Logger const*) [_ZN7log4cxx9Hierarchy21emitNoAppenderWarningEPKNS_6LoggerE]', + '144' => '(int (*)(...)) log4cxx::Hierarchy::getThreshold() const [_ZNK7log4cxx9Hierarchy12getThresholdEv]', + '152' => '(int (*)(...)) log4cxx::Hierarchy::getLogger(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx9Hierarchy9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', '16' => '0u', + '160' => '(int (*)(...)) log4cxx::Hierarchy::getLogger(std::__cxx11::basic_string, std::allocator > const&, std::shared_ptr const&) [_ZN7log4cxx9Hierarchy9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE]', + '168' => '(int (*)(...)) log4cxx::Hierarchy::getRootLogger() const [_ZNK7log4cxx9Hierarchy13getRootLoggerEv]', + '176' => '(int (*)(...)) log4cxx::Hierarchy::exists(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx9Hierarchy6existsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '184' => '(int (*)(...)) log4cxx::Hierarchy::shutdown() [_ZN7log4cxx9Hierarchy8shutdownEv]', + '192' => '(int (*)(...)) log4cxx::Hierarchy::getCurrentLoggers() const [_ZNK7log4cxx9Hierarchy17getCurrentLoggersEv]', + '200' => '(int (*)(...)) log4cxx::Hierarchy::fireAddAppenderEvent(log4cxx::Logger const*, log4cxx::Appender const*) [_ZN7log4cxx9Hierarchy20fireAddAppenderEventEPKNS_6LoggerEPKNS_8AppenderE]', + '208' => '(int (*)(...)) log4cxx::Hierarchy::fireRemoveAppenderEvent(log4cxx::Logger const*, log4cxx::Appender const*) [_ZN7log4cxx9Hierarchy23fireRemoveAppenderEventEPKNS_6LoggerEPKNS_8AppenderE]', + '216' => '(int (*)(...)) log4cxx::Hierarchy::resetConfiguration() [_ZN7log4cxx9Hierarchy18resetConfigurationEv]', + '224' => '(int (*)(...)) log4cxx::Hierarchy::isConfigured() [_ZN7log4cxx9Hierarchy12isConfiguredEv]', + '232' => '(int (*)(...)) log4cxx::Hierarchy::setConfigured(bool) [_ZN7log4cxx9Hierarchy13setConfiguredEb]', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LoggerPatternConverter) [_ZTIN7log4cxx7pattern22LoggerPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::~LoggerPatternConverter() [_ZN7log4cxx7pattern22LoggerPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::~LoggerPatternConverter() [_ZN7log4cxx7pattern22LoggerPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::getClass() const [_ZNK7log4cxx7pattern22LoggerPatternConverter8getClassEv]', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::Hierarchy) [_ZTIN7log4cxx9HierarchyE]', + '56' => '(int (*)(...)) log4cxx::Hierarchy::~Hierarchy() [_ZN7log4cxx9HierarchyD1Ev]', + '64' => '(int (*)(...)) log4cxx::Hierarchy::~Hierarchy() [_ZN7log4cxx9HierarchyD0Ev]', + '72' => '(int (*)(...)) log4cxx::Hierarchy::getClass() const [_ZNK7log4cxx9Hierarchy8getClassEv]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern22LoggerPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern22LoggerPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + '80' => '(int (*)(...)) log4cxx::Hierarchy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx9Hierarchy10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::Hierarchy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx9Hierarchy4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::Hierarchy::addHierarchyEventListener(std::shared_ptr const&) [_ZN7log4cxx9Hierarchy25addHierarchyEventListenerERKSt10shared_ptrINS_3spi22HierarchyEventListenerEE]' } }, - '10060110' => { + '11930666' => { + 'Line' => '46', + 'Memb' => { + '0' => { + 'name' => 'pool', + 'offset' => '0', + 'type' => '207830' + }, + '1' => { + 'name' => 'mutex', + 'offset' => '22', + 'type' => '155212' + }, + '10' => { + 'name' => 'loggers', + 'offset' => '352', + 'type' => '18613318' + }, + '11' => { + 'name' => 'provisionNodes', + 'offset' => '520', + 'type' => '18613330' + }, + '12' => { + 'name' => 'allAppenders', + 'offset' => '598', + 'type' => '874087' + }, + '2' => { + 'name' => 'configuredMutex', + 'offset' => '86', + 'type' => '106135' + }, + '3' => { + 'name' => 'configured', + 'offset' => '150', + 'type' => '174077' + }, + '4' => { + 'name' => 'emittedNoAppenderWarning', + 'offset' => '151', + 'type' => '174077' + }, + '5' => { + 'name' => 'emittedNoResourceBundleWarning', + 'offset' => '152', + 'type' => '174077' + }, + '6' => { + 'name' => 'thresholdInt', + 'offset' => '256', + 'type' => '190263' + }, + '7' => { + 'name' => 'listeners', + 'offset' => '260', + 'type' => '18601086' + }, + '8' => { + 'name' => 'root', + 'offset' => '296', + 'type' => '3121982' + }, + '9' => { + 'name' => 'threshold', + 'offset' => '324', + 'type' => '567044' + } + }, + 'Name' => 'struct log4cxx::Hierarchy::HierarchyPrivate', + 'NameSpace' => 'log4cxx::Hierarchy', + 'Private' => 1, + 'Size' => '280', + 'Source' => 'hierarchy.cpp', + 'Type' => 'Struct' + }, + '11930671' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'loggerpatternconverter.h', - 'Line' => '39', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter', - 'NameSpace' => 'log4cxx::pattern::LoggerPatternConverter', + 'Header' => 'hierarchy.h', + 'Line' => '61', + 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy', + 'NameSpace' => 'log4cxx::Hierarchy', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter::~ClazzLoggerPatternConverter() [_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter::~ClazzLoggerPatternConverter() [_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD0Ev]', + '16' => '(int (*)(...)) log4cxx::Hierarchy::ClazzHierarchy::~ClazzHierarchy() [_ZN7log4cxx9Hierarchy14ClazzHierarchyD1Ev]', + '24' => '(int (*)(...)) log4cxx::Hierarchy::ClazzHierarchy::~ClazzHierarchy() [_ZN7log4cxx9Hierarchy14ClazzHierarchyD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter) [_ZTIN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterE]' + '40' => '(int (*)(...)) log4cxx::Hierarchy::ClazzHierarchy::getName[abi:cxx11]() const [_ZNK7log4cxx9Hierarchy14ClazzHierarchy7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::Hierarchy::ClazzHierarchy) [_ZTIN7log4cxx9Hierarchy14ClazzHierarchyE]' } }, - '10060268' => { - 'BaseType' => '10060110', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter const', + '11930789' => { + 'BaseType' => '11930671', + 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11931256' => { + 'BaseType' => '3121982', + 'Name' => 'log4cxx::LoggerPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '11931440' => { + 'BaseType' => '878511', + 'Header' => 'appender.h', + 'Line' => '132', + 'Name' => 'log4cxx::AppenderWeakPtr', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '11939483' => { + 'BaseType' => '11930666', + 'Name' => 'struct log4cxx::Hierarchy::HierarchyPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11939744' => { + 'BaseType' => '11925401', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11939749' => { + 'BaseType' => '11939744', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '11939900' => { + 'BaseType' => '11855167', + 'Name' => 'std::__weak_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '11940412' => { + 'BaseType' => '1467730', + 'Name' => 'char const[16]&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Ref' }, - '10060678' => { - 'BaseType' => '10060076', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter const', - 'Size' => '16', + '11940801' => { + 'BaseType' => '5679463', + 'Name' => 'log4cxx::varia::FallbackErrorHandler*const', + 'Size' => '8', 'Type' => 'Const' }, - '10062279' => { - 'BaseType' => '10058446', - 'Name' => 'log4cxx::helpers::WideLife*', + '11940821' => { + 'BaseType' => '11930651', + 'Name' => 'log4cxx::varia::FallbackErrorHandler const*', 'Size' => '8', 'Type' => 'Pointer' }, - '10062285' => { - 'BaseType' => '10062279', - 'Name' => 'log4cxx::helpers::WideLife*const', + '11940826' => { + 'BaseType' => '11940821', + 'Name' => 'log4cxx::varia::FallbackErrorHandler const*const', 'Size' => '8', 'Type' => 'Const' }, - '10062772' => { - 'BaseType' => '10035287', - 'Name' => 'std::__shared_ptr::element_type*', + '11940831' => { + 'BaseType' => '11931256', + 'Name' => 'log4cxx::LoggerPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '11940856' => { + 'BaseType' => '11930671', + 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy*', 'Size' => '8', 'Type' => 'Pointer' }, - '10062790' => { - 'BaseType' => '10060076', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter*', + '11940861' => { + 'BaseType' => '11930789', + 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy const*', 'Size' => '8', 'Type' => 'Pointer' }, - '10062796' => { - 'BaseType' => '10062790', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter*const', + '11940871' => { + 'BaseType' => '5679453', + 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler*const', 'Size' => '8', 'Type' => 'Const' }, - '10062818' => { - 'BaseType' => '10036181', - 'Name' => 'std::shared_ptr&&', + '11940881' => { + 'BaseType' => '5679458', + 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler const*const', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Const' }, - '10062989' => { - 'BaseType' => '10060678', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter const*', + '11942139' => { + 'BaseType' => '11928021', + 'Name' => 'log4cxx::spi::ErrorHandler const*', 'Size' => '8', 'Type' => 'Pointer' }, - '10062995' => { - 'BaseType' => '10062989', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter const*const', + '11942144' => { + 'BaseType' => '11942139', + 'Name' => 'log4cxx::spi::ErrorHandler const*const', 'Size' => '8', 'Type' => 'Const' }, - '10063354' => { - 'BaseType' => '10060110', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter*', + '11942149' => { + 'BaseType' => '11930657', + 'Name' => 'log4cxx::Hierarchy*', 'Size' => '8', 'Type' => 'Pointer' }, - '10063360' => { - 'BaseType' => '10063354', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter*const', + '12065848' => { + 'BaseType' => '1390591', + 'Name' => 'log4cxx::spi::ErrorHandler*const', 'Size' => '8', 'Type' => 'Const' }, - '10063365' => { - 'BaseType' => '10060268', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10063371' => { - 'BaseType' => '10063365', - 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter const*const', + '1216676' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '771', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_pi', + 'offset' => '0', + 'type' => '572946' + } + }, + 'Name' => 'std::__weak_count<2>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '12407698' => { + 'BaseType' => '1934236', + 'Name' => 'log4cxx::File const*const', 'Size' => '8', 'Type' => 'Const' }, - '10154276' => { - 'Copied' => 1, - 'Header' => 'stl_map.h', - 'Line' => '100', - 'Memb' => { + '124236' => { + 'Copied' => 1, + 'Header' => 'ratio', + 'Line' => '266', + 'Name' => 'struct std::ratio<1l, 1000000000l>', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '10154289' + 'key' => '_Num', + 'type' => '190282', + 'val' => '1' + }, + '1' => { + 'key' => '_Den', + 'type' => '190282', + 'val' => '1000000000' } }, - 'Name' => 'std::map, std::__cxx11::basic_string >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Tp', - 'type' => '68' - } - }, - 'Type' => 'Class' - }, - '10154289' => { - 'BaseType' => '10171977', - 'Header' => 'stl_map.h', - 'Line' => '148', - 'Name' => 'std::map, std::__cxx11::basic_string >::_Rep_type', - 'NameSpace' => 'std::map, std::__cxx11::basic_string >', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' - }, - '10156661' => { + 'Type' => 'Struct' + }, + '124393' => { + 'Copied' => 1, + 'Header' => 'chrono', + 'Line' => '459', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '__r', + 'offset' => '0', + 'type' => '124563' + } + }, + 'Name' => 'struct std::chrono::duration >', + 'NameSpace' => 'std::chrono', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Rep', + 'type' => '190282' + }, + '1' => { + 'key' => '_Period', + 'type' => '124236' + } + }, + 'Type' => 'Struct' + }, + '124563' => { + 'BaseType' => '190282', + 'Header' => 'chrono', + 'Line' => '503', + 'Name' => 'std::chrono::duration >::rep', + 'NameSpace' => 'std::chrono::duration >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '125170' => { + 'Copied' => 1, + 'Header' => 'chrono', + 'Line' => '1125', + 'Name' => 'struct std::chrono::_V2::system_clock', + 'NameSpace' => 'std::chrono::_V2', + 'Size' => '1', + 'Type' => 'Struct' + }, + '125430' => { + 'Copied' => 1, + 'Header' => 'chrono', + 'Line' => '872', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '__d', + 'offset' => '0', + 'type' => '125504' + } + }, + 'Name' => 'struct std::chrono::time_point > >', + 'NameSpace' => 'std::chrono', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Clock', + 'type' => '125170' + }, + '1' => { + 'key' => '_Dur', + 'type' => '124393' + } + }, + 'Type' => 'Struct' + }, + '125504' => { + 'BaseType' => '124393', + 'Header' => 'chrono', + 'Line' => '878', + 'Name' => 'std::chrono::time_point > >::duration', + 'NameSpace' => 'std::chrono::time_point > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '12833633' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '10210047' + 'type' => '12959665' } }, 'Type' => 'Struct' }, - '10156747' => { + '12834607' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '10158279' + 'type' => '12837027' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '10210047' + 'type' => '12959665' }, '1' => { 'key' => '_Dp', - 'type' => '10156661' + 'type' => '12833633' } }, 'Type' => 'Class' }, - '10157070' => { - 'Base' => { - '10156661' => { - 'pos' => '0' - } - }, + '12835241' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '12833633' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '10156661' + 'type' => '12833633' } }, 'Type' => 'Struct' }, - '10157323' => { + '12835499' => { 'Base' => { - '10157070' => { + '12835241' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '10156661' + 'type' => '12833633' } }, 'Type' => 'Struct' }, - '10157619' => { + '12835805' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '10213604' + 'type' => '12979551' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::spi::LoggingEvent::LoggingEventPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::FileOutputStream::FileOutputStreamPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '10213604' + 'type' => '12979551' } }, 'Type' => 'Struct' }, - '10157879' => { + '12836063' => { 'Base' => { - '10157323' => { + '12835499' => { 'pos' => '0' }, - '10157619' => { + '12835805' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::spi::LoggingEvent::LoggingEventPrivate*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::FileOutputStream::FileOutputStreamPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '10213604' + 'type' => '12979551' } }, 'Type' => 'Struct' }, - '10158279' => { + '12837027' => { 'Base' => { - '10157879' => { + '12836063' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '10213604' - } - }, - 'Type' => 'Class' - }, - '10158608' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '10156747' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '10210047' - }, - '1' => { - 'key' => '_Dp', - 'type' => '10156661' + 'type' => '12979551' } }, 'Type' => 'Class' }, - '10170593' => { + '12838469' => { 'Base' => { - '10177642' => { - 'access' => 'private', + '12834607' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'stl_pair.h', + 'Header' => 'unique_ptr.h', 'Line' => '208', - 'Memb' => { - '0' => { - 'name' => 'first', - 'offset' => '0', - 'type' => '7336' - }, - '1' => { - 'name' => 'second', - 'offset' => '32', - 'type' => '68' - } - }, - 'Name' => 'struct std::pairconst, std::__cxx11::basic_string >', + 'Name' => 'struct std::__uniq_ptr_data >', 'NameSpace' => 'std', - 'Size' => '64', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_T1', - 'type' => '7336' + 'key' => '_Tp', + 'type' => '12959665' }, '1' => { - 'key' => '_T2', - 'type' => '68' - } - }, - 'Type' => 'Struct' - }, - '10171036' => { - 'Base' => { - '10189930' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::pair, std::allocator >, std::__cxx11::basic_string, std::allocator > >' - } - }, - 'Type' => 'Class' - }, - '10171437' => { - 'Base' => { - '10190524' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::_Rb_tree_node, std::allocator >, std::__cxx11::basic_string, std::allocator > > >' - } - }, - 'Type' => 'Class' - }, - '10171588' => { - 'Base' => { - '556185' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '216', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '32', - 'type' => '10192656' - } - }, - 'Name' => 'struct std::_Rb_tree_nodeconst, std::__cxx11::basic_string > >', - 'NameSpace' => 'std', - 'Size' => '96', - 'TParam' => { - '0' => { - 'key' => '_Val', - 'type' => '10170593' + 'key' => '_Dp', + 'type' => '12833633' } }, 'Type' => 'Struct' }, - '10171977' => { + '12838671' => { 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '436', + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { - 'access' => 'protected', - 'name' => '_M_impl', + 'access' => 'private', + 'name' => '_M_t', 'offset' => '0', - 'type' => '10171991' + 'type' => '12838469' } }, - 'Name' => 'std::_Rb_tree, std::pairconst, std::__cxx11::basic_string >, std::_Select1stconst, std::__cxx11::basic_string > >, std::less >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Val', - 'type' => '10170593' - }, - '2' => { - 'key' => '_KeyOfValue', - 'type' => '10181973' - }, - '3' => { - 'key' => '_Compare', - 'type' => '772116' - }, - '4' => { - 'key' => '_Alloc', - 'type' => '10171036' - } - }, - 'Type' => 'Class' - }, - '10171991' => { - 'Base' => { - '10171437' => { - 'pos' => '0' - }, - '556381' => { - 'pos' => '2' - }, - '772192' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '673', - 'Name' => 'struct std::_Rb_tree, std::pairconst, std::__cxx11::basic_string >, std::_Select1stconst, std::__cxx11::basic_string > >, std::less >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >::_Rb_tree_impl > >', - 'NameSpace' => 'std::_Rb_tree, std::pairconst, std::__cxx11::basic_string >, std::_Select1stconst, std::__cxx11::basic_string > >, std::less >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >', - 'Protected' => 1, - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key_compare', - 'type' => '772116' - } - }, - 'Type' => 'Struct' - }, - '10177642' => { - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '190', - 'Name' => 'std::__pair_baseconst, std::__cxx11::basic_string >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_U1', - 'type' => '7336' - }, - '1' => { - 'key' => '_U2', - 'type' => '68' - } - }, - 'Type' => 'Class' - }, - '10181941' => { - 'Header' => 'stl_function.h', - 'Line' => '105', - 'Name' => 'struct std::unary_functionconst, std::__cxx11::basic_string >, std::__cxx11::basic_stringconst>', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Arg', - 'type' => '10170593' + 'key' => '_Tp', + 'type' => '12959665' }, '1' => { - 'key' => '_Result', - 'type' => '7336' - } - }, - 'Type' => 'Struct' - }, - '10181973' => { - 'Base' => { - '10181941' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '1147', - 'Name' => 'struct std::_Select1stconst, std::__cxx11::basic_string > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Pair', - 'type' => '10170593' - } - }, - 'Type' => 'Struct' - }, - '10189930' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::__cxx11::basic_string > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '10170593' - } - }, - 'Type' => 'Class' - }, - '10190524' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::__cxx11::basic_string > > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '10171588' + 'key' => '_Dp', + 'type' => '12833633' } }, 'Type' => 'Class' }, - '10192656' => { + '1285667' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1379591' + } + }, + 'Type' => 'Struct' + }, + '12866354' => { 'Copied' => 1, - 'Header' => 'aligned_buffer.h', - 'Line' => '47', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '0', - 'type' => '3715227' - } - }, - 'Name' => 'struct __gnu_cxx::__aligned_membufconst, std::__cxx11::basic_string > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '64', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '10170593' - } - }, - 'Type' => 'Struct' - }, - '10208425' => { - 'Header' => 'widelife.h', - 'Line' => '36', + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_t', 'offset' => '0', - 'type' => '55091' + 'type' => '12871891' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '10210380' + 'key' => '_Tp', + 'type' => '12966918' + }, + '1' => { + 'key' => '_Dp', + 'type' => '12867017' } }, 'Type' => 'Class' }, - '10210047' => { - 'Line' => '45', - 'Memb' => { - '0' => { - 'name' => 'logger', - 'offset' => '0', - 'type' => '63706' - }, - '1' => { - 'name' => 'level', - 'offset' => '32', - 'type' => '409192' - }, - '10' => { - 'name' => 'threadName', - 'offset' => '152', - 'type' => '263006' - }, - '11' => { - 'name' => 'threadUserName', - 'offset' => '160', - 'type' => '263006' - }, - '12' => { - 'name' => 'chronoTimeStamp', - 'offset' => '168', - 'type' => '38897' - }, - '2' => { - 'name' => 'ndc', - 'offset' => '48', - 'type' => '2433139' - }, - '3' => { - 'name' => 'mdcCopy', - 'offset' => '56', - 'type' => '10215141' - }, - '4' => { - 'name' => 'properties', - 'offset' => '64', - 'type' => '10215147' - }, - '5' => { - 'name' => 'ndcLookupRequired', - 'offset' => '72', - 'type' => '50284' - }, - '6' => { - 'name' => 'mdcCopyLookupRequired', - 'offset' => '73', - 'type' => '50284' - }, - '7' => { - 'name' => 'message', - 'offset' => '80', - 'type' => '63706' - }, - '8' => { - 'name' => 'timeStamp', - 'offset' => '112', - 'type' => '649587' - }, - '9' => { - 'name' => 'locationInfo', - 'offset' => '120', - 'type' => '835578' - } - }, - 'Name' => 'struct log4cxx::spi::LoggingEvent::LoggingEventPrivate', - 'NameSpace' => 'log4cxx::spi::LoggingEvent', - 'Private' => 1, - 'Size' => '176', - 'Source' => 'loggingevent.cpp', - 'Type' => 'Struct' - }, - '10210380' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'loggingevent.h', - 'Line' => '53', - 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent', - 'NameSpace' => 'log4cxx::spi::LoggingEvent', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::LoggingEvent::ClazzLoggingEvent::~ClazzLoggingEvent() [_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::LoggingEvent::ClazzLoggingEvent::~ClazzLoggingEvent() [_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::spi::LoggingEvent::ClazzLoggingEvent::newInstance() const [_ZTch0_h0_NK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::LoggingEvent::ClazzLoggingEvent::getName[abi:cxx11]() const [_ZNK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::spi::LoggingEvent::ClazzLoggingEvent::newInstance() const [_ZNK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggingEvent::ClazzLoggingEvent) [_ZTIN7log4cxx3spi12LoggingEvent17ClazzLoggingEventE]' - } - }, - '1021047' => { - 'BaseType' => '835099', - 'Name' => 'log4cxx::Level const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1021053' => { - 'BaseType' => '1021047', - 'Name' => 'log4cxx::Level const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10210601' => { - 'BaseType' => '10210380', - 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10213604' => { - 'BaseType' => '10210047', - 'Name' => 'struct log4cxx::spi::LoggingEvent::LoggingEventPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10215141' => { - 'BaseType' => '650691', - 'Name' => 'log4cxx::MDC::Map*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10215147' => { - 'BaseType' => '10154276', - 'Name' => 'std::map, std::__cxx11::basic_string >*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10215602' => { - 'BaseType' => '10208425', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10215608' => { - 'BaseType' => '10215602', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10216376' => { - 'BaseType' => '844061', - 'Name' => 'log4cxx::spi::LoggingEvent const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10216387' => { - 'BaseType' => '841473', - 'Name' => 'log4cxx::spi::LoggingEvent*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10216415' => { - 'BaseType' => '10210380', - 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10216421' => { - 'BaseType' => '10216415', - 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10216426' => { - 'BaseType' => '10210601', - 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10216432' => { - 'BaseType' => '10216426', - 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1022505' => { - 'Name' => 'void(std::__cxx11::basic_string, std::thread::id, unsigned long)', - 'Param' => { - '0' => { - 'type' => '68' - }, - '1' => { - 'type' => '749251' - }, - '2' => { - 'type' => '50193' - } - }, - 'Return' => '1', - 'Type' => 'Func' + '1286641' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1289061' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1379591' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1285667' + } + }, + 'Type' => 'Class' }, - '10407495' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '12867017' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '12966918' + } + }, + 'Type' => 'Struct' + }, + '12867991' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_t', 'offset' => '0', - 'type' => '55091' + 'type' => '12870411' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '10408836' + 'key' => '_Tp', + 'type' => '12966918' + }, + '1' => { + 'key' => '_Dp', + 'type' => '12867017' } }, 'Type' => 'Class' }, - '10408836' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'loggingeventpatternconverter.h', - 'Line' => '51', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter', - 'NameSpace' => 'log4cxx::pattern::LoggingEventPatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter::~ClazzLoggingEventPatternConverter() [_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter::~ClazzLoggingEventPatternConverter() [_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter) [_ZTIN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterE]' - } - }, - '10408994' => { - 'BaseType' => '10408836', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10411007' => { - 'BaseType' => '10407495', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10411013' => { - 'BaseType' => '10411007', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10411550' => { - 'BaseType' => '10408836', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10411556' => { - 'BaseType' => '10411550', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10411561' => { - 'BaseType' => '10408994', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10411567' => { - 'BaseType' => '10411561', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10479965' => { + '12868625' => { 'Copied' => 1, - 'Name' => 'std::basic_ostream', + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '12867017' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_CharT', - 'type' => '50392' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '12867017' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '10480213' => { - 'BaseType' => '6868873', - 'Header' => 'iosfwd', - 'Line' => '141', - 'Name' => 'std::ostream', + '12868883' => { + 'Base' => { + '12868625' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', - 'Type' => 'Typedef' + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '12867017' + } + }, + 'Type' => 'Struct' }, - '10502617' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '12869189' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '55091' + 'type' => '12981074' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::FileAppender::FileAppenderPriv*>', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '405355' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '12981074' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '10504208' => { - 'BaseType' => '410955', - 'Name' => 'log4cxx::helpers::LogLog*const', + '12869447' => { + 'Base' => { + '12868883' => { + 'pos' => '0' + }, + '12869189' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::FileAppender::FileAppenderPriv*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '12981074' + } + }, + 'Type' => 'Struct' }, - '10504503' => { - 'BaseType' => '10502617', - 'Name' => 'log4cxx::helpers::WideLife*', + '12870411' => { + 'Base' => { + '12869447' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '12981074' + } + }, + 'Type' => 'Class' }, - '10504509' => { - 'BaseType' => '10504503', - 'Name' => 'log4cxx::helpers::WideLife*const', + '12871891' => { + 'Base' => { + '12867991' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '12966918' + }, + '1' => { + 'key' => '_Dp', + 'type' => '12867017' + } + }, + 'Type' => 'Struct' }, - '10600128' => { + '1287275' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1285667' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '1285667' + } + }, + 'Type' => 'Struct' + }, + '1287533' => { + 'Base' => { + '1287275' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '1285667' + } + }, + 'Type' => 'Struct' + }, + '1287839' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1389197' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::AppenderSkeleton::AppenderSkeletonPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '1389197' + } + }, + 'Type' => 'Struct' + }, + '1288097' => { + 'Base' => { + '1287533' => { + 'pos' => '0' + }, + '1287839' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::AppenderSkeleton::AppenderSkeletonPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '1389197' + } + }, + 'Type' => 'Struct' + }, + '12881789' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4279770' + 'type' => '3116491' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '10600276' => { + '12881937' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4279770' + 'type' => '3116491' } }, 'Type' => 'Struct' }, - '10600290' => { - 'BaseType' => '4279770', + '12881951' => { + 'BaseType' => '3116491', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '10600313' => { + '12881974' => { 'Base' => { - '10600128' => { + '12881789' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '10640306' + 'type' => '12981756' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4279770' + 'type' => '3116491' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '10600599' => { - 'BaseType' => '10600290', + '12882255' => { + 'BaseType' => '12881951', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '10635454' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '10637467' - } - }, - 'Type' => 'Class' - }, - '10637467' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'defaultrepositoryselector.h', - 'Line' => '35', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector', - 'NameSpace' => 'log4cxx::spi::DefaultRepositorySelector', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector::~ClazzDefaultRepositorySelector() [_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD2Ev]', - '24' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector::~ClazzDefaultRepositorySelector() [_ZN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector::getName[abi:cxx11]() const [_ZNK7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelector7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector) [_ZTIN7log4cxx3spi25DefaultRepositorySelector30ClazzDefaultRepositorySelectorE]' - } - }, - '10637625' => { - 'BaseType' => '10637467', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10640123' => { - 'BaseType' => '10635454', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10640129' => { - 'BaseType' => '10640123', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10640306' => { - 'BaseType' => '10600599', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10641714' => { - 'BaseType' => '10637467', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10641720' => { - 'BaseType' => '10641714', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10641725' => { - 'BaseType' => '10637625', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10641731' => { - 'BaseType' => '10641725', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10724717' => { - 'Copied' => 1, - 'Name' => 'std::__cxx11::basic_stringstream', - 'NameSpace' => 'std::__cxx11', - 'TParam' => { - '0' => { - 'key' => '_CharT', - 'type' => '50392' - } - }, - 'Type' => 'Class' - }, - '1074661' => { + '1289061' => { + 'Base' => { + '1288097' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '1389197' + } + }, + 'Type' => 'Class' + }, + '1290541' => { + 'Base' => { + '1286641' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1149757' + 'type' => '1379591' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Dp', + 'type' => '1285667' + } + }, + 'Type' => 'Struct' + }, + '1290772' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1290541' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1379591' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1285667' } }, 'Type' => 'Class' }, - '1074809' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + '1291435' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1149757' + 'type' => '1374458' } }, 'Type' => 'Struct' }, - '1074823' => { - 'BaseType' => '1149757', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + '1292409' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1294829' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1374458' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1291435' + } + }, + 'Type' => 'Class' + }, + '1293043' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1291435' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '1291435' + } + }, + 'Type' => 'Struct' }, - '1074846' => { + '1293301' => { 'Base' => { - '1074661' => { + '1293043' => { + 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '1291435' + } + }, + 'Type' => 'Struct' + }, + '1293607' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_ptr', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '1151423' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '1389477' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::LogLog::LogLogPrivate*>', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '1149757' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Head', + 'type' => '1389477' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '1075132' => { - 'BaseType' => '1074823', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + '1293865' => { + 'Base' => { + '1293301' => { + 'pos' => '0' + }, + '1293607' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::LogLog::LogLogPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '1389477' + } + }, + 'Type' => 'Struct' }, - '1075444' => { + '1294829' => { 'Base' => { - '1074846' => { + '1293865' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '1149757' + 'key' => undef, + 'type' => '1389477' } }, 'Type' => 'Class' }, - '10785388' => { + '12959656' => { 'Base' => { - '10786072' => { - 'pos' => '0' - } + '3116491' => { + 'pos' => '0' + } }, - 'Header' => 'stream.h', - 'Line' => '329', + 'Header' => 'fileoutputstream.h', + 'Line' => '35', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'stream', - 'offset' => '512', - 'type' => '10789535' + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '12838671' } }, - 'Name' => 'log4cxx::wlogstream', - 'NameSpace' => 'log4cxx', - 'Size' => '520', + 'Name' => 'log4cxx::helpers::FileOutputStream', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::wlogstream::~wlogstream() [_ZN7log4cxx10wlogstreamD2Ev]', - '24' => '(int (*)(...)) log4cxx::wlogstream::~wlogstream() [_ZN7log4cxx10wlogstreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::wlogstream::log(std::shared_ptr&, std::shared_ptr const&, log4cxx::spi::LocationInfo const&) [_ZN7log4cxx10wlogstream3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE]', - '40' => '(int (*)(...)) log4cxx::wlogstream::erase() [_ZN7log4cxx10wlogstream5eraseEv]', - '48' => '(int (*)(...)) log4cxx::wlogstream::get_stream_state(std::ios_base&, std::ios_base&, int&, bool&) const [_ZNK7log4cxx10wlogstream16get_stream_stateERSt8ios_baseS2_RiRb]', - '56' => '(int (*)(...)) log4cxx::wlogstream::refresh_stream_state() [_ZN7log4cxx10wlogstream20refresh_stream_stateEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::wlogstream) [_ZTIN7log4cxx10wlogstreamE]' + '16' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::~FileOutputStream() [_ZN7log4cxx7helpers16FileOutputStreamD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::~FileOutputStream() [_ZN7log4cxx7helpers16FileOutputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::getClass() const [_ZNK7log4cxx7helpers16FileOutputStream8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers16FileOutputStream10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers16FileOutputStream4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers16FileOutputStream5closeERNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers16FileOutputStream5flushERNS0_4PoolE]', + '72' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::write(log4cxx::helpers::ByteBuffer&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers16FileOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileOutputStream) [_ZTIN7log4cxx7helpers16FileOutputStreamE]' } }, - '10785491' => { - 'BaseType' => '50392', - 'Header' => 'stream.h', - 'Line' => '331', - 'Name' => 'log4cxx::wlogstream::Ch', - 'NameSpace' => 'log4cxx::wlogstream', - 'Private' => 1, - 'Size' => '4', - 'Type' => 'Typedef' - }, - '10785504' => { - 'BaseType' => '10785491', - 'Name' => 'log4cxx::wlogstream::Ch const', - 'Size' => '4', - 'Type' => 'Const' - }, - '10786067' => { - 'BaseType' => '10785388', - 'Name' => 'log4cxx::wlogstream const', - 'Size' => '520', - 'Type' => 'Const' - }, - '10786072' => { - 'Header' => 'stream.h', - 'Line' => '37', + '12959665' => { + 'Line' => '32', 'Memb' => { '0' => { - 'name' => '_vptr', + 'name' => 'pool', 'offset' => '0', - 'type' => '66091' + 'type' => '207830' }, '1' => { - 'access' => 'private', - 'name' => 'initset', - 'offset' => '8', - 'type' => '10787023' - }, - '2' => { - 'access' => 'private', - 'name' => 'initclear', - 'offset' => '224', - 'type' => '10787023' - }, - '3' => { - 'access' => 'private', - 'name' => 'fillchar', - 'offset' => '440', - 'type' => '50231' - }, - '4' => { - 'access' => 'private', - 'name' => 'fillset', - 'offset' => '444', - 'type' => '50284' - }, - '5' => { - 'access' => 'private', - 'name' => 'enabled', - 'offset' => '445', - 'type' => '50284' - }, - '6' => { - 'access' => 'private', - 'name' => 'logger', - 'offset' => '448', - 'type' => '1150380' - }, - '7' => { - 'access' => 'private', - 'name' => 'level', - 'offset' => '464', - 'type' => '409192' - }, - '8' => { - 'access' => 'private', - 'name' => 'location', - 'offset' => '480', - 'type' => '835117' - } - }, - 'Name' => 'log4cxx::logstream_base', - 'NameSpace' => 'log4cxx', - 'Size' => '512', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) __cxa_pure_virtual', - '40' => '(int (*)(...)) __cxa_pure_virtual', - '48' => '(int (*)(...)) __cxa_pure_virtual', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::logstream_base) [_ZTIN7log4cxx14logstream_baseE]' - } - }, - '10787023' => { - 'Base' => { - '6868689' => { - 'pos' => '0' - } - }, - 'Header' => 'stream.h', - 'Line' => '183', - 'Name' => 'log4cxx::logstream_base::logstream_ios_base', - 'NameSpace' => 'log4cxx::logstream_base', - 'Private' => 1, - 'Size' => '216', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::logstream_base::logstream_ios_base::~logstream_ios_base() [_ZN7log4cxx14logstream_base18logstream_ios_baseD1Ev]', - '24' => '(int (*)(...)) log4cxx::logstream_base::logstream_ios_base::~logstream_ios_base() [_ZN7log4cxx14logstream_base18logstream_ios_baseD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::logstream_base::logstream_ios_base) [_ZTIN7log4cxx14logstream_base18logstream_ios_baseE]' - } - }, - '10787293' => { - 'BaseType' => '10786072', - 'Name' => 'log4cxx::logstream_base const', - 'Size' => '512', - 'Type' => 'Const' - }, - '10787332' => { - 'Base' => { - '10786072' => { - 'pos' => '0' - } - }, - 'Header' => 'stream.h', - 'Line' => '226', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'stream', - 'offset' => '512', - 'type' => '6898674' + 'name' => 'fileptr', + 'offset' => '22', + 'type' => '1932117' } }, - 'Name' => 'log4cxx::logstream', - 'NameSpace' => 'log4cxx', - 'Size' => '520', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::logstream::~logstream() [_ZN7log4cxx9logstreamD1Ev]', - '24' => '(int (*)(...)) log4cxx::logstream::~logstream() [_ZN7log4cxx9logstreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::logstream::log(std::shared_ptr&, std::shared_ptr const&, log4cxx::spi::LocationInfo const&) [_ZN7log4cxx9logstream3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE]', - '40' => '(int (*)(...)) log4cxx::logstream::erase() [_ZN7log4cxx9logstream5eraseEv]', - '48' => '(int (*)(...)) log4cxx::logstream::get_stream_state(std::ios_base&, std::ios_base&, int&, bool&) const [_ZNK7log4cxx9logstream16get_stream_stateERSt8ios_baseS2_RiRb]', - '56' => '(int (*)(...)) log4cxx::logstream::refresh_stream_state() [_ZN7log4cxx9logstream20refresh_stream_stateEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::logstream) [_ZTIN7log4cxx9logstreamE]' - } - }, - '10787432' => { - 'BaseType' => '50671', - 'Header' => 'stream.h', - 'Line' => '228', - 'Name' => 'log4cxx::logstream::Ch', - 'NameSpace' => 'log4cxx::logstream', + 'Name' => 'struct log4cxx::helpers::FileOutputStream::FileOutputStreamPrivate', + 'NameSpace' => 'log4cxx::helpers::FileOutputStream', 'Private' => 1, - 'Size' => '1', - 'Type' => 'Typedef' - }, - '10787444' => { - 'BaseType' => '10787432', - 'Name' => 'log4cxx::logstream::Ch const', - 'Size' => '1', - 'Type' => 'Const' - }, - '10788002' => { - 'BaseType' => '10787332', - 'Name' => 'log4cxx::logstream const', - 'Size' => '520', - 'Type' => 'Const' - }, - '10789059' => { - 'BaseType' => '10479965', - 'Name' => 'std::basic_ostream&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '10789443' => { - 'BaseType' => '10785388', - 'Name' => 'log4cxx::wlogstream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789449' => { - 'BaseType' => '10789443', - 'Name' => 'log4cxx::wlogstream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10789466' => { - 'BaseType' => '10785504', - 'Name' => 'log4cxx::wlogstream::Ch const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789472' => { - 'BaseType' => '10785388', - 'Name' => 'log4cxx::wlogstream&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '10789478' => { - 'Name' => 'log4cxx::logstream_base&(*)(log4cxx::logstream_base&)', - 'Param' => { - '0' => { - 'type' => '10789500' - } - }, - 'Return' => '10789500', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '10789500' => { - 'BaseType' => '10786072', - 'Name' => 'log4cxx::logstream_base&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '10789512' => { - 'BaseType' => '10786067', - 'Name' => 'log4cxx::wlogstream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789518' => { - 'BaseType' => '10789512', - 'Name' => 'log4cxx::wlogstream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10789535' => { - 'BaseType' => '10724717', - 'Name' => 'std::__cxx11::basic_stringstream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789546' => { - 'BaseType' => '10787332', - 'Name' => 'log4cxx::logstream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789552' => { - 'BaseType' => '10789546', - 'Name' => 'log4cxx::logstream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10789557' => { - 'BaseType' => '10787444', - 'Name' => 'log4cxx::logstream::Ch const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789563' => { - 'BaseType' => '10787332', - 'Name' => 'log4cxx::logstream&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '10789569' => { - 'BaseType' => '10788002', - 'Name' => 'log4cxx::logstream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789575' => { - 'BaseType' => '10789569', - 'Name' => 'log4cxx::logstream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10789626' => { - 'BaseType' => '10786072', - 'Name' => 'log4cxx::logstream_base*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789632' => { - 'BaseType' => '10789626', - 'Name' => 'log4cxx::logstream_base*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10789637' => { - 'BaseType' => '10787293', - 'Name' => 'log4cxx::logstream_base const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789643' => { - 'BaseType' => '10789637', - 'Name' => 'log4cxx::logstream_base const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10789648' => { - 'BaseType' => '10787023', - 'Name' => 'log4cxx::logstream_base::logstream_ios_base*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10789654' => { - 'BaseType' => '10789648', - 'Name' => 'log4cxx::logstream_base::logstream_ios_base*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10912549' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '10913809' - } - }, - 'Type' => 'Class' - }, - '10913791' => { - 'Base' => { - '6059004' => { - 'pos' => '0' - } - }, - 'Header' => 'manualtriggeringpolicy.h', - 'Line' => '43', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling22ManualTriggeringPolicy15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling22ManualTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::isTriggeringEvent(log4cxx::Appender*, std::shared_ptr const&, std::__cxx11::basic_string, std::allocator > const&, unsigned long) [_ZN7log4cxx7rolling22ManualTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ManualTriggeringPolicy) [_ZTIN7log4cxx7rolling22ManualTriggeringPolicyE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::~ManualTriggeringPolicy() [_ZN7log4cxx7rolling22ManualTriggeringPolicyD1Ev]', - '88' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::~ManualTriggeringPolicy() [_ZN7log4cxx7rolling22ManualTriggeringPolicyD0Ev]', - '96' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::getClass() const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy8getClassEv]' - } + 'Size' => '24', + 'Source' => 'fileoutputstream.cpp', + 'Type' => 'Struct' }, - '10913809' => { + '12959670' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'manualtriggeringpolicy.h', - 'Line' => '45', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy', - 'NameSpace' => 'log4cxx::rolling::ManualTriggeringPolicy', + 'Header' => 'fileoutputstream.h', + 'Line' => '41', + 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream', + 'NameSpace' => 'log4cxx::helpers::FileOutputStream', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::~ClazzManualTriggeringPolicy() [_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::~ClazzManualTriggeringPolicy() [_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::newInstance() const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy) [_ZTIN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyE]' + '16' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::ClazzFileOutputStream::~ClazzFileOutputStream() [_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::ClazzFileOutputStream::~ClazzFileOutputStream() [_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::ClazzFileOutputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers16FileOutputStream21ClazzFileOutputStream7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileOutputStream::ClazzFileOutputStream) [_ZTIN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamE]' } }, - '10914030' => { - 'BaseType' => '10913809', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10914501' => { - 'BaseType' => '10913791', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10915694' => { - 'BaseType' => '10912549', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10915700' => { - 'BaseType' => '10915694', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10915850' => { - 'BaseType' => '10913791', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10915856' => { - 'BaseType' => '10915850', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10915884' => { - 'BaseType' => '10914501', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10915890' => { - 'BaseType' => '10915884', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10915907' => { - 'BaseType' => '10913809', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10915913' => { - 'BaseType' => '10915907', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '10915918' => { - 'BaseType' => '10914030', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '10915924' => { - 'BaseType' => '10915918', - 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy const*const', + '12959787' => { + 'BaseType' => '12959670', + 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream const', 'Size' => '8', 'Type' => 'Const' }, - '11009482' => { + '12960346' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -98695,1906 +99281,2699 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '11011493' + 'type' => '5661562' } }, 'Type' => 'Class' }, - '11011475' => { - 'Base' => { - '150952' => { + '1296271' => { + 'Base' => { + '1292409' => { 'pos' => '0' } - }, - 'Header' => 'mapfilter.h', - 'Line' => '41', - 'Name' => 'log4cxx::filter::MapFilter', - 'NameSpace' => 'log4cxx::filter', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::filter::MapFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter9MapFilter10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::filter::MapFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter9MapFilter4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::filter::MapFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter9MapFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::filter::MapFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter9MapFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::MapFilter) [_ZTIN7log4cxx6filter9MapFilterE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::filter::MapFilter::~MapFilter() [_ZN7log4cxx6filter9MapFilterD1Ev]', - '88' => '(int (*)(...)) log4cxx::filter::MapFilter::~MapFilter() [_ZN7log4cxx6filter9MapFilterD0Ev]', - '96' => '(int (*)(...)) log4cxx::filter::MapFilter::getClass() const [_ZNK7log4cxx6filter9MapFilter8getClassEv]' - } - }, - '11011493' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'mapfilter.h', - 'Line' => '49', - 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter', - 'NameSpace' => 'log4cxx::filter::MapFilter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::MapFilter::ClazzMapFilter::~ClazzMapFilter() [_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD2Ev]', - '24' => '(int (*)(...)) log4cxx::filter::MapFilter::ClazzMapFilter::~ClazzMapFilter() [_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::MapFilter::ClazzMapFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::filter::MapFilter::ClazzMapFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter9MapFilter14ClazzMapFilter7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::filter::MapFilter::ClazzMapFilter::newInstance() const [_ZNK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::MapFilter::ClazzMapFilter) [_ZTIN7log4cxx6filter9MapFilter14ClazzMapFilterE]' - } - }, - '11011714' => { - 'BaseType' => '11011493', - 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11011719' => { + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1374458' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1291435' + } + }, + 'Type' => 'Struct' + }, + '1296473' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1296271' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1374458' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1291435' + } + }, + 'Type' => 'Class' + }, + '12966918' => { 'Base' => { - '150962' => { - 'pos' => '0' - } + '7862611' => { + 'pos' => '0' + } }, - 'Line' => '32', + 'Header' => 'fileappender_priv.h', + 'Line' => '27', 'Memb' => { '0' => { - 'name' => 'acceptOnMatch', - 'offset' => '24', - 'type' => '50284' + 'name' => 'fileAppend', + 'offset' => '576', + 'type' => '174077' }, '1' => { - 'name' => 'mustMatchAll', - 'offset' => '25', - 'type' => '50284' + 'name' => 'fileName', + 'offset' => '584', + 'type' => '209661' }, '2' => { - 'name' => 'keyVals', - 'offset' => '32', - 'type' => '11012479' + 'name' => 'bufferedIO', + 'offset' => '640', + 'type' => '174077' + }, + '3' => { + 'name' => 'bufferSize', + 'offset' => '644', + 'type' => '190263' } }, - 'Name' => 'struct log4cxx::filter::MapFilter::MapFilterPrivate', - 'NameSpace' => 'log4cxx::filter::MapFilter', - 'Private' => 1, - 'Size' => '80', - 'Source' => 'mapfilter.cpp', + 'Name' => 'struct log4cxx::FileAppender::FileAppenderPriv', + 'NameSpace' => 'log4cxx::FileAppender', + 'Protected' => 1, + 'Size' => '288', 'Type' => 'Struct', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::MapFilter::MapFilterPrivate::~MapFilterPrivate() [_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::MapFilter::MapFilterPrivate::~MapFilterPrivate() [_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::MapFilter::MapFilterPrivate) [_ZTIN7log4cxx6filter9MapFilter16MapFilterPrivateE]' + '16' => '(int (*)(...)) log4cxx::FileAppender::FileAppenderPriv::~FileAppenderPriv() [_ZN7log4cxx12FileAppender16FileAppenderPrivD2Ev]', + '24' => '(int (*)(...)) log4cxx::FileAppender::FileAppenderPriv::~FileAppenderPriv() [_ZN7log4cxx12FileAppender16FileAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::FileAppender::FileAppenderPriv) [_ZTIN7log4cxx12FileAppender16FileAppenderPrivE]' } }, - '11012479' => { - 'BaseType' => '10154276', - 'Header' => 'mapfilter.h', - 'Line' => '43', - 'Name' => 'log4cxx::filter::MapFilter::KeyVals', - 'NameSpace' => 'log4cxx::filter::MapFilter', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' - }, - '11012492' => { - 'BaseType' => '11011475', - 'Name' => 'log4cxx::filter::MapFilter const', + '12968151' => { + 'BaseType' => '5661553', + 'Name' => 'log4cxx::FileAppender const', 'Size' => '16', 'Type' => 'Const' }, - '11014637' => { - 'BaseType' => '11009482', - 'Name' => 'log4cxx::helpers::WideLife*', + '1297105' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1374855' + } + }, + 'Type' => 'Struct' + }, + '12979551' => { + 'BaseType' => '12959665', + 'Name' => 'struct log4cxx::helpers::FileOutputStream::FileOutputStreamPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '11014643' => { - 'BaseType' => '11014637', - 'Name' => 'log4cxx::helpers::WideLife*const', + '1298079' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1300499' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1374855' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1297105' + } + }, + 'Type' => 'Class' + }, + '12980963' => { + 'BaseType' => '12960346', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '12980968' => { + 'BaseType' => '12980963', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '11014762' => { - 'BaseType' => '11011719', - 'Name' => 'struct log4cxx::filter::MapFilter::MapFilterPrivate*', + '12981074' => { + 'BaseType' => '12966918', + 'Name' => 'struct log4cxx::FileAppender::FileAppenderPriv*', 'Size' => '8', 'Type' => 'Pointer' }, - '11014768' => { - 'BaseType' => '11014762', - 'Name' => 'struct log4cxx::filter::MapFilter::MapFilterPrivate*const', + '12981079' => { + 'BaseType' => '12981074', + 'Name' => 'struct log4cxx::FileAppender::FileAppenderPriv*const', 'Size' => '8', 'Type' => 'Const' }, - '11015504' => { - 'BaseType' => '11011475', - 'Name' => 'log4cxx::filter::MapFilter*', + '12981756' => { + 'BaseType' => '12882255', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '11015510' => { - 'BaseType' => '11015504', - 'Name' => 'log4cxx::filter::MapFilter*const', + '12981891' => { + 'BaseType' => '12959656', + 'Name' => 'log4cxx::helpers::FileOutputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '12981896' => { + 'BaseType' => '12981891', + 'Name' => 'log4cxx::helpers::FileOutputStream*const', 'Size' => '8', 'Type' => 'Const' }, - '11015532' => { - 'BaseType' => '11012492', - 'Name' => 'log4cxx::filter::MapFilter const*', + '12982722' => { + 'BaseType' => '12968151', + 'Name' => 'log4cxx::FileAppender const*', 'Size' => '8', 'Type' => 'Pointer' }, - '11015538' => { - 'BaseType' => '11015532', - 'Name' => 'log4cxx::filter::MapFilter const*const', + '12982727' => { + 'BaseType' => '12982722', + 'Name' => 'log4cxx::FileAppender const*const', 'Size' => '8', 'Type' => 'Const' }, - '11015596' => { - 'BaseType' => '11011493', - 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter*', + '12982737' => { + 'BaseType' => '5680288', + 'Name' => 'log4cxx::FileAppender*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '11015602' => { - 'BaseType' => '11015596', - 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter*const', + '12982846' => { + 'BaseType' => '12959670', + 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '11015607' => { - 'BaseType' => '11011714', - 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter const*', + '12982851' => { + 'BaseType' => '12959787', + 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream const*', 'Size' => '8', 'Type' => 'Pointer' }, - '11015613' => { - 'BaseType' => '11015607', - 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter const*const', + '12982861' => { + 'BaseType' => '5680278', + 'Name' => 'log4cxx::FileAppender::ClazzFileAppender*const', 'Size' => '8', 'Type' => 'Const' }, - '11157448' => { - 'BaseType' => '652379', - 'Name' => 'log4cxx::MDC*const', + '12982871' => { + 'BaseType' => '5680283', + 'Name' => 'log4cxx::FileAppender::ClazzFileAppender const*const', 'Size' => '8', 'Type' => 'Const' }, - '1118276' => { + '1298713' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1297105' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '1297105' + } + }, + 'Type' => 'Struct' + }, + '1298971' => { 'Base' => { - '10600313' => { - 'pos' => '0' - } + '1298713' => { + 'access' => 'private', + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '1297105' + } + }, + 'Type' => 'Struct' + }, + '1299277' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1389727' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::OnlyOnceErrorHandler::OnlyOnceErrorHandlerPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '1389727' + } + }, + 'Type' => 'Struct' + }, + '1299535' => { + 'Base' => { + '1298971' => { + 'pos' => '0' + }, + '1299277' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::OnlyOnceErrorHandler::OnlyOnceErrorHandlerPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '1389727' + } + }, + 'Type' => 'Struct' + }, + '1300499' => { + 'Base' => { + '1299535' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '1389727' + } + }, + 'Type' => 'Class' + }, + '1301941' => { + 'Base' => { + '1298079' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1374855' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1297105' + } + }, + 'Type' => 'Struct' + }, + '1302143' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1301941' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1374855' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1297105' + } + }, + 'Type' => 'Class' + }, + '1302836' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1381112' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '1302984' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1381112' + } + }, + 'Type' => 'Struct' + }, + '1302998' => { + 'BaseType' => '1381112', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '1303021' => { + 'Base' => { + '1302836' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '1389997' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { - 'type' => '4279770' + 'key' => '_Tp', + 'type' => '1381112' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '1118582' => { + '1303302' => { + 'BaseType' => '1302998', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '1303626' => { 'Base' => { - '7005496' => { + '1303021' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { - 'type' => '4199656' + 'key' => '_Tp', + 'type' => '1381112' } }, 'Type' => 'Class' }, - '1118587' => { + '1304050' => { 'Copied' => 1, - 'Name' => 'std::vector, std::allocator > >', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'type' => '1075444' + 'key' => '_Tp', + 'type' => '1378014' }, '1' => { - 'type' => '4478442' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '1118592' => { + '1304198' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1378014' + } + }, + 'Type' => 'Struct' + }, + '1304212' => { + 'BaseType' => '1378014', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '1304235' => { + 'Base' => { + '1304050' => { + 'pos' => '0' + } + }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '1390082' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1378014' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '1304516' => { + 'BaseType' => '1304212', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '1304882' => { + 'Base' => { + '1304235' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1378014' + } + }, + 'Type' => 'Class' + }, + '1312493' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1149751' + 'type' => '564699' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '1118740' => { + '1312641' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1149751' + 'type' => '564699' } }, 'Type' => 'Struct' }, - '1118754' => { - 'BaseType' => '1149751', + '1312655' => { + 'BaseType' => '564699', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '1118777' => { + '1312678' => { 'Base' => { - '1118592' => { + '1312493' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '1153048' + 'type' => '1390546' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1149751' + 'type' => '564699' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '1119063' => { - 'BaseType' => '1118754', + '1312959' => { + 'BaseType' => '1312655', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '11240879' => { - 'Copied' => 1, - 'Name' => 'std::__cxx11::basic_ostringstream', - 'NameSpace' => 'std::__cxx11', - 'TParam' => { - '0' => { - 'key' => '_CharT', - 'type' => '50671' - } - }, - 'Type' => 'Class' - }, - '11241088' => { - 'Copied' => 1, - 'Name' => 'std::__cxx11::basic_ostringstream', - 'NameSpace' => 'std::__cxx11', - 'TParam' => { - '0' => { - 'key' => '_CharT', - 'type' => '50392' - } - }, - 'Type' => 'Class' - }, - '11275002' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', + '13480143' => { + 'Header' => 'filedatepatternconverter.h', + 'Line' => '37', + 'Name' => 'log4cxx::pattern::FileDatePatternConverter', + 'NameSpace' => 'log4cxx::pattern', 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11309358' - } - }, - 'Type' => 'Struct' - }, - '11275088' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '11276623' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11309358' - }, - '1' => { - 'key' => '_Dp', - 'type' => '11275002' - } - }, 'Type' => 'Class' }, - '11275411' => { - 'Base' => { - '11275002' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '11275002' - } - }, - 'Type' => 'Struct' - }, - '11275664' => { - 'Base' => { - '11275411' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '11275002' - } - }, - 'Type' => 'Struct' - }, - '11275962' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '11312866' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::CharMessageBuffer::CharMessageBufferPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '11312866' - } - }, - 'Type' => 'Struct' - }, - '11276222' => { - 'Base' => { - '11275664' => { - 'pos' => '0' - }, - '11275962' => { - 'access' => 'private', - 'pos' => '1' - } - }, + '1374417' => { + 'Base' => { + '171165' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '37', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'msg', + 'offset' => '8', + 'type' => '11525276' + } + }, + 'Name' => 'log4cxx::helpers::Exception', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::Exception::~Exception() [_ZN7log4cxx7helpers9ExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Exception::~Exception() [_ZN7log4cxx7helpers9ExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Exception) [_ZTIN7log4cxx7helpers9ExceptionE]' + } + }, + '1374445' => { + 'Header' => 'loglog.h', + 'Line' => '41', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '1296473' + } + }, + 'Name' => 'log4cxx::helpers::LogLog', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class' + }, + '1374458' => { + 'Line' => '34', + 'Memb' => { + '0' => { + 'name' => 'debugEnabled', + 'offset' => '0', + 'type' => '174077' + }, + '1' => { + 'name' => 'quietMode', + 'offset' => '1', + 'type' => '174077' + }, + '2' => { + 'name' => 'mutex', + 'offset' => '8', + 'type' => '106135' + } + }, + 'Name' => 'struct log4cxx::helpers::LogLog::LogLogPrivate', + 'NameSpace' => 'log4cxx::helpers::LogLog', + 'Private' => 1, + 'Size' => '48', + 'Source' => 'loglog.cpp', + 'Type' => 'Struct' + }, + '1374846' => { + 'Base' => { + '1378014' => { + 'pos' => '0', + 'virtual' => 1 + }, + '209311' => { + 'pos' => '1', + 'virtual' => 1 + } + }, + 'Header' => 'onlyonceerrorhandler.h', + 'Line' => '38', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '1302143' + } + }, + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OnlyOnceErrorHandler) [_ZTIN7log4cxx7helpers20OnlyOnceErrorHandlerE]', + '136' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::~OnlyOnceErrorHandler() [_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD1Ev]', + '144' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::~OnlyOnceErrorHandler() [_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD0Ev]', + '152' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::getClass() const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler8getClassEv]', + '16' => '0u', + '160' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler10instanceofERKNS0_5ClassE]', + '168' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler4castERKNS0_5ClassE]', + '176' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler15activateOptionsERNS0_4PoolE]', + '184' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '192' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::setLogger(std::shared_ptr const&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE]', + '200' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&, std::exception const&, int) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni]', + '208' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '216' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&, std::exception const&, int, std::shared_ptr const&) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS_3spi12LoggingEventEE]', + '224' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::setAppender(std::shared_ptr const&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE]', + '232' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::setBackupAppender(std::shared_ptr const&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE]', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '1374855' => { + 'Line' => '29', + 'Memb' => { + '0' => { + 'name' => 'WARN_PREFIX', + 'offset' => '0', + 'type' => '209661' + }, + '1' => { + 'name' => 'ERROR_PREFIX', + 'offset' => '50', + 'type' => '209661' + }, + '2' => { + 'name' => 'firstTime', + 'offset' => '100', + 'type' => '174077' + } + }, + 'Name' => 'struct log4cxx::helpers::OnlyOnceErrorHandler::OnlyOnceErrorHandlerPrivate', + 'NameSpace' => 'log4cxx::helpers::OnlyOnceErrorHandler', + 'Private' => 1, + 'Size' => '72', + 'Source' => 'onlyonceerrorhandler.cpp', + 'Type' => 'Struct' + }, + '1374860' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'onlyonceerrorhandler.h', + 'Line' => '46', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler', + 'NameSpace' => 'log4cxx::helpers::OnlyOnceErrorHandler', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::~ClazzOnlyOnceErrorHandler() [_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::~ClazzOnlyOnceErrorHandler() [_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::newInstance() const [_ZTch0_h0_NK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::newInstance() const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler) [_ZTIN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerE]' + } + }, + '1375016' => { + 'BaseType' => '1374860', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1375055' => { + 'BaseType' => '1374846', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler const', + 'Type' => 'Const' + }, + '1375460' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '1379867' + } + }, + 'Type' => 'Class' + }, + '13774376' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::CharMessageBuffer::CharMessageBufferPrivate*>', + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '11312866' + 'key' => '_Tp', + 'type' => '13844157' } }, 'Type' => 'Struct' }, - '11276623' => { - 'Base' => { - '11276222' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '11312866' - } - }, - 'Type' => 'Class' - }, - '11276952' => { + '13775350' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '11275088' + 'type' => '13777766' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11309358' + 'type' => '13844157' }, '1' => { 'key' => '_Dp', - 'type' => '11275002' + 'type' => '13774376' } }, 'Type' => 'Class' }, - '11277589' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11310343' - } - }, - 'Type' => 'Struct' - }, - '11277675' => { + '13775980' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Header' => 'tuple', + 'Line' => '78', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '11279210' + 'type' => '13774376' } }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11310343' - }, - '1' => { - 'key' => '_Dp', - 'type' => '11277589' - } - }, - 'Type' => 'Class' - }, - '11277998' => { - 'Base' => { - '11277589' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '11277589' + 'type' => '13774376' } }, 'Type' => 'Struct' }, - '11278251' => { + '13776238' => { 'Base' => { - '11277998' => { + '13775980' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '11277589' + 'type' => '13774376' } }, 'Type' => 'Struct' }, - '11278549' => { + '13776544' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '11313229' + 'type' => '13857351' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::WideMessageBuffer::WideMessageBufferPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::FileInputStream::FileInputStreamPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '11313229' + 'type' => '13857351' } }, 'Type' => 'Struct' }, - '11278809' => { + '13776802' => { 'Base' => { - '11278251' => { + '13776238' => { 'pos' => '0' }, - '11278549' => { + '13776544' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::WideMessageBuffer::WideMessageBufferPrivate*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::FileInputStream::FileInputStreamPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '11313229' + 'type' => '13857351' } }, 'Type' => 'Struct' }, - '11279210' => { + '1377698' => { + 'BaseType' => '564699', + 'Name' => 'log4cxx::spi::LoggingEvent const', + 'Type' => 'Const' + }, + '13777766' => { 'Base' => { - '11278809' => { + '13776802' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '11313229' + 'type' => '13857351' } }, 'Type' => 'Class' }, - '11279539' => { + '13779246' => { + 'Base' => { + '13775350' => { + 'pos' => '0' + } + }, 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '11277675' - } - }, - 'Name' => 'std::unique_ptr >', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11310343' + 'type' => '13844157' }, '1' => { 'key' => '_Dp', - 'type' => '11277589' - } - }, - 'Type' => 'Class' - }, - '11280164' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11311342' + 'type' => '13774376' } }, 'Type' => 'Struct' }, - '11280250' => { + '13779477' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '11281785' + 'type' => '13779246' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11311342' + 'type' => '13844157' }, '1' => { 'key' => '_Dp', - 'type' => '11280164' + 'type' => '13774376' } }, 'Type' => 'Class' }, - '11280573' => { + '1378014' => { + 'Base' => { + '566161' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'errorhandler.h', + 'Line' => '58', + 'Name' => 'log4cxx::spi::ErrorHandler', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::spi::ErrorHandler::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi12ErrorHandler10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::spi::ErrorHandler::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi12ErrorHandler4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) __cxa_pure_virtual', + '128' => '(int (*)(...)) __cxa_pure_virtual', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '144' => '(int (*)(...)) __cxa_pure_virtual', + '152' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '160' => '(int (*)(...)) __cxa_pure_virtual', + '168' => '(int (*)(...)) __cxa_pure_virtual', + '176' => '(int (*)(...)) __cxa_pure_virtual', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::spi::ErrorHandler) [_ZTIN7log4cxx3spi12ErrorHandlerE]', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '(int (*)(...)) log4cxx::spi::ErrorHandler::getClass() const [_ZNK7log4cxx3spi12ErrorHandler8getClassEv]' + } + }, + '1378023' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'errorhandler.h', + 'Line' => '61', + 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler', + 'NameSpace' => 'log4cxx::spi::ErrorHandler', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::ErrorHandler::ClazzErrorHandler::~ClazzErrorHandler() [_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::ErrorHandler::ClazzErrorHandler::~ClazzErrorHandler() [_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::ErrorHandler::ClazzErrorHandler::getName[abi:cxx11]() const [_ZNK7log4cxx3spi12ErrorHandler17ClazzErrorHandler7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::ErrorHandler::ClazzErrorHandler) [_ZTIN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerE]' + } + }, + '1378142' => { + 'BaseType' => '1378023', + 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1378182' => { + 'BaseType' => '1304882', + 'Header' => 'errorhandler.h', + 'Line' => '118', + 'Name' => 'log4cxx::spi::ErrorHandlerPtr', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '1378194' => { + 'BaseType' => '1378182', + 'Name' => 'log4cxx::spi::ErrorHandlerPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '1379573' => { + 'Base' => { + '209311' => { + 'pos' => '1', + 'virtual' => 1 + }, + '567947' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'appenderskeleton.h', + 'Line' => '38', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '1290772' + } + }, + 'Name' => 'log4cxx::AppenderSkeleton', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::AppenderSkeleton) [_ZTIN7log4cxx16AppenderSkeletonE]', + '168' => '0u', + '176' => '0u', + '184' => '(int (*)(...)) log4cxx::AppenderSkeleton::getClass() const [_ZNK7log4cxx16AppenderSkeleton8getClassEv]', + '192' => '(int (*)(...)) log4cxx::AppenderSkeleton::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx16AppenderSkeleton10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::AppenderSkeleton::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx16AppenderSkeleton4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::AppenderSkeleton::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::AppenderSkeleton::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) __cxa_pure_virtual', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) __cxa_pure_virtual', + '304' => '(int (*)(...)) __cxa_pure_virtual', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '1379591' => { + 'Header' => 'appenderskeleton_priv.h', + 'Line' => '28', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + }, + '1' => { + 'name' => 'layout', + 'offset' => '8', + 'type' => '1381467' + }, + '2' => { + 'name' => 'name', + 'offset' => '36', + 'type' => '209661' + }, + '3' => { + 'name' => 'threshold', + 'offset' => '86', + 'type' => '567044' + }, + '4' => { + 'name' => 'errorHandler', + 'offset' => '114', + 'type' => '1378182' + }, + '5' => { + 'name' => 'headFilter', + 'offset' => '136', + 'type' => '565564' + }, + '6' => { + 'name' => 'tailFilter', + 'offset' => '260', + 'type' => '565564' + }, + '7' => { + 'name' => 'closed', + 'offset' => '288', + 'type' => '174077' + }, + '8' => { + 'name' => 'pool', + 'offset' => '296', + 'type' => '207830' + }, + '9' => { + 'name' => 'mutex', + 'offset' => '324', + 'type' => '155212' + } + }, + 'Name' => 'struct log4cxx::AppenderSkeleton::AppenderSkeletonPrivate', + 'NameSpace' => 'log4cxx::AppenderSkeleton', + 'Protected' => 1, + 'Size' => '184', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::AppenderSkeleton::AppenderSkeletonPrivate::~AppenderSkeletonPrivate() [_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::AppenderSkeleton::AppenderSkeletonPrivate::~AppenderSkeletonPrivate() [_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::AppenderSkeleton::AppenderSkeletonPrivate) [_ZTIN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateE]' + } + }, + '1379867' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'appenderskeleton.h', + 'Line' => '56', + 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton', + 'NameSpace' => 'log4cxx::AppenderSkeleton', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::AppenderSkeleton::ClazzAppenderSkeleton::~ClazzAppenderSkeleton() [_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD1Ev]', + '24' => '(int (*)(...)) log4cxx::AppenderSkeleton::ClazzAppenderSkeleton::~ClazzAppenderSkeleton() [_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::AppenderSkeleton::ClazzAppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton21ClazzAppenderSkeleton7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::AppenderSkeleton::ClazzAppenderSkeleton) [_ZTIN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonE]' + } + }, + '1380015' => { + 'BaseType' => '1379867', + 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1381107' => { + 'BaseType' => '1379573', + 'Name' => 'log4cxx::AppenderSkeleton const', + 'Size' => '16', + 'Type' => 'Const' + }, + '1381112' => { + 'Base' => { + '209311' => { + 'pos' => '1', + 'virtual' => 1 + }, + '566161' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'layout.h', + 'Line' => '31', + 'Name' => 'log4cxx::Layout', + 'NameSpace' => 'log4cxx', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::Layout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Layout10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::Layout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Layout4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) __cxa_pure_virtual', + '128' => '(int (*)(...)) __cxa_pure_virtual', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '144' => '(int (*)(...)) log4cxx::Layout::getContentType[abi:cxx11]() const [_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev]', + '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '16' => '0u', + '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '168' => '(int (*)(...)) __cxa_pure_virtual', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::Layout) [_ZTIN7log4cxx6LayoutE]', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '(int (*)(...)) log4cxx::Layout::getClass() const [_ZNK7log4cxx6Layout8getClassEv]' + } + }, + '1381121' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'layout.h', + 'Line' => '36', + 'Name' => 'log4cxx::Layout::ClazzLayout', + 'NameSpace' => 'log4cxx::Layout', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::Layout::ClazzLayout::~ClazzLayout() [_ZN7log4cxx6Layout11ClazzLayoutD1Ev]', + '24' => '(int (*)(...)) log4cxx::Layout::ClazzLayout::~ClazzLayout() [_ZN7log4cxx6Layout11ClazzLayoutD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::Layout::ClazzLayout::getName[abi:cxx11]() const [_ZNK7log4cxx6Layout11ClazzLayout7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::Layout::ClazzLayout) [_ZTIN7log4cxx6Layout11ClazzLayoutE]' + } + }, + '1381240' => { + 'BaseType' => '1381121', + 'Name' => 'log4cxx::Layout::ClazzLayout const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1381467' => { + 'BaseType' => '1303626', + 'Header' => 'layout.h', + 'Line' => '85', + 'Name' => 'log4cxx::LayoutPtr', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '1381479' => { + 'BaseType' => '1381467', + 'Name' => 'log4cxx::LayoutPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '13844139' => { 'Base' => { - '11280164' => { - 'pos' => '0' - } + '3605480' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '11280164' - } - }, - 'Type' => 'Struct' - }, - '11280826' => { - 'Base' => { - '11280573' => { - 'access' => 'private', - 'pos' => '0' - } + 'Header' => 'fileinputstream.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '13779477' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '11280164' - } - }, - 'Type' => 'Struct' + 'Name' => 'log4cxx::helpers::FileInputStream', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::FileInputStream::~FileInputStream() [_ZN7log4cxx7helpers15FileInputStreamD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::FileInputStream::~FileInputStream() [_ZN7log4cxx7helpers15FileInputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::FileInputStream::getClass() const [_ZNK7log4cxx7helpers15FileInputStream8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::FileInputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15FileInputStream10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::FileInputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15FileInputStream4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::FileInputStream::read(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers15FileInputStream4readERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::FileInputStream::close() [_ZN7log4cxx7helpers15FileInputStream5closeEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileInputStream) [_ZTIN7log4cxx7helpers15FileInputStreamE]' + } }, - '11281124' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + '13844157' => { + 'Line' => '32', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'name' => 'pool', 'offset' => '0', - 'type' => '11313564' + 'type' => '207830' + }, + '1' => { + 'name' => 'fileptr', + 'offset' => '22', + 'type' => '1932117' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::MessageBuffer::MessageBufferPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '11313564' - } - }, - 'Type' => 'Struct' - }, - '11281384' => { - 'Base' => { - '11280826' => { - 'pos' => '0' - }, - '11281124' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::MessageBuffer::MessageBufferPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '11313564' - } - }, + 'Name' => 'struct log4cxx::helpers::FileInputStream::FileInputStreamPrivate', + 'NameSpace' => 'log4cxx::helpers::FileInputStream', + 'Private' => 1, + 'Size' => '24', + 'Source' => 'fileinputstream.cpp', 'Type' => 'Struct' }, - '11281785' => { + '13844248' => { 'Base' => { - '11281384' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + 'Header' => 'fileinputstream.h', + 'Line' => '42', + 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream', + 'NameSpace' => 'log4cxx::helpers::FileInputStream', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '11313564' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::FileInputStream::ClazzFileInputStream::~ClazzFileInputStream() [_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::FileInputStream::ClazzFileInputStream::~ClazzFileInputStream() [_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::FileInputStream::ClazzFileInputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers15FileInputStream20ClazzFileInputStream7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileInputStream::ClazzFileInputStream) [_ZTIN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamE]' + } }, - '11282114' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '11280250' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '13844395' => { + 'BaseType' => '13844248', + 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11311342' - }, - '1' => { - 'key' => '_Dp', - 'type' => '11280164' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '11283097' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11310329' - } - }, - 'Type' => 'Struct' + '13844871' => { + 'BaseType' => '13844139', + 'Name' => 'log4cxx::helpers::FileInputStream const', + 'Size' => '16', + 'Type' => 'Const' }, - '11283220' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + '13845395' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => 'storage', 'offset' => '0', - 'type' => '11284755' + 'type' => '197961' } }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '11310329' - }, - '1' => { - 'key' => '_Dp', - 'type' => '11283097' + 'key' => 'T', + 'type' => '13844248' } }, 'Type' => 'Class' }, - '11283543' => { - 'Base' => { - '11283097' => { - 'pos' => '0' - } - }, + '13857351' => { + 'BaseType' => '13844157', + 'Name' => 'struct log4cxx::helpers::FileInputStream::FileInputStreamPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '13864507' => { + 'BaseType' => '13845395', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '13864512' => { + 'BaseType' => '13864507', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '13864878' => { + 'BaseType' => '13844871', + 'Name' => 'log4cxx::helpers::FileInputStream const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '13864883' => { + 'BaseType' => '13864878', + 'Name' => 'log4cxx::helpers::FileInputStream const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '13864888' => { + 'BaseType' => '13844139', + 'Name' => 'log4cxx::helpers::FileInputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '13864893' => { + 'BaseType' => '13864888', + 'Name' => 'log4cxx::helpers::FileInputStream*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '13864928' => { + 'BaseType' => '13844248', + 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '13864933' => { + 'BaseType' => '13864928', + 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '13864938' => { + 'BaseType' => '13844395', + 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '13864943' => { + 'BaseType' => '13864938', + 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1389197' => { + 'BaseType' => '1379591', + 'Name' => 'struct log4cxx::AppenderSkeleton::AppenderSkeletonPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1389202' => { + 'BaseType' => '1389197', + 'Name' => 'struct log4cxx::AppenderSkeleton::AppenderSkeletonPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1389477' => { + 'BaseType' => '1374458', + 'Name' => 'struct log4cxx::helpers::LogLog::LogLogPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1389697' => { + 'BaseType' => '1374445', + 'Name' => 'log4cxx::helpers::LogLog*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1389707' => { + 'BaseType' => '1374445', + 'Name' => 'log4cxx::helpers::LogLog&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1389727' => { + 'BaseType' => '1374855', + 'Name' => 'struct log4cxx::helpers::OnlyOnceErrorHandler::OnlyOnceErrorHandlerPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1389997' => { + 'BaseType' => '1303302', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1390082' => { + 'BaseType' => '1304516', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1390312' => { + 'BaseType' => '1374846', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1390317' => { + 'BaseType' => '1390312', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1390322' => { + 'BaseType' => '1381112', + 'Name' => 'log4cxx::Layout*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1390354' => { + 'BaseType' => '1375460', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1390359' => { + 'BaseType' => '1390354', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1390546' => { + 'BaseType' => '1312959', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1390566' => { + 'BaseType' => '517723', + 'Name' => 'std::shared_ptr*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1390591' => { + 'BaseType' => '1378014', + 'Name' => 'log4cxx::spi::ErrorHandler*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1390596' => { + 'BaseType' => '563933', + 'Name' => 'log4cxx::Level*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1390987' => { + 'BaseType' => '1375055', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391117' => { + 'BaseType' => '1379573', + 'Name' => 'log4cxx::AppenderSkeleton*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391122' => { + 'BaseType' => '1391117', + 'Name' => 'log4cxx::AppenderSkeleton*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1391147' => { + 'BaseType' => '1381107', + 'Name' => 'log4cxx::AppenderSkeleton const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391152' => { + 'BaseType' => '1391147', + 'Name' => 'log4cxx::AppenderSkeleton const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1391157' => { + 'BaseType' => '1381479', + 'Name' => 'log4cxx::LayoutPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1391201' => { + 'BaseType' => '1374860', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391206' => { + 'BaseType' => '1375016', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391211' => { + 'BaseType' => '1379867', + 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391216' => { + 'BaseType' => '1391211', + 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1391221' => { + 'BaseType' => '1380015', + 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391226' => { + 'BaseType' => '1391221', + 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1391241' => { + 'BaseType' => '1378023', + 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391246' => { + 'BaseType' => '1378142', + 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391251' => { + 'BaseType' => '1381121', + 'Name' => 'log4cxx::Layout::ClazzLayout*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1391256' => { + 'BaseType' => '1381240', + 'Name' => 'log4cxx::Layout::ClazzLayout const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1392465' => { + 'BaseType' => '1377698', + 'Name' => 'log4cxx::spi::LoggingEvent const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '14150720' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' + 'key' => '_Tp', + 'type' => '9954387' }, '1' => { - 'key' => '_Head', - 'type' => '11283097' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '11283796' => { - 'Base' => { - '11283543' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + '14150868' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '11283097' + 'key' => '_Tp', + 'type' => '9954387' } }, 'Type' => 'Struct' }, - '11284094' => { + '14150882' => { + 'BaseType' => '9954387', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '14150905' => { + 'Base' => { + '14150720' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'access' => 'private', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '11313513' + 'type' => '14223620' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::WideMessageBuffer*>', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Tp', + 'type' => '9954387' }, '1' => { - 'key' => '_Head', - 'type' => '11313513' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '11284354' => { - 'Base' => { - '11283796' => { - 'pos' => '0' - }, - '11284094' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::WideMessageBuffer*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '11313513' - } - }, - 'Type' => 'Struct' + '14151186' => { + 'BaseType' => '14150882', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' }, - '11284755' => { + '14151637' => { 'Base' => { - '11284354' => { + '14150905' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => undef, - 'type' => '11313513' + 'key' => '_Tp', + 'type' => '9954387' } }, 'Type' => 'Class' }, - '11285084' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + '14210113' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => 'storage', 'offset' => '0', - 'type' => '11283220' + 'type' => '197961' } }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '11310329' - }, - '1' => { - 'key' => '_Dp', - 'type' => '11283097' + 'key' => 'T', + 'type' => '9954412' } }, 'Type' => 'Class' }, - '11309345' => { - 'Header' => 'messagebuffer.h', - 'Line' => '39', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '11276952' - } - }, - 'Name' => 'log4cxx::helpers::CharMessageBuffer', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '11309358' => { - 'Base' => { - '11313897' => { - 'pos' => '0' - } - }, - 'Line' => '91', - 'Name' => 'struct log4cxx::helpers::CharMessageBuffer::CharMessageBufferPrivate', - 'NameSpace' => 'log4cxx::helpers::CharMessageBuffer', - 'Private' => 1, - 'Size' => '40', - 'Source' => 'messagebuffer.cpp', - 'Type' => 'Struct' - }, - '11310312' => { - 'BaseType' => '11309345', - 'Name' => 'log4cxx::helpers::CharMessageBuffer const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11310317' => { - 'BaseType' => '6898570', - 'Header' => 'messagebuffer.h', - 'Line' => '32', - 'Name' => 'log4cxx::helpers::ios_base_manip', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '11310329' => { - 'Header' => 'messagebuffer.h', - 'Line' => '404', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '11279539' - } - }, - 'Name' => 'log4cxx::helpers::WideMessageBuffer', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '11310343' => { - 'Base' => { - '11314050' => { - 'pos' => '0' - } - }, - 'Line' => '234', - 'Name' => 'struct log4cxx::helpers::WideMessageBuffer::WideMessageBufferPrivate', - 'NameSpace' => 'log4cxx::helpers::WideMessageBuffer', - 'Private' => 1, - 'Size' => '40', - 'Source' => 'messagebuffer.cpp', - 'Type' => 'Struct' - }, - '11311323' => { - 'BaseType' => '11310329', - 'Name' => 'log4cxx::helpers::WideMessageBuffer const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11311328' => { - 'Header' => 'messagebuffer.h', - 'Line' => '575', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '11282114' - } - }, - 'Name' => 'log4cxx::helpers::MessageBuffer', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '11311342' => { - 'Line' => '378', - 'Memb' => { - '0' => { - 'name' => 'cbuf', - 'offset' => '0', - 'type' => '11309345' - }, - '1' => { - 'name' => 'wbuf', - 'offset' => '8', - 'type' => '11285084' - } - }, - 'Name' => 'struct log4cxx::helpers::MessageBuffer::MessageBufferPrivate', - 'NameSpace' => 'log4cxx::helpers::MessageBuffer', - 'Private' => 1, + '14212682' => { + 'BaseType' => '9954387', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter const', 'Size' => '16', - 'Source' => 'messagebuffer.cpp', - 'Type' => 'Struct' - }, - '11312644' => { - 'BaseType' => '11311328', - 'Name' => 'log4cxx::helpers::MessageBuffer const', - 'Size' => '8', 'Type' => 'Const' }, - '11312866' => { - 'BaseType' => '11309358', - 'Name' => 'struct log4cxx::helpers::CharMessageBuffer::CharMessageBufferPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11313150' => { - 'BaseType' => '11309345', - 'Name' => 'log4cxx::helpers::CharMessageBuffer*', + '14223369' => { + 'BaseType' => '14210113', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '11313156' => { - 'BaseType' => '11313150', - 'Name' => 'log4cxx::helpers::CharMessageBuffer*const', + '14223374' => { + 'BaseType' => '14223369', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '11313161' => { - 'BaseType' => '11309345', - 'Name' => 'log4cxx::helpers::CharMessageBuffer&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '11313167' => { - 'BaseType' => '10480213', - 'Name' => 'std::ostream&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '11313195' => { - 'BaseType' => '11310312', - 'Name' => 'log4cxx::helpers::CharMessageBuffer const*', + '14223620' => { + 'BaseType' => '14151186', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '11313201' => { - 'BaseType' => '11313195', - 'Name' => 'log4cxx::helpers::CharMessageBuffer const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11313229' => { - 'BaseType' => '11310343', - 'Name' => 'struct log4cxx::helpers::WideMessageBuffer::WideMessageBufferPrivate*', + '14223650' => { + 'BaseType' => '14151637', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'RvalueRef' }, - '11313513' => { - 'BaseType' => '11310329', - 'Name' => 'log4cxx::helpers::WideMessageBuffer*', + '14223815' => { + 'BaseType' => '9954387', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '11313519' => { - 'BaseType' => '11313513', - 'Name' => 'log4cxx::helpers::WideMessageBuffer*const', + '14223820' => { + 'BaseType' => '14223815', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '11313524' => { - 'BaseType' => '11310329', - 'Name' => 'log4cxx::helpers::WideMessageBuffer&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '11313530' => { - 'BaseType' => '11311323', - 'Name' => 'log4cxx::helpers::WideMessageBuffer const*', + '14224156' => { + 'BaseType' => '14212682', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '11313536' => { - 'BaseType' => '11313530', - 'Name' => 'log4cxx::helpers::WideMessageBuffer const*const', + '14224161' => { + 'BaseType' => '14224156', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '11313564' => { - 'BaseType' => '11311342', - 'Name' => 'struct log4cxx::helpers::MessageBuffer::MessageBufferPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11313848' => { - 'BaseType' => '11311328', - 'Name' => 'log4cxx::helpers::MessageBuffer*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11313854' => { - 'BaseType' => '11313848', - 'Name' => 'log4cxx::helpers::MessageBuffer*const', + '14224321' => { + 'BaseType' => '9977385', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '11313859' => { - 'BaseType' => '11312644', - 'Name' => 'log4cxx::helpers::MessageBuffer const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11313865' => { - 'BaseType' => '11313859', - 'Name' => 'log4cxx::helpers::MessageBuffer const*const', + '14224331' => { + 'BaseType' => '9977390', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '11313897' => { - 'Copied' => 1, - 'Line' => '35', - 'Memb' => { - '0' => { - 'name' => 'buf', - 'offset' => '0', - 'type' => '68' - }, - '1' => { - 'name' => 'stream', - 'offset' => '32', - 'type' => '11314210' - } - }, - 'Name' => 'struct StringOrStream', - 'Size' => '40', - 'Source' => 'messagebuffer.cpp', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '50671' - } - }, - 'Type' => 'Struct' + '14584080' => { + 'BaseType' => '12959656', + 'Name' => 'log4cxx::helpers::FileOutputStream const', + 'Size' => '16', + 'Type' => 'Const' }, - '11314050' => { - 'Copied' => 1, - 'Line' => '35', + '14584604' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { - 'name' => 'buf', + 'access' => 'private', + 'name' => 'storage', 'offset' => '0', - 'type' => '513815' - }, - '1' => { - 'name' => 'stream', - 'offset' => '32', - 'type' => '11314247' + 'type' => '197961' } }, - 'Name' => 'struct StringOrStream', - 'Size' => '40', - 'Source' => 'messagebuffer.cpp', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '50392' + 'type' => '12959670' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '11314210' => { - 'BaseType' => '11240879', - 'Name' => 'std::__cxx11::basic_ostringstream*', + '14603716' => { + 'BaseType' => '14584604', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '11314247' => { - 'BaseType' => '11241088', - 'Name' => 'std::__cxx11::basic_ostringstream*', + '14603721' => { + 'BaseType' => '14603716', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '14604087' => { + 'BaseType' => '14584080', + 'Name' => 'log4cxx::helpers::FileOutputStream const*', 'Size' => '8', 'Type' => 'Pointer' }, - '1142208' => { - 'BaseType' => '50671', - 'Name' => 'char[32]', - 'Size' => '32', + '14604092' => { + 'BaseType' => '14604087', + 'Name' => 'log4cxx::helpers::FileOutputStream const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '14604142' => { + 'BaseType' => '12982846', + 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '14604152' => { + 'BaseType' => '12982851', + 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1467730' => { + 'BaseType' => '191037', + 'Name' => 'char const[16]', + 'Size' => '16', 'Type' => 'Array' }, - '1149270' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '1482826' => { + 'Copied' => 1, + 'Header' => 'stl_list.h', + 'Line' => '81', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_next', 'offset' => '0', - 'type' => '1142208' + 'type' => '1918379' + }, + '1' => { + 'name' => '_M_prev', + 'offset' => '8', + 'type' => '1918379' } }, - 'Name' => 'log4cxx::helpers::WideLife >', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '68' - } - }, - 'Type' => 'Class' + 'Name' => 'struct std::__detail::_List_node_base', + 'NameSpace' => 'std::__detail', + 'Size' => '16', + 'Type' => 'Struct' }, - '11494321' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', + '1483014' => { + 'Base' => { + '1482826' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_list.h', + 'Line' => '104', + 'Memb' => { + '0' => { + 'name' => '_M_size', + 'offset' => '22', + 'type' => '3463' + } + }, + 'Name' => 'struct std::__detail::_List_node_header', + 'NameSpace' => 'std::__detail', + 'Size' => '24', + 'Type' => 'Struct' + }, + '14948565' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '11523698' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => 'T', + 'type' => '14950334' } }, 'Type' => 'Class' }, - '11494469' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11523698' - } - }, - 'Type' => 'Struct' + '14950316' => { + 'Base' => { + '209702' => { + 'pos' => '0' + } + }, + 'Header' => 'filerenameaction.h', + 'Line' => '30', + 'Name' => 'log4cxx::rolling::FileRenameAction', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FileRenameAction) [_ZTIN7log4cxx7rolling16FileRenameActionE]', + '56' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::~FileRenameAction() [_ZN7log4cxx7rolling16FileRenameActionD1Ev]', + '64' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::~FileRenameAction() [_ZN7log4cxx7rolling16FileRenameActionD0Ev]', + '72' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::getClass() const [_ZNK7log4cxx7rolling16FileRenameAction8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16FileRenameAction10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16FileRenameAction4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::execute(log4cxx::helpers::Pool&) const [_ZNK7log4cxx7rolling16FileRenameAction7executeERNS_7helpers4PoolE]' + } + }, + '14950334' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'filerenameaction.h', + 'Line' => '34', + 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction', + 'NameSpace' => 'log4cxx::rolling::FileRenameAction', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::ClazzFileRenameAction::~ClazzFileRenameAction() [_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::ClazzFileRenameAction::~ClazzFileRenameAction() [_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::ClazzFileRenameAction::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling16FileRenameAction21ClazzFileRenameAction7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FileRenameAction::ClazzFileRenameAction) [_ZTIN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionE]' + } }, - '11494483' => { - 'BaseType' => '11523698', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' + '14950480' => { + 'BaseType' => '14950334', + 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction const', + 'Size' => '8', + 'Type' => 'Const' }, - '11494506' => { + '14950485' => { 'Base' => { - '11494321' => { - 'pos' => '0' - } + '209720' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '28', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '11526576' + 'name' => 'source', + 'offset' => '114', + 'type' => '567066' }, '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'name' => 'destination', + 'offset' => '128', + 'type' => '567066' + }, + '2' => { + 'name' => 'renameEmptyFile', + 'offset' => '136', + 'type' => '174077' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11523698' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + 'Name' => 'struct log4cxx::rolling::FileRenameAction::FileRenameActionPrivate', + 'NameSpace' => 'log4cxx::rolling::FileRenameAction', + 'Private' => 1, + 'Size' => '96', + 'Source' => 'filerenameaction.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::FileRenameActionPrivate::~FileRenameActionPrivate() [_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD2Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::FileRenameActionPrivate::~FileRenameActionPrivate() [_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FileRenameAction::FileRenameActionPrivate) [_ZTIN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateE]' + } }, - '11494793' => { - 'BaseType' => '11494483', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + '14951048' => { + 'BaseType' => '14950316', + 'Name' => 'log4cxx::rolling::FileRenameAction const', 'Size' => '16', - 'Type' => 'Typedef' + 'Type' => 'Const' }, - '11495203' => { - 'Base' => { - '11494506' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11523698' - } - }, - 'Type' => 'Class' + '14961439' => { + 'BaseType' => '14948565', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '1149674' => { - 'BaseType' => '1149270', - 'Name' => 'log4cxx::helpers::WideLife >const', - 'Size' => '32', - 'Type' => 'Const' - }, - '1149710' => { - 'BaseType' => '1118276', - 'Header' => 'repositoryselector.h', - 'Line' => '49', - 'Name' => 'log4cxx::spi::RepositorySelectorPtr', - 'NameSpace' => 'log4cxx::spi', - 'Type' => 'Typedef' - }, - '1149734' => { - 'BaseType' => '1118582', - 'Header' => 'logmanager.h', - 'Line' => '34', - 'Name' => 'log4cxx::spi::LoggerFactoryPtr', - 'NameSpace' => 'log4cxx::spi', - 'Type' => 'Typedef' - }, - '1149746' => { - 'BaseType' => '1149734', - 'Name' => 'log4cxx::spi::LoggerFactoryPtr const', - 'Type' => 'Const' - }, - '1149751' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 + '14961444' => { + 'BaseType' => '14961439', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '14961550' => { + 'BaseType' => '14950485', + 'Name' => 'struct log4cxx::rolling::FileRenameAction::FileRenameActionPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '14961555' => { + 'BaseType' => '14961550', + 'Name' => 'struct log4cxx::rolling::FileRenameAction::FileRenameActionPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '14962085' => { + 'BaseType' => '14950316', + 'Name' => 'log4cxx::rolling::FileRenameAction*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '14962090' => { + 'BaseType' => '14962085', + 'Name' => 'log4cxx::rolling::FileRenameAction*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '14962115' => { + 'BaseType' => '14951048', + 'Name' => 'log4cxx::rolling::FileRenameAction const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '14962120' => { + 'BaseType' => '14962115', + 'Name' => 'log4cxx::rolling::FileRenameAction const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '14962169' => { + 'BaseType' => '14950334', + 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '14962174' => { + 'BaseType' => '14962169', + 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '14962179' => { + 'BaseType' => '14950480', + 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '14962184' => { + 'BaseType' => '14962179', + 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '15426549' => { + 'Class' => '1909459', + 'Name' => 'void()(log4cxx::helpers::FileWatchdog::*)', + 'Return' => '198458', + 'Size' => '8', + 'Type' => 'FieldPtr' + }, + '15429126' => { + 'BaseType' => '15426549', + 'Name' => 'void()(log4cxx::helpers::FileWatchdog::*)&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '15429131' => { + 'BaseType' => '1924100', + 'Name' => 'log4cxx::helpers::FileWatchdog*&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '155070' => { + 'Copied' => 1, + 'Header' => 'mutex', + 'Line' => '67', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => '_M_mutex', + 'offset' => '0', + 'type' => '155153' + } + }, + 'Name' => 'std::__recursive_mutex_base', + 'NameSpace' => 'std', + 'Size' => '40', + 'Type' => 'Class' + }, + '155153' => { + 'BaseType' => '200711', + 'Header' => 'mutex', + 'Line' => '70', + 'Name' => 'std::__recursive_mutex_base::__native_type', + 'NameSpace' => 'std::__recursive_mutex_base', + 'Protected' => 1, + 'Size' => '40', + 'Type' => 'Typedef' + }, + '155212' => { + 'Base' => { + '155070' => { + 'pos' => '0' } - }, - 'Copied' => 1, - 'Header' => 'loggerrepository.h', - 'Line' => '42', - 'Name' => 'log4cxx::spi::LoggerRepository', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) __cxa_pure_virtual', - '112' => '(int (*)(...)) __cxa_pure_virtual', - '120' => '(int (*)(...)) __cxa_pure_virtual', - '128' => '(int (*)(...)) __cxa_pure_virtual', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '144' => '(int (*)(...)) __cxa_pure_virtual', - '152' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '160' => '(int (*)(...)) __cxa_pure_virtual', - '168' => '(int (*)(...)) __cxa_pure_virtual', - '176' => '(int (*)(...)) __cxa_pure_virtual', - '184' => '(int (*)(...)) __cxa_pure_virtual', - '192' => '(int (*)(...)) __cxa_pure_virtual', - '200' => '(int (*)(...)) log4cxx::spi::LoggerRepository::fireAddAppenderEvent(log4cxx::Logger const*, log4cxx::Appender const*) [_ZN7log4cxx3spi16LoggerRepository20fireAddAppenderEventEPKNS_6LoggerEPKNS_8AppenderE]', - '208' => '(int (*)(...)) log4cxx::spi::LoggerRepository::fireRemoveAppenderEvent(log4cxx::Logger const*, log4cxx::Appender const*) [_ZN7log4cxx3spi16LoggerRepository23fireRemoveAppenderEventEPKNS_6LoggerEPKNS_8AppenderE]', - '216' => '(int (*)(...)) __cxa_pure_virtual', - '224' => '(int (*)(...)) __cxa_pure_virtual', - '232' => '(int (*)(...)) __cxa_pure_virtual', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggerRepository) [_ZTIN7log4cxx3spi16LoggerRepositoryE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::spi::LoggerRepository::getClass() const [_ZNK7log4cxx3spi16LoggerRepository8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' - } - }, - '1149757' => { - 'Base' => { - '262822' => { - 'pos' => '0', - 'virtual' => 1 - } - }, + }, + 'Copied' => 1, + 'Header' => 'mutex', + 'Line' => '94', + 'Name' => 'std::recursive_mutex', + 'NameSpace' => 'std', + 'Size' => '40', + 'Type' => 'Class' + }, + '1567445' => { 'Copied' => 1, - 'Header' => 'logger.h', - 'Line' => '49', + 'Header' => 'stl_list.h', + 'Line' => '350', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '9632412' - }, - '1' => { - 'access' => 'private', - 'name' => 'm_threshold', - 'offset' => '16', - 'type' => '50231' + 'access' => 'protected', + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '1567459' } }, - 'Name' => 'log4cxx::Logger', - 'NameSpace' => 'log4cxx', + 'Name' => 'std::__cxx11::_List_base >', + 'NameSpace' => 'std::__cxx11', 'Size' => '24', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '(int (*)(...)) (& typeinfo for log4cxx::Logger) [_ZTIN7log4cxx6LoggerE]', - '120' => '(int (*)(...)) log4cxx::Logger::~Logger() [_ZN7log4cxx6LoggerD1Ev]', - '128' => '(int (*)(...)) log4cxx::Logger::~Logger() [_ZN7log4cxx6LoggerD0Ev]', - '136' => '(int (*)(...)) log4cxx::Logger::getClass() const [_ZNK7log4cxx6Logger8getClassEv]', - '144' => '(int (*)(...)) log4cxx::Logger::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Logger10instanceofERKNS_7helpers5ClassE]', - '152' => '(int (*)(...)) log4cxx::Logger::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Logger4castERKNS_7helpers5ClassE]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::Logger::addAppender(std::shared_ptr) [_ZN7log4cxx6Logger11addAppenderESt10shared_ptrINS_8AppenderEE]', - '168' => '(int (*)(...)) log4cxx::Logger::getAllAppenders() const [_ZNK7log4cxx6Logger15getAllAppendersEv]', - '176' => '(int (*)(...)) log4cxx::Logger::getAppender(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx6Logger11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '184' => '(int (*)(...)) log4cxx::Logger::isAttached(std::shared_ptr) const [_ZNK7log4cxx6Logger10isAttachedESt10shared_ptrINS_8AppenderEE]', - '192' => '(int (*)(...)) log4cxx::Logger::removeAllAppenders() [_ZN7log4cxx6Logger18removeAllAppendersEv]', - '200' => '(int (*)(...)) log4cxx::Logger::removeAppender(std::shared_ptr) [_ZN7log4cxx6Logger14removeAppenderESt10shared_ptrINS_8AppenderEE]', - '208' => '(int (*)(...)) log4cxx::Logger::removeAppender(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6Logger14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '216' => '(int (*)(...)) log4cxx::Logger::getEffectiveLevel() const [_ZNK7log4cxx6Logger17getEffectiveLevelEv]', - '224' => '(int (*)(...)) log4cxx::Logger::setLevel(std::shared_ptr) [_ZN7log4cxx6Logger8setLevelESt10shared_ptrINS_5LevelEE]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '1149782' => { - 'Header' => 'basicconfigurator.h', - 'Line' => '38', - 'Name' => 'log4cxx::BasicConfigurator', - 'NameSpace' => 'log4cxx', - 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1924100' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '1819189' + } + }, 'Type' => 'Class' }, - '1149933' => { + '1567459' => { 'Base' => { - '409118' => { - 'pos' => '0' - } + '1819836' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'patternlayout.h', - 'Line' => '446', + 'Header' => 'stl_list.h', + 'Line' => '375', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '13308432' + 'name' => '_M_node', + 'offset' => '0', + 'type' => '1483014' } }, - 'Name' => 'log4cxx::PatternLayout', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::PatternLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx13PatternLayout10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::PatternLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx13PatternLayout4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::PatternLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx13PatternLayout15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::PatternLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx13PatternLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '136' => '(int (*)(...)) log4cxx::PatternLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx13PatternLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '144' => '(int (*)(...)) log4cxx::Layout::getContentType[abi:cxx11]() const [_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev]', - '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '168' => '(int (*)(...)) log4cxx::PatternLayout::ignoresThrowable() const [_ZNK7log4cxx13PatternLayout16ignoresThrowableEv]', - '176' => '(int (*)(...)) log4cxx::PatternLayout::getFormatSpecifiers[abi:cxx11]() [_ZN7log4cxx13PatternLayout19getFormatSpecifiersB5cxx11Ev]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::PatternLayout) [_ZTIN7log4cxx13PatternLayoutE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::PatternLayout::~PatternLayout() [_ZN7log4cxx13PatternLayoutD1Ev]', - '88' => '(int (*)(...)) log4cxx::PatternLayout::~PatternLayout() [_ZN7log4cxx13PatternLayoutD0Ev]', - '96' => '(int (*)(...)) log4cxx::PatternLayout::getClass() const [_ZNK7log4cxx13PatternLayout8getClassEv]' - } - }, - '1149938' => { - 'BaseType' => '1149933', - 'Name' => 'log4cxx::PatternLayout const', - 'Type' => 'Const' - }, - '1149943' => { - 'Copied' => 1, - 'Header' => 'logmanager.h', - 'Line' => '44', - 'Name' => 'log4cxx::LogManager', - 'NameSpace' => 'log4cxx', - 'Size' => '1', - 'Type' => 'Class' - }, - '1150380' => { - 'BaseType' => '1075444', - 'Header' => 'logmanager.h', - 'Line' => '28', - 'Name' => 'log4cxx::LoggerPtr', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '1150392' => { - 'BaseType' => '1118587', - 'Header' => 'logmanager.h', - 'Line' => '29', - 'Name' => 'log4cxx::LoggerList', - 'NameSpace' => 'log4cxx', - 'Type' => 'Typedef' + 'Name' => 'struct std::__cxx11::_List_base >::_List_impl', + 'NameSpace' => 'std::__cxx11::_List_base >', + 'Protected' => 1, + 'Size' => '24', + 'Type' => 'Struct' }, - '1150404' => { + '156794' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '209720' + } + }, + 'Type' => 'Struct' + }, + '1568485' => { 'Base' => { - '2844858' => { + '1567445' => { + 'access' => 'protected', 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'consoleappender.h', - 'Line' => '37', - 'Name' => 'log4cxx::ConsoleAppender', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::ConsoleAppender) [_ZTIN7log4cxx15ConsoleAppenderE]', - '168' => '(int (*)(...)) log4cxx::ConsoleAppender::~ConsoleAppender() [_ZN7log4cxx15ConsoleAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::ConsoleAppender::~ConsoleAppender() [_ZN7log4cxx15ConsoleAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::ConsoleAppender::getClass() const [_ZNK7log4cxx15ConsoleAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::ConsoleAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx15ConsoleAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::ConsoleAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx15ConsoleAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::ConsoleAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx15ConsoleAppender15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::ConsoleAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx15ConsoleAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::WriterAppender::close() [_ZN7log4cxx14WriterAppender5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::WriterAppender::requiresLayout() const [_ZNK7log4cxx14WriterAppender14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::WriterAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '312' => '(int (*)(...)) log4cxx::WriterAppender::checkEntryConditions() const [_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv]', - '32' => '0u', - '320' => '(int (*)(...)) log4cxx::WriterAppender::createWriter(std::shared_ptr&) [_ZN7log4cxx14WriterAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE]', - '328' => '(int (*)(...)) log4cxx::WriterAppender::subAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '336' => '(int (*)(...)) log4cxx::WriterAppender::writeFooter(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE]', - '344' => '(int (*)(...)) log4cxx::WriterAppender::writeHeader(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE]', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '1150409' => { - 'BaseType' => '1150404', - 'Name' => 'log4cxx::ConsoleAppender const', - 'Type' => 'Const' - }, - '1151423' => { - 'BaseType' => '1075132', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1151446' => { - 'BaseType' => '1075444', - 'Name' => 'std::shared_ptr*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1151508' => { - 'BaseType' => '263000', - 'Name' => 'log4cxx::AppenderPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1151584' => { - 'BaseType' => '409118', - 'Name' => 'log4cxx::Layout*', - 'Size' => '8', - 'Type' => 'Pointer' + 'Header' => 'stl_list.h', + 'Line' => '557', + 'Name' => 'std::__cxx11::list', + 'NameSpace' => 'std::__cxx11', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1924100' + } + }, + 'Type' => 'Class' }, - '11522056' => { + '157743' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '160151' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '209720' + }, + '1' => { + 'key' => '_Dp', + 'type' => '156794' + } + }, + 'Type' => 'Class' + }, + '158373' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '156794' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '156794' + } + }, + 'Type' => 'Struct' + }, + '158631' => { + 'Base' => { + '158373' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '156794' + } + }, + 'Type' => 'Struct' + }, + '158939' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '214992' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::Action::ActionPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '214992' + } + }, + 'Type' => 'Struct' + }, + '159197' => { + 'Base' => { + '158631' => { + 'pos' => '0' + }, + '158939' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::Action::ActionPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '214992' + } + }, + 'Type' => 'Struct' + }, + '160151' => { + 'Base' => { + '159197' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '214992' + } + }, + 'Type' => 'Class' + }, + '16161261' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -100602,972 +101981,941 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '11523732' + 'type' => '5656720' } }, 'Type' => 'Class' }, - '11523698' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } + '161619' => { + 'Base' => { + '157743' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '209720' + }, + '1' => { + 'key' => '_Dp', + 'type' => '156794' + } }, - 'Header' => 'messagepatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::MessagePatternConverter', - 'NameSpace' => 'log4cxx::pattern', + 'Type' => 'Struct' + }, + '16165980' => { + 'BaseType' => '5656706', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy const', 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern23MessagePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MessagePatternConverter) [_ZTIN7log4cxx7pattern23MessagePatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::~MessagePatternConverter() [_ZN7log4cxx7pattern23MessagePatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::~MessagePatternConverter() [_ZN7log4cxx7pattern23MessagePatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::getClass() const [_ZNK7log4cxx7pattern23MessagePatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23MessagePatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23MessagePatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } - }, - '11523732' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'messagepatternconverter.h', - 'Line' => '38', - 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter', - 'NameSpace' => 'log4cxx::pattern::MessagePatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter::~ClazzMessagePatternConverter() [_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter::~ClazzMessagePatternConverter() [_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter) [_ZTIN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterE]' - } - }, - '11523890' => { - 'BaseType' => '11523732', - 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter const', - 'Size' => '8', 'Type' => 'Const' }, - '11524296' => { - 'BaseType' => '11523698', - 'Name' => 'log4cxx::pattern::MessagePatternConverter const', - 'Size' => '16', + '16166324' => { + 'BaseType' => '5658455', + 'Name' => 'log4cxx::rolling::TriggeringPolicy const', 'Type' => 'Const' }, - '11525718' => { - 'BaseType' => '11522056', - 'Name' => 'log4cxx::helpers::WideLife*', + '16174467' => { + 'BaseType' => '16161261', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '11525724' => { - 'BaseType' => '11525718', - 'Name' => 'log4cxx::helpers::WideLife*const', + '16174472' => { + 'BaseType' => '16174467', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '11526576' => { - 'BaseType' => '11494793', - 'Name' => 'std::__shared_ptr::element_type*', + '16174943' => { + 'BaseType' => '5679668', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '11526594' => { - 'BaseType' => '11523698', - 'Name' => 'log4cxx::pattern::MessagePatternConverter*', + '16174963' => { + 'BaseType' => '16165980', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy const*', 'Size' => '8', 'Type' => 'Pointer' }, - '11526600' => { - 'BaseType' => '11526594', - 'Name' => 'log4cxx::pattern::MessagePatternConverter*const', + '16174968' => { + 'BaseType' => '16174963', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy const*const', 'Size' => '8', 'Type' => 'Const' }, - '11526622' => { - 'BaseType' => '11495203', - 'Name' => 'std::shared_ptr&&', + '16174988' => { + 'BaseType' => '565564', + 'Name' => 'log4cxx::spi::FilterPtr&', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Ref' }, - '11526838' => { - 'BaseType' => '11524296', - 'Name' => 'log4cxx::pattern::MessagePatternConverter const*', + '16174998' => { + 'BaseType' => '5679658', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '11526844' => { - 'BaseType' => '11526838', - 'Name' => 'log4cxx::pattern::MessagePatternConverter const*const', + '16175008' => { + 'BaseType' => '5679663', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy const*const', 'Size' => '8', 'Type' => 'Const' }, - '11527478' => { - 'BaseType' => '11523732', - 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter*', + '16176261' => { + 'BaseType' => '16166324', + 'Name' => 'log4cxx::rolling::TriggeringPolicy const*', 'Size' => '8', 'Type' => 'Pointer' }, - '11527484' => { - 'BaseType' => '11527478', - 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter*const', + '16176266' => { + 'BaseType' => '16176261', + 'Name' => 'log4cxx::rolling::TriggeringPolicy const*const', 'Size' => '8', 'Type' => 'Const' }, - '11527489' => { - 'BaseType' => '11523890', - 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter const*', + '16176276' => { + 'BaseType' => '5658455', + 'Name' => 'log4cxx::rolling::TriggeringPolicy*', 'Size' => '8', 'Type' => 'Pointer' }, - '11527495' => { - 'BaseType' => '11527489', - 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter const*const', + '16176281' => { + 'BaseType' => '16176276', + 'Name' => 'log4cxx::rolling::TriggeringPolicy*const', 'Size' => '8', 'Type' => 'Const' }, - '1152981' => { - 'BaseType' => '1149746', - 'Name' => 'log4cxx::spi::LoggerFactoryPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1153048' => { - 'BaseType' => '1119063', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1153106' => { - 'BaseType' => '1149270', - 'Name' => 'log4cxx::helpers::WideLife >*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1153112' => { - 'BaseType' => '1153106', - 'Name' => 'log4cxx::helpers::WideLife >*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1153117' => { - 'BaseType' => '1149674', - 'Name' => 'log4cxx::helpers::WideLife >const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1153123' => { - 'BaseType' => '1153117', - 'Name' => 'log4cxx::helpers::WideLife >const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1153221' => { - 'BaseType' => '1149933', - 'Name' => 'log4cxx::PatternLayout*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1153327' => { - 'BaseType' => '1150404', - 'Name' => 'log4cxx::ConsoleAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1153498' => { - 'BaseType' => '50678', - 'Name' => 'char const[24]', - 'Size' => '24', - 'Type' => 'Array' - }, - '1153514' => { - 'BaseType' => '1153498', - 'Name' => 'char const[24]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1153549' => { - 'BaseType' => '1149938', - 'Name' => 'log4cxx::PatternLayout const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1153613' => { - 'BaseType' => '1150409', - 'Name' => 'log4cxx::ConsoleAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11625934' => { + '161848' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '161619' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '209720' + }, + '1' => { + 'key' => '_Dp', + 'type' => '156794' + } + }, + 'Type' => 'Class' + }, + '16496677' => { + 'Base' => { + '16588876' => { + 'access' => 'protected', + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11649678' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'type' => '2974326' } }, 'Type' => 'Class' }, - '11626082' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + '16499831' => { + 'Base' => { + '16590549' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11649678' + 'type' => '2974331' } }, - 'Type' => 'Struct' - }, - '11626096' => { - 'BaseType' => '11649678', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' + 'Type' => 'Class' }, - '11626119' => { + '16588242' => { 'Base' => { - '11625934' => { + '16731974' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '11652490' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '11649678' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'type' => '2974326' } }, 'Type' => 'Class' }, - '11626405' => { - 'BaseType' => '11626096', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '11626815' => { - 'Base' => { - '11626119' => { - 'pos' => '0' - } - }, + '16588531' => { 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '11649678' + 'type' => '16588242' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '11648036' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '16588545' => { + 'BaseType' => '6085535', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '16588876' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '84', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_impl', 'offset' => '0', - 'type' => '55091' + 'type' => '16589075' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Name' => 'struct std::_Vector_base, std::allocator > >', + 'NameSpace' => 'std', + 'Size' => '24', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '11649712' + 'key' => '_Tp', + 'type' => '2974326' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '16588242' } }, - 'Type' => 'Class' - }, - '11649678' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'methodlocationpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MethodLocationPatternConverter) [_ZTIN7log4cxx7pattern30MethodLocationPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::~MethodLocationPatternConverter() [_ZN7log4cxx7pattern30MethodLocationPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::~MethodLocationPatternConverter() [_ZN7log4cxx7pattern30MethodLocationPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } + 'Type' => 'Struct' }, - '11649712' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } + '16588889' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', + 'Memb' => { + '0' => { + 'name' => '_M_start', + 'offset' => '0', + 'type' => '16589063' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '16589063' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '16589063' + } }, - 'Header' => 'methodlocationpatternconverter.h', - 'Line' => '39', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern::MethodLocationPatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter::~ClazzMethodLocationPatternConverter() [_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter::~ClazzMethodLocationPatternConverter() [_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter) [_ZTIN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterE]' - } - }, - '11649870' => { - 'BaseType' => '11649712', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11650275' => { - 'BaseType' => '11649678', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '11652200' => { - 'BaseType' => '11648036', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11652206' => { - 'BaseType' => '11652200', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11652490' => { - 'BaseType' => '11626405', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11652508' => { - 'BaseType' => '11649678', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11652514' => { - 'BaseType' => '11652508', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11652536' => { - 'BaseType' => '11626815', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '11652707' => { - 'BaseType' => '11650275', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11652713' => { - 'BaseType' => '11652707', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11653024' => { - 'BaseType' => '11649712', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11653030' => { - 'BaseType' => '11653024', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' }, - '11653035' => { - 'BaseType' => '11649870', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter const*', + '16589063' => { + 'BaseType' => '16732446', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Typedef' }, - '11653041' => { - 'BaseType' => '11653035', - 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' + '16589075' => { + 'Base' => { + '16588242' => { + 'pos' => '0' + }, + '16588889' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' }, - '11720309' => { + '16589915' => { 'Base' => { - '11745604' => { + '16732573' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator', + 'Line' => '124', + 'Name' => 'std::allocator >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'type' => '11766708' + 'type' => '2974331' } }, 'Type' => 'Class' }, - '11720460' => { + '16590204' => { 'Copied' => 1, 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits >', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Alloc', - 'type' => '11720309' + 'type' => '16589915' } }, 'Type' => 'Struct' }, - '11720474' => { - 'BaseType' => '11768897', + '16590218' => { + 'BaseType' => '16786979', 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits >::pointer', - 'NameSpace' => 'std::allocator_traits >', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', 'Size' => '8', 'Type' => 'Typedef' }, - '11720817' => { + '16590549' => { 'Copied' => 1, 'Header' => 'stl_vector.h', - 'Line' => '81', + 'Line' => '84', 'Memb' => { '0' => { 'name' => '_M_impl', 'offset' => '0', - 'type' => '11721016' + 'type' => '16590748' } }, - 'Name' => 'struct std::_Vector_base >', + 'Name' => 'struct std::_Vector_base, std::allocator > >', 'NameSpace' => 'std', 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766708' + 'type' => '2974331' }, '1' => { 'key' => '_Alloc', - 'type' => '11720309' + 'type' => '16589915' } }, 'Type' => 'Struct' }, - '11720830' => { + '16590562' => { 'Copied' => 1, 'Header' => 'stl_vector.h', - 'Line' => '88', + 'Line' => '91', 'Memb' => { '0' => { 'name' => '_M_start', 'offset' => '0', - 'type' => '11721004' + 'type' => '16590736' }, '1' => { 'name' => '_M_finish', 'offset' => '8', - 'type' => '11721004' + 'type' => '16590736' }, '2' => { 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '11721004' + 'offset' => '22', + 'type' => '16590736' } }, - 'Name' => 'struct std::_Vector_base >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base >', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '16590736' => { + 'BaseType' => '16733045', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '16590748' => { + 'Base' => { + '16589915' => { + 'pos' => '0' + }, + '16590562' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', 'Size' => '24', 'Type' => 'Struct' }, - '11721004' => { - 'BaseType' => '11746273', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base >::pointer', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '8', + '16600611' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657038' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '16600759' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657038' + } + }, + 'Type' => 'Struct' + }, + '16600773' => { + 'BaseType' => '5657038', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '16600796' => { + 'Base' => { + '16600611' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '16787696' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657038' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '16601077' => { + 'BaseType' => '16600773', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '16601665' => { + 'Base' => { + '16600796' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657038' + } + }, + 'Type' => 'Class' + }, + '16603277' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '16765851' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '16603425' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '16765851' + } + }, + 'Type' => 'Struct' + }, + '16603439' => { + 'BaseType' => '16765851', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '16603462' => { + 'Base' => { + '16603277' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '16787866' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '16765851' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '16603743' => { + 'BaseType' => '16603439', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '11721016' => { - 'Base' => { - '11720309' => { - 'pos' => '0' - }, - '11720830' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '11721796' => { + '16604736' => { 'Base' => { - '11720817' => { - 'access' => 'protected', + '16603462' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '24', + 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766708' + 'type' => '16765851' } }, 'Type' => 'Class' }, - '11725269' => { + '16607169' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766174' + 'type' => '209702' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '11725417' => { + '16607317' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766174' + 'type' => '209702' } }, 'Type' => 'Struct' }, - '11725431' => { - 'BaseType' => '11766174', + '16607331' => { + 'BaseType' => '209702', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '8', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '11727098' => { + '16607354' => { 'Base' => { - '11725269' => { + '16607169' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '11769468' + 'type' => '16787961' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766174' + 'type' => '209702' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '11727384' => { - 'BaseType' => '11725431', + '16607635' => { + 'BaseType' => '16607331', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '8', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '11727823' => { + '16608145' => { 'Base' => { - '11727098' => { + '16607354' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766174' + 'type' => '209702' } }, 'Type' => 'Class' }, - '11732196' => { + '16658375' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766923' + 'type' => '3120500' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '11732344' => { + '16658523' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766923' + 'type' => '3120500' } }, 'Type' => 'Struct' }, - '11732358' => { - 'BaseType' => '11766923', + '16658537' => { + 'BaseType' => '3120500', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '8', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '11732381' => { + '16658560' => { 'Base' => { - '11732196' => { + '16658375' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '11769836' + 'type' => '16789488' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766923' + 'type' => '3120500' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '11732667' => { - 'BaseType' => '11732358', + '16658841' => { + 'BaseType' => '16658537', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '8', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '11733077' => { - 'Base' => { - '11732381' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '11766923' - } - }, - 'Type' => 'Class' - }, - '11745604' => { + '16731974' => { 'Copied' => 1, 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', 'NameSpace' => '__gnu_cxx', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '11766708' + 'type' => '2974326' } }, 'Type' => 'Class' }, - '11746071' => { + '16732221' => { 'Base' => { - '11720460' => { + '16588531' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits >', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', 'NameSpace' => '__gnu_cxx', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Alloc', - 'type' => '11720309' + 'type' => '16588242' } }, 'Type' => 'Struct' }, - '11746273' => { - 'BaseType' => '11720474', + '16732446' => { + 'BaseType' => '16588545', 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits >', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', 'Size' => '8', 'Type' => 'Typedef' }, - '11763227' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + '16732573' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '11766191' + 'key' => '_Tp', + 'type' => '2974331' } }, 'Type' => 'Class' }, - '11763987' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '16732820' => { + 'Base' => { + '16590204' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '11766940' + 'key' => '_Alloc', + 'type' => '16589915' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '11764344' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '16733045' => { + 'BaseType' => '16590218', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '11767458' - } - }, - 'Type' => 'Class' + 'Type' => 'Typedef' }, - '11764701' => { + '16764653' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -101575,1446 +102923,1663 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '11767994' + 'type' => '5657385' } }, 'Type' => 'Class' }, - '11765058' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '16765851' => { + 'Base' => { + '209311' => { + 'pos' => '0' + } + }, + 'Header' => 'integer.h', + 'Line' => '28', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '61461' + 'name' => 'val', + 'offset' => '8', + 'type' => '190271' } }, - 'Name' => 'log4cxx::helpers::WideLife >', + 'Name' => 'log4cxx::helpers::Integer', 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '11727823' - } - }, - 'Type' => 'Class' - }, - '11766174' => { - 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Header' => 'nameabbreviator.h', - 'Line' => '38', - 'Name' => 'log4cxx::pattern::NameAbbreviator', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::getClass() const [_ZNK7log4cxx7pattern15NameAbbreviator8getClassEv]', - '40' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern15NameAbbreviator10instanceofERKNS_7helpers5ClassE]', - '48' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern15NameAbbreviator4castERKNS_7helpers5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NameAbbreviator) [_ZTIN7log4cxx7pattern15NameAbbreviatorE]' + '16' => '(int (*)(...)) log4cxx::helpers::Integer::~Integer() [_ZN7log4cxx7helpers7IntegerD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Integer::~Integer() [_ZN7log4cxx7helpers7IntegerD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Integer::getClass() const [_ZNK7log4cxx7helpers7Integer8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Integer::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers7Integer10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::Integer::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers7Integer4castERKNS0_5ClassE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Integer) [_ZTIN7log4cxx7helpers7IntegerE]' } }, - '11766191' => { + '16765860' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'nameabbreviator.h', - 'Line' => '41', - 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator', - 'NameSpace' => 'log4cxx::pattern::NameAbbreviator', + 'Header' => 'integer.h', + 'Line' => '32', + 'Name' => 'log4cxx::helpers::Integer::ClazzInteger', + 'NameSpace' => 'log4cxx::helpers::Integer', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator::~ClazzNameAbbreviator() [_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator::~ClazzNameAbbreviator() [_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviator7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator) [_ZTIN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorE]' + '16' => '(int (*)(...)) log4cxx::helpers::Integer::ClazzInteger::~ClazzInteger() [_ZN7log4cxx7helpers7Integer12ClazzIntegerD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Integer::ClazzInteger::~ClazzInteger() [_ZN7log4cxx7helpers7Integer12ClazzIntegerD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Integer::ClazzInteger::newInstance() const [_ZNK7log4cxx7helpers7Integer12ClazzInteger11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Integer::ClazzInteger::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers7Integer12ClazzInteger7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Integer::ClazzInteger) [_ZTIN7log4cxx7helpers7Integer12ClazzIntegerE]' } }, - '11766347' => { - 'BaseType' => '11766191', - 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator const', + '16766015' => { + 'BaseType' => '16765860', + 'Name' => 'log4cxx::helpers::Integer::ClazzInteger const', 'Size' => '8', 'Type' => 'Const' }, - '11766703' => { - 'BaseType' => '11766174', - 'Name' => 'log4cxx::pattern::NameAbbreviator const', - 'Size' => '8', + '16766049' => { + 'BaseType' => '16765851', + 'Name' => 'log4cxx::helpers::Integer const', 'Type' => 'Const' }, - '11766708' => { - 'Line' => '124', + '16769944' => { + 'BaseType' => '5657038', + 'Name' => 'log4cxx::rolling::RolloverDescription const', + 'Type' => 'Const' + }, + '16770646' => { + 'BaseType' => '5657215', + 'Name' => 'log4cxx::rolling::RollingPolicyBase const', + 'Type' => 'Const' + }, + '16770905' => { + 'Base' => { + '5657224' => { + 'pos' => '0' + } + }, + 'Line' => '39', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'charCount', - 'offset' => '0', - 'type' => '281' + 'name' => 'minIndex', + 'offset' => '146', + 'type' => '190263' }, '1' => { - 'access' => 'private', - 'name' => 'ellipsis', - 'offset' => '8', - 'type' => '407306' + 'name' => 'maxIndex', + 'offset' => '150', + 'type' => '190263' + }, + '2' => { + 'name' => 'explicitActiveFile', + 'offset' => '256', + 'type' => '174077' + }, + '3' => { + 'name' => 'throwIOExceptionOnForkFailure', + 'offset' => '257', + 'type' => '174077' } }, - 'Name' => 'log4cxx::pattern::PatternAbbreviatorFragment', - 'NameSpace' => 'log4cxx::pattern', + 'Name' => 'struct log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate', + 'NameSpace' => 'log4cxx::rolling::FixedWindowRollingPolicy', + 'Size' => '104', + 'Source' => 'fixedwindowrollingpolicy.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate::~FixedWindowRollingPolicyPrivate() [_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate::~FixedWindowRollingPolicyPrivate() [_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate) [_ZTIN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateE]' + } + }, + '16771803' => { + 'BaseType' => '5657354', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy const', 'Size' => '16', - 'Source' => 'nameabbreviator.cpp', - 'Type' => 'Class' + 'Type' => 'Const' }, - '11766923' => { + '16771808' => { 'Base' => { - '11766174' => { - 'pos' => '0' - } + '209702' => { + 'pos' => '0' + } }, - 'Line' => '45', - 'Name' => 'log4cxx::pattern::NOPAbbreviator', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '8', - 'Source' => 'nameabbreviator.cpp', + 'Header' => 'gzcompressaction.h', + 'Line' => '30', + 'Name' => 'log4cxx::rolling::GZCompressAction', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::~NOPAbbreviator() [_ZN7log4cxx7pattern14NOPAbbreviatorD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::~NOPAbbreviator() [_ZN7log4cxx7pattern14NOPAbbreviatorD0Ev]', - '32' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::getClass() const [_ZNK7log4cxx7pattern14NOPAbbreviator8getClassEv]', - '40' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern14NOPAbbreviator10instanceofERKNS_7helpers5ClassE]', - '48' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern14NOPAbbreviator4castERKNS_7helpers5ClassE]', - '56' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::abbreviate(unsigned long, std::__cxx11::basic_string, std::allocator >&) const [_ZNK7log4cxx7pattern14NOPAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NOPAbbreviator) [_ZTIN7log4cxx7pattern14NOPAbbreviatorE]' + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::GZCompressAction) [_ZTIN7log4cxx7rolling16GZCompressActionE]', + '56' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::~GZCompressAction() [_ZN7log4cxx7rolling16GZCompressActionD1Ev]', + '64' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::~GZCompressAction() [_ZN7log4cxx7rolling16GZCompressActionD0Ev]', + '72' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::getClass() const [_ZNK7log4cxx7rolling16GZCompressAction8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16GZCompressAction10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16GZCompressAction4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::execute(log4cxx::helpers::Pool&) const [_ZNK7log4cxx7rolling16GZCompressAction7executeERNS_7helpers4PoolE]' } }, - '11766940' => { + '16771817' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Line' => '48', - 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator', - 'NameSpace' => 'log4cxx::pattern::NOPAbbreviator', + 'Header' => 'gzcompressaction.h', + 'Line' => '34', + 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction', + 'NameSpace' => 'log4cxx::rolling::GZCompressAction', 'Size' => '8', - 'Source' => 'nameabbreviator.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator::~ClazzNOPAbbreviator() [_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator::~ClazzNOPAbbreviator() [_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD0Ev]', + '16' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::ClazzGZCompressAction::~ClazzGZCompressAction() [_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD2Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::ClazzGZCompressAction::~ClazzGZCompressAction() [_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviator7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator) [_ZTIN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorE]' + '40' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::ClazzGZCompressAction::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling16GZCompressAction21ClazzGZCompressAction7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::GZCompressAction::ClazzGZCompressAction) [_ZTIN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionE]' } }, - '11767096' => { - 'BaseType' => '11766940', - 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator const', + '16771935' => { + 'BaseType' => '16771817', + 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction const', 'Size' => '8', 'Type' => 'Const' }, - '11767436' => { - 'BaseType' => '11766923', - 'Name' => 'log4cxx::pattern::NOPAbbreviator const', - 'Size' => '8', + '16772021' => { + 'BaseType' => '16771808', + 'Name' => 'log4cxx::rolling::GZCompressAction const', 'Type' => 'Const' }, - '11767441' => { + '16772026' => { 'Base' => { - '11766174' => { - 'pos' => '0' - } - }, - 'Line' => '73', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'count', - 'offset' => '8', - 'type' => '50239' - } + '209702' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator', - 'NameSpace' => 'log4cxx::pattern', + 'Header' => 'zipcompressaction.h', + 'Line' => '30', + 'Name' => 'log4cxx::rolling::ZipCompressAction', + 'NameSpace' => 'log4cxx::rolling', 'Size' => '16', - 'Source' => 'nameabbreviator.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::~MaxElementAbbreviator() [_ZN7log4cxx7pattern21MaxElementAbbreviatorD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::~MaxElementAbbreviator() [_ZN7log4cxx7pattern21MaxElementAbbreviatorD0Ev]', - '32' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::getClass() const [_ZNK7log4cxx7pattern21MaxElementAbbreviator8getClassEv]', - '40' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern21MaxElementAbbreviator10instanceofERKNS_7helpers5ClassE]', - '48' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern21MaxElementAbbreviator4castERKNS_7helpers5ClassE]', - '56' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::abbreviate(unsigned long, std::__cxx11::basic_string, std::allocator >&) const [_ZNK7log4cxx7pattern21MaxElementAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MaxElementAbbreviator) [_ZTIN7log4cxx7pattern21MaxElementAbbreviatorE]' + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ZipCompressAction) [_ZTIN7log4cxx7rolling17ZipCompressActionE]', + '56' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::~ZipCompressAction() [_ZN7log4cxx7rolling17ZipCompressActionD1Ev]', + '64' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::~ZipCompressAction() [_ZN7log4cxx7rolling17ZipCompressActionD0Ev]', + '72' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::getClass() const [_ZNK7log4cxx7rolling17ZipCompressAction8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling17ZipCompressAction10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling17ZipCompressAction4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::execute(log4cxx::helpers::Pool&) const [_ZNK7log4cxx7rolling17ZipCompressAction7executeERNS_7helpers4PoolE]' } }, - '11767458' => { + '16772035' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Line' => '81', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator', - 'NameSpace' => 'log4cxx::pattern::MaxElementAbbreviator', + 'Header' => 'zipcompressaction.h', + 'Line' => '34', + 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction', + 'NameSpace' => 'log4cxx::rolling::ZipCompressAction', 'Size' => '8', - 'Source' => 'nameabbreviator.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator::~ClazzMaxElementAbbreviator() [_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator::~ClazzMaxElementAbbreviator() [_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD0Ev]', + '16' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction::~ClazzZipCompressAction() [_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction::~ClazzZipCompressAction() [_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviator7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator) [_ZTIN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorE]' + '40' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling17ZipCompressAction22ClazzZipCompressAction7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction) [_ZTIN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionE]' } }, - '11767614' => { - 'BaseType' => '11767458', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator const', + '16772153' => { + 'BaseType' => '16772035', + 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction const', 'Size' => '8', 'Type' => 'Const' }, - '11767972' => { - 'BaseType' => '11767441', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator const', + '16772239' => { + 'BaseType' => '16772026', + 'Name' => 'log4cxx::rolling::ZipCompressAction const', + 'Type' => 'Const' + }, + '16772430' => { + 'BaseType' => '16601665', + 'Header' => 'rolloverdescription.h', + 'Line' => '81', + 'Name' => 'log4cxx::rolling::RolloverDescriptionPtr', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '16772442' => { + 'BaseType' => '16496677', + 'Header' => 'rollingpolicybase.h', + 'Line' => '33', + 'Name' => 'log4cxx::rolling::PatternConverterList', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '16772454' => { + 'BaseType' => '16499831', + 'Header' => 'rollingpolicybase.h', + 'Line' => '34', + 'Name' => 'log4cxx::rolling::FormattingInfoList', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '16772723' => { + 'BaseType' => '5658321', + 'Name' => 'log4cxx::rolling::RollingPolicy const', + 'Type' => 'Const' + }, + '16772728' => { + 'BaseType' => '16608145', + 'Header' => 'action.h', + 'Line' => '75', + 'Name' => 'log4cxx::rolling::ActionPtr', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '16772740' => { + 'BaseType' => '16772728', + 'Name' => 'log4cxx::rolling::ActionPtr const', 'Size' => '16', 'Type' => 'Const' }, - '11767977' => { + '16774354' => { 'Base' => { - '11766174' => { - 'pos' => '0' - } - }, - 'Line' => '201', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'fragments', - 'offset' => '8', - 'type' => '11721796' - } + '3120362' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::pattern::PatternAbbreviator', + 'Copied' => 1, + 'Header' => 'integerpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter', 'NameSpace' => 'log4cxx::pattern', - 'Size' => '32', - 'Source' => 'nameabbreviator.cpp', + 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::~PatternAbbreviator() [_ZN7log4cxx7pattern18PatternAbbreviatorD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::~PatternAbbreviator() [_ZN7log4cxx7pattern18PatternAbbreviatorD0Ev]', - '32' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::getClass() const [_ZNK7log4cxx7pattern18PatternAbbreviator8getClassEv]', - '40' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern18PatternAbbreviator10instanceofERKNS_7helpers5ClassE]', - '48' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern18PatternAbbreviator4castERKNS_7helpers5ClassE]', - '56' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::abbreviate(unsigned long, std::__cxx11::basic_string, std::allocator >&) const [_ZNK7log4cxx7pattern18PatternAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternAbbreviator) [_ZTIN7log4cxx7pattern18PatternAbbreviatorE]' + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::IntegerPatternConverter) [_ZTIN7log4cxx7pattern23IntegerPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::~IntegerPatternConverter() [_ZN7log4cxx7pattern23IntegerPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::~IntegerPatternConverter() [_ZN7log4cxx7pattern23IntegerPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::getClass() const [_ZNK7log4cxx7pattern23IntegerPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23IntegerPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23IntegerPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern23IntegerPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '11767994' => { + '16774360' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Line' => '209', - 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator', - 'NameSpace' => 'log4cxx::pattern::PatternAbbreviator', + 'Header' => 'integerpatternconverter.h', + 'Line' => '38', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter', + 'NameSpace' => 'log4cxx::pattern::IntegerPatternConverter', 'Size' => '8', - 'Source' => 'nameabbreviator.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator::~ClazzPatternAbbreviator() [_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator::~ClazzPatternAbbreviator() [_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD0Ev]', + '16' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter::~ClazzIntegerPatternConverter() [_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter::~ClazzIntegerPatternConverter() [_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviator7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator) [_ZTIN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorE]' + '40' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter) [_ZTIN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterE]' } }, - '11768150' => { - 'BaseType' => '11767994', - 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11768508' => { - 'BaseType' => '11767977', - 'Name' => 'log4cxx::pattern::PatternAbbreviator const', - 'Size' => '32', - 'Type' => 'Const' - }, - '11768513' => { - 'BaseType' => '11727823', - 'Header' => 'nameabbreviator.h', - 'Line' => '30', - 'Name' => 'log4cxx::pattern::NameAbbreviatorPtr', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '11768727' => { - 'BaseType' => '11763227', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11768733' => { - 'BaseType' => '11768727', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11768897' => { - 'BaseType' => '11766708', - 'Name' => 'log4cxx::pattern::PatternAbbreviatorFragment*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769186' => { - 'BaseType' => '11763987', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769192' => { - 'BaseType' => '11769186', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11769249' => { - 'BaseType' => '11764344', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769255' => { - 'BaseType' => '11769249', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11769312' => { - 'BaseType' => '11764701', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769318' => { - 'BaseType' => '11769312', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11769468' => { - 'BaseType' => '11727384', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769486' => { - 'BaseType' => '11766174', - 'Name' => 'log4cxx::pattern::NameAbbreviator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769492' => { - 'BaseType' => '11769486', - 'Name' => 'log4cxx::pattern::NameAbbreviator*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11769597' => { - 'BaseType' => '11767441', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769603' => { - 'BaseType' => '11769597', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11769708' => { - 'BaseType' => '11767977', - 'Name' => 'log4cxx::pattern::PatternAbbreviator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769714' => { - 'BaseType' => '11769708', - 'Name' => 'log4cxx::pattern::PatternAbbreviator*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11769754' => { - 'BaseType' => '11765058', - 'Name' => 'log4cxx::helpers::WideLife >*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769760' => { - 'BaseType' => '11769754', - 'Name' => 'log4cxx::helpers::WideLife >*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11769836' => { - 'BaseType' => '11732667', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769854' => { - 'BaseType' => '11766923', - 'Name' => 'log4cxx::pattern::NOPAbbreviator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769860' => { - 'BaseType' => '11769854', - 'Name' => 'log4cxx::pattern::NOPAbbreviator*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11769882' => { - 'BaseType' => '11733077', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '11769963' => { - 'BaseType' => '11767972', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11769969' => { - 'BaseType' => '11769963', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11770032' => { - 'BaseType' => '11768508', - 'Name' => 'log4cxx::pattern::PatternAbbreviator const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11770038' => { - 'BaseType' => '11770032', - 'Name' => 'log4cxx::pattern::PatternAbbreviator const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11770101' => { - 'BaseType' => '11767436', - 'Name' => 'log4cxx::pattern::NOPAbbreviator const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11770107' => { - 'BaseType' => '11770101', - 'Name' => 'log4cxx::pattern::NOPAbbreviator const*const', + '16774478' => { + 'BaseType' => '16774360', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '11770937' => { - 'BaseType' => '11767994', - 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '11770943' => { - 'BaseType' => '11770937', - 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator*const', + '16783989' => { + 'BaseType' => '16496677', + 'Name' => 'std::vector >&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Ref' }, - '11770948' => { - 'BaseType' => '11768150', - 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator const*', + '16783994' => { + 'BaseType' => '16499831', + 'Name' => 'std::vector >&', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Ref' }, - '11770954' => { - 'BaseType' => '11770948', - 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator const*const', + '16786979' => { + 'BaseType' => '2974331', + 'Name' => 'std::shared_ptr*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '11770959' => { - 'BaseType' => '11767458', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator*', + '16787205' => { + 'BaseType' => '16764653', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '11770965' => { - 'BaseType' => '11770959', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator*const', + '16787210' => { + 'BaseType' => '16787205', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '11770970' => { - 'BaseType' => '11767614', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator const*', + '16787316' => { + 'BaseType' => '16770905', + 'Name' => 'struct log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '11770976' => { - 'BaseType' => '11770970', - 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator const*const', + '16787321' => { + 'BaseType' => '16787316', + 'Name' => 'struct log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate*const', 'Size' => '8', 'Type' => 'Const' }, - '11770981' => { - 'BaseType' => '11766940', - 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator*', + '16787696' => { + 'BaseType' => '16601077', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '11770987' => { - 'BaseType' => '11770981', - 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator*const', + '16787866' => { + 'BaseType' => '16603743', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '11770992' => { - 'BaseType' => '11767096', - 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator const*', + '16787911' => { + 'BaseType' => '16765851', + 'Name' => 'log4cxx::helpers::Integer*', 'Size' => '8', 'Type' => 'Pointer' }, - '11770998' => { - 'BaseType' => '11770992', - 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator const*const', + '16787916' => { + 'BaseType' => '16787911', + 'Name' => 'log4cxx::helpers::Integer*const', 'Size' => '8', 'Type' => 'Const' }, - '11771009' => { - 'BaseType' => '11766703', - 'Name' => 'log4cxx::pattern::NameAbbreviator const*', + '16787961' => { + 'BaseType' => '16607635', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '11771015' => { - 'BaseType' => '11771009', - 'Name' => 'log4cxx::pattern::NameAbbreviator const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11771020' => { - 'BaseType' => '11766191', - 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator*', + '16788101' => { + 'BaseType' => '16771808', + 'Name' => 'log4cxx::rolling::GZCompressAction*', 'Size' => '8', 'Type' => 'Pointer' }, - '11771026' => { - 'BaseType' => '11771020', - 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator*const', + '16788106' => { + 'BaseType' => '16788101', + 'Name' => 'log4cxx::rolling::GZCompressAction*const', 'Size' => '8', 'Type' => 'Const' }, - '11771031' => { - 'BaseType' => '11766347', - 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator const*', + '16788206' => { + 'BaseType' => '16772026', + 'Name' => 'log4cxx::rolling::ZipCompressAction*', 'Size' => '8', 'Type' => 'Pointer' }, - '11771037' => { - 'BaseType' => '11771031', - 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator const*const', + '16788211' => { + 'BaseType' => '16788206', + 'Name' => 'log4cxx::rolling::ZipCompressAction*const', 'Size' => '8', 'Type' => 'Const' }, - '11916053' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '16789488' => { + 'BaseType' => '16658841', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '11917445' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '11917445' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'namepatternconverter.h', - 'Line' => '41', - 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter', - 'NameSpace' => 'log4cxx::pattern::NamePatternConverter', + '16789508' => { + 'BaseType' => '2974331', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter::~ClazzNamePatternConverter() [_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter::~ClazzNamePatternConverter() [_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter) [_ZTIN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterE]' - } + 'Type' => 'RvalueRef' }, - '11917603' => { - 'BaseType' => '11917445', - 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter const', + '16789583' => { + 'BaseType' => '5679633', + 'Name' => 'log4cxx::rolling::RolloverDescription*const', 'Size' => '8', 'Type' => 'Const' }, - '11917608' => { - 'Base' => { - '2428623' => { - 'pos' => '0' - } - }, - 'Line' => '30', - 'Memb' => { - '0' => { - 'name' => 'abbreviator', - 'offset' => '72', - 'type' => '11918321' - } - }, - 'Name' => 'struct log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate', - 'NameSpace' => 'log4cxx::pattern::NamePatternConverter', - 'Private' => 1, - 'Size' => '88', - 'Source' => 'namepatternconverter.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate::~NamePatternConverterPrivate() [_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate::~NamePatternConverterPrivate() [_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate) [_ZTIN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateE]' - } - }, - '11918321' => { - 'BaseType' => '11768513', - 'Name' => 'log4cxx::pattern::NameAbbreviatorPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '11919806' => { - 'BaseType' => '11916053', - 'Name' => 'log4cxx::helpers::WideLife*', + '16790345' => { + 'BaseType' => '16766049', + 'Name' => 'log4cxx::helpers::Integer const*', 'Size' => '8', 'Type' => 'Pointer' }, - '11919812' => { - 'BaseType' => '11919806', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '11919931' => { - 'BaseType' => '11917608', - 'Name' => 'struct log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate*', + '16790490' => { + 'BaseType' => '16769944', + 'Name' => 'log4cxx::rolling::RolloverDescription const*', 'Size' => '8', 'Type' => 'Pointer' }, - '11919937' => { - 'BaseType' => '11919931', - 'Name' => 'struct log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate*const', + '16790635' => { + 'BaseType' => '16772021', + 'Name' => 'log4cxx::rolling::GZCompressAction const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '11920570' => { - 'BaseType' => '11917445', - 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter*', + '16790780' => { + 'BaseType' => '16772239', + 'Name' => 'log4cxx::rolling::ZipCompressAction const*', 'Size' => '8', 'Type' => 'Pointer' }, - '11920576' => { - 'BaseType' => '11920570', - 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter*const', + '16791140' => { + 'BaseType' => '5679598', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy*const', 'Size' => '8', 'Type' => 'Const' }, - '11920581' => { - 'BaseType' => '11917603', - 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter const*', + '16791160' => { + 'BaseType' => '16771803', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy const*', 'Size' => '8', 'Type' => 'Pointer' }, - '11920587' => { - 'BaseType' => '11920581', - 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter const*const', + '16791165' => { + 'BaseType' => '16791160', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy const*const', 'Size' => '8', 'Type' => 'Const' }, - '119828' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '94', - 'Name' => 'std::_Mutex_base<2>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '12035700' => { - 'BaseType' => '652349', - 'Name' => 'log4cxx::NDC*const', + '16791319' => { + 'BaseType' => '16774360', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter*', 'Size' => '8', - 'Type' => 'Const' - }, - '12111' => { - 'Base' => { - '47810' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'char' - } - }, - 'Type' => 'Class' - }, - '12143848' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '12171365' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '12143996' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '12171365' - } - }, - 'Type' => 'Struct' - }, - '12144010' => { - 'BaseType' => '12171365', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '12144033' => { - 'Base' => { - '12143848' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '12174410' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '12171365' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '12144320' => { - 'BaseType' => '12144010', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '12144802' => { - 'Base' => { - '12144033' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '12171365' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '12169566' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '16791324' => { + 'BaseType' => '16774478', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter const*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '12171399' - } - }, - 'Type' => 'Class' - }, - '12171365' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'mdcpatternconverter.h', - 'Line' => '32', - 'Name' => 'log4cxx::pattern::MDCPatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern19MDCPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MDCPatternConverter) [_ZTIN7log4cxx7pattern19MDCPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::~MDCPatternConverter() [_ZN7log4cxx7pattern19MDCPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::~MDCPatternConverter() [_ZN7log4cxx7pattern19MDCPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::getClass() const [_ZNK7log4cxx7pattern19MDCPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern19MDCPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern19MDCPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } + 'Type' => 'Pointer' }, - '12171399' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'mdcpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter', - 'NameSpace' => 'log4cxx::pattern::MDCPatternConverter', + '16791329' => { + 'BaseType' => '16772035', + 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter::~ClazzMDCPatternConverter() [_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter::~ClazzMDCPatternConverter() [_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter) [_ZTIN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterE]' - } + 'Type' => 'Pointer' }, - '12171557' => { - 'BaseType' => '12171399', - 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter const', + '16791334' => { + 'BaseType' => '16772153', + 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction const*', 'Size' => '8', - 'Type' => 'Const' - }, - '12171978' => { - 'BaseType' => '12171365', - 'Name' => 'log4cxx::pattern::MDCPatternConverter const', - 'Size' => '16', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '12174120' => { - 'BaseType' => '12169566', - 'Name' => 'log4cxx::helpers::WideLife*', + '16791339' => { + 'BaseType' => '16771817', + 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction*', 'Size' => '8', 'Type' => 'Pointer' }, - '12174126' => { - 'BaseType' => '12174120', - 'Name' => 'log4cxx::helpers::WideLife*const', + '16791344' => { + 'BaseType' => '16771935', + 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '12174410' => { - 'BaseType' => '12144320', - 'Name' => 'std::__shared_ptr::element_type*', + '16791359' => { + 'BaseType' => '16765860', + 'Name' => 'log4cxx::helpers::Integer::ClazzInteger*', 'Size' => '8', 'Type' => 'Pointer' }, - '12174428' => { - 'BaseType' => '12171365', - 'Name' => 'log4cxx::pattern::MDCPatternConverter*', + '16791364' => { + 'BaseType' => '16766015', + 'Name' => 'log4cxx::helpers::Integer::ClazzInteger const*', 'Size' => '8', 'Type' => 'Pointer' }, - '12174434' => { - 'BaseType' => '12174428', - 'Name' => 'log4cxx::pattern::MDCPatternConverter*const', + '16791374' => { + 'BaseType' => '5679588', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy*const', 'Size' => '8', 'Type' => 'Const' }, - '12174456' => { - 'BaseType' => '12144802', - 'Name' => 'std::shared_ptr&&', + '16791384' => { + 'BaseType' => '5679593', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy const*const', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Const' }, - '12174671' => { - 'BaseType' => '12171978', - 'Name' => 'log4cxx::pattern::MDCPatternConverter const*', + '16792973' => { + 'BaseType' => '16772723', + 'Name' => 'log4cxx::rolling::RollingPolicy const*', 'Size' => '8', 'Type' => 'Pointer' }, - '12174677' => { - 'BaseType' => '12174671', - 'Name' => 'log4cxx::pattern::MDCPatternConverter const*const', + '16792978' => { + 'BaseType' => '16770646', + 'Name' => 'log4cxx::rolling::RollingPolicyBase const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '16792983' => { + 'BaseType' => '16792978', + 'Name' => 'log4cxx::rolling::RollingPolicyBase const*const', 'Size' => '8', 'Type' => 'Const' }, - '12174999' => { - 'BaseType' => '12171399', - 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter*', + '16793355' => { + 'BaseType' => '16772740', + 'Name' => 'log4cxx::rolling::ActionPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '16793603' => { + 'BaseType' => '5657215', + 'Name' => 'log4cxx::rolling::RollingPolicyBase*', 'Size' => '8', 'Type' => 'Pointer' }, - '12175005' => { - 'BaseType' => '12174999', - 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter*const', + '16793608' => { + 'BaseType' => '16793603', + 'Name' => 'log4cxx::rolling::RollingPolicyBase*const', 'Size' => '8', 'Type' => 'Const' }, - '12175010' => { - 'BaseType' => '12171557', - 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter const*', + '1696655' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1908941' + } + }, + 'Type' => 'Struct' + }, + '1697629' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1700055' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1908941' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1696655' + } + }, + 'Type' => 'Class' + }, + '16980260' => { + 'BaseType' => '5658321', + 'Name' => 'log4cxx::rolling::RollingPolicy*', 'Size' => '8', 'Type' => 'Pointer' }, - '12175016' => { - 'BaseType' => '12175010', - 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter const*const', + '16980265' => { + 'BaseType' => '16980260', + 'Name' => 'log4cxx::rolling::RollingPolicy*const', 'Size' => '8', 'Type' => 'Const' }, - '1225411' => { + '1698269' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1696655' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '1696655' + } + }, + 'Type' => 'Struct' + }, + '1698527' => { + 'Base' => { + '1698269' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '1696655' + } + }, + 'Type' => 'Struct' + }, + '1698833' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1923810' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::APRInitializer::APRInitializerPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '1923810' + } + }, + 'Type' => 'Struct' + }, + '1699091' => { + 'Base' => { + '1698527' => { + 'pos' => '0' + }, + '1698833' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::APRInitializer::APRInitializerPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '1923810' + } + }, + 'Type' => 'Struct' + }, + '1700055' => { + 'Base' => { + '1699091' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '1923810' + } + }, + 'Type' => 'Class' + }, + '1701535' => { + 'Base' => { + '1697629' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1908941' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1696655' + } + }, + 'Type' => 'Struct' + }, + '1701766' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1701535' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1908941' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1696655' + } + }, + 'Type' => 'Class' + }, + '1702718' => { + 'BaseType' => '497510', + 'Name' => 'std::shared_ptrconst', + 'Size' => '16', + 'Type' => 'Const' + }, + '1702723' => { + 'Base' => { + '1703171' => { + 'pos' => '0' + }, + '458046' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'std_function.h', + 'Line' => '334', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_invoker', + 'offset' => '36', + 'type' => '1703115' + } + }, + 'Name' => 'std::function()>', + 'NameSpace' => 'std', + 'Size' => '32', + 'TParam' => { + '0' => { + 'key' => '_Signature', + 'type' => '1981517' + } + }, + 'Type' => 'Class' + }, + '1703115' => { + 'BaseType' => '1924165', + 'Header' => 'std_function.h', + 'Line' => '666', + 'Name' => 'std::function()>::_Invoker_type', + 'NameSpace' => 'std::function()>', + 'Private' => 1, + 'Size' => '8', + 'Type' => 'Typedef' + }, + '1703171' => { + 'Header' => 'refwrap.h', + 'Line' => '55', + 'Name' => 'struct std::_Maybe_unary_or_binary_function >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Res', + 'type' => '497510' + } + }, + 'Type' => 'Struct' + }, + '1703199' => { + 'Copied' => 1, + 'Name' => 'std::stack, std::allocator >, std::__cxx11::basic_string, std::allocator > >, std::deque, std::allocator >, std::__cxx11::basic_string, std::allocator > >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > > >', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'type' => '1703204' + }, + '1' => { + 'name' => 'std::deque, std::allocator >, std::__cxx11::basic_string, std::allocator > >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >' + } + }, + 'Type' => 'Class' + }, + '1703204' => { + 'Name' => 'struct std::pair, std::allocator >, std::__cxx11::basic_string, std::allocator > >', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'name' => 'std::__cxx11::basic_string, std::allocator >' + }, + '1' => { + 'name' => 'std::__cxx11::basic_string, std::allocator >' + } + }, + 'Type' => 'Struct' + }, + '1703244' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1247509' + 'type' => '1909527' } }, 'Type' => 'Struct' }, - '1225497' => { + '1704218' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '1227033' + 'type' => '1706644' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1247509' + 'type' => '1909527' }, '1' => { 'key' => '_Dp', - 'type' => '1225411' + 'type' => '1703244' } }, 'Type' => 'Class' }, - '1225820' => { - 'Base' => { - '1225411' => { - 'pos' => '0' - } - }, + '1704858' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1703244' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '1225411' + 'type' => '1703244' } }, 'Type' => 'Struct' }, - '1226073' => { + '1705116' => { 'Base' => { - '1225820' => { + '1704858' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '1225411' + 'type' => '1703244' } }, 'Type' => 'Struct' }, - '1226372' => { + '1705422' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '1249501' + 'type' => '1929874' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::BufferedWriter::BufferedWriterPriv*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ThreadSpecificData::ThreadSpecificDataPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '1249501' + 'type' => '1929874' } }, 'Type' => 'Struct' }, - '1226632' => { + '1705680' => { 'Base' => { - '1226073' => { + '1705116' => { 'pos' => '0' }, - '1226372' => { + '1705422' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::BufferedWriter::BufferedWriterPriv*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ThreadSpecificData::ThreadSpecificDataPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '1249501' + 'type' => '1929874' } }, 'Type' => 'Struct' }, - '1227033' => { + '1706644' => { 'Base' => { - '1226632' => { + '1705680' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '1249501' + 'type' => '1929874' } }, 'Type' => 'Class' }, - '1227363' => { + '1708086' => { + 'Base' => { + '1704218' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1909527' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1703244' + } + }, + 'Type' => 'Struct' + }, + '1708288' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '1225497' + 'type' => '1708086' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1247509' + 'type' => '1909527' }, '1' => { 'key' => '_Dp', - 'type' => '1225411' + 'type' => '1703244' } }, 'Type' => 'Class' }, - '1227989' => { + '171165' => { + 'Copied' => 1, + 'Name' => 'std::exception', + 'NameSpace' => 'std', + 'Type' => 'Class' + }, + '171170' => { + 'BaseType' => '171165', + 'Name' => 'std::exception const', + 'Type' => 'Const' + }, + '17164773' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3120514' + } + }, + 'Type' => 'Class' + }, + '17165516' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '202654' + } + }, + 'Name' => 'log4cxx::helpers::WideLife >', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '2974331' + } + }, + 'Type' => 'Class' + }, + '17167064' => { + 'BaseType' => '3120500', + 'Name' => 'log4cxx::pattern::FormattingInfo const', + 'Size' => '16', + 'Type' => 'Const' + }, + '17167563' => { + 'BaseType' => '17164773', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '17167568' => { + 'BaseType' => '17167563', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '17167784' => { + 'BaseType' => '17165516', + 'Name' => 'log4cxx::helpers::WideLife >*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '17167789' => { + 'BaseType' => '17167784', + 'Name' => 'log4cxx::helpers::WideLife >*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '17167814' => { + 'BaseType' => '3120500', + 'Name' => 'log4cxx::pattern::FormattingInfo*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '17167819' => { + 'BaseType' => '17167814', + 'Name' => 'log4cxx::pattern::FormattingInfo*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '17168210' => { + 'BaseType' => '17167064', + 'Name' => 'log4cxx::pattern::FormattingInfo const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '17168215' => { + 'BaseType' => '17168210', + 'Name' => 'log4cxx::pattern::FormattingInfo const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '17168365' => { + 'BaseType' => '3134077', + 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '17168375' => { + 'BaseType' => '3134082', + 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '174065' => { + 'Name' => 'unsigned int', + 'Size' => '4', + 'Type' => 'Intrinsic' + }, + '174077' => { + 'Name' => 'bool', + 'Size' => '1', + 'Type' => 'Intrinsic' + }, + '174084' => { + 'BaseType' => '174077', + 'Name' => 'bool const', + 'Size' => '1', + 'Type' => 'Const' + }, + '1745028' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1248265' + 'type' => '1917211' + } + }, + 'Type' => 'Struct' + }, + '1746002' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1748428' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1917211' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Dp', + 'type' => '1745028' } }, 'Type' => 'Class' }, - '1228137' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + '1746642' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1745028' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '1248265' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '1745028' } }, 'Type' => 'Struct' }, - '1228151' => { - 'BaseType' => '1248265', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '12284326' => { + '17468268' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '12308059' + 'type' => '9954559' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '12284474' => { + '17468416' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '12308059' + 'type' => '9954559' } }, 'Type' => 'Struct' }, - '12284488' => { - 'BaseType' => '12308059', + '17468430' => { + 'BaseType' => '9954559', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Size' => '16', 'Type' => 'Typedef' }, - '12284511' => { + '17468453' => { 'Base' => { - '12284326' => { + '17468268' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '12310380' + 'type' => '17541808' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '12308059' + 'type' => '9954559' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '12284797' => { - 'BaseType' => '12284488', + '17468734' => { + 'BaseType' => '17468430', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Size' => '16', 'Type' => 'Typedef' }, - '12285207' => { + '1746900' => { + 'Base' => { + '1746642' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '1745028' + } + }, + 'Type' => 'Struct' + }, + '17469185' => { 'Base' => { - '12284511' => { + '17468453' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '12308059' + 'type' => '9954559' } }, 'Type' => 'Class' }, - '1229160' => { - 'Base' => { - '1227989' => { - 'pos' => '0' - } - }, + '1747206' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Header' => 'tuple', + 'Line' => '187', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_ptr', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '1249922' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '1934001' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::File::FilePrivate*>', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '1248265' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Head', + 'type' => '1934001' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '1229447' => { - 'BaseType' => '1228151', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + '1747464' => { + 'Base' => { + '1746900' => { + 'pos' => '0' + }, + '1747206' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::File::FilePrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '1934001' + } + }, + 'Type' => 'Struct' }, - '1229760' => { + '1748428' => { 'Base' => { - '1229160' => { + '1747464' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '1934001' + } + }, + 'Type' => 'Class' + }, + '1749870' => { + 'Base' => { + '1746002' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1917211' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1745028' + } + }, + 'Type' => 'Struct' + }, + '1750072' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1749870' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1248265' + 'type' => '1917211' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1745028' } }, 'Type' => 'Class' }, - '12306429' => { + '1750669' => { + 'Copied' => 1, + 'Header' => 'atomic_base.h', + 'Line' => '324', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_i', + 'offset' => '0', + 'type' => '1750698' + } + }, + 'Name' => 'struct std::__atomic_base', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_IntTp', + 'type' => '174077' + } + }, + 'Type' => 'Struct' + }, + '1750698' => { + 'BaseType' => '174077', + 'Header' => 'atomic_base.h', + 'Line' => '330', + 'Name' => 'std::__atomic_base::__int_type', + 'NameSpace' => 'std::__atomic_base', + 'Private' => 1, + 'Size' => '1', + 'Type' => 'Typedef' + }, + '17528293' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -103022,3001 +104587,3324 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '12308093' + 'type' => '9954584' } }, 'Type' => 'Class' }, - '12308059' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'ndcpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::NDCPatternConverter', - 'NameSpace' => 'log4cxx::pattern', + '1752914' => { + 'Copied' => 1, + 'Header' => 'atomic', + 'Line' => '62', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_base', + 'offset' => '0', + 'type' => '1750669' + } + }, + 'Name' => 'struct std::atomic', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '174077' + } + }, + 'Type' => 'Struct' + }, + '17530865' => { + 'BaseType' => '9954559', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter const', 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern19NDCPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NDCPatternConverter) [_ZTIN7log4cxx7pattern19NDCPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::~NDCPatternConverter() [_ZN7log4cxx7pattern19NDCPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::~NDCPatternConverter() [_ZN7log4cxx7pattern19NDCPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::getClass() const [_ZNK7log4cxx7pattern19NDCPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern19NDCPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern19NDCPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } + 'Type' => 'Const' }, - '12308093' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'ndcpatternconverter.h', - 'Line' => '38', - 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter', - 'NameSpace' => 'log4cxx::pattern::NDCPatternConverter', + '17541557' => { + 'BaseType' => '17528293', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter::~ClazzNDCPatternConverter() [_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter::~ClazzNDCPatternConverter() [_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter) [_ZTIN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterE]' - } + 'Type' => 'Pointer' }, - '12308251' => { - 'BaseType' => '12308093', - 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter const', + '17541562' => { + 'BaseType' => '17541557', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '12308656' => { - 'BaseType' => '12308059', - 'Name' => 'log4cxx::pattern::NDCPatternConverter const', - 'Size' => '16', - 'Type' => 'Const' + '17541808' => { + 'BaseType' => '17468734', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '12310090' => { - 'BaseType' => '12306429', - 'Name' => 'log4cxx::helpers::WideLife*', + '17541838' => { + 'BaseType' => '17469185', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '17542003' => { + 'BaseType' => '9954559', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '12310096' => { - 'BaseType' => '12310090', - 'Name' => 'log4cxx::helpers::WideLife*const', + '17542008' => { + 'BaseType' => '17542003', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '12310380' => { - 'BaseType' => '12284797', - 'Name' => 'std::__shared_ptr::element_type*', + '17542344' => { + 'BaseType' => '17530865', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '12310398' => { - 'BaseType' => '12308059', - 'Name' => 'log4cxx::pattern::NDCPatternConverter*', + '17542349' => { + 'BaseType' => '17542344', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '17542504' => { + 'BaseType' => '9977375', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '17542514' => { + 'BaseType' => '9977380', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '178281' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '191030' + } + }, + 'Type' => 'Class' + }, + '178527' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '190393' + } + }, + 'Type' => 'Class' + }, + '17909222' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '16771817' + } + }, + 'Type' => 'Class' + }, + '17911392' => { + 'Base' => { + '209720' => { + 'pos' => '0' + } + }, + 'Line' => '32', + 'Memb' => { + '0' => { + 'name' => 'source', + 'offset' => '114', + 'type' => '567066' + }, + '1' => { + 'name' => 'destination', + 'offset' => '128', + 'type' => '567061' + }, + '2' => { + 'name' => 'deleteSource', + 'offset' => '136', + 'type' => '174077' + }, + '3' => { + 'name' => 'throwIOExceptionOnForkFailure', + 'offset' => '137', + 'type' => '174077' + } + }, + 'Name' => 'struct log4cxx::rolling::GZCompressAction::GZCompressActionPrivate', + 'NameSpace' => 'log4cxx::rolling::GZCompressAction', + 'Private' => 1, + 'Size' => '96', + 'Source' => 'gzcompressaction.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::GZCompressActionPrivate::~GZCompressActionPrivate() [_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::GZCompressActionPrivate::~GZCompressActionPrivate() [_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::GZCompressAction::GZCompressActionPrivate) [_ZTIN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateE]' + } + }, + '179202' => { + 'Base' => { + '51319' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '30290' + } + }, + 'Type' => 'Struct' + }, + '17930517' => { + 'BaseType' => '17909222', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '12310404' => { - 'BaseType' => '12310398', - 'Name' => 'log4cxx::pattern::NDCPatternConverter*const', + '17930522' => { + 'BaseType' => '17930517', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '12310426' => { - 'BaseType' => '12285207', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '12310597' => { - 'BaseType' => '12308656', - 'Name' => 'log4cxx::pattern::NDCPatternConverter const*', + '17930628' => { + 'BaseType' => '17911392', + 'Name' => 'struct log4cxx::rolling::GZCompressAction::GZCompressActionPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '12310603' => { - 'BaseType' => '12310597', - 'Name' => 'log4cxx::pattern::NDCPatternConverter const*const', + '17930633' => { + 'BaseType' => '17930628', + 'Name' => 'struct log4cxx::rolling::GZCompressAction::GZCompressActionPrivate*const', 'Size' => '8', 'Type' => 'Const' }, - '12310914' => { - 'BaseType' => '12308093', - 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12310920' => { - 'BaseType' => '12310914', - 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter*const', + '17931168' => { + 'BaseType' => '16790635', + 'Name' => 'log4cxx::rolling::GZCompressAction const*const', 'Size' => '8', 'Type' => 'Const' }, - '12310925' => { - 'BaseType' => '12308251', - 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter const*', + '17931252' => { + 'BaseType' => '16791339', + 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '12310931' => { - 'BaseType' => '12310925', - 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter const*const', + '17931262' => { + 'BaseType' => '16791344', + 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction const*const', 'Size' => '8', 'Type' => 'Const' }, - '123552' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '607', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_pi', - 'offset' => '0', - 'type' => '153109' - } - }, - 'Name' => 'std::__shared_count<2>', - 'NameSpace' => 'std', + '179416' => { + 'BaseType' => '51333', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits >', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + 'Type' => 'Typedef' }, - '124017' => { - 'Base' => { - '119828' => { - 'pos' => '0' - } - }, + '179440' => { + 'BaseType' => '51396', + 'Header' => 'alloc_traits.h', + 'Line' => '59', + 'Name' => '__gnu_cxx::__alloc_traits >::size_type', + 'NameSpace' => '__gnu_cxx::__alloc_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '1797924' => { + 'Copied' => 1, + 'Header' => 'std_thread.h', + 'Line' => '62', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_id', + 'offset' => '0', + 'type' => '1797937' + } + }, + 'Name' => 'std::thread', + 'NameSpace' => 'std', + 'Size' => '8', + 'Type' => 'Class' + }, + '1797937' => { + 'Copied' => 1, + 'Header' => 'std_thread.h', + 'Line' => '81', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_thread', + 'offset' => '0', + 'type' => '1798024' + } + }, + 'Name' => 'std::thread::id', + 'NameSpace' => 'std::thread', + 'Size' => '8', + 'Type' => 'Class' + }, + '1798024' => { + 'BaseType' => '200663', + 'Header' => 'std_thread.h', + 'Line' => '75', + 'Name' => 'std::thread::native_handle_type', + 'NameSpace' => 'std::thread', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '180164' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '113', + 'Header' => 'stl_iterator.h', + 'Line' => '1004', 'Memb' => { '0' => { - 'name' => '_vptr', + 'access' => 'protected', + 'name' => '_M_current', 'offset' => '0', - 'type' => '66091' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_use_count', - 'offset' => '8', - 'type' => '147846' - }, - '2' => { - 'access' => 'private', - 'name' => '_M_weak_count', - 'offset' => '12', - 'type' => '147846' + 'type' => '191618' } }, - 'Name' => 'std::_Sp_counted_base<2>', - 'NameSpace' => 'std', - 'Size' => '16', + 'Name' => '__gnu_cxx::__normal_iterator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Iterator', + 'type' => '191618' + }, + '1' => { + 'key' => '_Container', + 'type' => '51677' } }, 'Type' => 'Class' }, - '12417862' => { - 'Base' => { - '12441776' => { - 'pos' => '0' - } - }, + '18049454' => { 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator', - 'NameSpace' => 'std', - 'Size' => '1', + 'Name' => 'std::__cxx11::basic_stringstream', + 'NameSpace' => 'std::__cxx11', 'TParam' => { '0' => { - 'type' => '12461328' + 'key' => '_CharT', + 'type' => '191030' } }, 'Type' => 'Class' }, - '12418013' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '12417862' - } - }, - 'Type' => 'Struct' - }, - '12418027' => { - 'BaseType' => '12466890', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits >::pointer', - 'NameSpace' => 'std::allocator_traits >', - 'Size' => '8', + '18063531' => { + 'BaseType' => '101540', + 'Header' => 'ios_base.h', + 'Line' => '341', + 'Name' => 'std::ios_base::fmtflags', + 'NameSpace' => 'std::ios_base', + 'Size' => '4', 'Type' => 'Typedef' }, - '12418276' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { + '180795' => { + 'Base' => { + '88704' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '12418475' + 'key' => '_Alloc', + 'type' => '30578' } }, - 'Name' => 'struct std::_Vector_base >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '12461328' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '12417862' - } - }, - 'Type' => 'Struct' - }, - '12418289' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', + 'Type' => 'Struct' + }, + '181009' => { + 'BaseType' => '88718', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '181033' => { + 'BaseType' => '88781', + 'Header' => 'alloc_traits.h', + 'Line' => '59', + 'Name' => '__gnu_cxx::__alloc_traits >::size_type', + 'NameSpace' => '__gnu_cxx::__alloc_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '1810993' => { + 'Copied' => 1, + 'Header' => 'condition_variable', + 'Line' => '68', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_cond', + 'offset' => '0', + 'type' => '106412' + } + }, + 'Name' => 'std::condition_variable', + 'NameSpace' => 'std', + 'Size' => '48', + 'Type' => 'Class' + }, + '18124620' => { + 'Header' => 'hexdump.h', + 'Line' => '27', 'Memb' => { '0' => { - 'name' => '_M_start', - 'offset' => '0', - 'type' => '12418463' + 'name' => 'None', + 'value' => '0' }, '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '12418463' + 'name' => 'AddStartingNewline', + 'value' => '1' }, '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '12418463' + 'name' => 'AddEndingNewline', + 'value' => '2' + }, + '3' => { + 'name' => 'AddNewline', + 'value' => '3' } }, - 'Name' => 'struct std::_Vector_base >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '12418463' => { - 'BaseType' => '12442342', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base >::pointer', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '12418475' => { - 'Base' => { - '12417862' => { - 'pos' => '0' - }, - '12418289' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '12419253' => { - 'Base' => { - '12418276' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '12461328' - } - }, - 'Type' => 'Class' - }, - '12441776' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '12461328' - } - }, - 'Type' => 'Class' - }, - '12442141' => { - 'Base' => { - '12418013' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '12417862' - } - }, - 'Type' => 'Struct' - }, - '12442342' => { - 'BaseType' => '12418027', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits >', - 'Size' => '8', - 'Type' => 'Typedef' + 'Name' => 'enum log4cxx::HexdumpFlags', + 'NameSpace' => 'log4cxx', + 'Size' => '4', + 'Type' => 'Enum' }, - '12459309' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '18126702' => { + 'BaseType' => '18049454', + 'Name' => 'std::__cxx11::basic_stringstream*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '12461775' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '12461290' => { - 'Base' => { - '407542' => { + '1813553' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1909468' + } + }, + 'Type' => 'Struct' + }, + '1814527' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1816953' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1909468' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1813553' + } + }, + 'Type' => 'Class' + }, + '1815167' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1813553' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '1813553' + } + }, + 'Type' => 'Struct' + }, + '1815425' => { + 'Base' => { + '1815167' => { + 'access' => 'private', 'pos' => '0' } - }, - 'Header' => 'odbcappender.h', - 'Line' => '142', - 'Name' => 'log4cxx::db::ODBCAppender', - 'NameSpace' => 'log4cxx::db', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::db::ODBCAppender) [_ZTIN7log4cxx2db12ODBCAppenderE]', - '168' => '(int (*)(...)) log4cxx::db::ODBCAppender::~ODBCAppender() [_ZN7log4cxx2db12ODBCAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::db::ODBCAppender::~ODBCAppender() [_ZN7log4cxx2db12ODBCAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::db::ODBCAppender::getClass() const [_ZNK7log4cxx2db12ODBCAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::db::ODBCAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx2db12ODBCAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::db::ODBCAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx2db12ODBCAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::db::ODBCAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::db::ODBCAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx2db12ODBCAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::db::ODBCAppender::close() [_ZN7log4cxx2db12ODBCAppender5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::db::ODBCAppender::requiresLayout() const [_ZNK7log4cxx2db12ODBCAppender14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::db::ODBCAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '312' => '(int (*)(...)) log4cxx::db::ODBCAppender::execute(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender7executeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '32' => '0u', - '320' => '(int (*)(...)) log4cxx::db::ODBCAppender::closeConnection(void*) [_ZN7log4cxx2db12ODBCAppender15closeConnectionEPv]', - '328' => '(int (*)(...)) log4cxx::db::ODBCAppender::getConnection(log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender13getConnectionERNS_7helpers4PoolE]', - '336' => '(int (*)(...)) log4cxx::db::ODBCAppender::flushBuffer(log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender11flushBufferERNS_7helpers4PoolE]', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '12461308' => { - 'Base' => { - '407560' => { + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '1813553' + } + }, + 'Type' => 'Struct' + }, + '1815731' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '1936212' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::FileWatchdog::FileWatchdogPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '1936212' + } + }, + 'Type' => 'Struct' + }, + '1815989' => { + 'Base' => { + '1815425' => { 'pos' => '0' + }, + '1815731' => { + 'access' => 'private', + 'pos' => '1' } - }, - 'Header' => 'odbcappender_priv.h', - 'Line' => '52', - 'Memb' => { - '0' => { - 'name' => 'databaseURL', - 'offset' => '184', - 'type' => '63706' - }, - '1' => { - 'name' => 'databaseUser', - 'offset' => '216', - 'type' => '63706' - }, - '10' => { - 'name' => 'mappedName', - 'offset' => '384', - 'type' => '2242385' - }, - '11' => { - 'name' => 'parameterValue', - 'offset' => '408', - 'type' => '12419253' + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::FileWatchdog::FileWatchdogPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' }, - '2' => { - 'name' => 'databasePassword', - 'offset' => '248', - 'type' => '63706' - }, - '3' => { - 'name' => 'connection', - 'offset' => '280', - 'type' => '12462514' - }, - '4' => { - 'name' => 'env', - 'offset' => '288', - 'type' => '12463160' - }, - '5' => { - 'name' => 'sqlStatement', - 'offset' => '296', - 'type' => '63706' - }, - '6' => { - 'name' => 'bufferSize', - 'offset' => '328', - 'type' => '50486' - }, - '7' => { - 'name' => 'buffer', - 'offset' => '336', - 'type' => '767747' - }, - '8' => { - 'name' => 'timeZone', - 'offset' => '360', - 'type' => '1574521' - }, - '9' => { - 'name' => 'preparedStatement', - 'offset' => '376', - 'type' => '12465940' - } - }, - 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv', - 'NameSpace' => 'log4cxx::db::ODBCAppender', - 'Protected' => 1, - 'Size' => '432', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::db::ODBCAppender::ODBCAppenderPriv::~ODBCAppenderPriv() [_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD1Ev]', - '24' => '(int (*)(...)) log4cxx::db::ODBCAppender::ODBCAppenderPriv::~ODBCAppenderPriv() [_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::ODBCAppender::ODBCAppenderPriv) [_ZTIN7log4cxx2db12ODBCAppender16ODBCAppenderPrivE]' - } - }, - '12461328' => { - 'Copied' => 1, - 'Header' => 'odbcappender_priv.h', - 'Line' => '118', - 'Memb' => { + '1' => { + 'key' => undef, + 'type' => '1936212' + } + }, + 'Type' => 'Struct' + }, + '1816953' => { + 'Base' => { + '1815989' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '1936212' + } + }, + 'Type' => 'Class' + }, + '181757' => { + 'Copied' => 1, + 'Header' => 'stl_iterator.h', + 'Line' => '1004', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => '_M_current', + 'offset' => '0', + 'type' => '191807' + } + }, + 'Name' => '__gnu_cxx::__normal_iterator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '8', + 'TParam' => { '0' => { - 'name' => 'converter', - 'offset' => '0', - 'type' => '12461341' + 'key' => '_Iterator', + 'type' => '191807' }, '1' => { - 'name' => 'paramType', - 'offset' => '16', - 'type' => '12461762' - }, - '2' => { - 'name' => 'paramMaxCharCount', - 'offset' => '24', - 'type' => '12466380' - }, - '3' => { - 'name' => 'paramValue', - 'offset' => '32', - 'type' => '12466368' - }, - '4' => { - 'name' => 'paramValueSize', - 'offset' => '40', - 'type' => '12466404' - }, - '5' => { - 'name' => 'strLen_or_Ind', - 'offset' => '48', - 'type' => '12466392' + 'key' => '_Container', + 'type' => '58805' } }, - 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding', - 'NameSpace' => 'log4cxx::db::ODBCAppender::ODBCAppenderPriv', - 'Size' => '56', - 'Type' => 'Struct' - }, - '12461341' => { - 'BaseType' => '3708466', - 'Header' => 'odbcappender_priv.h', - 'Line' => '120', - 'Name' => 'log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding::ConverterPtr', - 'NameSpace' => 'log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '12461457' => { - 'BaseType' => '12461328', - 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding const', - 'Size' => '56', - 'Type' => 'Const' - }, - '12461762' => { - 'BaseType' => '50224', - 'Header' => 'odbcappender.h', - 'Line' => '154', - 'Name' => 'log4cxx::db::ODBCAppender::SQLSMALLINT', - 'NameSpace' => 'log4cxx::db::ODBCAppender', - 'Size' => '2', - 'Type' => 'Typedef' - }, - '12461775' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'odbcappender.h', - 'Line' => '145', - 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender', - 'NameSpace' => 'log4cxx::db::ODBCAppender', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::db::ODBCAppender::ClazzODBCAppender::~ClazzODBCAppender() [_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD1Ev]', - '24' => '(int (*)(...)) log4cxx::db::ODBCAppender::ClazzODBCAppender::~ClazzODBCAppender() [_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::db::ODBCAppender::ClazzODBCAppender::newInstance() const [_ZTch0_h0_NK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::db::ODBCAppender::ClazzODBCAppender::getName[abi:cxx11]() const [_ZNK7log4cxx2db12ODBCAppender17ClazzODBCAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::db::ODBCAppender::ClazzODBCAppender::newInstance() const [_ZNK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::ODBCAppender::ClazzODBCAppender) [_ZTIN7log4cxx2db12ODBCAppender17ClazzODBCAppenderE]' - } - }, - '12461996' => { - 'BaseType' => '12461775', - 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12462514' => { - 'BaseType' => '50560', - 'Header' => 'odbcappender.h', - 'Line' => '151', - 'Name' => 'log4cxx::db::ODBCAppender::SQLHDBC', - 'NameSpace' => 'log4cxx::db::ODBCAppender', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '12463160' => { - 'BaseType' => '50560', - 'Header' => 'odbcappender.h', - 'Line' => '152', - 'Name' => 'log4cxx::db::ODBCAppender::SQLHENV', - 'NameSpace' => 'log4cxx::db::ODBCAppender', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '12463174' => { - 'BaseType' => '12461290', - 'Name' => 'log4cxx::db::ODBCAppender const', - 'Size' => '16', - 'Type' => 'Const' - }, - '12463179' => { - 'Base' => { - '832107' => { + 'Type' => 'Class' + }, + '1818395' => { + 'Base' => { + '1814527' => { 'pos' => '0' } - }, - 'Header' => 'odbcappender.h', - 'Line' => '38', - 'Name' => 'log4cxx::db::SQLException', - 'NameSpace' => 'log4cxx::db', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::db::SQLException::~SQLException() [_ZN7log4cxx2db12SQLExceptionD2Ev]', - '24' => '(int (*)(...)) log4cxx::db::SQLException::~SQLException() [_ZN7log4cxx2db12SQLExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::SQLException) [_ZTIN7log4cxx2db12SQLExceptionE]' - } - }, - '12463397' => { - 'BaseType' => '12463179', - 'Name' => 'log4cxx::db::SQLException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '12465940' => { - 'BaseType' => '50560', - 'Line' => '52', - 'Name' => 'SQLHSTMT', - 'Size' => '8', - 'Source' => 'odbcappender.cpp', - 'Type' => 'Typedef' - }, - '12466368' => { - 'BaseType' => '50560', - 'Header' => 'odbcappender_priv.h', - 'Line' => '36', - 'Name' => 'SQLPOINTER', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '12466380' => { - 'BaseType' => '53790', - 'Header' => 'odbcappender_priv.h', - 'Line' => '37', - 'Name' => 'SQLULEN', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '12466392' => { - 'BaseType' => '53742', - 'Header' => 'odbcappender_priv.h', - 'Line' => '38', - 'Name' => 'SQLLEN', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '12466404' => { - 'BaseType' => '50244', - 'Header' => 'odbcappender_priv.h', - 'Line' => '39', - 'Name' => 'SQLINTEGER', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '12466890' => { - 'BaseType' => '12461328', - 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12466896' => { - 'BaseType' => '12466890', - 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12466913' => { - 'BaseType' => '12461457', - 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12466919' => { - 'BaseType' => '12466913', - 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12467619' => { - 'BaseType' => '12459309', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12467625' => { - 'BaseType' => '12467619', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12467744' => { - 'BaseType' => '12461308', - 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12467750' => { - 'BaseType' => '12467744', - 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12468812' => { - 'BaseType' => '12463174', - 'Name' => 'log4cxx::db::ODBCAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12468818' => { - 'BaseType' => '12468812', - 'Name' => 'log4cxx::db::ODBCAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12468823' => { - 'BaseType' => '12461290', - 'Name' => 'log4cxx::db::ODBCAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12468829' => { - 'BaseType' => '12468823', - 'Name' => 'log4cxx::db::ODBCAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12468857' => { - 'BaseType' => '12468863', - 'Name' => 'unsigned short**', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12468863' => { - 'BaseType' => '50186', - 'Name' => 'unsigned short*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12468917' => { - 'BaseType' => '12461775', - 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12468923' => { - 'BaseType' => '12468917', - 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12468928' => { - 'BaseType' => '12461996', - 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12468934' => { - 'BaseType' => '12468928', - 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12468939' => { - 'BaseType' => '12463179', - 'Name' => 'log4cxx::db::SQLException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12468945' => { - 'BaseType' => '12468939', - 'Name' => 'log4cxx::db::SQLException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12468950' => { - 'BaseType' => '12463397', - 'Name' => 'log4cxx::db::SQLException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1247491' => { + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1909468' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1813553' + } + }, + 'Type' => 'Struct' + }, + '1818597' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '1818395' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1909468' + }, + '1' => { + 'key' => '_Dp', + 'type' => '1813553' + } + }, + 'Type' => 'Class' + }, + '1819189' => { 'Base' => { - '1248265' => { + '1886114' => { 'pos' => '0' } }, - 'Header' => 'bufferedwriter.h', - 'Line' => '33', + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '1924100' + } + }, + 'Type' => 'Class' + }, + '1819836' => { + 'Base' => { + '1886738' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '1820125' + } + }, + 'Type' => 'Class' + }, + '1820125' => { + 'Base' => { + '1482826' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_list.h', + 'Line' => '167', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '1227363' + 'name' => '_M_storage', + 'offset' => '22', + 'type' => '1888750' } }, - 'Name' => 'log4cxx::helpers::BufferedWriter', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::~BufferedWriter() [_ZN7log4cxx7helpers14BufferedWriterD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::~BufferedWriter() [_ZN7log4cxx7helpers14BufferedWriterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::getClass() const [_ZNK7log4cxx7helpers14BufferedWriter8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14BufferedWriter10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14BufferedWriter4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers14BufferedWriter5closeERNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers14BufferedWriter5flushERNS0_4PoolE]', - '72' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::write(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers14BufferedWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::BufferedWriter) [_ZTIN7log4cxx7helpers14BufferedWriterE]' - } + 'Name' => 'struct std::_List_node', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1924100' + } + }, + 'Type' => 'Struct' }, - '1247509' => { - 'Line' => '24', + '1821579' => { + 'Base' => { + '1834795' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '211', 'Memb' => { '0' => { - 'name' => 'out', + 'name' => 'first', 'offset' => '0', - 'type' => '1248337' + 'type' => '190232' }, '1' => { - 'name' => 'sz', - 'offset' => '16', - 'type' => '50486' - }, - '2' => { - 'name' => 'buf', - 'offset' => '24', - 'type' => '63706' + 'name' => 'second', + 'offset' => '8', + 'type' => '497510' } }, - 'Name' => 'struct log4cxx::helpers::BufferedWriter::BufferedWriterPriv', - 'NameSpace' => 'log4cxx::helpers::BufferedWriter', - 'Private' => 1, - 'Size' => '56', - 'Source' => 'bufferedwriter.cpp', + 'Name' => 'struct std::pair >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_T1', + 'type' => '190232' + }, + '1' => { + 'key' => '_T2', + 'type' => '497510' + } + }, 'Type' => 'Struct' }, - '1247622' => { + '1822094' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '1887292' => { + 'pos' => '0' + } }, - 'Header' => 'bufferedwriter.h', - 'Line' => '39', - 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter', - 'NameSpace' => 'log4cxx::helpers::BufferedWriter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::ClazzBufferedWriter::~ClazzBufferedWriter() [_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::ClazzBufferedWriter::~ClazzBufferedWriter() [_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::ClazzBufferedWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14BufferedWriter19ClazzBufferedWriter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::BufferedWriter::ClazzBufferedWriter) [_ZTIN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterE]' - } + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '1821579' + } + }, + 'Type' => 'Class' }, - '1247779' => { - 'BaseType' => '1247622', - 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter const', - 'Size' => '8', - 'Type' => 'Const' + '1822762' => { + 'Base' => { + '1887916' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator > > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '1823051' + } + }, + 'Type' => 'Class' }, - '1248260' => { - 'BaseType' => '1247491', - 'Name' => 'log4cxx::helpers::BufferedWriter const', - 'Size' => '16', - 'Type' => 'Const' + '1823051' => { + 'Base' => { + '108124' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '216', + 'Memb' => { + '0' => { + 'name' => '_M_storage', + 'offset' => '50', + 'type' => '1888999' + } + }, + 'Name' => 'struct std::_Rb_tree_node > >', + 'NameSpace' => 'std', + 'Size' => '56', + 'TParam' => { + '0' => { + 'key' => '_Val', + 'type' => '1821579' + } + }, + 'Type' => 'Struct' + }, + '1823174' => { + 'Header' => 'stl_function.h', + 'Line' => '131', + 'Name' => 'struct std::binary_function', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Arg1', + 'type' => '190225' + }, + '1' => { + 'key' => '_Arg2', + 'type' => '190225' + }, + '2' => { + 'key' => '_Result', + 'type' => '174077' + } + }, + 'Type' => 'Struct' }, - '1248265' => { + '1823251' => { 'Base' => { - '63470' => { - 'pos' => '0' - } + '1823174' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'writer.h', - 'Line' => '33', - 'Name' => 'log4cxx::helpers::Writer', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::Writer::getClass() const [_ZNK7log4cxx7helpers6Writer8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Writer::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Writer10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::Writer::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Writer4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '64' => '(int (*)(...)) __cxa_pure_virtual', - '72' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Writer) [_ZTIN7log4cxx7helpers6WriterE]' - } + 'Header' => 'stl_function.h', + 'Line' => '395', + 'Name' => 'struct std::less', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '190225' + } + }, + 'Type' => 'Struct' }, - '1248332' => { - 'BaseType' => '1248265', - 'Name' => 'log4cxx::helpers::Writer const', - 'Type' => 'Const' + '1823327' => { + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '142', + 'Memb' => { + '0' => { + 'name' => '_M_key_compare', + 'offset' => '0', + 'type' => '1823251' + } + }, + 'Name' => 'struct std::_Rb_tree_key_compare >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Key_compare', + 'type' => '1823251' + } + }, + 'Type' => 'Struct' + }, + '1823487' => { + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '425', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '1823501' + } + }, + 'Name' => 'std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >', + 'NameSpace' => 'std', + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key', + 'type' => '190225' + }, + '1' => { + 'key' => '_Val', + 'type' => '1821579' + }, + '2' => { + 'key' => '_KeyOfValue', + 'type' => '1852961' + }, + '3' => { + 'key' => '_Compare', + 'type' => '1823251' + }, + '4' => { + 'key' => '_Alloc', + 'type' => '1822094' + } + }, + 'Type' => 'Class' }, - '1248337' => { - 'BaseType' => '1229760', - 'Header' => 'writer.h', - 'Line' => '55', - 'Name' => 'log4cxx::helpers::WriterPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Typedef' + '1823501' => { + 'Base' => { + '108320' => { + 'pos' => '2' + }, + '1822762' => { + 'pos' => '0' + }, + '1823327' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '660', + 'Name' => 'struct std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_Rb_tree_impl >', + 'NameSpace' => 'std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >', + 'Protected' => 1, + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key_compare', + 'type' => '1823251' + } + }, + 'Type' => 'Struct' }, - '1248349' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '1828831' => { + 'Copied' => 1, + 'Header' => 'stl_map.h', + 'Line' => '100', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_t', 'offset' => '0', - 'type' => '55091' + 'type' => '1828844' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Name' => 'std::map >', + 'NameSpace' => 'std', + 'Size' => '48', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '1247622' + 'key' => '_Key', + 'type' => '190225' + }, + '1' => { + 'key' => '_Tp', + 'type' => '497510' } }, 'Type' => 'Class' }, - '1249501' => { - 'BaseType' => '1247509', - 'Name' => 'struct log4cxx::helpers::BufferedWriter::BufferedWriterPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1249922' => { - 'BaseType' => '1229447', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1249980' => { - 'BaseType' => '1248337', - 'Name' => 'log4cxx::helpers::WriterPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1249986' => { - 'BaseType' => '1248349', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1249992' => { - 'BaseType' => '1249986', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1250168' => { - 'BaseType' => '1248260', - 'Name' => 'log4cxx::helpers::BufferedWriter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1250174' => { - 'BaseType' => '1250168', - 'Name' => 'log4cxx::helpers::BufferedWriter const*const', - 'Size' => '8', - 'Type' => 'Const' + '1828844' => { + 'BaseType' => '1823487', + 'Header' => 'stl_map.h', + 'Line' => '150', + 'Name' => 'std::map >::_Rep_type', + 'NameSpace' => 'std::map >', + 'Private' => 1, + 'Size' => '48', + 'Type' => 'Typedef' }, - '1250179' => { - 'BaseType' => '1247491', - 'Name' => 'log4cxx::helpers::BufferedWriter*', - 'Size' => '8', - 'Type' => 'Pointer' + '1833962' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '209311' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '1250185' => { - 'BaseType' => '1250179', - 'Name' => 'log4cxx::helpers::BufferedWriter*const', - 'Size' => '8', - 'Type' => 'Const' + '1834110' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '209311' + } + }, + 'Type' => 'Struct' }, - '1250202' => { - 'BaseType' => '1247622', - 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter*', + '1834124' => { + 'BaseType' => '209311', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Typedef' }, - '1250208' => { - 'BaseType' => '1250202', - 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter*const', - 'Size' => '8', - 'Type' => 'Const' + '1834147' => { + 'Base' => { + '1833962' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '1937357' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '209311' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '1250213' => { - 'BaseType' => '1247779', - 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter const*', + '1834428' => { + 'BaseType' => '1834124', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Typedef' }, - '1250219' => { - 'BaseType' => '1250213', - 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter const*const', - 'Size' => '8', - 'Type' => 'Const' + '1834795' => { + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '189', + 'Name' => 'std::__pair_base >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_U1', + 'type' => '190232' + }, + '1' => { + 'key' => '_U2', + 'type' => '497510' + } + }, + 'Type' => 'Class' }, - '125680' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '150962' - } - }, - 'Type' => 'Struct' - }, - '125806' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '127567' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '150962' - }, - '1' => { - 'key' => '_Dp', - 'type' => '125680' - } - }, - 'Type' => 'Class' - }, - '126175' => { - 'Base' => { - '125680' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + '18425521' => { + 'Copied' => 1, + 'Header' => 'stl_map.h', + 'Line' => '100', + 'Memb' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '125680' + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '18425534' } }, - 'Type' => 'Struct' - }, - '12630883' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Name' => 'std::map, std::shared_ptr >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '48', 'TParam' => { '0' => { + 'key' => '_Key', + 'type' => '51677' + }, + '1' => { 'key' => '_Tp', - 'type' => '12653113' + 'type' => '457528' } }, - 'Type' => 'Struct' + 'Type' => 'Class' + }, + '18425534' => { + 'BaseType' => '18437819', + 'Header' => 'stl_map.h', + 'Line' => '150', + 'Name' => 'std::map, std::shared_ptr >::_Rep_type', + 'NameSpace' => 'std::map, std::shared_ptr >', + 'Private' => 1, + 'Size' => '48', + 'Type' => 'Typedef' }, - '12630969' => { + '18427954' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Header' => 'stl_map.h', + 'Line' => '100', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '12632502' + 'type' => '18427967' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::map, std::vector > >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '48', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '12653113' + 'key' => '_Key', + 'type' => '51677' }, '1' => { - 'key' => '_Dp', - 'type' => '12630883' + 'key' => '_Tp', + 'type' => '11851511' } }, 'Type' => 'Class' }, - '12631292' => { + '18427967' => { + 'BaseType' => '18445569', + 'Header' => 'stl_map.h', + 'Line' => '150', + 'Name' => 'std::map, std::vector > >::_Rep_type', + 'NameSpace' => 'std::map, std::vector > >', + 'Private' => 1, + 'Size' => '48', + 'Type' => 'Typedef' + }, + '18430387' => { 'Base' => { - '12630883' => { + '18466294' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '12630883' + 'key' => '_Tp', + 'type' => '565732' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '12631545' => { + '18430710' => { 'Base' => { - '12631292' => { - 'access' => 'private', + '18565026' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '12630883' - } - }, - 'Type' => 'Struct' - }, - '12631842' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '12657153' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::OnlyOnceErrorHandler::OnlyOnceErrorHandlerPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '12657153' + 'type' => '18430387' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '12632102' => { - 'Base' => { - '12631545' => { - 'pos' => '0' - }, - '12631842' => { - 'access' => 'private', - 'pos' => '1' - } - }, + '18430999' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::OnlyOnceErrorHandler::OnlyOnceErrorHandlerPrivate*>', + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '12657153' + 'type' => '18430710' } }, 'Type' => 'Struct' }, - '12632502' => { - 'Base' => { - '12632102' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '18431013' => { + 'BaseType' => '18613357', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '12657153' - } - }, - 'Type' => 'Class' + 'Type' => 'Typedef' }, - '12632831' => { + '18431490' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Header' => 'stl_vector.h', + 'Line' => '84', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', + 'name' => '_M_impl', 'offset' => '0', - 'type' => '12630969' + 'type' => '18431689' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'struct std::_Vector_base, std::allocator > >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '12653113' + 'type' => '18430387' }, '1' => { - 'key' => '_Dp', - 'type' => '12630883' + 'key' => '_Alloc', + 'type' => '18430710' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '126468' => { - 'Base' => { - '126175' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '125680' - } - }, - 'Type' => 'Struct' - }, - '12653113' => { - 'Line' => '29', + '18431503' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', 'Memb' => { '0' => { - 'name' => 'WARN_PREFIX', + 'name' => '_M_start', 'offset' => '0', - 'type' => '63706' + 'type' => '18431677' }, '1' => { - 'name' => 'ERROR_PREFIX', - 'offset' => '32', - 'type' => '63706' + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '18431677' }, '2' => { - 'name' => 'firstTime', - 'offset' => '64', - 'type' => '50284' + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '18431677' } }, - 'Name' => 'struct log4cxx::helpers::OnlyOnceErrorHandler::OnlyOnceErrorHandlerPrivate', - 'NameSpace' => 'log4cxx::helpers::OnlyOnceErrorHandler', - 'Private' => 1, - 'Size' => '72', - 'Source' => 'onlyonceerrorhandler.cpp', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', 'Type' => 'Struct' }, - '12653217' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'onlyonceerrorhandler.h', - 'Line' => '46', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler', - 'NameSpace' => 'log4cxx::helpers::OnlyOnceErrorHandler', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::~ClazzOnlyOnceErrorHandler() [_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::~ClazzOnlyOnceErrorHandler() [_ZN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::newInstance() const [_ZTch0_h0_NK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler::newInstance() const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandler11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler) [_ZTIN7log4cxx7helpers20OnlyOnceErrorHandler25ClazzOnlyOnceErrorHandlerE]' - } - }, - '12653437' => { - 'BaseType' => '12653217', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12654538' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '12653217' - } - }, - 'Type' => 'Class' - }, - '12657153' => { - 'BaseType' => '12653113', - 'Name' => 'struct log4cxx::helpers::OnlyOnceErrorHandler::OnlyOnceErrorHandlerPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12657736' => { - 'BaseType' => '12654538', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12657742' => { - 'BaseType' => '12657736', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12657904' => { - 'BaseType' => '411377', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12657932' => { - 'BaseType' => '411735', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12657955' => { - 'BaseType' => '12653217', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12657961' => { - 'BaseType' => '12657955', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '12657966' => { - 'BaseType' => '12653437', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12657972' => { - 'BaseType' => '12657966', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler const*const', + '18431677' => { + 'BaseType' => '18565498', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Typedef' }, - '126807' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '153315' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::spi::Filter::FilterPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '153315' - } - }, - 'Type' => 'Struct' - }, - '1271021' => { - 'BaseType' => '1248332', - 'Name' => 'log4cxx::helpers::Writer const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1271027' => { - 'BaseType' => '1271021', - 'Name' => 'log4cxx::helpers::Writer const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '127107' => { - 'Base' => { - '126468' => { - 'pos' => '0' - }, - '126807' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::spi::Filter::FilterPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '153315' - } - }, - 'Type' => 'Struct' - }, - '127567' => { - 'Base' => { - '127107' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '153315' - } + '18431689' => { + 'Base' => { + '18430710' => { + 'pos' => '0' + }, + '18431503' => { + 'pos' => '1' + } }, - 'Type' => 'Class' - }, - '12782594' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2699638' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' }, - '12782742' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + '18432514' => { + 'Base' => { + '18431490' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2699638' + 'type' => '18430387' } }, - 'Type' => 'Struct' - }, - '12782756' => { - 'BaseType' => '2699638', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + 'Type' => 'Class' }, - '12782779' => { + '18436078' => { 'Base' => { - '12782594' => { + '18463867' => { + 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Header' => 'stl_pair.h', + 'Line' => '211', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_ptr', + 'name' => 'first', 'offset' => '0', - 'type' => '12820199' + 'type' => '58800' }, '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'name' => 'second', + 'offset' => '50', + 'type' => '457528' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'struct std::pairconst, std::shared_ptr >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '48', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '2699638' + 'key' => '_T1', + 'type' => '58800' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_T2', + 'type' => '457528' } }, - 'Type' => 'Class' - }, - '12783065' => { - 'BaseType' => '12782756', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + 'Type' => 'Struct' }, - '12784044' => { + '18436427' => { 'Base' => { - '12782779' => { + '18566945' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, std::shared_ptr > >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '2699638' + 'name' => 'std::pair, std::allocator >, std::shared_ptr >' } }, 'Type' => 'Class' }, - '127906' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '125806' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '150962' - }, - '1' => { - 'key' => '_Dp', - 'type' => '125680' - } + '18437095' => { + 'Base' => { + '18567569' => { + 'pos' => '0' + } }, - 'Type' => 'Class' - }, - '12812729' => { 'Copied' => 1, - 'Header' => 'system.h', - 'Line' => '33', - 'Name' => 'log4cxx::helpers::System', - 'NameSpace' => 'log4cxx::helpers', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, std::shared_ptr > > >', + 'NameSpace' => 'std', 'Size' => '1', + 'TParam' => { + '0' => { + 'name' => 'std::_Rb_tree_node, std::allocator >, std::shared_ptr > >' + } + }, 'Type' => 'Class' }, - '12814293' => { - 'BaseType' => '12784044', - 'Header' => 'configurator.h', - 'Line' => '63', - 'Name' => 'log4cxx::spi::ConfiguratorPtr', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '12815699' => { + '18437384' => { 'Base' => { - '2699638' => { - 'pos' => '0', - 'virtual' => 1 - }, - '63470' => { - 'pos' => '1', - 'virtual' => 1 - } + '108124' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'propertyconfigurator.h', - 'Line' => '85', + 'Header' => 'stl_tree.h', + 'Line' => '216', 'Memb' => { '0' => { - 'access' => 'protected', - 'name' => 'registry', - 'offset' => '8', - 'type' => '14553246' - }, - '1' => { - 'access' => 'protected', - 'name' => 'loggerFactory', - 'offset' => '16', - 'type' => '1149734' + 'name' => '_M_storage', + 'offset' => '50', + 'type' => '18572545' } }, - 'Name' => 'log4cxx::PropertyConfigurator', - 'NameSpace' => 'log4cxx', - 'Size' => '32', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::PropertyConfigurator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx20PropertyConfigurator4castERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::PropertyConfigurator::doConfigure(log4cxx::File const&, std::shared_ptr) [_ZN7log4cxx20PropertyConfigurator11doConfigureERKNS_4FileESt10shared_ptrINS_3spi16LoggerRepositoryEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '(int (*)(...)) (& typeinfo for log4cxx::PropertyConfigurator) [_ZTIN7log4cxx20PropertyConfiguratorE]', - '72' => '(int (*)(...)) log4cxx::PropertyConfigurator::~PropertyConfigurator() [_ZN7log4cxx20PropertyConfiguratorD1Ev]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::PropertyConfigurator::~PropertyConfigurator() [_ZN7log4cxx20PropertyConfiguratorD0Ev]', - '88' => '(int (*)(...)) log4cxx::PropertyConfigurator::getClass() const [_ZNK7log4cxx20PropertyConfigurator8getClassEv]', - '96' => '(int (*)(...)) log4cxx::PropertyConfigurator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx20PropertyConfigurator10instanceofERKNS_7helpers5ClassE]' - } - }, - '12815704' => { - 'BaseType' => '12815699', - 'Name' => 'log4cxx::PropertyConfigurator const', - 'Type' => 'Const' + 'Name' => 'struct std::_Rb_tree_nodeconst, std::shared_ptr > >', + 'NameSpace' => 'std', + 'Size' => '80', + 'TParam' => { + '0' => { + 'key' => '_Val', + 'type' => '18436078' + } + }, + 'Type' => 'Struct' }, - '12815709' => { - 'Base' => { - '648210' => { - 'pos' => '0' - } - }, - 'Line' => '49', + '18437819' => { + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '425', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'm_config', - 'offset' => '16', - 'type' => '12814293' + 'access' => 'protected', + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '18437833' } }, - 'Name' => 'log4cxx::ConfiguratorWatchdog', - 'NameSpace' => 'log4cxx', - 'Size' => '32', - 'Source' => 'optionconverter.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::ConfiguratorWatchdog::~ConfiguratorWatchdog() [_ZN7log4cxx20ConfiguratorWatchdogD2Ev]', - '24' => '(int (*)(...)) log4cxx::ConfiguratorWatchdog::~ConfiguratorWatchdog() [_ZN7log4cxx20ConfiguratorWatchdogD0Ev]', - '32' => '(int (*)(...)) log4cxx::ConfiguratorWatchdog::doOnChange() [_ZN7log4cxx20ConfiguratorWatchdog10doOnChangeEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::ConfiguratorWatchdog) [_ZTIN7log4cxx20ConfiguratorWatchdogE]' - } - }, - '12820199' => { - 'BaseType' => '12783065', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12820483' => { - 'BaseType' => '12815699', - 'Name' => 'log4cxx::PropertyConfigurator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12820643' => { - 'BaseType' => '12815704', - 'Name' => 'log4cxx::PropertyConfigurator const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '12820967' => { - 'BaseType' => '12815709', - 'Name' => 'log4cxx::ConfiguratorWatchdog*', - 'Size' => '8', - 'Type' => 'Pointer' + 'Name' => 'std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >', + 'NameSpace' => 'std', + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key', + 'type' => '51677' + }, + '1' => { + 'key' => '_Val', + 'type' => '18436078' + }, + '2' => { + 'key' => '_KeyOfValue', + 'type' => '18506934' + }, + '3' => { + 'key' => '_Compare', + 'type' => '2359512' + }, + '4' => { + 'key' => '_Alloc', + 'type' => '18436427' + } + }, + 'Type' => 'Class' }, - '12820973' => { - 'BaseType' => '12820967', - 'Name' => 'log4cxx::ConfiguratorWatchdog*const', - 'Size' => '8', - 'Type' => 'Const' + '18437833' => { + 'Base' => { + '108320' => { + 'pos' => '2' + }, + '18437095' => { + 'pos' => '0' + }, + '2359588' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '660', + 'Name' => 'struct std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >::_Rb_tree_impl > >', + 'NameSpace' => 'std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >', + 'Protected' => 1, + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key_compare', + 'type' => '2359512' + } + }, + 'Type' => 'Struct' }, - '128541' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + '18444132' => { + 'Base' => { + '18479452' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '211', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '150952' + 'name' => 'first', + 'offset' => '0', + 'type' => '58800' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'name' => 'second', + 'offset' => '50', + 'type' => '11851511' } }, - 'Type' => 'Class' - }, - '128689' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '150952' - } + 'Name' => 'struct std::pairconst, std::vector > >', + 'NameSpace' => 'std', + 'Size' => '56', + 'TParam' => { + '0' => { + 'key' => '_T1', + 'type' => '58800' + }, + '1' => { + 'key' => '_T2', + 'type' => '11851511' + } + }, + 'Type' => 'Struct' + }, + '18444490' => { + 'Base' => { + '18568125' => { + 'pos' => '0' + } }, - 'Type' => 'Struct' - }, - '128703' => { - 'BaseType' => '150952', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '128726' => { - 'Base' => { - '128541' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '153651' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '150952' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, std::vector, std::allocator > > > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'name' => 'std::pair, std::allocator >, std::vector, std::allocator > > >' + } + }, + 'Type' => 'Class' + }, + '18445158' => { + 'Base' => { + '18568749' => { + 'pos' => '0' + } }, - 'Type' => 'Class' - }, - '129013' => { - 'BaseType' => '128703', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '129326' => { - 'Base' => { - '128726' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, std::vector, std::allocator > > > > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'name' => 'std::_Rb_tree_node, std::allocator >, std::vector, std::allocator > > > >' + } + }, + 'Type' => 'Class' + }, + '18445447' => { + 'Base' => { + '108124' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '216', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '150952' + 'name' => '_M_storage', + 'offset' => '50', + 'type' => '18573040' } }, - 'Type' => 'Class' - }, - '13041530' => { - 'Header' => 'widelife.h', - 'Line' => '36', + 'Name' => 'struct std::_Rb_tree_nodeconst, std::vector > > >', + 'NameSpace' => 'std', + 'Size' => '88', + 'TParam' => { + '0' => { + 'key' => '_Val', + 'type' => '18444132' + } + }, + 'Type' => 'Struct' + }, + '18445569' => { + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '425', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'access' => 'protected', + 'name' => '_M_impl', 'offset' => '0', - 'type' => '55091' + 'type' => '18445583' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Name' => 'std::_Rb_tree, std::pairconst, std::vector > >, std::_Select1stconst, std::vector > > >, std::less >, std::allocator, std::allocator >, std::vector, std::allocator > > > > >', + 'NameSpace' => 'std', + 'Size' => '48', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '13041906' + 'key' => '_Key', + 'type' => '51677' + }, + '1' => { + 'key' => '_Val', + 'type' => '18444132' + }, + '2' => { + 'key' => '_KeyOfValue', + 'type' => '18510573' + }, + '3' => { + 'key' => '_Compare', + 'type' => '2359512' + }, + '4' => { + 'key' => '_Alloc', + 'type' => '18444490' } }, 'Type' => 'Class' }, - '13041906' => { + '18445583' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '108320' => { + 'pos' => '2' + }, + '18445158' => { + 'pos' => '0' + }, + '2359588' => { + 'pos' => '1' + } }, - 'Header' => 'outputstream.h', - 'Line' => '36', - 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream', - 'NameSpace' => 'log4cxx::helpers::OutputStream', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::OutputStream::ClazzOutputStream::~ClazzOutputStream() [_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::OutputStream::ClazzOutputStream::~ClazzOutputStream() [_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::OutputStream::ClazzOutputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers12OutputStream17ClazzOutputStream7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OutputStream::ClazzOutputStream) [_ZTIN7log4cxx7helpers12OutputStream17ClazzOutputStreamE]' - } - }, - '13042063' => { - 'BaseType' => '13041906', - 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream const', - 'Size' => '8', - 'Type' => 'Const' - }, - '13043336' => { - 'BaseType' => '13041530', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '660', + 'Name' => 'struct std::_Rb_tree, std::pairconst, std::vector > >, std::_Select1stconst, std::vector > > >, std::less >, std::allocator, std::allocator >, std::vector, std::allocator > > > > >::_Rb_tree_impl > >', + 'NameSpace' => 'std::_Rb_tree, std::pairconst, std::vector > >, std::_Select1stconst, std::vector > > >, std::less >, std::allocator, std::allocator >, std::vector, std::allocator > > > > >', + 'Protected' => 1, + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key_compare', + 'type' => '2359512' + } + }, + 'Type' => 'Struct' }, - '13043342' => { - 'BaseType' => '13043336', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' + '18463867' => { + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '189', + 'Name' => 'std::__pair_baseconst, std::shared_ptr >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_U1', + 'type' => '58800' + }, + '1' => { + 'key' => '_U2', + 'type' => '457528' + } + }, + 'Type' => 'Class' }, - '13043509' => { - 'BaseType' => '4977370', - 'Name' => 'log4cxx::helpers::OutputStream*const', - 'Size' => '8', - 'Type' => 'Const' + '18466109' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '565732' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '13043526' => { - 'BaseType' => '13041906', - 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream*', - 'Size' => '8', - 'Type' => 'Pointer' + '18466257' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '565732' + } + }, + 'Type' => 'Struct' }, - '13043532' => { - 'BaseType' => '13043526', - 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream*const', + '18466271' => { + 'BaseType' => '565732', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Typedef' }, - '13043537' => { - 'BaseType' => '13042063', - 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' + '18466294' => { + 'Base' => { + '18466109' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '18614720' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '565732' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '13043543' => { - 'BaseType' => '13043537', - 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream const*const', + '18466575' => { + 'BaseType' => '18466271', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Typedef' }, - '13087854' => { + '18472723' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '10975114' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '18472871' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '13113948' + 'type' => '10975114' } }, 'Type' => 'Struct' }, - '13087940' => { + '18472885' => { + 'BaseType' => '10975114', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '18472908' => { + 'Base' => { + '18472723' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '13089474' + 'type' => '18615027' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '13113948' + 'type' => '10975114' }, '1' => { - 'key' => '_Dp', - 'type' => '13087854' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '13088263' => { + '18473189' => { + 'BaseType' => '18472885', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '18473640' => { 'Base' => { - '13087854' => { + '18472908' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '10975114' + } + }, + 'Type' => 'Class' + }, + '18479452' => { + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '189', + 'Name' => 'std::__pair_baseconst, std::vector > >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' + 'key' => '_U1', + 'type' => '58800' }, '1' => { - 'key' => '_Head', - 'type' => '13087854' + 'key' => '_U2', + 'type' => '11851511' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '13088516' => { - 'Base' => { - '13088263' => { - 'access' => 'private', - 'pos' => '0' - } - }, + '18490864' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' + 'key' => '_Tp', + 'type' => '11930657' }, '1' => { - 'key' => undef, - 'type' => '13087854' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '18491012' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '11930657' } }, 'Type' => 'Struct' }, - '13088814' => { + '18491026' => { + 'BaseType' => '11930657', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '18491049' => { + 'Base' => { + '18490864' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'access' => 'private', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '13116550' + 'type' => '18615949' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::OutputStreamWriter::OutputStreamWriterPrivate*>', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Tp', + 'type' => '11930657' }, '1' => { - 'key' => '_Head', - 'type' => '13116550' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' + }, + '18491330' => { + 'BaseType' => '18491026', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' }, - '13089074' => { + '18491775' => { 'Base' => { - '13088516' => { + '18491049' => { 'pos' => '0' - }, - '13088814' => { - 'access' => 'private', - 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::OutputStreamWriter::OutputStreamWriterPrivate*>', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Tp', + 'type' => '11930657' + } + }, + 'Type' => 'Class' + }, + '18506878' => { + 'Header' => 'stl_function.h', + 'Line' => '117', + 'Name' => 'struct std::unary_functionconst, std::shared_ptr >, std::__cxx11::basic_stringconst>', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Arg', + 'type' => '18436078' }, '1' => { - 'key' => undef, - 'type' => '13116550' + 'key' => '_Result', + 'type' => '58800' } }, 'Type' => 'Struct' }, - '13089474' => { + '18506934' => { 'Base' => { - '13089074' => { + '18506878' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Header' => 'stl_function.h', + 'Line' => '1166', + 'Name' => 'struct std::_Select1stconst, std::shared_ptr > >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => undef, - 'type' => '13116550' + 'key' => '_Pair', + 'type' => '18436078' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '13089803' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '13087940' - } - }, - 'Name' => 'std::unique_ptr >', + '18510517' => { + 'Header' => 'stl_function.h', + 'Line' => '117', + 'Name' => 'struct std::unary_functionconst, std::vector > >, std::__cxx11::basic_stringconst>', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '13113948' + 'key' => '_Arg', + 'type' => '18444132' }, '1' => { - 'key' => '_Dp', - 'type' => '13087854' + 'key' => '_Result', + 'type' => '58800' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '1309487' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1339047' - } - }, - 'Type' => 'Struct' - }, - '1309573' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '1311106' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1339047' - }, - '1' => { - 'key' => '_Dp', - 'type' => '1309487' - } - }, - 'Type' => 'Class' - }, - '1309896' => { - 'Base' => { - '1309487' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + '18510573' => { + 'Base' => { + '18510517' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_function.h', + 'Line' => '1166', + 'Name' => 'struct std::_Select1stconst, std::vector > > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Pair', + 'type' => '18444132' + } + }, + 'Type' => 'Struct' + }, + '1852905' => { + 'Header' => 'stl_function.h', + 'Line' => '117', + 'Name' => 'struct std::unary_function >, unsigned long const>', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' + 'key' => '_Arg', + 'type' => '1821579' }, '1' => { - 'key' => '_Head', - 'type' => '1309487' + 'key' => '_Result', + 'type' => '190232' } }, 'Type' => 'Struct' }, - '1310149' => { + '1852961' => { 'Base' => { - '1309896' => { - 'access' => 'private', + '1852905' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'stl_function.h', + 'Line' => '1166', + 'Name' => 'struct std::_Select1st > >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '1309487' - } - }, - 'Type' => 'Struct' - }, - '1310446' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '1340936' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ByteArrayInputStream::ByteArrayInputStreamPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '1340936' - } - }, - 'Type' => 'Struct' - }, - '1310706' => { - 'Base' => { - '1310149' => { - 'pos' => '0' - }, - '1310446' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ByteArrayInputStream::ByteArrayInputStreamPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '1340936' + 'key' => '_Pair', + 'type' => '1821579' } }, 'Type' => 'Struct' }, - '1311106' => { - 'Base' => { - '1310706' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '1340936' - } - }, - 'Type' => 'Class' - }, - '13113931' => { + '18565026' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '18430387' + } + }, + 'Type' => 'Class' + }, + '18565273' => { 'Base' => { - '1248265' => { - 'pos' => '0' - } + '18430999' => { + 'pos' => '0' + } }, - 'Header' => 'outputstreamwriter.h', - 'Line' => '34', + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '18430710' + } + }, + 'Type' => 'Struct' + }, + '18565498' => { + 'BaseType' => '18431013', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '18566945' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, std::shared_ptr > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '18436078' + } + }, + 'Type' => 'Class' + }, + '18567569' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, std::shared_ptr > > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '18437384' + } + }, + 'Type' => 'Class' + }, + '18568125' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, std::vector > > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '18444132' + } + }, + 'Type' => 'Class' + }, + '18568749' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, std::vector > > > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '18445447' + } + }, + 'Type' => 'Class' + }, + '18572545' => { + 'Copied' => 1, + 'Header' => 'aligned_buffer.h', + 'Line' => '47', + 'Memb' => { + '0' => { + 'name' => '_M_storage', + 'offset' => '0', + 'type' => '18616149' + } + }, + 'Name' => 'struct __gnu_cxx::__aligned_membufconst, std::shared_ptr > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '18436078' + } + }, + 'Type' => 'Struct' + }, + '18573040' => { + 'Copied' => 1, + 'Header' => 'aligned_buffer.h', + 'Line' => '47', + 'Memb' => { + '0' => { + 'name' => '_M_storage', + 'offset' => '0', + 'type' => '2523437' + } + }, + 'Name' => 'struct __gnu_cxx::__aligned_membufconst, std::vector > > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '56', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '18444132' + } + }, + 'Type' => 'Struct' + }, + '18598551' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '13089803' + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::OutputStreamWriter', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::~OutputStreamWriter() [_ZN7log4cxx7helpers18OutputStreamWriterD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::~OutputStreamWriter() [_ZN7log4cxx7helpers18OutputStreamWriterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::getClass() const [_ZNK7log4cxx7helpers18OutputStreamWriter8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers18OutputStreamWriter10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers18OutputStreamWriter4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18OutputStreamWriter5closeERNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18OutputStreamWriter5flushERNS0_4PoolE]', - '72' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::write(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18OutputStreamWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OutputStreamWriter) [_ZTIN7log4cxx7helpers18OutputStreamWriterE]' - } + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '11930671' + } + }, + 'Type' => 'Class' }, - '13113948' => { - 'Line' => '30', + '18599315' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { - 'name' => 'out', + 'access' => 'private', + 'name' => 'storage', 'offset' => '0', - 'type' => '4968631' - }, - '1' => { - 'name' => 'enc', - 'offset' => '16', - 'type' => '1925609' + 'type' => '202654' } }, - 'Name' => 'struct log4cxx::helpers::OutputStreamWriter::OutputStreamWriterPrivate', - 'NameSpace' => 'log4cxx::helpers::OutputStreamWriter', - 'Private' => 1, - 'Size' => '32', - 'Source' => 'outputstreamwriter.cpp', - 'Type' => 'Struct' + 'Name' => 'log4cxx::helpers::WideLife >', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3044559' + } + }, + 'Type' => 'Class' + }, + '18600155' => { + 'BaseType' => '430935', + 'Header' => 'resourcebundle.h', + 'Line' => '30', + 'Name' => 'log4cxx::helpers::ResourceBundlePtr', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '18600167' => { + 'BaseType' => '18600155', + 'Name' => 'log4cxx::helpers::ResourceBundlePtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '18601086' => { + 'BaseType' => '18432514', + 'Header' => 'hierarchyeventlistener.h', + 'Line' => '49', + 'Name' => 'log4cxx::spi::HierarchyEventListenerList', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '24', + 'Type' => 'Typedef' }, - '13114080' => { + '18601523' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '566426' => { + 'pos' => '0' + } }, - 'Header' => 'outputstreamwriter.h', - 'Line' => '40', - 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter', - 'NameSpace' => 'log4cxx::helpers::OutputStreamWriter', - 'Size' => '8', + 'Header' => 'rootlogger.h', + 'Line' => '36', + 'Name' => 'log4cxx::spi::RootLogger', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '24', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter::~ClazzOutputStreamWriter() [_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter::~ClazzOutputStreamWriter() [_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter) [_ZTIN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterE]' + '104' => '0u', + '112' => '(int (*)(...)) (& typeinfo for log4cxx::spi::RootLogger) [_ZTIN7log4cxx3spi10RootLoggerE]', + '120' => '(int (*)(...)) log4cxx::spi::RootLogger::~RootLogger() [_ZN7log4cxx3spi10RootLoggerD1Ev]', + '128' => '(int (*)(...)) log4cxx::spi::RootLogger::~RootLogger() [_ZN7log4cxx3spi10RootLoggerD0Ev]', + '136' => '(int (*)(...)) log4cxx::Logger::getClass() const [_ZNK7log4cxx6Logger8getClassEv]', + '144' => '(int (*)(...)) log4cxx::Logger::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Logger10instanceofERKNS_7helpers5ClassE]', + '152' => '(int (*)(...)) log4cxx::Logger::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Logger4castERKNS_7helpers5ClassE]', + '16' => '0u', + '160' => '(int (*)(...)) log4cxx::Logger::addAppender(std::shared_ptr) [_ZN7log4cxx6Logger11addAppenderESt10shared_ptrINS_8AppenderEE]', + '168' => '(int (*)(...)) log4cxx::Logger::getAllAppenders() const [_ZNK7log4cxx6Logger15getAllAppendersEv]', + '176' => '(int (*)(...)) log4cxx::Logger::getAppender(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx6Logger11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '184' => '(int (*)(...)) log4cxx::Logger::isAttached(std::shared_ptr) const [_ZNK7log4cxx6Logger10isAttachedESt10shared_ptrINS_8AppenderEE]', + '192' => '(int (*)(...)) log4cxx::Logger::removeAllAppenders() [_ZN7log4cxx6Logger18removeAllAppendersEv]', + '200' => '(int (*)(...)) log4cxx::Logger::removeAppender(std::shared_ptr) [_ZN7log4cxx6Logger14removeAppenderESt10shared_ptrINS_8AppenderEE]', + '208' => '(int (*)(...)) log4cxx::Logger::removeAppender(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6Logger14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '216' => '(int (*)(...)) log4cxx::spi::RootLogger::getEffectiveLevel() const [_ZNK7log4cxx3spi10RootLogger17getEffectiveLevelEv]', + '224' => '(int (*)(...)) log4cxx::spi::RootLogger::setLevel(std::shared_ptr) [_ZN7log4cxx3spi10RootLogger8setLevelESt10shared_ptrINS_5LevelEE]', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' } }, - '13114237' => { - 'BaseType' => '13114080', - 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter const', - 'Size' => '8', + '18601576' => { + 'BaseType' => '18601523', + 'Name' => 'log4cxx::spi::RootLogger const', + 'Type' => 'Const' + }, + '18601927' => { + 'BaseType' => '565598', + 'Name' => 'log4cxx::spi::LoggerRepository const', + 'Type' => 'Const' + }, + '18601932' => { + 'BaseType' => '18430387', + 'Header' => 'hierarchyeventlistener.h', + 'Line' => '48', + 'Name' => 'log4cxx::spi::HierarchyEventListenerPtr', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '18601944' => { + 'BaseType' => '18601932', + 'Name' => 'log4cxx::spi::HierarchyEventListenerPtr const', + 'Size' => '16', 'Type' => 'Const' }, - '1311435' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '1309573' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1339047' - }, - '1' => { - 'key' => '_Dp', - 'type' => '1309487' - } - }, - 'Type' => 'Class' - }, - '13114780' => { - 'BaseType' => '13113931', - 'Name' => 'log4cxx::helpers::OutputStreamWriter const', + '18604461' => { + 'BaseType' => '11930657', + 'Name' => 'log4cxx::Hierarchy const', 'Size' => '16', 'Type' => 'Const' }, - '13114827' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '18605045' => { + 'BaseType' => '18491775', + 'Header' => 'hierarchy.h', + 'Line' => '35', + 'Name' => 'log4cxx::HierarchyPtr', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '18605082' => { + 'BaseType' => '11851511', + 'Header' => 'provisionnode.h', + 'Line' => '31', + 'Name' => 'log4cxx::ProvisionNode', + 'NameSpace' => 'log4cxx', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '18613318' => { + 'BaseType' => '18425521', + 'Line' => '43', + 'Name' => 'LoggerMap', + 'Size' => '48', + 'Source' => 'hierarchy.cpp', + 'Type' => 'Typedef' + }, + '18613330' => { + 'BaseType' => '18427954', + 'Line' => '44', + 'Name' => 'ProvisionNodeMap', + 'Size' => '48', + 'Source' => 'hierarchy.cpp', + 'Type' => 'Typedef' + }, + '18613357' => { + 'BaseType' => '18430387', + 'Name' => 'std::shared_ptr*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '13114080' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '13116550' => { - 'BaseType' => '13113948', - 'Name' => 'struct log4cxx::helpers::OutputStreamWriter::OutputStreamWriterPrivate*', + '18614464' => { + 'BaseType' => '18598551', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '13117121' => { - 'BaseType' => '13114827', - 'Name' => 'log4cxx::helpers::WideLife*', + '18614469' => { + 'BaseType' => '18614464', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '18614720' => { + 'BaseType' => '18466575', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '13117127' => { - 'BaseType' => '13117121', - 'Name' => 'log4cxx::helpers::WideLife*const', + '18614957' => { + 'BaseType' => '18599315', + 'Name' => 'log4cxx::helpers::WideLife >*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '18614962' => { + 'BaseType' => '18614957', + 'Name' => 'log4cxx::helpers::WideLife >*const', 'Size' => '8', 'Type' => 'Const' }, - '13117495' => { - 'BaseType' => '4968631', - 'Name' => 'log4cxx::helpers::OutputStreamPtr&', + '18615027' => { + 'BaseType' => '18473189', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '13117571' => { - 'BaseType' => '13114780', - 'Name' => 'log4cxx::helpers::OutputStreamWriter const*', + '18615057' => { + 'BaseType' => '18473640', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '18615607' => { + 'BaseType' => '18601523', + 'Name' => 'log4cxx::spi::RootLogger*', 'Size' => '8', 'Type' => 'Pointer' }, - '13117577' => { - 'BaseType' => '13117571', - 'Name' => 'log4cxx::helpers::OutputStreamWriter const*const', + '18615612' => { + 'BaseType' => '18615607', + 'Name' => 'log4cxx::spi::RootLogger*const', 'Size' => '8', 'Type' => 'Const' }, - '13117582' => { - 'BaseType' => '13113931', - 'Name' => 'log4cxx::helpers::OutputStreamWriter*', + '18615949' => { + 'BaseType' => '18491330', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '13117588' => { - 'BaseType' => '13117582', - 'Name' => 'log4cxx::helpers::OutputStreamWriter*const', + '18615999' => { + 'BaseType' => '11942149', + 'Name' => 'log4cxx::Hierarchy*const', 'Size' => '8', 'Type' => 'Const' }, - '13117605' => { - 'BaseType' => '13114080', - 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter*', + '18616149' => { + 'BaseType' => '190206', + 'Name' => 'unsigned char[48]', + 'Size' => '48', + 'Type' => 'Array' + }, + '18616927' => { + 'BaseType' => '18601576', + 'Name' => 'log4cxx::spi::RootLogger const*', 'Size' => '8', 'Type' => 'Pointer' }, - '13117611' => { - 'BaseType' => '13117605', - 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter*const', + '18617102' => { + 'BaseType' => '18604461', + 'Name' => 'log4cxx::Hierarchy const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '18617107' => { + 'BaseType' => '18617102', + 'Name' => 'log4cxx::Hierarchy const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '18617122' => { + 'BaseType' => '18601944', + 'Name' => 'log4cxx::spi::HierarchyEventListenerPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '18617152' => { + 'BaseType' => '18605082', + 'Name' => 'log4cxx::ProvisionNode&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '18617182' => { + 'BaseType' => '11940856', + 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '18617192' => { + 'BaseType' => '11940861', + 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy const*const', 'Size' => '8', 'Type' => 'Const' }, - '13117616' => { - 'BaseType' => '13114237', - 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter const*', + '18618499' => { + 'BaseType' => '18601927', + 'Name' => 'log4cxx::spi::LoggerRepository const*', 'Size' => '8', 'Type' => 'Pointer' }, - '13117622' => { - 'BaseType' => '13117616', - 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter const*const', + '18618532' => { + 'BaseType' => '18600167', + 'Name' => 'log4cxx::helpers::ResourceBundlePtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '18618598' => { + 'BaseType' => '10588285', + 'Name' => 'log4cxx::spi::LoggerRepository*const', 'Size' => '8', 'Type' => 'Const' }, - '1312061' => { + '18750555' => { + 'BaseType' => '3121982', + 'Name' => 'log4cxx::LoggerPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '188587' => { + 'Header' => 'concurrence.h', + 'Line' => '49', + 'Memb' => { + '0' => { + 'name' => '_S_single', + 'value' => '0' + }, + '1' => { + 'name' => '_S_mutex', + 'value' => '1' + }, + '2' => { + 'name' => '_S_atomic', + 'value' => '2' + } + }, + 'Name' => 'enum __gnu_cxx::_Lock_policy', + 'NameSpace' => '__gnu_cxx', + 'Size' => '4', + 'Type' => 'Enum' + }, + '1886114' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator', + 'NameSpace' => '__gnu_cxx', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1338365' + 'type' => '1924100' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '1312147' => { + '1886738' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '1313680' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1338365' - }, - '1' => { - 'key' => '_Dp', - 'type' => '1312061' + 'type' => '1820125' } }, 'Type' => 'Class' }, - '1312470' => { - 'Base' => { - '1312061' => { - 'pos' => '0' - } - }, + '1887292' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator > >', + 'NameSpace' => '__gnu_cxx', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '1312061' + 'key' => '_Tp', + 'type' => '1821579' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '1312723' => { - 'Base' => { - '1312470' => { - 'access' => 'private', - 'pos' => '0' - } - }, + '1887916' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator > > >', + 'NameSpace' => '__gnu_cxx', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '1312061' + 'key' => '_Tp', + 'type' => '1823051' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '1313020' => { + '1888750' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'aligned_buffer.h', + 'Line' => '47', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'name' => '_M_storage', 'offset' => '0', - 'type' => '1341232' + 'type' => '574731' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ByteBuffer::ByteBufferPriv*>', - 'NameSpace' => 'std', + 'Name' => 'struct __gnu_cxx::__aligned_membuf', + 'NameSpace' => '__gnu_cxx', 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '1341232' + 'key' => '_Tp', + 'type' => '1924100' } }, 'Type' => 'Struct' }, - '1313280' => { - 'Base' => { - '1312723' => { - 'pos' => '0' - }, - '1313020' => { - 'access' => 'private', - 'pos' => '1' - } - }, + '1888999' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ByteBuffer::ByteBufferPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', + 'Header' => 'aligned_buffer.h', + 'Line' => '47', + 'Memb' => { + '0' => { + 'name' => '_M_storage', + 'offset' => '0', + 'type' => '1937727' + } + }, + 'Name' => 'struct __gnu_cxx::__aligned_membuf > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '24', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '1341232' + 'key' => '_Tp', + 'type' => '1821579' } }, 'Type' => 'Struct' }, - '1313680' => { - 'Base' => { - '1313280' => { - 'pos' => '0' - } + '190206' => { + 'Name' => 'unsigned char', + 'Size' => '1', + 'Type' => 'Intrinsic' + }, + '190213' => { + 'Name' => 'unsigned short', + 'Size' => '2', + 'Type' => 'Intrinsic' + }, + '190225' => { + 'Name' => 'unsigned long', + 'Size' => '8', + 'Type' => 'Intrinsic' + }, + '190232' => { + 'BaseType' => '190225', + 'Name' => 'unsigned long const', + 'Size' => '8', + 'Type' => 'Const' + }, + '190237' => { + 'Name' => 'unsigned long long', + 'Size' => '8', + 'Type' => 'Intrinsic' + }, + '190256' => { + 'Name' => 'short', + 'Size' => '2', + 'Type' => 'Intrinsic' + }, + '190263' => { + 'Name' => 'int', + 'Size' => '4', + 'Type' => 'Intrinsic' + }, + '190271' => { + 'BaseType' => '190263', + 'Name' => 'int const', + 'Size' => '4', + 'Type' => 'Const' + }, + '190276' => { + 'BaseType' => '190263', + 'Name' => 'int volatile', + 'Size' => '4', + 'Type' => 'Volatile' + }, + '190282' => { + 'Name' => 'long', + 'Size' => '8', + 'Type' => 'Intrinsic' + }, + '190294' => { + 'Name' => 'long long', + 'Size' => '8', + 'Type' => 'Intrinsic' + }, + '190301' => { + 'Name' => 'long double', + 'Size' => '16', + 'Type' => 'Intrinsic' + }, + '190313' => { + 'Name' => 'double', + 'Size' => '8', + 'Type' => 'Intrinsic' + }, + '190325' => { + 'Name' => 'float', + 'Size' => '4', + 'Type' => 'Intrinsic' + }, + '190393' => { + 'Name' => 'wchar_t', + 'Size' => '4', + 'Type' => 'Intrinsic' + }, + '190400' => { + 'BaseType' => '190393', + 'Name' => 'wchar_t const', + 'Size' => '4', + 'Type' => 'Const' + }, + '190816' => { + 'BaseType' => '190225', + 'Header' => 'stddef.h', + 'Line' => '209', + 'Name' => 'size_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '1908928' => { + 'Header' => 'aprinitializer.h', + 'Line' => '44', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '1701766' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::APRInitializer', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '1341232' - } - }, 'Type' => 'Class' }, - '1313963' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + '1908941' => { + 'Line' => '34', + 'Memb' => { + '0' => { + 'name' => 'p', + 'offset' => '0', + 'type' => '1930256' + }, + '1' => { + 'name' => 'mutex', + 'offset' => '8', + 'type' => '106135' + }, + '2' => { + 'name' => 'watchdogs', + 'offset' => '72', + 'type' => '1568485' + }, + '3' => { + 'name' => 'startTime', + 'offset' => '114', + 'type' => '1914488' + }, + '4' => { + 'name' => 'tlsKey', + 'offset' => '128', + 'type' => '1937069' + }, + '5' => { + 'name' => 'objects', + 'offset' => '136', + 'type' => '1828831' + } + }, + 'Name' => 'struct log4cxx::helpers::APRInitializer::APRInitializerPrivate', + 'NameSpace' => 'log4cxx::helpers::APRInitializer', + 'Private' => 1, + 'Size' => '136', + 'Source' => 'aprinitializer.cpp', + 'Type' => 'Struct' + }, + '190924' => { + 'BaseType' => '1', + 'Name' => 'void*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '190939' => { + 'Header' => '__mbstate_t.h', + 'Line' => '14', + 'Memb' => { + '0' => { + 'name' => '__count', + 'offset' => '0', + 'type' => '190263' + }, + '1' => { + 'name' => '__value', + 'offset' => '4', + 'type' => '190952' + } + }, + 'Name' => 'struct __mbstate_t', + 'Size' => '8', + 'Type' => 'Struct' + }, + '1909459' => { + 'Header' => 'filewatchdog.h', + 'Line' => '38', 'Memb' => { '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + }, + '1' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '1818597' + } + }, + 'Name' => 'log4cxx::helpers::FileWatchdog', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileWatchdog) [_ZTIN7log4cxx7helpers12FileWatchdogE]' + } + }, + '1909468' => { + 'Line' => '33', + 'Memb' => { + '0' => { + 'name' => 'file', 'offset' => '0', - 'type' => '1312147' + 'type' => '567061' + }, + '1' => { + 'name' => 'delay', + 'offset' => '8', + 'type' => '190282' + }, + '2' => { + 'name' => 'lastModif', + 'offset' => '22', + 'type' => '1914488' + }, + '3' => { + 'name' => 'warnedAlready', + 'offset' => '36', + 'type' => '174077' + }, + '4' => { + 'name' => 'interrupted', + 'offset' => '40', + 'type' => '190276' + }, + '5' => { + 'name' => 'pool', + 'offset' => '50', + 'type' => '207830' + }, + '6' => { + 'name' => 'thread', + 'offset' => '72', + 'type' => '1797924' + }, + '7' => { + 'name' => 'interrupt', + 'offset' => '86', + 'type' => '1810993' + }, + '8' => { + 'name' => 'interrupt_mutex', + 'offset' => '260', + 'type' => '106135' } }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + 'Name' => 'struct log4cxx::helpers::FileWatchdog::FileWatchdogPrivate', + 'NameSpace' => 'log4cxx::helpers::FileWatchdog', + 'Private' => 1, + 'Size' => '144', + 'Source' => 'filewatchdog.cpp', + 'Type' => 'Struct' + }, + '1909514' => { + 'Header' => 'threadspecificdata.h', + 'Line' => '32', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '1708288' + } + }, + 'Name' => 'log4cxx::helpers::ThreadSpecificData', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1338365' - }, - '1' => { - 'key' => '_Dp', - 'type' => '1312061' - } - }, 'Type' => 'Class' }, - '1315549' => { - 'Base' => { - '1325633' => { - 'pos' => '0' - } + '190952' => { + 'Header' => '__mbstate_t.h', + 'Line' => '17', + 'Memb' => { + '0' => { + 'name' => '__wch', + 'offset' => '0', + 'type' => '174065' + }, + '1' => { + 'name' => '__wchb', + 'offset' => '0', + 'type' => '191014' + } + }, + 'Name' => '__mbstate_t::anon-union-__mbstate_t.h-17', + 'NameSpace' => '__mbstate_t', + 'Size' => '4', + 'Type' => 'Union' + }, + '1909527' => { + 'Line' => '30', + 'Memb' => { + '0' => { + 'name' => 'ndcStack', + 'offset' => '0', + 'type' => '1914589' + }, + '1' => { + 'name' => 'mdcMap', + 'offset' => '128', + 'type' => '567024' + } }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator', - 'NameSpace' => 'std', - 'Size' => '1', + 'Name' => 'struct log4cxx::helpers::ThreadSpecificData::ThreadSpecificDataPrivate', + 'NameSpace' => 'log4cxx::helpers::ThreadSpecificData', + 'Private' => 1, + 'Size' => '128', + 'Source' => 'threadspecificdata.cpp', + 'Type' => 'Struct' + }, + '191014' => { + 'BaseType' => '191030', + 'Name' => 'char[4]', + 'Size' => '4', + 'Type' => 'Array' + }, + '191030' => { + 'Name' => 'char', + 'Size' => '1', + 'Type' => 'Intrinsic' + }, + '191037' => { + 'BaseType' => '191030', + 'Name' => 'char const', + 'Size' => '1', + 'Type' => 'Const' + }, + '191042' => { + 'BaseType' => '190939', + 'Header' => '__mbstate_t.h', + 'Line' => '21', + 'Name' => '__mbstate_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '191054' => { + 'BaseType' => '191042', + 'Header' => 'mbstate_t.h', + 'Line' => '6', + 'Name' => 'mbstate_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '1913472' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'name' => 'unsigned char' + 'key' => 'T', + 'type' => '1908928' } }, 'Type' => 'Class' }, - '1315700' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits >', - 'NameSpace' => 'std', + '1914272' => { + 'Base' => { + '209311' => { + 'pos' => '0' + } + }, + 'Header' => 'date.h', + 'Line' => '35', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'time', + 'offset' => '8', + 'type' => '8692034' + } + }, + 'Name' => 'log4cxx::helpers::Date', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::Date::~Date() [_ZN7log4cxx7helpers4DateD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Date::~Date() [_ZN7log4cxx7helpers4DateD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Date::getClass() const [_ZNK7log4cxx7helpers4Date8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Date::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers4Date10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::Date::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers4Date4castERKNS0_5ClassE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Date) [_ZTIN7log4cxx7helpers4DateE]' + } + }, + '1914278' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'date.h', + 'Line' => '40', + 'Name' => 'log4cxx::helpers::Date::ClazzDate', + 'NameSpace' => 'log4cxx::helpers::Date', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::Date::ClazzDate::~ClazzDate() [_ZN7log4cxx7helpers4Date9ClazzDateD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Date::ClazzDate::~ClazzDate() [_ZN7log4cxx7helpers4Date9ClazzDateD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Date::ClazzDate::newInstance() const [_ZNK7log4cxx7helpers4Date9ClazzDate11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Date::ClazzDate::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers4Date9ClazzDate7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Date::ClazzDate) [_ZTIN7log4cxx7helpers4Date9ClazzDateE]' + } + }, + '1914436' => { + 'BaseType' => '1914278', + 'Name' => 'log4cxx::helpers::Date::ClazzDate const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1914488' => { + 'BaseType' => '194872', + 'Header' => 'log4cxx.h', + 'Line' => '109', + 'Name' => 'log4cxx::log4cxx_time_t', + 'NameSpace' => 'log4cxx', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '1914500' => { + 'Header' => 'ndc.h', + 'Line' => '78', + 'Name' => 'log4cxx::NDC', + 'NameSpace' => 'log4cxx', 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '1315549' - } - }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '1315714' => { - 'BaseType' => '1341985', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits >::pointer', - 'NameSpace' => 'std::allocator_traits >', - 'Size' => '8', + '1914589' => { + 'BaseType' => '1703199', + 'Header' => 'ndc.h', + 'Line' => '85', + 'Name' => 'log4cxx::NDC::Stack', + 'NameSpace' => 'log4cxx::NDC', 'Type' => 'Typedef' }, - '1315963' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '1316162' - } - }, - 'Name' => 'struct std::_Vector_base >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '50179' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '1315549' - } - }, - 'Type' => 'Struct' + '1914602' => { + 'BaseType' => '1914589', + 'Name' => 'log4cxx::NDC::Stack const', + 'Type' => 'Const' }, - '1315976' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', + '1915047' => { + 'BaseType' => '1703204', + 'Header' => 'ndc.h', + 'Line' => '84', + 'Name' => 'log4cxx::NDC::DiagnosticContext', + 'NameSpace' => 'log4cxx::NDC', + 'Type' => 'Typedef' + }, + '191618' => { + 'BaseType' => '191037', + 'Name' => 'char const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '191623' => { + 'BaseType' => '191618', + 'Name' => 'char const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1917211' => { + 'Line' => '30', 'Memb' => { '0' => { - 'name' => '_M_start', + 'name' => 'path', 'offset' => '0', - 'type' => '1316150' + 'type' => '209661' }, '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '1316150' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '1316150' + 'name' => 'autoDelete', + 'offset' => '50', + 'type' => '174077' } }, - 'Name' => 'struct std::_Vector_base >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '24', + 'Name' => 'struct log4cxx::File::FilePrivate', + 'NameSpace' => 'log4cxx::File', + 'Private' => 1, + 'Size' => '40', + 'Source' => 'file.cpp', 'Type' => 'Struct' }, - '1316150' => { - 'BaseType' => '1326199', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base >::pointer', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '8', + '191741' => { + 'BaseType' => '190393', + 'Name' => 'wchar_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1918053' => { + 'BaseType' => '190263', + 'Header' => 'log4cxx.h', + 'Line' => '111', + 'Name' => 'log4cxx::log4cxx_status_t', + 'NameSpace' => 'log4cxx', + 'Size' => '4', 'Type' => 'Typedef' }, - '1316162' => { - 'Base' => { - '1315549' => { - 'pos' => '0' - }, - '1315976' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '1316939' => { - 'Base' => { - '1315963' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '50179' - } - }, - 'Type' => 'Class' - }, - '1320040' => { - 'BaseType' => '1316939', - 'Name' => 'std::vectorconst', - 'Size' => '24', - 'Type' => 'Const' + '191807' => { + 'BaseType' => '190400', + 'Name' => 'wchar_t const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '191812' => { + 'BaseType' => '191807', + 'Name' => 'wchar_t const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1918379' => { + 'BaseType' => '1482826', + 'Name' => 'struct std::__detail::_List_node_base*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '13213314' => { + '19213427' => { + 'Copied' => 1, + 'Header' => 'transform.h', + 'Line' => '30', + 'Name' => 'log4cxx::helpers::Transform', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '1', + 'Type' => 'Class' + }, + '19214033' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -106024,364 +107912,915 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '13214552' + 'type' => '5656119' } }, 'Type' => 'Class' }, - '13214552' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'patternconverter.h', - 'Line' => '63', - 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter', - 'NameSpace' => 'log4cxx::pattern::PatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::PatternConverter::ClazzPatternConverter::~ClazzPatternConverter() [_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::PatternConverter::ClazzPatternConverter::~ClazzPatternConverter() [_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::PatternConverter::ClazzPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern16PatternConverter21ClazzPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternConverter::ClazzPatternConverter) [_ZTIN7log4cxx7pattern16PatternConverter21ClazzPatternConverterE]' - } + '19219744' => { + 'BaseType' => '5656105', + 'Name' => 'log4cxx::HTMLLayout const', + 'Size' => '16', + 'Type' => 'Const' }, - '13214710' => { - 'BaseType' => '13214552', - 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter const', - 'Size' => '8', + '19220304' => { + 'BaseType' => '1381112', + 'Name' => 'log4cxx::Layout const', 'Type' => 'Const' }, - '13215695' => { - 'BaseType' => '13213314', - 'Name' => 'log4cxx::helpers::WideLife*', + '19228546' => { + 'BaseType' => '19214033', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '13215701' => { - 'BaseType' => '13215695', - 'Name' => 'log4cxx::helpers::WideLife*const', + '19228551' => { + 'BaseType' => '19228546', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '19228967' => { + 'BaseType' => '5679783', + 'Name' => 'log4cxx::HTMLLayout*const', 'Size' => '8', 'Type' => 'Const' }, - '13215905' => { - 'BaseType' => '2270651', - 'Name' => 'log4cxx::pattern::PatternConverter*', + '19228987' => { + 'BaseType' => '19219744', + 'Name' => 'log4cxx::HTMLLayout const*', 'Size' => '8', 'Type' => 'Pointer' }, - '13215911' => { - 'BaseType' => '13215905', - 'Name' => 'log4cxx::pattern::PatternConverter*const', + '19228992' => { + 'BaseType' => '19228987', + 'Name' => 'log4cxx::HTMLLayout const*const', 'Size' => '8', 'Type' => 'Const' }, - '13215985' => { - 'BaseType' => '13214552', - 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter*', + '19229022' => { + 'BaseType' => '5679773', + 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '13215991' => { - 'BaseType' => '13215985', - 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter*const', + '19229032' => { + 'BaseType' => '5679778', + 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '19230614' => { + 'BaseType' => '1390322', + 'Name' => 'log4cxx::Layout*const', 'Size' => '8', 'Type' => 'Const' }, - '13215996' => { - 'BaseType' => '13214710', - 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter const*', + '19230619' => { + 'BaseType' => '19220304', + 'Name' => 'log4cxx::Layout const*', 'Size' => '8', 'Type' => 'Pointer' }, - '13216002' => { - 'BaseType' => '13215996', - 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter const*const', + '19230624' => { + 'BaseType' => '19230619', + 'Name' => 'log4cxx::Layout const*const', 'Size' => '8', 'Type' => 'Const' }, - '1325633' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '50179' - } - }, - 'Type' => 'Class' + '1923810' => { + 'BaseType' => '1908941', + 'Name' => 'struct log4cxx::helpers::APRInitializer::APRInitializerPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '1325998' => { - 'Base' => { - '1315700' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '1315549' - } - }, + '1924090' => { + 'Name' => 'struct apr_threadkey_t', 'Type' => 'Struct' }, - '1326199' => { - 'BaseType' => '1315714', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits >', + '1924095' => { + 'BaseType' => '1924090', + 'Name' => 'struct apr_threadkey_t*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '132916' => { - 'Base' => { - '382696' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { + '1924100' => { + 'BaseType' => '1909459', + 'Name' => 'log4cxx::helpers::FileWatchdog*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1924105' => { + 'BaseType' => '1924100', + 'Name' => 'log4cxx::helpers::FileWatchdog*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1924110' => { + 'BaseType' => '1908928', + 'Name' => 'log4cxx::helpers::APRInitializer*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1924115' => { + 'BaseType' => '1924110', + 'Name' => 'log4cxx::helpers::APRInitializer*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1924125' => { + 'BaseType' => '1908928', + 'Name' => 'log4cxx::helpers::APRInitializer&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1924165' => { + 'Name' => 'std::shared_ptr(*)(union std::_Any_data const&)', + 'Param' => { '0' => { - 'type' => '407370' + 'type' => '574371' } }, - 'Type' => 'Class' + 'Return' => '497510', + 'Size' => '8', + 'Type' => 'FuncPtr' + }, + '192483' => { + 'BaseType' => '191030', + 'Name' => 'char*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '192671' => { + 'Header' => 'struct_tm.h', + 'Line' => '7', + 'Memb' => { + '0' => { + 'name' => 'tm_sec', + 'offset' => '0', + 'type' => '190263' + }, + '1' => { + 'name' => 'tm_min', + 'offset' => '4', + 'type' => '190263' + }, + '10' => { + 'name' => 'tm_zone', + 'offset' => '72', + 'type' => '191618' + }, + '2' => { + 'name' => 'tm_hour', + 'offset' => '8', + 'type' => '190263' + }, + '3' => { + 'name' => 'tm_mday', + 'offset' => '18', + 'type' => '190263' + }, + '4' => { + 'name' => 'tm_mon', + 'offset' => '22', + 'type' => '190263' + }, + '5' => { + 'name' => 'tm_year', + 'offset' => '32', + 'type' => '190263' + }, + '6' => { + 'name' => 'tm_wday', + 'offset' => '36', + 'type' => '190263' + }, + '7' => { + 'name' => 'tm_yday', + 'offset' => '40', + 'type' => '190263' + }, + '8' => { + 'name' => 'tm_isdst', + 'offset' => '50', + 'type' => '190263' + }, + '9' => { + 'name' => 'tm_gmtoff', + 'offset' => '64', + 'type' => '190282' + } + }, + 'Name' => 'struct tm', + 'Size' => '56', + 'Type' => 'Struct' + }, + '1929192' => { + 'BaseType' => '190263', + 'Header' => 'apr.h', + 'Line' => '333', + 'Name' => 'apr_int32_t', + 'Size' => '4', + 'Type' => 'Typedef' + }, + '1929244' => { + 'BaseType' => '190816', + 'Header' => 'apr.h', + 'Line' => '379', + 'Name' => 'apr_size_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '1929346' => { + 'BaseType' => '210758', + 'Header' => 'apr_pools.h', + 'Line' => '60', + 'Name' => 'apr_pool_t', + 'Type' => 'Typedef' + }, + '1929539' => { + 'BaseType' => '191037', + 'Name' => 'char const[4]', + 'Size' => '4', + 'Type' => 'Array' + }, + '1929655' => { + 'BaseType' => '1929667', + 'Header' => 'apr_time.h', + 'Line' => '90', + 'Name' => 'apr_time_exp_t', + 'Size' => '44', + 'Type' => 'Typedef' + }, + '1929667' => { + 'Header' => 'apr_time.h', + 'Line' => '97', + 'Memb' => { + '0' => { + 'name' => 'tm_usec', + 'offset' => '0', + 'type' => '1929192' + }, + '1' => { + 'name' => 'tm_sec', + 'offset' => '4', + 'type' => '1929192' + }, + '10' => { + 'name' => 'tm_gmtoff', + 'offset' => '64', + 'type' => '1929192' + }, + '2' => { + 'name' => 'tm_min', + 'offset' => '8', + 'type' => '1929192' + }, + '3' => { + 'name' => 'tm_hour', + 'offset' => '18', + 'type' => '1929192' + }, + '4' => { + 'name' => 'tm_mday', + 'offset' => '22', + 'type' => '1929192' + }, + '5' => { + 'name' => 'tm_mon', + 'offset' => '32', + 'type' => '1929192' + }, + '6' => { + 'name' => 'tm_year', + 'offset' => '36', + 'type' => '1929192' + }, + '7' => { + 'name' => 'tm_wday', + 'offset' => '40', + 'type' => '1929192' + }, + '8' => { + 'name' => 'tm_yday', + 'offset' => '50', + 'type' => '1929192' + }, + '9' => { + 'name' => 'tm_isdst', + 'offset' => '54', + 'type' => '1929192' + } + }, + 'Name' => 'struct apr_time_exp_t', + 'Size' => '44', + 'Type' => 'Struct' + }, + '1929824' => { + 'BaseType' => '1914500', + 'Name' => 'log4cxx::NDC*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1929829' => { + 'BaseType' => '1914589', + 'Name' => 'log4cxx::NDC::Stack*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1929844' => { + 'BaseType' => '1915047', + 'Name' => 'log4cxx::NDC::DiagnosticContext&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1929874' => { + 'BaseType' => '1909527', + 'Name' => 'struct log4cxx::helpers::ThreadSpecificData::ThreadSpecificDataPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1930094' => { + 'BaseType' => '1909514', + 'Name' => 'log4cxx::helpers::ThreadSpecificData*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1930099' => { + 'BaseType' => '1930094', + 'Name' => 'log4cxx::helpers::ThreadSpecificData*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1930104' => { + 'BaseType' => '1914602', + 'Name' => 'log4cxx::NDC::Stack const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1930109' => { + 'BaseType' => '1914589', + 'Name' => 'log4cxx::NDC::Stack&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1930114' => { + 'BaseType' => '567024', + 'Name' => 'log4cxx::MDC::Map&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1930119' => { + 'BaseType' => '1909514', + 'Name' => 'log4cxx::helpers::ThreadSpecificData&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1930165' => { + 'BaseType' => '1930177', + 'Header' => 'apr_tables.h', + 'Line' => '59', + 'Name' => 'apr_array_header_t', + 'Size' => '32', + 'Type' => 'Typedef' + }, + '1930177' => { + 'Header' => 'apr_tables.h', + 'Line' => '62', + 'Memb' => { + '0' => { + 'name' => 'pool', + 'offset' => '0', + 'type' => '1930256' + }, + '1' => { + 'name' => 'elt_size', + 'offset' => '8', + 'type' => '190263' + }, + '2' => { + 'name' => 'nelts', + 'offset' => '18', + 'type' => '190263' + }, + '3' => { + 'name' => 'nalloc', + 'offset' => '22', + 'type' => '190263' + }, + '4' => { + 'name' => 'elts', + 'offset' => '36', + 'type' => '192483' + } + }, + 'Name' => 'struct apr_array_header_t', + 'Size' => '32', + 'Type' => 'Struct' + }, + '1930256' => { + 'BaseType' => '1929346', + 'Name' => 'apr_pool_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '193049' => { + 'BaseType' => '191741', + 'Name' => 'wchar_t**', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1930737' => { + 'Name' => 'struct apr_file_t', + 'Type' => 'Struct' + }, + '1930771' => { + 'BaseType' => '1930737', + 'Header' => 'apr_file_io.h', + 'Line' => '188', + 'Name' => 'apr_file_t', + 'Type' => 'Typedef' + }, + '1932117' => { + 'BaseType' => '1930771', + 'Name' => 'apr_file_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1932236' => { + 'BaseType' => '1924090', + 'Header' => 'apr_thread_proc.h', + 'Line' => '190', + 'Name' => 'apr_threadkey_t', + 'Type' => 'Typedef' + }, + '1934001' => { + 'BaseType' => '1917211', + 'Name' => 'struct log4cxx::File::FilePrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1934221' => { + 'BaseType' => '567061', + 'Name' => 'log4cxx::File*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1934231' => { + 'BaseType' => '567061', + 'Name' => 'log4cxx::File&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1934236' => { + 'BaseType' => '567066', + 'Name' => 'log4cxx::File const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1934241' => { + 'BaseType' => '1932117', + 'Name' => 'apr_file_t**', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1936212' => { + 'BaseType' => '1909468', + 'Name' => 'struct log4cxx::helpers::FileWatchdog::FileWatchdogPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1937069' => { + 'BaseType' => '1932236', + 'Name' => 'apr_threadkey_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1937222' => { + 'BaseType' => '1913472', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1937227' => { + 'BaseType' => '1937222', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '1937357' => { + 'BaseType' => '1834428', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1937382' => { + 'BaseType' => '1702718', + 'Name' => 'std::shared_ptrconst&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '1937727' => { + 'BaseType' => '190206', + 'Name' => 'unsigned char[24]', + 'Size' => '24', + 'Type' => 'Array' + }, + '1938128' => { + 'BaseType' => '190206', + 'Name' => 'unsigned char[40]', + 'Size' => '40', + 'Type' => 'Array' + }, + '1938364' => { + 'BaseType' => '1914278', + 'Name' => 'log4cxx::helpers::Date::ClazzDate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1938369' => { + 'BaseType' => '1914436', + 'Name' => 'log4cxx::helpers::Date::ClazzDate const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '1938374' => { + 'BaseType' => '1914272', + 'Name' => 'log4cxx::helpers::Date*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '194145' => { + 'BaseType' => '174065', + 'Header' => 'types.h', + 'Line' => '42', + 'Name' => '__uint32_t', + 'Size' => '4', + 'Type' => 'Typedef' + }, + '194157' => { + 'BaseType' => '190282', + 'Header' => 'types.h', + 'Line' => '44', + 'Name' => '__int64_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '194169' => { + 'BaseType' => '190225', + 'Header' => 'types.h', + 'Line' => '45', + 'Name' => '__uint64_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '194872' => { + 'BaseType' => '194157', + 'Header' => 'stdint-intn.h', + 'Line' => '27', + 'Name' => 'int64_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '194908' => { + 'BaseType' => '194145', + 'Header' => 'stdint-uintn.h', + 'Line' => '26', + 'Name' => 'uint32_t', + 'Size' => '4', + 'Type' => 'Typedef' }, - '13306482' => { + '194920' => { + 'BaseType' => '194169', + 'Header' => 'stdint-uintn.h', + 'Line' => '27', + 'Name' => 'uint64_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '19500086' => { + 'Base' => { + '19509642' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647406' + } + }, + 'Type' => 'Class' + }, + '19500480' => { + 'Base' => { + '19546452' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '19500086' + } + }, + 'Type' => 'Class' + }, + '19500765' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '19500480' + } + }, + 'Type' => 'Struct' + }, + '19500779' => { + 'BaseType' => '19584813', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '19501197' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '84', + 'Memb' => { + '0' => { + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '19501396' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '13380721' + 'type' => '19500086' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '19500480' } }, 'Type' => 'Struct' }, - '13306568' => { + '19501210' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Header' => 'stl_vector.h', + 'Line' => '91', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', + 'name' => '_M_start', 'offset' => '0', - 'type' => '13308101' + 'type' => '19501384' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '19501384' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '19501384' } }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '19501384' => { + 'BaseType' => '19546920', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', 'Size' => '8', + 'Type' => 'Typedef' + }, + '19501396' => { + 'Base' => { + '19500480' => { + 'pos' => '0' + }, + '19501210' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '19502218' => { + 'Base' => { + '19501197' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', + 'NameSpace' => 'std', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '13380721' - }, - '1' => { - 'key' => '_Dp', - 'type' => '13306482' + 'type' => '19500086' } }, 'Type' => 'Class' }, - '13306891' => { - 'Base' => { - '13306482' => { - 'pos' => '0' - } - }, + '19508404' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' + 'key' => '_Tp', + 'type' => '5647406' }, '1' => { - 'key' => '_Head', - 'type' => '13306482' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '13307144' => { - 'Base' => { - '13306891' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + '19508552' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '13306482' + 'key' => '_Tp', + 'type' => '5647406' } }, 'Type' => 'Struct' }, - '13307440' => { + '19508566' => { + 'BaseType' => '5647406', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '19509642' => { + 'Base' => { + '19508404' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'access' => 'private', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '13383545' + 'type' => '19585150' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::PatternLayout::PatternLayoutPrivate*>', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Tp', + 'type' => '5647406' }, '1' => { - 'key' => '_Head', - 'type' => '13383545' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '13307700' => { - 'Base' => { - '13307144' => { - 'pos' => '0' - }, - '13307440' => { - 'access' => 'private', - 'pos' => '1' - } - }, + '19509922' => { + 'BaseType' => '19508566', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '195352' => { + 'BaseType' => '195357', + 'Name' => 'void const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '195357' => { + 'BaseType' => '1', + 'Name' => 'void const', + 'Type' => 'Const' + }, + '19546452' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::PatternLayout::PatternLayoutPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '13383545' + 'key' => '_Tp', + 'type' => '19500086' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '13308101' => { + '19546696' => { 'Base' => { - '13307700' => { + '19500765' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => undef, - 'type' => '13383545' + 'key' => '_Alloc', + 'type' => '19500480' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '13308432' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '13306568' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '19546920' => { + 'BaseType' => '19500779', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '13380721' - }, - '1' => { - 'key' => '_Dp', - 'type' => '13306482' - } - }, - 'Type' => 'Class' + 'Type' => 'Typedef' }, - '1336' => { - 'BaseType' => '49288', - 'Header' => 'basic_string.h', - 'Line' => '100', - 'Name' => 'std::__cxx11::basic_string::const_iterator', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '13378749' => { + '19569435' => { + 'BaseType' => '5647406', + 'Name' => 'log4cxx::helpers::InetAddress const', + 'Size' => '16', + 'Type' => 'Const' + }, + '19569840' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -106389,1087 +108828,1382 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '13380951' + 'type' => '5647420' } }, 'Type' => 'Class' }, - '13380086' => { - 'Header' => 'patternparser.h', - 'Line' => '50', - 'Name' => 'log4cxx::pattern::PatternParser', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '1', - 'Type' => 'Class' - }, - '13380421' => { - 'BaseType' => '3708324', - 'Name' => 'log4cxx::pattern::PatternMap const', - 'Size' => '48', - 'Type' => 'Const' - }, - '13380450' => { - 'BaseType' => '6576374', - 'Name' => 'log4cxx::pattern::FormattingInfoPtr const', + '19570996' => { + 'BaseType' => '19500086', + 'Header' => 'inetaddress.h', + 'Line' => '40', + 'Name' => 'log4cxx::helpers::InetAddressPtr', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', - 'Type' => 'Const' - }, - '13380721' => { - 'Line' => '58', - 'Memb' => { - '0' => { - 'name' => 'conversionPattern', - 'offset' => '0', - 'type' => '63706' - }, - '1' => { - 'name' => 'patternConverters', - 'offset' => '32', - 'type' => '13381882' - }, - '2' => { - 'name' => 'patternFields', - 'offset' => '56', - 'type' => '13381894' - }, - '3' => { - 'name' => 'm_fatalColor', - 'offset' => '80', - 'type' => '63706' - }, - '4' => { - 'name' => 'm_errorColor', - 'offset' => '112', - 'type' => '63706' - }, - '5' => { - 'name' => 'm_warnColor', - 'offset' => '144', - 'type' => '63706' - }, - '6' => { - 'name' => 'm_infoColor', - 'offset' => '176', - 'type' => '63706' - }, - '7' => { - 'name' => 'm_debugColor', - 'offset' => '208', - 'type' => '63706' - }, - '8' => { - 'name' => 'm_traceColor', - 'offset' => '240', - 'type' => '63706' - }, - '9' => { - 'name' => 'expectedPatternLength', - 'offset' => '272', - 'type' => '50486' - } - }, - 'Name' => 'struct log4cxx::PatternLayout::PatternLayoutPrivate', - 'NameSpace' => 'log4cxx::PatternLayout', - 'Private' => 1, - 'Size' => '280', - 'Source' => 'patternlayout.cpp', - 'Type' => 'Struct' + 'Type' => 'Typedef' }, - '13380951' => { + '19571008' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '1374417' => { + 'pos' => '0' + } }, - 'Header' => 'patternlayout.h', - 'Line' => '451', - 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout', - 'NameSpace' => 'log4cxx::PatternLayout', - 'Size' => '8', + 'Header' => 'inetaddress.h', + 'Line' => '30', + 'Name' => 'log4cxx::helpers::UnknownHostException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::PatternLayout::ClazzPatternLayout::~ClazzPatternLayout() [_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD1Ev]', - '24' => '(int (*)(...)) log4cxx::PatternLayout::ClazzPatternLayout::~ClazzPatternLayout() [_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::PatternLayout::ClazzPatternLayout::newInstance() const [_ZTch0_h0_NK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::PatternLayout::ClazzPatternLayout::getName[abi:cxx11]() const [_ZNK7log4cxx13PatternLayout18ClazzPatternLayout7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::PatternLayout::ClazzPatternLayout::newInstance() const [_ZNK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::PatternLayout::ClazzPatternLayout) [_ZTIN7log4cxx13PatternLayout18ClazzPatternLayoutE]' + '16' => '(int (*)(...)) log4cxx::helpers::UnknownHostException::~UnknownHostException() [_ZN7log4cxx7helpers20UnknownHostExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::UnknownHostException::~UnknownHostException() [_ZN7log4cxx7helpers20UnknownHostExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::UnknownHostException) [_ZTIN7log4cxx7helpers20UnknownHostExceptionE]' } }, - '13381179' => { - 'BaseType' => '13380951', - 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout const', - 'Size' => '8', + '19571160' => { + 'BaseType' => '19571008', + 'Name' => 'log4cxx::helpers::UnknownHostException const', + 'Size' => '144', 'Type' => 'Const' }, - '13381882' => { - 'BaseType' => '3646164', - 'Header' => 'patternlayout.h', - 'Line' => '28', - 'Name' => 'log4cxx::LoggingEventPatternConverterList', - 'NameSpace' => 'log4cxx', - 'Size' => '24', - 'Type' => 'Typedef' + '19584702' => { + 'BaseType' => '19569840', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '13381894' => { - 'BaseType' => '6156696', - 'Header' => 'patternlayout.h', - 'Line' => '29', - 'Name' => 'log4cxx::FormattingInfoList', - 'NameSpace' => 'log4cxx', - 'Size' => '24', - 'Type' => 'Typedef' + '19584707' => { + 'BaseType' => '19584702', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' }, - '13383492' => { - 'BaseType' => '13380086', - 'Name' => 'log4cxx::pattern::PatternParser*', + '19584813' => { + 'BaseType' => '19500086', + 'Name' => 'std::shared_ptr*', 'Size' => '8', 'Type' => 'Pointer' }, - '13383516' => { - 'BaseType' => '13380421', - 'Name' => 'log4cxx::pattern::PatternMap const&', + '19585150' => { + 'BaseType' => '19509922', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '1338352' => { - 'Header' => 'bytebuffer.h', - 'Line' => '33', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '1313963' - } - }, - 'Name' => 'log4cxx::helpers::ByteBuffer', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '13383522' => { - 'BaseType' => '13380450', - 'Name' => 'log4cxx::pattern::FormattingInfoPtr const&', + '19585195' => { + 'BaseType' => '5647406', + 'Name' => 'log4cxx::helpers::InetAddress*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '13383545' => { - 'BaseType' => '13380721', - 'Name' => 'struct log4cxx::PatternLayout::PatternLayoutPrivate*', + '19585200' => { + 'BaseType' => '19585195', + 'Name' => 'log4cxx::helpers::InetAddress*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '1338365' => { - 'Line' => '25', - 'Memb' => { - '0' => { - 'name' => 'base', - 'offset' => '0', - 'type' => '51958' - }, - '1' => { - 'name' => 'pos', - 'offset' => '8', - 'type' => '50486' - }, - '2' => { - 'name' => 'lim', - 'offset' => '16', - 'type' => '50486' - }, - '3' => { - 'name' => 'cap', - 'offset' => '24', - 'type' => '50486' - } - }, - 'Name' => 'struct log4cxx::helpers::ByteBuffer::ByteBufferPriv', - 'NameSpace' => 'log4cxx::helpers::ByteBuffer', - 'Private' => 1, - 'Size' => '32', - 'Source' => 'bytebuffer.cpp', - 'Type' => 'Struct' - }, - '13384918' => { - 'BaseType' => '13378749', - 'Name' => 'log4cxx::helpers::WideLife*', + '19585621' => { + 'BaseType' => '19569435', + 'Name' => 'log4cxx::helpers::InetAddress const*', 'Size' => '8', 'Type' => 'Pointer' }, - '13384924' => { - 'BaseType' => '13384918', - 'Name' => 'log4cxx::helpers::WideLife*const', + '19585626' => { + 'BaseType' => '19585621', + 'Name' => 'log4cxx::helpers::InetAddress const*const', 'Size' => '8', 'Type' => 'Const' }, - '13386823' => { - 'BaseType' => '1153221', - 'Name' => 'log4cxx::PatternLayout*const', + '19585766' => { + 'BaseType' => '5680228', + 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress*const', 'Size' => '8', 'Type' => 'Const' }, - '13387835' => { - 'BaseType' => '1153549', - 'Name' => 'log4cxx::PatternLayout const*const', + '19585776' => { + 'BaseType' => '5680233', + 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress const*const', 'Size' => '8', 'Type' => 'Const' }, - '13387840' => { - 'BaseType' => '13380951', - 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout*', + '19585781' => { + 'BaseType' => '19571008', + 'Name' => 'log4cxx::helpers::UnknownHostException*', 'Size' => '8', 'Type' => 'Pointer' }, - '13387846' => { - 'BaseType' => '13387840', - 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout*const', + '19585786' => { + 'BaseType' => '19585781', + 'Name' => 'log4cxx::helpers::UnknownHostException*const', 'Size' => '8', 'Type' => 'Const' }, - '13387851' => { - 'BaseType' => '13381179', - 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout const*', + '19585791' => { + 'BaseType' => '19571160', + 'Name' => 'log4cxx::helpers::UnknownHostException const&', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Ref' }, - '13387857' => { - 'BaseType' => '13387851', - 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout const*const', + '19585796' => { + 'BaseType' => '19571008', + 'Name' => 'log4cxx::helpers::UnknownHostException&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Ref' }, - '1338887' => { - 'BaseType' => '1338352', - 'Name' => 'log4cxx::helpers::ByteBuffer const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1339029' => { - 'Base' => { - '1340484' => { - 'pos' => '0' - } - }, - 'Header' => 'bytearrayinputstream.h', - 'Line' => '35', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '1311435' - } - }, - 'Name' => 'log4cxx::helpers::ByteArrayInputStream', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::~ByteArrayInputStream() [_ZN7log4cxx7helpers20ByteArrayInputStreamD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::~ByteArrayInputStream() [_ZN7log4cxx7helpers20ByteArrayInputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::getClass() const [_ZNK7log4cxx7helpers20ByteArrayInputStream8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers20ByteArrayInputStream10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers20ByteArrayInputStream4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::read(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers20ByteArrayInputStream4readERNS0_10ByteBufferE]', - '64' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::close() [_ZN7log4cxx7helpers20ByteArrayInputStream5closeEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ByteArrayInputStream) [_ZTIN7log4cxx7helpers20ByteArrayInputStreamE]' - } - }, - '1339047' => { - 'Line' => '29', - 'Memb' => { - '0' => { - 'name' => 'buf', - 'offset' => '0', - 'type' => '1339705' - }, - '1' => { - 'name' => 'pos', - 'offset' => '24', - 'type' => '50486' - } - }, - 'Name' => 'struct log4cxx::helpers::ByteArrayInputStream::ByteArrayInputStreamPriv', - 'NameSpace' => 'log4cxx::helpers::ByteArrayInputStream', - 'Private' => 1, - 'Size' => '32', - 'Source' => 'bytearrayinputstream.cpp', - 'Type' => 'Struct' - }, - '1339142' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'bytearrayinputstream.h', - 'Line' => '41', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream', - 'NameSpace' => 'log4cxx::helpers::ByteArrayInputStream', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream::~ClazzByteArrayInputStream() [_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream::~ClazzByteArrayInputStream() [_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStream7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream) [_ZTIN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamE]' - } - }, - '1339300' => { - 'BaseType' => '1339142', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1339700' => { - 'BaseType' => '1339029', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream const', - 'Size' => '16', - 'Type' => 'Const' - }, - '1339705' => { - 'BaseType' => '1316939', - 'Header' => 'bytearrayinputstream.h', - 'Line' => '30', - 'Name' => 'log4cxx::helpers::ByteList', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '24', - 'Type' => 'Typedef' - }, - '1339722' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '1339142' - } - }, - 'Type' => 'Class' - }, - '1340484' => { - 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'inputstream.h', - 'Line' => '34', - 'Name' => 'log4cxx::helpers::InputStream', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::InputStream::getClass() const [_ZNK7log4cxx7helpers11InputStream8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::InputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers11InputStream10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::InputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers11InputStream4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '64' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InputStream) [_ZTIN7log4cxx7helpers11InputStreamE]' - } - }, - '1340551' => { - 'BaseType' => '1340484', - 'Name' => 'log4cxx::helpers::InputStream const', - 'Type' => 'Const' - }, - '1340866' => { - 'BaseType' => '1338352', - 'Name' => 'log4cxx::helpers::ByteBuffer&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1340936' => { - 'BaseType' => '1339047', - 'Name' => 'struct log4cxx::helpers::ByteArrayInputStream::ByteArrayInputStreamPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1341232' => { - 'BaseType' => '1338365', - 'Name' => 'struct log4cxx::helpers::ByteBuffer::ByteBufferPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1341471' => { - 'BaseType' => '1338352', - 'Name' => 'log4cxx::helpers::ByteBuffer*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1341477' => { - 'BaseType' => '1338887', - 'Name' => 'log4cxx::helpers::ByteBuffer const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1341985' => { - 'BaseType' => '50179', - 'Name' => 'unsigned char*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1342204' => { - 'BaseType' => '1320040', - 'Name' => 'std::vectorconst&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1342263' => { - 'BaseType' => '1339722', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1342269' => { - 'BaseType' => '1342263', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1342453' => { - 'BaseType' => '1339700', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1342459' => { - 'BaseType' => '1342453', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1342464' => { - 'BaseType' => '1339029', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1342470' => { - 'BaseType' => '1342464', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1342487' => { - 'BaseType' => '1339142', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1342493' => { - 'BaseType' => '1342487', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1342498' => { - 'BaseType' => '1339300', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1342504' => { - 'BaseType' => '1342498', - 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1356757' => { - 'BaseType' => '1340551', - 'Name' => 'log4cxx::helpers::InputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1356763' => { - 'BaseType' => '1356757', - 'Name' => 'log4cxx::helpers::InputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '13796572' => { - 'BaseType' => '13383492', - 'Name' => 'log4cxx::pattern::PatternParser*const', + '196833' => { + 'Header' => 'atomic_wide_counter.h', + 'Line' => '26', + 'Memb' => { + '0' => { + 'name' => '__value64', + 'offset' => '0', + 'type' => '190237' + }, + '1' => { + 'name' => '__value32', + 'offset' => '0', + 'type' => '196845' + } + }, + 'Name' => 'union __atomic_wide_counter', + 'Size' => '8', + 'Type' => 'Union' + }, + '196845' => { + 'Header' => 'atomic_wide_counter.h', + 'Line' => '29', + 'Memb' => { + '0' => { + 'name' => '__low', + 'offset' => '0', + 'type' => '174065' + }, + '1' => { + 'name' => '__high', + 'offset' => '4', + 'type' => '174065' + } + }, + 'Name' => 'anon-struct-atomic_wide_counter.h-29', + 'Size' => '8', + 'Type' => 'Struct' + }, + '196907' => { + 'BaseType' => '196833', + 'Header' => 'atomic_wide_counter.h', + 'Line' => '33', + 'Name' => '__atomic_wide_counter', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '196919' => { + 'Header' => 'thread-shared-types.h', + 'Line' => '51', + 'Memb' => { + '0' => { + 'name' => '__prev', + 'offset' => '0', + 'type' => '196959' + }, + '1' => { + 'name' => '__next', + 'offset' => '8', + 'type' => '196959' + } + }, + 'Name' => 'struct __pthread_internal_list', + 'Size' => '16', + 'Type' => 'Struct' + }, + '196959' => { + 'BaseType' => '196919', + 'Name' => 'struct __pthread_internal_list*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '196964' => { + 'BaseType' => '196919', + 'Header' => 'thread-shared-types.h', + 'Line' => '55', + 'Name' => '__pthread_list_t', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '197020' => { + 'Header' => 'struct_mutex.h', + 'Line' => '22', + 'Memb' => { + '0' => { + 'name' => '__lock', + 'offset' => '0', + 'type' => '190263' + }, + '1' => { + 'name' => '__count', + 'offset' => '4', + 'type' => '174065' + }, + '2' => { + 'name' => '__owner', + 'offset' => '8', + 'type' => '190263' + }, + '3' => { + 'name' => '__nusers', + 'offset' => '18', + 'type' => '174065' + }, + '4' => { + 'name' => '__kind', + 'offset' => '22', + 'type' => '190263' + }, + '5' => { + 'name' => '__spins', + 'offset' => '32', + 'type' => '190256' + }, + '6' => { + 'name' => '__elision', + 'offset' => '34', + 'type' => '190256' + }, + '7' => { + 'name' => '__list', + 'offset' => '36', + 'type' => '196964' + } + }, + 'Name' => 'struct __pthread_mutex_s', + 'Size' => '40', + 'Type' => 'Struct' + }, + '197324' => { + 'Header' => 'thread-shared-types.h', + 'Line' => '94', + 'Memb' => { + '0' => { + 'name' => '__wseq', + 'offset' => '0', + 'type' => '196907' + }, + '1' => { + 'name' => '__g1_start', + 'offset' => '8', + 'type' => '196907' + }, + '2' => { + 'name' => '__g_refs', + 'offset' => '22', + 'type' => '197429' + }, + '3' => { + 'name' => '__g_size', + 'offset' => '36', + 'type' => '197429' + }, + '4' => { + 'name' => '__g1_orig_size', + 'offset' => '50', + 'type' => '174065' + }, + '5' => { + 'name' => '__wrefs', + 'offset' => '54', + 'type' => '174065' + }, + '6' => { + 'name' => '__g_signals', + 'offset' => '64', + 'type' => '197429' + } + }, + 'Name' => 'struct __pthread_cond_s', + 'Size' => '48', + 'Type' => 'Struct' + }, + '197429' => { + 'BaseType' => '174065', + 'Name' => 'unsigned int[2]', + 'Size' => '8', + 'Type' => 'Array' + }, + '197508' => { + 'BaseType' => '190225', + 'Header' => 'pthreadtypes.h', + 'Line' => '27', + 'Name' => 'pthread_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '197709' => { + 'Header' => 'pthreadtypes.h', + 'Line' => '68', + 'Memb' => { + '0' => { + 'name' => '__data', + 'offset' => '0', + 'type' => '197020' + }, + '1' => { + 'name' => '__size', + 'offset' => '0', + 'type' => '197758' + }, + '2' => { + 'name' => '__align', + 'offset' => '0', + 'type' => '190282' + } + }, + 'Name' => 'union pthread_mutex_t', + 'Size' => '40', + 'Type' => 'Union' + }, + '197758' => { + 'BaseType' => '191030', + 'Name' => 'char[40]', + 'Size' => '40', + 'Type' => 'Array' + }, + '197774' => { + 'BaseType' => '197709', + 'Header' => 'pthreadtypes.h', + 'Line' => '72', + 'Name' => 'pthread_mutex_t', + 'Size' => '40', + 'Type' => 'Typedef' + }, + '197786' => { + 'Header' => 'pthreadtypes.h', + 'Line' => '76', + 'Memb' => { + '0' => { + 'name' => '__data', + 'offset' => '0', + 'type' => '197324' + }, + '1' => { + 'name' => '__size', + 'offset' => '0', + 'type' => '197835' + }, + '2' => { + 'name' => '__align', + 'offset' => '0', + 'type' => '190294' + } + }, + 'Name' => 'union pthread_cond_t', + 'Size' => '48', + 'Type' => 'Union' + }, + '197835' => { + 'BaseType' => '191030', + 'Name' => 'char[48]', + 'Size' => '48', + 'Type' => 'Array' + }, + '197851' => { + 'BaseType' => '197786', + 'Header' => 'pthreadtypes.h', + 'Line' => '80', + 'Name' => 'pthread_cond_t', + 'Size' => '48', + 'Type' => 'Typedef' + }, + '197961' => { + 'BaseType' => '191030', + 'Name' => 'char[8]', + 'Size' => '8', + 'Type' => 'Array' + }, + '19801645' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3605490' + } + }, + 'Type' => 'Class' }, - '1395077' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1424233' - } - }, - 'Type' => 'Struct' - }, - '1395163' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '1396696' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1424233' - }, - '1' => { - 'key' => '_Dp', - 'type' => '1395077' - } - }, - 'Type' => 'Class' - }, - '1395486' => { - 'Base' => { - '1395077' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '1395077' - } - }, - 'Type' => 'Struct' - }, - '1395739' => { - 'Base' => { - '1395486' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '1395077' - } - }, - 'Type' => 'Struct' - }, - '1396036' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '1426154' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ByteArrayOutputStream::ByteArrayOutputStreamPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '1426154' - } - }, - 'Type' => 'Struct' - }, - '1396296' => { - 'Base' => { - '1395739' => { - 'pos' => '0' - }, - '1396036' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ByteArrayOutputStream::ByteArrayOutputStreamPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '1426154' - } - }, - 'Type' => 'Struct' - }, - '1396696' => { - 'Base' => { - '1396296' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '1426154' - } - }, - 'Type' => 'Class' - }, - '1397025' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '1395163' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1424233' - }, - '1' => { - 'key' => '_Dp', - 'type' => '1395077' - } - }, - 'Type' => 'Class' - }, - '14006506' => { - 'BaseType' => '64696', - 'Name' => 'log4cxx::helpers::Pool*const', + '19803593' => { + 'BaseType' => '19801645', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19803598' => { + 'BaseType' => '19803593', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '14094232' => { - 'BaseType' => '4048436', - 'Name' => 'log4cxx::helpers::Properties*const', + '198038' => { + 'BaseType' => '191030', + 'Name' => 'char[32]', + 'Size' => '32', + 'Type' => 'Array' + }, + '19803999' => { + 'BaseType' => '3609585', + 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream*const', 'Size' => '8', 'Type' => 'Const' }, - '14094255' => { - 'BaseType' => '4048448', - 'Name' => 'log4cxx::helpers::Properties const*const', + '19804009' => { + 'BaseType' => '3609590', + 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream const*const', 'Size' => '8', 'Type' => 'Const' }, - '14094301' => { + '1981517' => { + 'Name' => 'std::shared_ptr()', + 'Return' => '497510', + 'Type' => 'Func' + }, + '1981563' => { + 'BaseType' => '1797937', + 'Name' => 'std::thread::id&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '198453' => { + 'Name' => 'void(*)()', + 'Return' => '1', + 'Size' => '8', + 'Type' => 'FuncPtr' + }, + '198458' => { + 'Name' => 'void()', + 'Return' => '1', + 'Type' => 'Func' + }, + '198884' => { + 'BaseType' => '192483', + 'Name' => 'char**', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19921320' => { 'Copied' => 1, - 'Line' => '27', - 'Name' => 'PropertyParser', + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', 'Size' => '1', - 'Source' => 'properties.cpp', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '19982791' + } + }, + 'Type' => 'Struct' + }, + '19922269' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '19924669' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '19982791' + }, + '1' => { + 'key' => '_Dp', + 'type' => '19921320' + } + }, 'Type' => 'Class' }, - '14094489' => { - 'BaseType' => '14094301', - 'Name' => 'PropertyParser*', + '19922895' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '19921320' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '19921320' + } + }, + 'Type' => 'Struct' + }, + '19923153' => { + 'Base' => { + '19922895' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '19921320' + } + }, + 'Type' => 'Struct' + }, + '19923459' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '19986160' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::InputStreamReader::InputStreamReaderPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '19986160' + } + }, + 'Type' => 'Struct' + }, + '19923717' => { + 'Base' => { + '19923153' => { + 'pos' => '0' + }, + '19923459' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::InputStreamReader::InputStreamReaderPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '19986160' + } + }, + 'Type' => 'Struct' + }, + '19924669' => { + 'Base' => { + '19923717' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '19986160' + } + }, + 'Type' => 'Class' + }, + '19926138' => { + 'Base' => { + '19922269' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '19982791' + }, + '1' => { + 'key' => '_Dp', + 'type' => '19921320' + } + }, + 'Type' => 'Struct' }, - '14094495' => { - 'BaseType' => '14094489', - 'Name' => 'PropertyParser*const', + '19926364' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '19926138' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '19982791' + }, + '1' => { + 'key' => '_Dp', + 'type' => '19921320' + } + }, + 'Type' => 'Class' }, - '1424215' => { - 'Base' => { - '1425696' => { - 'pos' => '0' - } - }, - 'Header' => 'bytearrayoutputstream.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '1397025' - } - }, - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::~ByteArrayOutputStream() [_ZN7log4cxx7helpers21ByteArrayOutputStreamD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::~ByteArrayOutputStream() [_ZN7log4cxx7helpers21ByteArrayOutputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::getClass() const [_ZNK7log4cxx7helpers21ByteArrayOutputStream8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers21ByteArrayOutputStream10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers21ByteArrayOutputStream4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers21ByteArrayOutputStream5closeERNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers21ByteArrayOutputStream5flushERNS0_4PoolE]', - '72' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::write(log4cxx::helpers::ByteBuffer&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers21ByteArrayOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ByteArrayOutputStream) [_ZTIN7log4cxx7helpers21ByteArrayOutputStreamE]' - } - }, - '1424233' => { - 'Copied' => 1, - 'Line' => '27', - 'Memb' => { - '0' => { - 'name' => 'array', - 'offset' => '0', - 'type' => '1339705' - } - }, - 'Name' => 'struct log4cxx::helpers::ByteArrayOutputStream::ByteArrayOutputStreamPriv', - 'NameSpace' => 'log4cxx::helpers::ByteArrayOutputStream', - 'Private' => 1, - 'Size' => '24', - 'Source' => 'bytearrayoutputstream.cpp', - 'Type' => 'Struct' - }, - '1424285' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'bytearrayoutputstream.h', - 'Line' => '42', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream', - 'NameSpace' => 'log4cxx::helpers::ByteArrayOutputStream', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream::~ClazzByteArrayOutputStream() [_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream::~ClazzByteArrayOutputStream() [_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStream7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream) [_ZTIN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamE]' - } - }, - '1424443' => { - 'BaseType' => '1424285', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1424917' => { - 'BaseType' => '1424215', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream const', - 'Size' => '16', - 'Type' => 'Const' - }, - '1424934' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '1424285' - } - }, - 'Type' => 'Class' - }, - '14251222' => { + '19932743' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '14279831' + 'type' => '3605480' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '14251370' => { + '19932889' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '14279831' + 'type' => '3605480' } }, 'Type' => 'Struct' }, - '14251384' => { - 'BaseType' => '14279831', + '19932903' => { + 'BaseType' => '3605480', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '14251407' => { + '19933885' => { 'Base' => { - '14251222' => { + '19932743' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '14283219' + 'type' => '19987335' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '14279831' + 'type' => '3605480' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '14251694' => { - 'BaseType' => '14251384', + '19934164' => { + 'BaseType' => '19932903', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '14252201' => { + '19982774' => { 'Base' => { - '14251407' => { + '19984687' => { 'pos' => '0' } }, + 'Header' => 'inputstreamreader.h', + 'Line' => '40', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '19926364' + } + }, + 'Name' => 'log4cxx::helpers::InputStreamReader', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::~InputStreamReader() [_ZN7log4cxx7helpers17InputStreamReaderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::~InputStreamReader() [_ZN7log4cxx7helpers17InputStreamReaderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::getClass() const [_ZNK7log4cxx7helpers17InputStreamReader8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers17InputStreamReader10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers17InputStreamReader4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers17InputStreamReader5closeERNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::read[abi:cxx11](log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers17InputStreamReader4readB5cxx11ERNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InputStreamReader) [_ZTIN7log4cxx7helpers17InputStreamReaderE]' + } + }, + '19982791' => { + 'Line' => '32', + 'Memb' => { + '0' => { + 'name' => 'in', + 'offset' => '0', + 'type' => '5648504' + }, + '1' => { + 'name' => 'dec', + 'offset' => '22', + 'type' => '4542594' + } + }, + 'Name' => 'struct log4cxx::helpers::InputStreamReader::InputStreamReaderPrivate', + 'NameSpace' => 'log4cxx::helpers::InputStreamReader', + 'Private' => 1, + 'Size' => '32', + 'Source' => 'inputstreamreader.cpp', + 'Type' => 'Struct' + }, + '19982924' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'inputstreamreader.h', + 'Line' => '46', + 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader', + 'NameSpace' => 'log4cxx::helpers::InputStreamReader', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::ClazzInputStreamReader::~ClazzInputStreamReader() [_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::ClazzInputStreamReader::~ClazzInputStreamReader() [_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::ClazzInputStreamReader::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers17InputStreamReader22ClazzInputStreamReader7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InputStreamReader::ClazzInputStreamReader) [_ZTIN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderE]' + } + }, + '19983071' => { + 'BaseType' => '19982924', + 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader const', + 'Size' => '8', + 'Type' => 'Const' + }, + '19983525' => { + 'BaseType' => '19982774', + 'Name' => 'log4cxx::helpers::InputStreamReader const', + 'Size' => '16', + 'Type' => 'Const' + }, + '19983630' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '19982924' + } + }, + 'Type' => 'Class' + }, + '19984665' => { + 'BaseType' => '5648504', + 'Name' => 'log4cxx::helpers::InputStreamPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '19984682' => { + 'BaseType' => '4542594', + 'Name' => 'log4cxx::helpers::CharsetDecoderPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '19984687' => { + 'Base' => { + '209311' => { + 'pos' => '0' + } + }, + 'Header' => 'reader.h', + 'Line' => '33', + 'Name' => 'log4cxx::helpers::Reader', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::Reader::getClass() const [_ZNK7log4cxx7helpers6Reader8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Reader::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Reader10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::Reader::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Reader4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '64' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Reader) [_ZTIN7log4cxx7helpers6ReaderE]' + } + }, + '19984696' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'reader.h', + 'Line' => '36', + 'Name' => 'log4cxx::helpers::Reader::ClazzReader', + 'NameSpace' => 'log4cxx::helpers::Reader', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::Reader::ClazzReader::~ClazzReader() [_ZN7log4cxx7helpers6Reader11ClazzReaderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Reader::ClazzReader::~ClazzReader() [_ZN7log4cxx7helpers6Reader11ClazzReaderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Reader::ClazzReader::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers6Reader11ClazzReader7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Reader::ClazzReader) [_ZTIN7log4cxx7helpers6Reader11ClazzReaderE]' + } + }, + '19984813' => { + 'BaseType' => '19984696', + 'Name' => 'log4cxx::helpers::Reader::ClazzReader const', + 'Size' => '8', + 'Type' => 'Const' + }, + '19984936' => { + 'BaseType' => '19984687', + 'Name' => 'log4cxx::helpers::Reader const', + 'Type' => 'Const' + }, + '19986160' => { + 'BaseType' => '19982791', + 'Name' => 'struct log4cxx::helpers::InputStreamReader::InputStreamReaderPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19987154' => { + 'BaseType' => '19983630', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19987159' => { + 'BaseType' => '19987154', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '19987335' => { + 'BaseType' => '19934164', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19987480' => { + 'BaseType' => '19984665', + 'Name' => 'log4cxx::helpers::InputStreamPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '19987485' => { + 'BaseType' => '19984682', + 'Name' => 'log4cxx::helpers::CharsetDecoderPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '19987765' => { + 'BaseType' => '19983525', + 'Name' => 'log4cxx::helpers::InputStreamReader const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19987770' => { + 'BaseType' => '19987765', + 'Name' => 'log4cxx::helpers::InputStreamReader const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '19987775' => { + 'BaseType' => '19982774', + 'Name' => 'log4cxx::helpers::InputStreamReader*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19987780' => { + 'BaseType' => '19987775', + 'Name' => 'log4cxx::helpers::InputStreamReader*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '19987795' => { + 'BaseType' => '19982924', + 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19987800' => { + 'BaseType' => '19987795', + 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '19987805' => { + 'BaseType' => '19983071', + 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19987810' => { + 'BaseType' => '19987805', + 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '19987835' => { + 'BaseType' => '19984696', + 'Name' => 'log4cxx::helpers::Reader::ClazzReader*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19987840' => { + 'BaseType' => '19984813', + 'Name' => 'log4cxx::helpers::Reader::ClazzReader const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19988758' => { + 'BaseType' => '19984687', + 'Name' => 'log4cxx::helpers::Reader*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '19988763' => { + 'BaseType' => '19988758', + 'Name' => 'log4cxx::helpers::Reader*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '20011078' => { + 'BaseType' => '19984936', + 'Name' => 'log4cxx::helpers::Reader const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '20011083' => { + 'BaseType' => '20011078', + 'Name' => 'log4cxx::helpers::Reader const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '200663' => { + 'BaseType' => '197508', + 'Header' => 'gthr-default.h', + 'Line' => '47', + 'Name' => '__gthread_t', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '200699' => { + 'BaseType' => '197774', + 'Header' => 'gthr-default.h', + 'Line' => '50', + 'Name' => '__gthread_mutex_t', + 'Size' => '40', + 'Type' => 'Typedef' + }, + '200711' => { + 'BaseType' => '197774', + 'Header' => 'gthr-default.h', + 'Line' => '51', + 'Name' => '__gthread_recursive_mutex_t', + 'Size' => '40', + 'Type' => 'Typedef' + }, + '200723' => { + 'BaseType' => '197851', + 'Header' => 'gthr-default.h', + 'Line' => '52', + 'Name' => '__gthread_cond_t', + 'Size' => '48', + 'Type' => 'Typedef' + }, + '200752' => { + 'BaseType' => '190263', + 'Header' => 'atomic_word.h', + 'Line' => '32', + 'Name' => '_Atomic_word', + 'Size' => '4', + 'Type' => 'Typedef' + }, + '201563' => { + 'BaseType' => '191030', + 'Name' => 'char[1]', + 'Size' => '1', + 'Type' => 'Array' + }, + '20165389' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '16765860' + } + }, + 'Type' => 'Class' + }, + '20167288' => { + 'BaseType' => '20165389', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '20167293' => { + 'BaseType' => '20167288', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '20167679' => { + 'BaseType' => '16790345', + 'Name' => 'log4cxx::helpers::Integer const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '20167689' => { + 'BaseType' => '16791359', + 'Name' => 'log4cxx::helpers::Integer::ClazzInteger*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '20167699' => { + 'BaseType' => '16791364', + 'Name' => 'log4cxx::helpers::Integer::ClazzInteger const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '202654' => { + 'BaseType' => '191030', + 'Name' => 'char[16]', + 'Size' => '16', + 'Type' => 'Array' + }, + '202670' => { + 'BaseType' => '51677', + 'Name' => 'std::__cxx11::basic_string*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '202705' => { + 'BaseType' => '58800', + 'Name' => 'std::__cxx11::basic_stringconst&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '202710' => { + 'BaseType' => '51677', + 'Name' => 'std::__cxx11::basic_string&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '202770' => { + 'BaseType' => '190393', + 'Name' => 'wchar_t[4]', + 'Size' => '16', + 'Type' => 'Array' + }, + '202811' => { + 'BaseType' => '65815', + 'Name' => 'std::__cxx11::basic_stringconst&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '202831' => { + 'BaseType' => '89545', + 'Name' => 'std::string const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '202841' => { + 'BaseType' => '89717', + 'Name' => 'std::wstring const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '20317669' => { 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '14279831' + 'type' => '16774354' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '1425696' => { - 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'outputstream.h', - 'Line' => '33', - 'Name' => 'log4cxx::helpers::OutputStream', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::OutputStream::getClass() const [_ZNK7log4cxx7helpers12OutputStream8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::OutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers12OutputStream10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::OutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers12OutputStream4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '64' => '(int (*)(...)) __cxa_pure_virtual', - '72' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OutputStream) [_ZTIN7log4cxx7helpers12OutputStreamE]' - } - }, - '1425763' => { - 'BaseType' => '1425696', - 'Name' => 'log4cxx::helpers::OutputStream const', - 'Type' => 'Const' - }, - '1426154' => { - 'BaseType' => '1424233', - 'Name' => 'struct log4cxx::helpers::ByteArrayOutputStream::ByteArrayOutputStreamPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1427000' => { - 'BaseType' => '1424934', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1427006' => { - 'BaseType' => '1427000', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1427202' => { - 'BaseType' => '1424917', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1427208' => { - 'BaseType' => '1427202', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1427213' => { - 'BaseType' => '1424215', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1427219' => { - 'BaseType' => '1427213', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1427236' => { - 'BaseType' => '1424285', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1427242' => { - 'BaseType' => '1427236', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1427247' => { - 'BaseType' => '1424443', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1427253' => { - 'BaseType' => '1427247', - 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '14278020' => { + '20317815' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '16774354' + } + }, + 'Type' => 'Struct' + }, + '20317829' => { + 'BaseType' => '16774354', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '20317852' => { + 'Base' => { + '20317669' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '20378862' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '16774354' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '20318130' => { + 'BaseType' => '20317829', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '20318578' => { + 'Base' => { + '20317852' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '16774354' + } + }, + 'Type' => 'Class' + }, + '203511' => { + 'BaseType' => '97507', + 'Name' => 'std::locale const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '203516' => { + 'BaseType' => '96341', + 'Name' => 'std::locale::_Impl*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '203563' => { + 'BaseType' => '203568', + 'Name' => 'std::locale::facet const**', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '203568' => { + 'BaseType' => '97501', + 'Name' => 'std::locale::facet const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '203737' => { + 'BaseType' => '101951', + 'Name' => 'std::ios_base&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '20375061' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -107477,1105 +110211,1167 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '14279865' + 'type' => '16774360' } }, 'Type' => 'Class' }, - '14279831' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'propertiespatternconverter.h', - 'Line' => '39', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter', - 'NameSpace' => 'log4cxx::pattern', + '20377859' => { + 'BaseType' => '16774354', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter const', 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern26PropertiesPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PropertiesPatternConverter) [_ZTIN7log4cxx7pattern26PropertiesPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::~PropertiesPatternConverter() [_ZN7log4cxx7pattern26PropertiesPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::~PropertiesPatternConverter() [_ZN7log4cxx7pattern26PropertiesPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::getClass() const [_ZNK7log4cxx7pattern26PropertiesPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern26PropertiesPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern26PropertiesPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } + 'Type' => 'Const' }, - '14279865' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'propertiespatternconverter.h', - 'Line' => '45', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter', - 'NameSpace' => 'log4cxx::pattern::PropertiesPatternConverter', + '20378571' => { + 'BaseType' => '20375061', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter::~ClazzPropertiesPatternConverter() [_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter::~ClazzPropertiesPatternConverter() [_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter) [_ZTIN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterE]' - } + 'Type' => 'Pointer' }, - '14280023' => { - 'BaseType' => '14279865', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter const', + '20378576' => { + 'BaseType' => '20378571', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '14280028' => { - 'Base' => { - '2428623' => { - 'pos' => '0' - } - }, - 'Line' => '33', - 'Memb' => { - '0' => { - 'name' => 'option', - 'offset' => '72', - 'type' => '262804' - } - }, - 'Name' => 'struct log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate', - 'NameSpace' => 'log4cxx::pattern::PropertiesPatternConverter', - 'Private' => 1, - 'Size' => '104', - 'Source' => 'propertiespatternconverter.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate::~PropertiesPatternConverterPrivate() [_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate::~PropertiesPatternConverterPrivate() [_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate) [_ZTIN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateE]' - } + '20378862' => { + 'BaseType' => '20318130', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '14280611' => { - 'BaseType' => '14279831', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter const', - 'Size' => '16', - 'Type' => 'Const' + '20378892' => { + 'BaseType' => '20318578', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' }, - '14282400' => { - 'BaseType' => '14278020', - 'Name' => 'log4cxx::helpers::WideLife*', + '20379067' => { + 'BaseType' => '16774354', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '14282406' => { - 'BaseType' => '14282400', - 'Name' => 'log4cxx::helpers::WideLife*const', + '20379072' => { + 'BaseType' => '20379067', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '14282525' => { - 'BaseType' => '14280028', - 'Name' => 'struct log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate*', + '20379553' => { + 'BaseType' => '20377859', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '14282531' => { - 'BaseType' => '14282525', - 'Name' => 'struct log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate*const', + '20379558' => { + 'BaseType' => '20379553', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '14283219' => { - 'BaseType' => '14251694', - 'Name' => 'std::__shared_ptr::element_type*', + '20379728' => { + 'BaseType' => '16791319', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '14283237' => { - 'BaseType' => '14279831', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter*', + '20379738' => { + 'BaseType' => '16791324', + 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter const*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '14283243' => { - 'BaseType' => '14283237', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter*const', + '204095' => { + 'BaseType' => '105297', + 'Name' => 'std::basic_ostream&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '204110' => { + 'BaseType' => '105464', + 'Name' => 'std::basic_ostream&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '207079' => { + 'Header' => 'transcoder.h', + 'Line' => '36', + 'Name' => 'log4cxx::helpers::Transcoder', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '1', + 'Type' => 'Class' + }, + '20752236' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5655926' + } + }, + 'Type' => 'Class' + }, + '20755196' => { + 'BaseType' => '20756264', + 'Header' => 'loggingevent.h', + 'Line' => '58', + 'Name' => 'log4cxx::spi::LoggingEvent::KeySet', + 'NameSpace' => 'log4cxx::spi::LoggingEvent', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '20756264' => { + 'BaseType' => '6007393', + 'Header' => 'loggingevent.h', + 'Line' => '39', + 'Name' => 'log4cxx::spi::KeySet', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '20758160' => { + 'BaseType' => '5655912', + 'Name' => 'log4cxx::JSONLayout const', + 'Size' => '16', 'Type' => 'Const' }, - '14283265' => { - 'BaseType' => '14252201', - 'Name' => 'std::shared_ptr&&', + '20766924' => { + 'BaseType' => '20752236', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Pointer' }, - '14283520' => { - 'BaseType' => '14280611', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter const*', + '20766929' => { + 'BaseType' => '20766924', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '14283526' => { - 'BaseType' => '14283520', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter const*const', + '20767673' => { + 'BaseType' => '5679798', + 'Name' => 'log4cxx::JSONLayout*const', 'Size' => '8', 'Type' => 'Const' }, - '14283892' => { - 'BaseType' => '14279865', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter*', + '20767693' => { + 'BaseType' => '20758160', + 'Name' => 'log4cxx::JSONLayout const*', 'Size' => '8', 'Type' => 'Pointer' }, - '14283898' => { - 'BaseType' => '14283892', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter*const', + '20767698' => { + 'BaseType' => '20767693', + 'Name' => 'log4cxx::JSONLayout const*const', 'Size' => '8', 'Type' => 'Const' }, - '14283903' => { - 'BaseType' => '14280023', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter const*', + '20767713' => { + 'BaseType' => '5679788', + 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '14283909' => { - 'BaseType' => '14283903', - 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter const*const', + '20767723' => { + 'BaseType' => '5679793', + 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout const*const', 'Size' => '8', 'Type' => 'Const' }, - '14424344' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '14540880' - } - }, - 'Type' => 'Struct' - }, - '14424430' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { + '207830' => { + 'Header' => 'pool.h', + 'Line' => '32', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => 'pool', + 'offset' => '0', + 'type' => '210753' + }, + '1' => { + 'access' => 'protected', + 'name' => 'release', + 'offset' => '8', + 'type' => '174084' + } + }, + 'Name' => 'log4cxx::helpers::Pool', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class' + }, + '208311' => { + 'Copied' => 1, + 'Header' => 'bytebuffer.h', + 'Line' => '33', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '3516965' + } + }, + 'Name' => 'log4cxx::helpers::ByteBuffer', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class' + }, + '208316' => { + 'Header' => 'classregistration.h', + 'Line' => '28', + 'Name' => 'log4cxx::helpers::ClassRegistration', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '1', + 'Type' => 'Class' + }, + '208360' => { + 'BaseType' => '210717', + 'Header' => 'classregistration.h', + 'Line' => '31', + 'Name' => 'log4cxx::helpers::ClassRegistration::ClassAccessor', + 'NameSpace' => 'log4cxx::helpers::ClassRegistration', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '208437' => { + 'BaseType' => '208316', + 'Name' => 'log4cxx::helpers::ClassRegistration const', + 'Size' => '1', + 'Type' => 'Const' + }, + '208442' => { + 'Header' => 'class.h', + 'Line' => '31', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + } + }, + 'Name' => 'log4cxx::helpers::Class', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Class) [_ZTIN7log4cxx7helpers5ClassE]' + } + }, + '208554' => { + 'BaseType' => '208442', + 'Name' => 'log4cxx::helpers::Class const', + 'Type' => 'Const' + }, + '208559' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '14425962' + 'key' => 'T', + 'type' => '209900' } }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '14540880' - }, - '1' => { - 'key' => '_Dp', - 'type' => '14424344' - } - }, - 'Type' => 'Class' - }, - '14424753' => { - 'Base' => { - '14424344' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '14424344' - } - }, - 'Type' => 'Struct' - }, - '14425006' => { - 'Base' => { - '14424753' => { - 'access' => 'private', - 'pos' => '0' - } + 'Type' => 'Class' + }, + '208912' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '201563' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '208316' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '14424344' - } - }, - 'Type' => 'Struct' - }, - '14425301' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Type' => 'Class' + }, + '209311' => { + 'Header' => 'object.h', + 'Line' => '105', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + } + }, + 'Name' => 'log4cxx::helpers::Object', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) __cxa_pure_virtual', + '40' => '(int (*)(...)) __cxa_pure_virtual', + '48' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Object) [_ZTIN7log4cxx7helpers6ObjectE]' + } + }, + '209529' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'object.h', + 'Line' => '112', + 'Name' => 'log4cxx::helpers::Object::ClazzObject', + 'NameSpace' => 'log4cxx::helpers::Object', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::Object::ClazzObject::~ClazzObject() [_ZN7log4cxx7helpers6Object11ClazzObjectD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Object::ClazzObject::~ClazzObject() [_ZN7log4cxx7helpers6Object11ClazzObjectD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Object::ClazzObject::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers6Object11ClazzObject7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Object::ClazzObject) [_ZTIN7log4cxx7helpers6Object11ClazzObjectE]' + } + }, + '209649' => { + 'BaseType' => '209529', + 'Name' => 'log4cxx::helpers::Object::ClazzObject const', + 'Size' => '8', + 'Type' => 'Const' + }, + '209655' => { + 'BaseType' => '209311', + 'Name' => 'log4cxx::helpers::Object const', + 'Size' => '8', + 'Type' => 'Const' + }, + '209661' => { + 'BaseType' => '51677', + 'Header' => 'logstring.h', + 'Line' => '60', + 'Name' => 'log4cxx::LogString', + 'NameSpace' => 'log4cxx', + 'Size' => '32', + 'Type' => 'Typedef' + }, + '209673' => { + 'BaseType' => '209661', + 'Name' => 'log4cxx::LogString const', + 'Size' => '32', + 'Type' => 'Const' + }, + '209678' => { + 'BaseType' => '191030', + 'Header' => 'logstring.h', + 'Line' => '47', + 'Name' => 'log4cxx::logchar', + 'NameSpace' => 'log4cxx', + 'Size' => '1', + 'Type' => 'Typedef' + }, + '209702' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'action.h', + 'Line' => '35', + 'Memb' => { + '0' => { + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '161848' + } + }, + 'Name' => 'log4cxx::rolling::Action', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::Action) [_ZTIN7log4cxx7rolling6ActionE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::rolling::Action::getClass() const [_ZNK7log4cxx7rolling6Action8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::rolling::Action::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling6Action10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::rolling::Action::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling6Action4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } + }, + '209720' => { + 'Header' => 'action_priv.h', + 'Line' => '27', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + }, + '1' => { + 'name' => 'complete', + 'offset' => '8', + 'type' => '174077' + }, + '2' => { + 'name' => 'interrupted', + 'offset' => '9', + 'type' => '174077' + }, + '3' => { + 'name' => 'pool', + 'offset' => '22', + 'type' => '207830' + }, + '4' => { + 'name' => 'mutex', + 'offset' => '50', + 'type' => '106135' + } + }, + 'Name' => 'struct log4cxx::rolling::Action::ActionPrivate', + 'NameSpace' => 'log4cxx::rolling::Action', + 'Size' => '72', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::Action::ActionPrivate::~ActionPrivate() [_ZN7log4cxx7rolling6Action13ActionPrivateD2Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::Action::ActionPrivate::~ActionPrivate() [_ZN7log4cxx7rolling6Action13ActionPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::Action::ActionPrivate) [_ZTIN7log4cxx7rolling6Action13ActionPrivateE]' + } + }, + '209900' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'action.h', + 'Line' => '37', + 'Name' => 'log4cxx::rolling::Action::ClazzAction', + 'NameSpace' => 'log4cxx::rolling::Action', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::Action::ClazzAction::~ClazzAction() [_ZN7log4cxx7rolling6Action11ClazzActionD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::Action::ClazzAction::~ClazzAction() [_ZN7log4cxx7rolling6Action11ClazzActionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::Action::ClazzAction::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling6Action11ClazzAction7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::Action::ClazzAction) [_ZTIN7log4cxx7rolling6Action11ClazzActionE]' + } + }, + '210049' => { + 'BaseType' => '209900', + 'Name' => 'log4cxx::rolling::Action::ClazzAction const', + 'Size' => '8', + 'Type' => 'Const' + }, + '210559' => { + 'BaseType' => '209702', + 'Name' => 'log4cxx::rolling::Action const', + 'Size' => '16', + 'Type' => 'Const' + }, + '210592' => { + 'BaseType' => '209661', + 'Name' => 'log4cxx::LogString&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210597' => { + 'BaseType' => '209673', + 'Name' => 'log4cxx::LogString const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210602' => { + 'BaseType' => '89533', + 'Name' => 'std::string&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210607' => { + 'BaseType' => '207830', + 'Name' => 'log4cxx::helpers::Pool&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210612' => { + 'BaseType' => '208311', + 'Name' => 'log4cxx::helpers::ByteBuffer&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210617' => { + 'BaseType' => '52939', + 'Name' => 'std::__cxx11::basic_string::const_iterator&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210622' => { + 'BaseType' => '89705', + 'Name' => 'std::wstring&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210627' => { + 'BaseType' => '60042', + 'Name' => 'std::__cxx11::basic_string::const_iterator&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210647' => { + 'BaseType' => '108124', + 'Name' => 'struct std::_Rb_tree_node_base*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '210707' => { + 'BaseType' => '208316', + 'Name' => 'log4cxx::helpers::ClassRegistration*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '210712' => { + 'BaseType' => '210707', + 'Name' => 'log4cxx::helpers::ClassRegistration*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '210717' => { + 'Name' => 'log4cxx::helpers::Class const&(*)()', + 'Return' => '210728', + 'Size' => '8', + 'Type' => 'FuncPtr' + }, + '210722' => { + 'Name' => 'log4cxx::helpers::Class const&()', + 'Return' => '210728', + 'Type' => 'Func' + }, + '210728' => { + 'BaseType' => '208554', + 'Name' => 'log4cxx::helpers::Class const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210733' => { + 'BaseType' => '208437', + 'Name' => 'log4cxx::helpers::ClassRegistration const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '210743' => { + 'BaseType' => '207830', + 'Name' => 'log4cxx::helpers::Pool*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '210748' => { + 'BaseType' => '210743', + 'Name' => 'log4cxx::helpers::Pool*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '210753' => { + 'BaseType' => '210758', + 'Name' => 'struct apr_pool_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '210758' => { + 'Name' => 'struct apr_pool_t', + 'Type' => 'Struct' + }, + '21195631' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'access' => 'private', + 'name' => 'storage', 'offset' => '0', - 'type' => '14550015' + 'type' => '197961' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::StringTokenizer::StringTokenizerPrivate*>', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '14550015' + 'key' => 'T', + 'type' => '1381121' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '14425561' => { - 'Base' => { - '14425006' => { - 'pos' => '0' - }, - '14425301' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::StringTokenizer::StringTokenizerPrivate*>', - 'NameSpace' => 'std', + '21204963' => { + 'BaseType' => '573021', + 'Name' => 'log4cxx::spi::LocationInfo*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '14550015' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '14425962' => { - 'Base' => { - '14425561' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '21207462' => { + 'BaseType' => '21195631', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '14550015' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '14426245' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '14424430' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '21207467' => { + 'BaseType' => '21207462', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '14540880' - }, - '1' => { - 'key' => '_Dp', - 'type' => '14424344' - } - }, - 'Type' => 'Class' - }, - '1444627' => { - 'BaseType' => '1425763', - 'Name' => 'log4cxx::helpers::OutputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1444633' => { - 'BaseType' => '1444627', - 'Name' => 'log4cxx::helpers::OutputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '14477044' => { - 'Base' => { - '14504208' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '208', - 'Memb' => { - '0' => { - 'name' => 'first', - 'offset' => '0', - 'type' => '7336' - }, - '1' => { - 'name' => 'second', - 'offset' => '32', - 'type' => '232317' - } - }, - 'Name' => 'struct std::pairconst, std::shared_ptr >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_T1', - 'type' => '7336' - }, - '1' => { - 'key' => '_T2', - 'type' => '232317' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '14477649' => { - 'Base' => { - '14520202' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::shared_ptr > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::pair, std::allocator >, std::shared_ptr >' - } - }, - 'Type' => 'Class' + '21207733' => { + 'BaseType' => '191037', + 'Name' => 'char const[15]', + 'Size' => '15', + 'Type' => 'Array' }, - '14478051' => { - 'Base' => { - '14520796' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::shared_ptr > > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::_Rb_tree_node, std::allocator >, std::shared_ptr > >' - } - }, - 'Type' => 'Class' + '21208205' => { + 'BaseType' => '1391251', + 'Name' => 'log4cxx::Layout::ClazzLayout*const', + 'Size' => '8', + 'Type' => 'Const' }, - '14478203' => { - 'Base' => { - '556185' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '216', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '32', - 'type' => '14524461' - } - }, - 'Name' => 'struct std::_Rb_tree_nodeconst, std::shared_ptr > >', - 'NameSpace' => 'std', - 'Size' => '80', - 'TParam' => { - '0' => { - 'key' => '_Val', - 'type' => '14477044' - } - }, - 'Type' => 'Struct' + '21208215' => { + 'BaseType' => '1391256', + 'Name' => 'log4cxx::Layout::ClazzLayout const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '14478592' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '436', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '14478606' - } - }, - 'Name' => 'std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Val', - 'type' => '14477044' - }, - '2' => { - 'key' => '_KeyOfValue', - 'type' => '14507178' - }, - '3' => { - 'key' => '_Compare', - 'type' => '772116' - }, - '4' => { - 'key' => '_Alloc', - 'type' => '14477649' - } - }, - 'Type' => 'Class' + '21209470' => { + 'BaseType' => '209661', + 'Name' => 'log4cxx::LogString&&', + 'Size' => '8', + 'Type' => 'RvalueRef' }, - '14478606' => { - 'Base' => { - '14478051' => { - 'pos' => '0' - }, - '556381' => { - 'pos' => '2' - }, - '772192' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '673', - 'Name' => 'struct std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >::_Rb_tree_impl > >', - 'NameSpace' => 'std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >', - 'Protected' => 1, - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key_compare', - 'type' => '772116' - } - }, - 'Type' => 'Struct' + '21212615' => { + 'BaseType' => '21207733', + 'Name' => 'char const[15]&', + 'Size' => '8', + 'Type' => 'Ref' }, - '14483802' => { - 'Copied' => 1, - 'Header' => 'stl_map.h', - 'Line' => '100', + '214992' => { + 'BaseType' => '209720', + 'Name' => 'struct log4cxx::rolling::Action::ActionPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '214997' => { + 'BaseType' => '214992', + 'Name' => 'struct log4cxx::rolling::Action::ActionPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '21518949' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => 'storage', 'offset' => '0', - 'type' => '14483815' + 'type' => '197961' } }, - 'Name' => 'std::map, std::shared_ptr >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Tp', - 'type' => '232317' - } - }, - 'Type' => 'Class' - }, - '14483815' => { - 'BaseType' => '14478592', - 'Header' => 'stl_map.h', - 'Line' => '148', - 'Name' => 'std::map, std::shared_ptr >::_Rep_type', - 'NameSpace' => 'std::map, std::shared_ptr >', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' - }, - '14495412' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '14545574' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => 'T', + 'type' => '564020' } }, 'Type' => 'Class' }, - '14495560' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '14545574' - } - }, - 'Type' => 'Struct' - }, - '14495574' => { - 'BaseType' => '14545574', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '14495597' => { - 'Base' => { - '14495412' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + '21519700' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => 'storage', 'offset' => '0', - 'type' => '14554203' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '202654' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::WideLife >', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '14545574' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => 'T', + 'type' => '429750' } }, 'Type' => 'Class' }, - '14495883' => { - 'BaseType' => '14495574', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + '21528203' => { + 'BaseType' => '21518949', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '14496808' => { - 'Base' => { - '14495597' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '14545574' - } - }, - 'Type' => 'Class' + '21528208' => { + 'BaseType' => '21528203', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' }, - '14499355' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6294384' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '21528299' => { + 'BaseType' => '21519700', + 'Name' => 'log4cxx::helpers::WideLife >*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '14499503' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6294384' - } - }, - 'Type' => 'Struct' + '21528304' => { + 'BaseType' => '21528299', + 'Name' => 'log4cxx::helpers::WideLife >*const', + 'Size' => '8', + 'Type' => 'Const' }, - '14499517' => { - 'BaseType' => '6294384', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + '21528334' => { + 'BaseType' => '1390596', + 'Name' => 'log4cxx::Level*const', + 'Size' => '8', + 'Type' => 'Const' }, - '14499540' => { - 'Base' => { - '14499355' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + '215289' => { + 'BaseType' => '208559', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '21528923' => { + 'BaseType' => '576808', + 'Name' => 'log4cxx::Level::LevelClass*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '21528938' => { + 'BaseType' => '576813', + 'Name' => 'log4cxx::Level::LevelClass const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '215294' => { + 'BaseType' => '215289', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '215339' => { + 'BaseType' => '208912', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '215344' => { + 'BaseType' => '215339', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '215700' => { + 'BaseType' => '209702', + 'Name' => 'log4cxx::rolling::Action*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '215705' => { + 'BaseType' => '215700', + 'Name' => 'log4cxx::rolling::Action*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '215725' => { + 'BaseType' => '210559', + 'Name' => 'log4cxx::rolling::Action const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '215730' => { + 'BaseType' => '215725', + 'Name' => 'log4cxx::rolling::Action const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '215735' => { + 'BaseType' => '171170', + 'Name' => 'std::exception const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '215758' => { + 'BaseType' => '215763', + 'Name' => 'int(**)(...)', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '215763' => { + 'Name' => 'int(*)(...)', + 'Param' => { + '0' => { + 'type' => '-1' + } + }, + 'Return' => '190263', + 'Size' => '8', + 'Type' => 'FuncPtr' + }, + '215774' => { + 'BaseType' => '209900', + 'Name' => 'log4cxx::rolling::Action::ClazzAction*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '215779' => { + 'BaseType' => '215774', + 'Name' => 'log4cxx::rolling::Action::ClazzAction*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '215784' => { + 'BaseType' => '210049', + 'Name' => 'log4cxx::rolling::Action::ClazzAction const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '215789' => { + 'BaseType' => '215784', + 'Name' => 'log4cxx::rolling::Action::ClazzAction const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '215794' => { + 'BaseType' => '209311', + 'Name' => 'log4cxx::helpers::Object*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '215799' => { + 'BaseType' => '209655', + 'Name' => 'log4cxx::helpers::Object const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '215804' => { + 'BaseType' => '209529', + 'Name' => 'log4cxx::helpers::Object::ClazzObject*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '215809' => { + 'BaseType' => '209649', + 'Name' => 'log4cxx::helpers::Object::ClazzObject const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '216583' => { + 'BaseType' => '208442', + 'Name' => 'log4cxx::helpers::Class*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '216588' => { + 'BaseType' => '216583', + 'Name' => 'log4cxx::helpers::Class*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '216673' => { + 'BaseType' => '208554', + 'Name' => 'log4cxx::helpers::Class const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '21942884' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => 'storage', 'offset' => '0', - 'type' => '14554425' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6294384' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '14499826' => { - 'BaseType' => '14499517', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '14500654' => { - 'Base' => { - '14499540' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '6294384' + 'key' => 'T', + 'type' => '5660800' } }, 'Type' => 'Class' }, - '14501009' => { - 'BaseType' => '14500654', - 'Name' => 'std::shared_ptrconst', + '21947472' => { + 'Base' => { + '564884' => { + 'pos' => '0' + } + }, + 'Line' => '33', + 'Memb' => { + '0' => { + 'name' => 'acceptOnMatch', + 'offset' => '36', + 'type' => '174077' + }, + '1' => { + 'name' => 'levelToMatch', + 'offset' => '50', + 'type' => '567044' + } + }, + 'Name' => 'struct log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate', + 'NameSpace' => 'log4cxx::filter::LevelMatchFilter', + 'Private' => 1, + 'Size' => '48', + 'Source' => 'levelmatchfilter.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate::~LevelMatchFilterPrivate() [_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate::~LevelMatchFilterPrivate() [_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate) [_ZTIN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateE]' + } + }, + '21948136' => { + 'BaseType' => '5660794', + 'Name' => 'log4cxx::filter::LevelMatchFilter const', 'Size' => '16', 'Type' => 'Const' }, - '14501255' => { + '21956191' => { + 'BaseType' => '21942884', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '21956196' => { + 'BaseType' => '21956191', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '21956302' => { + 'BaseType' => '21947472', + 'Name' => 'struct log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '21956307' => { + 'BaseType' => '21956302', + 'Name' => 'struct log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '21956932' => { + 'BaseType' => '5679738', + 'Name' => 'log4cxx::filter::LevelMatchFilter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '21956952' => { + 'BaseType' => '21948136', + 'Name' => 'log4cxx::filter::LevelMatchFilter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '21956957' => { + 'BaseType' => '21956952', + 'Name' => 'log4cxx::filter::LevelMatchFilter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '21957016' => { + 'BaseType' => '5679728', + 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '21957026' => { + 'BaseType' => '5679733', + 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '221089' => { + 'BaseType' => '210722', + 'Name' => 'log4cxx::helpers::Class const&()&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '22252583' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '6059004' + 'type' => '9955419' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '14501403' => { + '22252731' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '6059004' + 'type' => '9955419' } }, 'Type' => 'Struct' }, - '14501417' => { - 'BaseType' => '6059004', + '22252745' => { + 'BaseType' => '9955419', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', 'Type' => 'Typedef' }, - '14501440' => { + '22252768' => { 'Base' => { - '14501255' => { + '22252583' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '14554536' + 'type' => '22329242' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '6059004' + 'type' => '9955419' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '14501726' => { - 'BaseType' => '14501417', + '22253049' => { + 'BaseType' => '22252745', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', 'Type' => 'Typedef' }, - '14502554' => { + '22253500' => { 'Base' => { - '14501440' => { + '22252768' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '6059004' - } - }, - 'Type' => 'Class' - }, - '14502909' => { - 'BaseType' => '14502554', - 'Name' => 'std::shared_ptrconst', - 'Size' => '16', - 'Type' => 'Const' - }, - '14504208' => { - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '190', - 'Name' => 'std::__pair_baseconst, std::shared_ptr >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_U1', - 'type' => '7336' - }, - '1' => { - 'key' => '_U2', - 'type' => '232317' - } - }, - 'Type' => 'Class' - }, - '14507146' => { - 'Header' => 'stl_function.h', - 'Line' => '105', - 'Name' => 'struct std::unary_functionconst, std::shared_ptr >, std::__cxx11::basic_stringconst>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Arg', - 'type' => '14477044' - }, - '1' => { - 'key' => '_Result', - 'type' => '7336' - } - }, - 'Type' => 'Struct' - }, - '14507178' => { - 'Base' => { - '14507146' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '1147', - 'Name' => 'struct std::_Select1stconst, std::shared_ptr > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Pair', - 'type' => '14477044' - } - }, - 'Type' => 'Struct' - }, - '14520202' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::shared_ptr > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '14477044' - } - }, - 'Type' => 'Class' - }, - '14520796' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::shared_ptr > > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '14478203' - } - }, - 'Type' => 'Class' - }, - '14524461' => { - 'Copied' => 1, - 'Header' => 'aligned_buffer.h', - 'Line' => '47', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '0', - 'type' => '7073609' - } - }, - 'Name' => 'struct __gnu_cxx::__aligned_membufconst, std::shared_ptr > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '14477044' + 'type' => '9955419' } }, - 'Type' => 'Struct' - }, - '14540867' => { - 'Header' => 'stringtokenizer.h', - 'Line' => '28', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '14426245' - } - }, - 'Name' => 'log4cxx::helpers::StringTokenizer', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', 'Type' => 'Class' }, - '14540880' => { - 'Line' => '29', - 'Memb' => { - '0' => { - 'name' => 'src', - 'offset' => '0', - 'type' => '63706' - }, - '1' => { - 'name' => 'delim', - 'offset' => '32', - 'type' => '63706' - }, - '2' => { - 'name' => 'pos', - 'offset' => '64', - 'type' => '50486' - } - }, - 'Name' => 'struct log4cxx::helpers::StringTokenizer::StringTokenizerPrivate', - 'NameSpace' => 'log4cxx::helpers::StringTokenizer', - 'Private' => 1, - 'Size' => '72', - 'Source' => 'stringtokenizer.cpp', - 'Type' => 'Struct' - }, - '14541096' => { - 'BaseType' => '14540867', - 'Name' => 'log4cxx::helpers::StringTokenizer const', - 'Size' => '8', - 'Type' => 'Const' - }, - '14542055' => { + '22315587' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -108583,958 +111379,317 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '14545917' + 'type' => '9955444' } }, 'Type' => 'Class' }, - '14545351' => { - 'Header' => 'propertysetter.h', - 'Line' => '62', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => 'obj', - 'offset' => '0', - 'type' => '648233' - } - }, - 'Name' => 'log4cxx::config::PropertySetter', - 'NameSpace' => 'log4cxx::config', - 'Size' => '16', - 'Type' => 'Class' - }, - '14545574' => { - 'Base' => { - '4970208' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'rollingfileappender.h', - 'Line' => '79', - 'Name' => 'log4cxx::rolling::RollingFileAppender', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingFileAppender) [_ZTIN7log4cxx7rolling19RollingFileAppenderE]', - '168' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::~RollingFileAppender() [_ZN7log4cxx7rolling19RollingFileAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::~RollingFileAppender() [_ZN7log4cxx7rolling19RollingFileAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::getClass() const [_ZNK7log4cxx7rolling19RollingFileAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling19RollingFileAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling19RollingFileAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling19RollingFileAppender15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling19RollingFileAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::close() [_ZN7log4cxx7rolling19RollingFileAppender5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::WriterAppender::requiresLayout() const [_ZNK7log4cxx14WriterAppender14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::WriterAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '312' => '(int (*)(...)) log4cxx::WriterAppender::checkEntryConditions() const [_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv]', - '32' => '0u', - '320' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::createWriter(std::shared_ptr&) [_ZN7log4cxx7rolling19RollingFileAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE]', - '328' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::subAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling19RollingFileAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '336' => '(int (*)(...)) log4cxx::WriterAppender::writeFooter(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE]', - '344' => '(int (*)(...)) log4cxx::WriterAppender::writeHeader(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE]', - '352' => '(int (*)(...)) log4cxx::FileAppender::setFile(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx12FileAppender7setFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '14545621' => { - 'BaseType' => '14545574', - 'Name' => 'log4cxx::rolling::RollingFileAppender const', - 'Type' => 'Const' - }, - '14545684' => { - 'BaseType' => '14500654', - 'Header' => 'rollingpolicy.h', - 'Line' => '83', - 'Name' => 'log4cxx::rolling::RollingPolicyPtr', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '14545696' => { - 'BaseType' => '14502554', - 'Header' => 'triggeringpolicy.h', - 'Line' => '75', - 'Name' => 'log4cxx::rolling::TriggeringPolicyPtr', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '14545709' => { - 'Base' => { - '648210' => { - 'pos' => '0' - } - }, - 'Line' => '53', - 'Name' => 'log4cxx::PropertyWatchdog', - 'NameSpace' => 'log4cxx', + '22318170' => { + 'BaseType' => '9955419', + 'Name' => 'log4cxx::pattern::LevelPatternConverter const', 'Size' => '16', - 'Source' => 'propertyconfigurator.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::PropertyWatchdog::~PropertyWatchdog() [_ZN7log4cxx16PropertyWatchdogD1Ev]', - '24' => '(int (*)(...)) log4cxx::PropertyWatchdog::~PropertyWatchdog() [_ZN7log4cxx16PropertyWatchdogD0Ev]', - '32' => '(int (*)(...)) log4cxx::PropertyWatchdog::doOnChange() [_ZN7log4cxx16PropertyWatchdog10doOnChangeEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::PropertyWatchdog) [_ZTIN7log4cxx16PropertyWatchdogE]' - } - }, - '14545917' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'propertyconfigurator.h', - 'Line' => '102', - 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator', - 'NameSpace' => 'log4cxx::PropertyConfigurator', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::~ClazzPropertyConfigurator() [_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD1Ev]', - '24' => '(int (*)(...)) log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::~ClazzPropertyConfigurator() [_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::newInstance() const [_ZTch0_h0_NK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::getName[abi:cxx11]() const [_ZNK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::newInstance() const [_ZNK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::PropertyConfigurator::ClazzPropertyConfigurator) [_ZTIN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorE]' - } - }, - '14546140' => { - 'BaseType' => '14545917', - 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator const', - 'Size' => '8', - 'Type' => 'Const' - }, - '14549997' => { - 'BaseType' => '14545351', - 'Name' => 'log4cxx::config::PropertySetter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14550015' => { - 'BaseType' => '14540880', - 'Name' => 'struct log4cxx::helpers::StringTokenizer::StringTokenizerPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14550254' => { - 'BaseType' => '14540867', - 'Name' => 'log4cxx::helpers::StringTokenizer*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14550260' => { - 'BaseType' => '14541096', - 'Name' => 'log4cxx::helpers::StringTokenizer const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14552794' => { - 'BaseType' => '14545709', - 'Name' => 'log4cxx::PropertyWatchdog*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14552800' => { - 'BaseType' => '14552794', - 'Name' => 'log4cxx::PropertyWatchdog*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '14552825' => { - 'BaseType' => '14542055', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14552831' => { - 'BaseType' => '14552825', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', 'Type' => 'Const' }, - '14553246' => { - 'BaseType' => '14483802', - 'Name' => 'std::map, std::shared_ptr >*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14553742' => { - 'BaseType' => '14553748', - 'Name' => 'char const[14]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '14553748' => { - 'BaseType' => '50678', - 'Name' => 'char const[14]', - 'Size' => '14', - 'Type' => 'Array' - }, - '14553764' => { - 'BaseType' => '14553770', - 'Name' => 'char const[17]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '14553770' => { - 'BaseType' => '50678', - 'Name' => 'char const[17]', - 'Size' => '17', - 'Type' => 'Array' - }, - '14554203' => { - 'BaseType' => '14495883', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14554226' => { - 'BaseType' => '14545574', - 'Name' => 'log4cxx::rolling::RollingFileAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14554425' => { - 'BaseType' => '14499826', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14554465' => { - 'BaseType' => '14501009', - 'Name' => 'std::shared_ptrconst&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '14554536' => { - 'BaseType' => '14501726', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '14554576' => { - 'BaseType' => '14502909', - 'Name' => 'std::shared_ptrconst&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '14554673' => { - 'BaseType' => '505063', - 'Name' => 'char const[16]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '14554801' => { - 'BaseType' => '50678', - 'Name' => 'char const[19]', - 'Size' => '19', - 'Type' => 'Array' - }, - '14554817' => { - 'BaseType' => '14554801', - 'Name' => 'char const[19]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '14554845' => { - 'BaseType' => '50678', - 'Name' => 'char const[18]', - 'Size' => '18', - 'Type' => 'Array' - }, - '14554861' => { - 'BaseType' => '14554845', - 'Name' => 'char const[18]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '14554984' => { - 'BaseType' => '14545621', - 'Name' => 'log4cxx::rolling::RollingFileAppender const*', + '22328991' => { + 'BaseType' => '22315587', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '14555932' => { - 'BaseType' => '12820643', - 'Name' => 'log4cxx::PropertyConfigurator const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '14555943' => { - 'BaseType' => '12820483', - 'Name' => 'log4cxx::PropertyConfigurator*const', + '22328996' => { + 'BaseType' => '22328991', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '14555959' => { - 'BaseType' => '835664', - 'Name' => 'log4cxx::spi::LoggerRepositoryPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '14556001' => { - 'BaseType' => '14545917', - 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator*', + '22329242' => { + 'BaseType' => '22253049', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '14556007' => { - 'BaseType' => '14556001', - 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator*const', + '22329272' => { + 'BaseType' => '22253500', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'RvalueRef' }, - '14556012' => { - 'BaseType' => '14546140', - 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator const*', + '22329473' => { + 'BaseType' => '9955419', + 'Name' => 'log4cxx::pattern::LevelPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '14556018' => { - 'BaseType' => '14556012', - 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '147846' => { - 'BaseType' => '50231', - 'Header' => 'atomic_word.h', - 'Line' => '32', - 'Name' => '_Atomic_word', - 'Size' => '4', - 'Type' => 'Typedef' - }, - '149841' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '151432' - } - }, - 'Type' => 'Class' - }, - '1502730' => { - 'BaseType' => '1341471', - 'Name' => 'log4cxx::helpers::ByteBuffer*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1502741' => { - 'BaseType' => '1341477', - 'Name' => 'log4cxx::helpers::ByteBuffer const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15036092' => { - 'BaseType' => '7062496', - 'Name' => 'log4cxx::helpers::ResourceBundle const', - 'Type' => 'Const' - }, - '15036533' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '15036908' - } - }, - 'Type' => 'Class' - }, - '15036891' => { - 'Base' => { - '7062496' => { - 'pos' => '0' - } - }, - 'Header' => 'propertyresourcebundle.h', - 'Line' => '35', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => 'properties', - 'offset' => '24', - 'type' => '832974' - } - }, - 'Name' => 'log4cxx::helpers::PropertyResourceBundle', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '32', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::~PropertyResourceBundle() [_ZN7log4cxx7helpers22PropertyResourceBundleD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::~PropertyResourceBundle() [_ZN7log4cxx7helpers22PropertyResourceBundleD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::getClass() const [_ZNK7log4cxx7helpers22PropertyResourceBundle8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers22PropertyResourceBundle10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers22PropertyResourceBundle4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::getString(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx7helpers22PropertyResourceBundle9getStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::PropertyResourceBundle) [_ZTIN7log4cxx7helpers22PropertyResourceBundleE]' - } - }, - '15036908' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'propertyresourcebundle.h', - 'Line' => '38', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle', - 'NameSpace' => 'log4cxx::helpers::PropertyResourceBundle', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle::~ClazzPropertyResourceBundle() [_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle::~ClazzPropertyResourceBundle() [_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundle7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle) [_ZTIN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleE]' - } - }, - '15037065' => { - 'BaseType' => '15036908', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle const', + '22329478' => { + 'BaseType' => '22329473', + 'Name' => 'log4cxx::pattern::LevelPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '15037421' => { - 'BaseType' => '15036891', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle const', - 'Size' => '32', - 'Type' => 'Const' - }, - '15038558' => { - 'BaseType' => '7062496', - 'Name' => 'log4cxx::helpers::ResourceBundle*', + '22329964' => { + 'BaseType' => '22318170', + 'Name' => 'log4cxx::pattern::LevelPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '15038564' => { - 'BaseType' => '15038558', - 'Name' => 'log4cxx::helpers::ResourceBundle*const', + '22329969' => { + 'BaseType' => '22329964', + 'Name' => 'log4cxx::pattern::LevelPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '15038808' => { - 'BaseType' => '15036533', - 'Name' => 'log4cxx::helpers::WideLife*', + '22330129' => { + 'BaseType' => '9977325', + 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '15038814' => { - 'BaseType' => '15038808', - 'Name' => 'log4cxx::helpers::WideLife*const', + '22330139' => { + 'BaseType' => '9977330', + 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '15039070' => { - 'BaseType' => '15036891', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle*', + '22711229' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5660615' + } + }, + 'Type' => 'Class' }, - '15039076' => { - 'BaseType' => '15039070', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle*const', - 'Size' => '8', + '22715851' => { + 'Base' => { + '564884' => { + 'pos' => '0' + } + }, + 'Line' => '33', + 'Memb' => { + '0' => { + 'name' => 'acceptOnMatch', + 'offset' => '36', + 'type' => '174077' + }, + '1' => { + 'name' => 'levelMin', + 'offset' => '50', + 'type' => '567044' + }, + '2' => { + 'name' => 'levelMax', + 'offset' => '72', + 'type' => '567044' + } + }, + 'Name' => 'struct log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate', + 'NameSpace' => 'log4cxx::filter::LevelRangeFilter', + 'Private' => 1, + 'Size' => '64', + 'Source' => 'levelrangefilter.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate::~LevelRangeFilterPrivate() [_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD2Ev]', + '24' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate::~LevelRangeFilterPrivate() [_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate) [_ZTIN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateE]' + } + }, + '22716591' => { + 'BaseType' => '5660606', + 'Name' => 'log4cxx::filter::LevelRangeFilter const', + 'Size' => '16', 'Type' => 'Const' }, - '15039093' => { - 'BaseType' => '15037421', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle const*', + '22724646' => { + 'BaseType' => '22711229', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15039099' => { - 'BaseType' => '15039093', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle const*const', + '22724651' => { + 'BaseType' => '22724646', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '15039104' => { - 'BaseType' => '15036908', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle*', + '22724757' => { + 'BaseType' => '22715851', + 'Name' => 'struct log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '15039110' => { - 'BaseType' => '15039104', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle*const', + '22724762' => { + 'BaseType' => '22724757', + 'Name' => 'struct log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate*const', 'Size' => '8', 'Type' => 'Const' }, - '15039115' => { - 'BaseType' => '15037065', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle const*', + '22725387' => { + 'BaseType' => '5679723', + 'Name' => 'log4cxx::filter::LevelRangeFilter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '22725407' => { + 'BaseType' => '22716591', + 'Name' => 'log4cxx::filter::LevelRangeFilter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '15039121' => { - 'BaseType' => '15039115', - 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle const*const', + '22725412' => { + 'BaseType' => '22725407', + 'Name' => 'log4cxx::filter::LevelRangeFilter const*const', 'Size' => '8', 'Type' => 'Const' }, - '15054828' => { - 'BaseType' => '15036092', - 'Name' => 'log4cxx::helpers::ResourceBundle const*', + '22725471' => { + 'BaseType' => '5679713', + 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '15054834' => { - 'BaseType' => '15054828', - 'Name' => 'log4cxx::helpers::ResourceBundle const*const', + '22725481' => { + 'BaseType' => '5679718', + 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter const*const', 'Size' => '8', 'Type' => 'Const' }, - '150952' => { - 'Base' => { - '151305' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Copied' => 1, - 'Header' => 'filter.h', - 'Line' => '67', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '127906' - } - }, - 'Name' => 'log4cxx::spi::Filter', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::spi::Filter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi6Filter10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::spi::Filter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi6Filter4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::spi::Filter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3spi6Filter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Filter) [_ZTIN7log4cxx3spi6FilterE]', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '(int (*)(...)) log4cxx::spi::Filter::getClass() const [_ZNK7log4cxx3spi6Filter8getClassEv]' - } - }, - '150962' => { - 'Header' => 'filter_priv.h', - 'Line' => '27', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - }, - '1' => { - 'name' => 'next', - 'offset' => '8', - 'type' => '151271' - } - }, - 'Name' => 'struct log4cxx::spi::Filter::FilterPrivate', - 'NameSpace' => 'log4cxx::spi::Filter', - 'Protected' => 1, - 'Size' => '24', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::Filter::FilterPrivate::~FilterPrivate() [_ZN7log4cxx3spi6Filter13FilterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::Filter::FilterPrivate::~FilterPrivate() [_ZN7log4cxx3spi6Filter13FilterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Filter::FilterPrivate) [_ZTIN7log4cxx3spi6Filter13FilterPrivateE]' - } - }, - '15109259' => { + '23028396' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '151305' + 'type' => '9954903' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '15109407' => { + '23028544' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '151305' + 'type' => '9954903' } }, 'Type' => 'Struct' }, - '15109421' => { - 'BaseType' => '151305', + '23028558' => { + 'BaseType' => '9954903', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', 'Type' => 'Typedef' }, - '15109444' => { + '23028581' => { 'Base' => { - '15109259' => { + '23028396' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '15133780' + 'type' => '23101640' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '151305' + 'type' => '9954903' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '15109730' => { - 'BaseType' => '15109421', + '23028862' => { + 'BaseType' => '23028558', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', 'Type' => 'Typedef' }, - '151101' => { - 'Header' => 'filter.h', - 'Line' => '86', - 'Memb' => { - '0' => { - 'name' => 'DENY', - 'value' => '18446744073709551615 (-1)' - }, - '1' => { - 'name' => 'NEUTRAL', - 'value' => '0' - }, - '2' => { - 'name' => 'ACCEPT', - 'value' => '1' - } - }, - 'Name' => 'enum log4cxx::spi::Filter::FilterDecision', - 'NameSpace' => 'log4cxx::spi::Filter', - 'Size' => '4', - 'Type' => 'Enum' - }, - '15110559' => { + '23029313' => { 'Base' => { - '15109444' => { + '23028581' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '151305' + 'type' => '9954903' } }, 'Type' => 'Class' }, - '151266' => { - 'BaseType' => '150952', - 'Name' => 'log4cxx::spi::Filter const', - 'Type' => 'Const' - }, - '151271' => { - 'BaseType' => '129326', - 'Header' => 'filter.h', - 'Line' => '30', - 'Name' => 'log4cxx::spi::FilterPtr', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '151283' => { - 'BaseType' => '151271', - 'Name' => 'log4cxx::spi::FilterPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '151288' => { - 'BaseType' => '132916', - 'Header' => 'loggingevent.h', - 'Line' => '211', - 'Name' => 'log4cxx::spi::LoggingEventPtr', - 'NameSpace' => 'log4cxx::spi', - 'Type' => 'Typedef' - }, - '151300' => { - 'BaseType' => '151288', - 'Name' => 'log4cxx::spi::LoggingEventPtr const', - 'Type' => 'Const' - }, - '151305' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Header' => 'optionhandler.h', - 'Line' => '34', - 'Name' => 'log4cxx::spi::OptionHandler', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::OptionHandler) [_ZTIN7log4cxx3spi13OptionHandlerE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::spi::OptionHandler::getClass() const [_ZNK7log4cxx3spi13OptionHandler8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' - } - }, - '15132089' => { - 'BaseType' => '14549997', - 'Name' => 'log4cxx::config::PropertySetter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15133780' => { - 'BaseType' => '15109730', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '151414' => { - 'Base' => { - '150952' => { - 'pos' => '0' - } - }, - 'Header' => 'andfilter.h', - 'Line' => '73', - 'Name' => 'log4cxx::filter::AndFilter', - 'NameSpace' => 'log4cxx::filter', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::filter::AndFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter9AndFilter10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::filter::AndFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter9AndFilter4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::spi::Filter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3spi6Filter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::filter::AndFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter9AndFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::AndFilter) [_ZTIN7log4cxx6filter9AndFilterE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::filter::AndFilter::~AndFilter() [_ZN7log4cxx6filter9AndFilterD1Ev]', - '88' => '(int (*)(...)) log4cxx::filter::AndFilter::~AndFilter() [_ZN7log4cxx6filter9AndFilterD0Ev]', - '96' => '(int (*)(...)) log4cxx::filter::AndFilter::getClass() const [_ZNK7log4cxx6filter9AndFilter8getClassEv]' - } - }, - '151432' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'andfilter.h', - 'Line' => '82', - 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter', - 'NameSpace' => 'log4cxx::filter::AndFilter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::AndFilter::ClazzAndFilter::~ClazzAndFilter() [_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::AndFilter::ClazzAndFilter::~ClazzAndFilter() [_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::AndFilter::ClazzAndFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::filter::AndFilter::ClazzAndFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter9AndFilter14ClazzAndFilter7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::filter::AndFilter::ClazzAndFilter::newInstance() const [_ZNK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::AndFilter::ClazzAndFilter) [_ZTIN7log4cxx6filter9AndFilter14ClazzAndFilterE]' - } - }, - '151652' => { - 'BaseType' => '151432', - 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '151657' => { - 'Base' => { - '150962' => { - 'pos' => '0' - } - }, - 'Line' => '31', - 'Memb' => { - '0' => { - 'name' => 'headFilter', - 'offset' => '24', - 'type' => '151271' - }, - '1' => { - 'name' => 'tailFilter', - 'offset' => '40', - 'type' => '151271' - }, - '2' => { - 'name' => 'acceptOnMatch', - 'offset' => '56', - 'type' => '50284' - } - }, - 'Name' => 'struct log4cxx::filter::AndFilter::AndFilterPrivate', - 'NameSpace' => 'log4cxx::filter::AndFilter', - 'Private' => 1, - 'Size' => '64', - 'Source' => 'andfilter.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::AndFilter::AndFilterPrivate::~AndFilterPrivate() [_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::AndFilter::AndFilterPrivate::~AndFilterPrivate() [_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::AndFilter::AndFilterPrivate) [_ZTIN7log4cxx6filter9AndFilter16AndFilterPrivateE]' - } - }, - '152269' => { - 'BaseType' => '151414', - 'Name' => 'log4cxx::filter::AndFilter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '15231870' => { + '23088153' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -109542,306 +111697,534 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '15232246' + 'type' => '9954928' } }, 'Type' => 'Class' }, - '15232246' => { - 'Base' => { - '62698' => { - 'pos' => '0' + '23090698' => { + 'BaseType' => '9954903', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '23101389' => { + 'BaseType' => '23088153', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23101394' => { + 'BaseType' => '23101389', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23101640' => { + 'BaseType' => '23028862', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23101670' => { + 'BaseType' => '23029313', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '23101835' => { + 'BaseType' => '9954903', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23101840' => { + 'BaseType' => '23101835', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23102176' => { + 'BaseType' => '23090698', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23102181' => { + 'BaseType' => '23102176', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23102336' => { + 'BaseType' => '9977355', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23102346' => { + 'BaseType' => '9977360', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2326102' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '2500967' + } + }, + 'Type' => 'Struct' + }, + '2327076' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2329504' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '2500967' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2326102' + } + }, + 'Type' => 'Class' + }, + '2327716' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '2326102' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '2326102' + } + }, + 'Type' => 'Struct' + }, + '2327974' => { + 'Base' => { + '2327716' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '2326102' + } + }, + 'Type' => 'Struct' + }, + '2328281' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '2519981' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ThreadUtility::priv_data*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '2519981' + } + }, + 'Type' => 'Struct' + }, + '2328539' => { + 'Base' => { + '2327974' => { + 'pos' => '0' + }, + '2328281' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ThreadUtility::priv_data*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '2519981' + } + }, + 'Type' => 'Struct' + }, + '2329504' => { + 'Base' => { + '2328539' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '2519981' + } + }, + 'Type' => 'Class' + }, + '2330947' => { + 'Base' => { + '2327076' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '2500967' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2326102' + } + }, + 'Type' => 'Struct' + }, + '2331149' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2330947' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '2500967' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2326102' + } + }, + 'Type' => 'Class' + }, + '2331741' => { + 'Base' => { + '2332692' => { + 'pos' => '0' + }, + '458046' => { + 'pos' => '1' } - }, - 'Header' => 'reader.h', - 'Line' => '36', - 'Name' => 'log4cxx::helpers::Reader::ClazzReader', - 'NameSpace' => 'log4cxx::helpers::Reader', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Reader::ClazzReader::~ClazzReader() [_ZN7log4cxx7helpers6Reader11ClazzReaderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Reader::ClazzReader::~ClazzReader() [_ZN7log4cxx7helpers6Reader11ClazzReaderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Reader::ClazzReader::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers6Reader11ClazzReader7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Reader::ClazzReader) [_ZTIN7log4cxx7helpers6Reader11ClazzReaderE]' - } - }, - '15232403' => { - 'BaseType' => '15232246', - 'Name' => 'log4cxx::helpers::Reader::ClazzReader const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15233622' => { - 'BaseType' => '15231870', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15233628' => { - 'BaseType' => '15233622', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15233789' => { - 'BaseType' => '7789107', - 'Name' => 'log4cxx::helpers::Reader*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15233795' => { - 'BaseType' => '15233789', - 'Name' => 'log4cxx::helpers::Reader*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15233812' => { - 'BaseType' => '15232246', - 'Name' => 'log4cxx::helpers::Reader::ClazzReader*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15233818' => { - 'BaseType' => '15233812', - 'Name' => 'log4cxx::helpers::Reader::ClazzReader*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15233823' => { - 'BaseType' => '15232403', - 'Name' => 'log4cxx::helpers::Reader::ClazzReader const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15233829' => { - 'BaseType' => '15233823', - 'Name' => 'log4cxx::helpers::Reader::ClazzReader const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15297913' => { - 'Base' => { - '1574388' => { - 'pos' => '0' - } - }, - 'Header' => 'relativetimedateformat.h', - 'Line' => '32', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'startTime', - 'offset' => '8', - 'type' => '649587' - } - }, - 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::RelativeTimeDateFormat::~RelativeTimeDateFormat() [_ZN7log4cxx7helpers22RelativeTimeDateFormatD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::RelativeTimeDateFormat::~RelativeTimeDateFormat() [_ZN7log4cxx7helpers22RelativeTimeDateFormatD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::RelativeTimeDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers22RelativeTimeDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::DateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers10DateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::RelativeTimeDateFormat) [_ZTIN7log4cxx7helpers22RelativeTimeDateFormatE]' - } - }, - '15298121' => { - 'BaseType' => '15297913', - 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat const', - 'Size' => '16', - 'Type' => 'Const' - }, - '15299603' => { - 'BaseType' => '15297913', - 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15299609' => { - 'BaseType' => '15299603', - 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15299626' => { - 'BaseType' => '15298121', - 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15299632' => { - 'BaseType' => '15299626', - 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '153109' => { - 'BaseType' => '124017', - 'Name' => 'std::_Sp_counted_base<2>*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '153315' => { - 'BaseType' => '150962', - 'Name' => 'struct log4cxx::spi::Filter::FilterPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '153321' => { - 'BaseType' => '153315', - 'Name' => 'struct log4cxx::spi::Filter::FilterPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15346096' => { + }, + 'Copied' => 1, + 'Header' => 'std_function.h', + 'Line' => '334', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_invoker', + 'offset' => '36', + 'type' => '2332130' + } + }, + 'Name' => 'std::function', + 'NameSpace' => 'std', + 'Size' => '32', + 'TParam' => { + '0' => { + 'key' => '_Signature', + 'type' => '198458' + } + }, + 'Type' => 'Class' + }, + '2332130' => { + 'BaseType' => '2520246', + 'Header' => 'std_function.h', + 'Line' => '666', + 'Name' => 'std::function::_Invoker_type', + 'NameSpace' => 'std::function', + 'Private' => 1, + 'Size' => '8', + 'Type' => 'Typedef' + }, + '2332209' => { + 'Base' => { + '2332717' => { + 'pos' => '0' + }, + '458046' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'std_function.h', + 'Line' => '334', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_invoker', + 'offset' => '36', + 'type' => '2332613' + } + }, + 'Name' => 'std::function, std::thread::id, unsigned long)>', + 'NameSpace' => 'std', + 'Size' => '32', + 'TParam' => { + '0' => { + 'key' => '_Signature', + 'type' => '2699093' + } + }, + 'Type' => 'Class' + }, + '2332613' => { + 'BaseType' => '2520298', + 'Header' => 'std_function.h', + 'Line' => '666', + 'Name' => 'std::function, std::thread::id, unsigned long)>::_Invoker_type', + 'NameSpace' => 'std::function, std::thread::id, unsigned long)>', + 'Private' => 1, + 'Size' => '8', + 'Type' => 'Typedef' + }, + '2332692' => { + 'Header' => 'refwrap.h', + 'Line' => '55', + 'Name' => 'struct std::_Maybe_unary_or_binary_function', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Res', + 'type' => '1' + } + }, + 'Type' => 'Struct' + }, + '2332717' => { + 'Header' => 'refwrap.h', + 'Line' => '55', + 'Name' => 'struct std::_Maybe_unary_or_binary_function >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Res', + 'type' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '51677' + } + }, + 'Type' => 'Struct' + }, + '23397470' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '15370247' + 'type' => '23457925' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '15346244' => { + '23397618' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '15370247' + 'type' => '23457925' } }, 'Type' => 'Struct' }, - '15346258' => { - 'BaseType' => '15370247', + '23397632' => { + 'BaseType' => '23457925', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Size' => '16', 'Type' => 'Typedef' }, - '15346281' => { + '23397655' => { 'Base' => { - '15346096' => { + '23397470' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '15372612' + 'type' => '23469443' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '15370247' + 'type' => '23457925' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '15346567' => { - 'BaseType' => '15346258', + '23397936' => { + 'BaseType' => '23397632', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Size' => '16', 'Type' => 'Typedef' }, - '15346977' => { + '23398387' => { 'Base' => { - '15346281' => { + '23397655' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '15370247' + 'type' => '23457925' } }, 'Type' => 'Class' }, - '153651' => { - 'BaseType' => '129013', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '153674' => { - 'BaseType' => '150952', - 'Name' => 'log4cxx::spi::Filter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '153680' => { - 'BaseType' => '129326', - 'Name' => 'std::shared_ptr*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15368595' => { + '23455953' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -109849,1261 +112232,1423 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '15370281' + 'type' => '23457959' } }, 'Type' => 'Class' }, - '15370247' => { + '23457925' => { 'Base' => { - '2271385' => { + '3121054' => { 'pos' => '0' } }, - 'Header' => 'relativetimepatternconverter.h', + 'Header' => 'lineseparatorpatternconverter.h', 'Line' => '35', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter', 'NameSpace' => 'log4cxx::pattern', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '112' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', '16' => '0u', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::RelativeTimePatternConverter) [_ZTIN7log4cxx7pattern28RelativeTimePatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::~RelativeTimePatternConverter() [_ZN7log4cxx7pattern28RelativeTimePatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::~RelativeTimePatternConverter() [_ZN7log4cxx7pattern28RelativeTimePatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::getClass() const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter8getClassEv]', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LineSeparatorPatternConverter) [_ZTIN7log4cxx7pattern29LineSeparatorPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::~LineSeparatorPatternConverter() [_ZN7log4cxx7pattern29LineSeparatorPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::~LineSeparatorPatternConverter() [_ZN7log4cxx7pattern29LineSeparatorPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::getClass() const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter8getClassEv]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + '80' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '15370281' => { + '23457959' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'relativetimepatternconverter.h', - 'Line' => '38', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter', - 'NameSpace' => 'log4cxx::pattern::RelativeTimePatternConverter', + 'Header' => 'lineseparatorpatternconverter.h', + 'Line' => '39', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter', + 'NameSpace' => 'log4cxx::pattern::LineSeparatorPatternConverter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter::~ClazzRelativeTimePatternConverter() [_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter::~ClazzRelativeTimePatternConverter() [_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD0Ev]', + '16' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter::~ClazzLineSeparatorPatternConverter() [_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter::~ClazzLineSeparatorPatternConverter() [_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter) [_ZTIN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterE]' + '40' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter) [_ZTIN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterE]' } }, - '15370439' => { - 'BaseType' => '15370281', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter const', + '23458105' => { + 'BaseType' => '23457959', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '15370843' => { - 'BaseType' => '15370247', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter const', + '23458542' => { + 'BaseType' => '23457925', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter const', 'Size' => '16', 'Type' => 'Const' }, - '15372322' => { - 'BaseType' => '15368595', - 'Name' => 'log4cxx::helpers::WideLife*', + '23469192' => { + 'BaseType' => '23455953', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15372328' => { - 'BaseType' => '15372322', - 'Name' => 'log4cxx::helpers::WideLife*const', + '23469197' => { + 'BaseType' => '23469192', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '15372612' => { - 'BaseType' => '15346567', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15372630' => { - 'BaseType' => '15370247', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter*', + '23469443' => { + 'BaseType' => '23397936', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '15372636' => { - 'BaseType' => '15372630', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15372658' => { - 'BaseType' => '15346977', - 'Name' => 'std::shared_ptr&&', + '23469473' => { + 'BaseType' => '23398387', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', 'Type' => 'RvalueRef' }, - '15372829' => { - 'BaseType' => '15370843', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15372835' => { - 'BaseType' => '15372829', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15373140' => { - 'BaseType' => '15370281', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15373146' => { - 'BaseType' => '15373140', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15373151' => { - 'BaseType' => '15370439', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter const*', + '23469553' => { + 'BaseType' => '23457925', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '15373157' => { - 'BaseType' => '15373151', - 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '153747' => { - 'BaseType' => '149841', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '153753' => { - 'BaseType' => '153747', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '153872' => { - 'BaseType' => '151657', - 'Name' => 'struct log4cxx::filter::AndFilter::AndFilterPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '153878' => { - 'BaseType' => '153872', - 'Name' => 'struct log4cxx::filter::AndFilter::AndFilterPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '154210' => { - 'BaseType' => '151414', - 'Name' => 'log4cxx::filter::AndFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '154216' => { - 'BaseType' => '154210', - 'Name' => 'log4cxx::filter::AndFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '154244' => { - 'BaseType' => '152269', - 'Name' => 'log4cxx::filter::AndFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '154250' => { - 'BaseType' => '154244', - 'Name' => 'log4cxx::filter::AndFilter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '154255' => { - 'BaseType' => '151283', - 'Name' => 'log4cxx::spi::FilterPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '154261' => { - 'BaseType' => '151300', - 'Name' => 'log4cxx::spi::LoggingEventPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '154314' => { - 'BaseType' => '151432', - 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '154320' => { - 'BaseType' => '154314', - 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '154325' => { - 'BaseType' => '151652', - 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '154331' => { - 'BaseType' => '154325', - 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '154342' => { - 'BaseType' => '66130', - 'Name' => 'log4cxx::helpers::Object*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '15448298' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '15036891' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '15448446' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '15036891' - } - }, - 'Type' => 'Struct' - }, - '15448460' => { - 'BaseType' => '15036891', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '15448483' => { - 'Base' => { - '15448298' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '15480010' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '15036891' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '15448769' => { - 'BaseType' => '15448460', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '15449709' => { - 'Base' => { - '15448483' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '15036891' - } - }, - 'Type' => 'Class' - }, - '15476711' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'resourcebundle.h', - 'Line' => '38', - 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle', - 'NameSpace' => 'log4cxx::helpers::ResourceBundle', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::ClazzResourceBundle::~ClazzResourceBundle() [_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::ClazzResourceBundle::~ClazzResourceBundle() [_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::ClazzResourceBundle::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14ResourceBundle19ClazzResourceBundle7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ResourceBundle::ClazzResourceBundle) [_ZTIN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleE]' - } - }, - '15476869' => { - 'BaseType' => '15476711', - 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle const', + '23469558' => { + 'BaseType' => '23469553', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '15477748' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '15476711' - } - }, - 'Type' => 'Class' - }, - '15479850' => { - 'BaseType' => '15477748', - 'Name' => 'log4cxx::helpers::WideLife*', + '23469894' => { + 'BaseType' => '23458542', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '15479856' => { - 'BaseType' => '15479850', - 'Name' => 'log4cxx::helpers::WideLife*const', + '23469899' => { + 'BaseType' => '23469894', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '15480010' => { - 'BaseType' => '15448769', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '15481020' => { - 'BaseType' => '15476711', - 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle*', + '23470054' => { + 'BaseType' => '23457959', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '15481026' => { - 'BaseType' => '15481020', - 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle*const', + '23470059' => { + 'BaseType' => '23470054', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '15481031' => { - 'BaseType' => '15476869', - 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle const*', + '23470064' => { + 'BaseType' => '23458105', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '15481037' => { - 'BaseType' => '15481031', - 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle const*const', + '23470069' => { + 'BaseType' => '23470064', + 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '1552069' => { + '2350416' => { + 'Copied' => 1, + 'Header' => 'stl_map.h', + 'Line' => '100', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2350429' + } + }, + 'Name' => 'std::map, DiscardSummary>', + 'NameSpace' => 'std', + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key', + 'type' => '51677' + }, + '1' => { + 'key' => '_Tp', + 'type' => '2521258' + } + }, + 'Type' => 'Class' + }, + '2350429' => { + 'BaseType' => '2359748', + 'Header' => 'stl_map.h', + 'Line' => '150', + 'Name' => 'std::map, DiscardSummary>::_Rep_type', + 'NameSpace' => 'std::map, DiscardSummary>', + 'Private' => 1, + 'Size' => '48', + 'Type' => 'Typedef' + }, + '2352857' => { + 'Base' => { + '2469072' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '517723' + } + }, + 'Type' => 'Class' + }, + '2353147' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '2352857' + } + }, + 'Type' => 'Struct' + }, + '2353161' => { + 'BaseType' => '1390566', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '2353638' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Header' => 'stl_vector.h', + 'Line' => '84', + 'Memb' => { + '0' => { + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '2353837' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1575279' + 'type' => '517723' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '2352857' } }, 'Type' => 'Struct' }, - '1552155' => { + '2353651' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Header' => 'stl_vector.h', + 'Line' => '91', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', + 'name' => '_M_start', 'offset' => '0', - 'type' => '1553692' + 'type' => '2353825' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '2353825' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '2353825' } }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '2353825' => { + 'BaseType' => '2469544', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', 'Size' => '8', + 'Type' => 'Typedef' + }, + '2353837' => { + 'Base' => { + '2352857' => { + 'pos' => '0' + }, + '2353651' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '2354662' => { + 'Base' => { + '2353638' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', + 'NameSpace' => 'std', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1575279' - }, - '1' => { - 'key' => '_Dp', - 'type' => '1552069' + 'type' => '517723' } }, 'Type' => 'Class' }, - '1552478' => { + '2357994' => { 'Base' => { - '1552069' => { + '2377728' => { + 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Header' => 'stl_pair.h', + 'Line' => '211', + 'Memb' => { + '0' => { + 'name' => 'first', + 'offset' => '0', + 'type' => '58800' + }, + '1' => { + 'name' => 'second', + 'offset' => '50', + 'type' => '2521258' + } + }, + 'Name' => 'struct std::pairconst, DiscardSummary>', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '56', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' + 'key' => '_T1', + 'type' => '58800' }, '1' => { - 'key' => '_Head', - 'type' => '1552069' + 'key' => '_T2', + 'type' => '2521258' } }, 'Type' => 'Struct' }, - '1552731' => { + '2358353' => { 'Base' => { - '1552478' => { - 'access' => 'private', + '2470949' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, DiscardSummary> >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '1552069' + 'name' => 'std::pair, std::allocator >, DiscardSummary>' } }, - 'Type' => 'Struct' + 'Type' => 'Class' + }, + '2359022' => { + 'Base' => { + '2471573' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, DiscardSummary> > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'name' => 'std::_Rb_tree_node, std::allocator >, DiscardSummary> >' + } + }, + 'Type' => 'Class' }, - '1553030' => { + '2359312' => { + 'Base' => { + '108124' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'stl_tree.h', + 'Line' => '216', 'Memb' => { '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '1576114' + 'name' => '_M_storage', + 'offset' => '50', + 'type' => '2474139' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::pattern::CachedDateFormat::CachedDateFormatPriv*>', + 'Name' => 'struct std::_Rb_tree_nodeconst, DiscardSummary> >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '88', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Val', + 'type' => '2357994' + } + }, + 'Type' => 'Struct' + }, + '2359435' => { + 'Header' => 'stl_function.h', + 'Line' => '131', + 'Name' => 'struct std::binary_function, std::__cxx11::basic_string, bool>', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Arg1', + 'type' => '51677' }, '1' => { - 'key' => '_Head', - 'type' => '1576114' + 'key' => '_Arg2', + 'type' => '51677' + }, + '2' => { + 'key' => '_Result', + 'type' => '174077' } }, 'Type' => 'Struct' }, - '1553290' => { + '2359512' => { 'Base' => { - '1552731' => { + '2359435' => { 'pos' => '0' - }, - '1553030' => { - 'access' => 'private', - 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::pattern::CachedDateFormat::CachedDateFormatPriv*>', + 'Header' => 'stl_function.h', + 'Line' => '395', + 'Name' => 'struct std::less >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '1576114' + 'key' => '_Tp', + 'type' => '51677' } }, 'Type' => 'Struct' }, - '1553692' => { - 'Base' => { - '1553290' => { - 'pos' => '0' - } - }, + '2359588' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Header' => 'stl_tree.h', + 'Line' => '142', + 'Memb' => { + '0' => { + 'name' => '_M_key_compare', + 'offset' => '0', + 'type' => '2359512' + } + }, + 'Name' => 'struct std::_Rb_tree_key_compare > >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => undef, - 'type' => '1576114' + 'key' => '_Key_compare', + 'type' => '2359512' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '1554022' => { + '2359748' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Header' => 'stl_tree.h', + 'Line' => '425', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', + 'access' => 'protected', + 'name' => '_M_impl', 'offset' => '0', - 'type' => '1552155' + 'type' => '2359762' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::_Rb_tree, std::pairconst, DiscardSummary>, std::_Select1stconst, DiscardSummary> >, std::less >, std::allocator, std::allocator >, DiscardSummary> > >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '48', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '1575279' + 'key' => '_Key', + 'type' => '51677' }, '1' => { - 'key' => '_Dp', - 'type' => '1552069' + 'key' => '_Val', + 'type' => '2357994' + }, + '2' => { + 'key' => '_KeyOfValue', + 'type' => '2413302' + }, + '3' => { + 'key' => '_Compare', + 'type' => '2359512' + }, + '4' => { + 'key' => '_Alloc', + 'type' => '2358353' } }, 'Type' => 'Class' }, - '1554648' => { + '2359762' => { + 'Base' => { + '108320' => { + 'pos' => '2' + }, + '2359022' => { + 'pos' => '0' + }, + '2359588' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '660', + 'Name' => 'struct std::_Rb_tree, std::pairconst, DiscardSummary>, std::_Select1stconst, DiscardSummary> >, std::less >, std::allocator, std::allocator >, DiscardSummary> > >::_Rb_tree_impl > >', + 'NameSpace' => 'std::_Rb_tree, std::pairconst, DiscardSummary>, std::_Select1stconst, DiscardSummary> >, std::less >, std::allocator, std::allocator >, DiscardSummary> > >', + 'Protected' => 1, + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key_compare', + 'type' => '2359512' + } + }, + 'Type' => 'Struct' + }, + '2365674' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1574388' + 'type' => '558569' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '1554796' => { + '2365822' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1574388' + 'type' => '558569' } }, 'Type' => 'Struct' }, - '1554810' => { - 'BaseType' => '1574388', + '2365836' => { + 'BaseType' => '558569', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '1555823' => { + '2365859' => { 'Base' => { - '1554648' => { + '2365674' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '1576544' + 'type' => '2522174' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1574388' + 'type' => '558569' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '1556110' => { - 'BaseType' => '1554810', + '2366141' => { + 'BaseType' => '2365836', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '1556423' => { + '2367072' => { 'Base' => { - '1555823' => { + '2365859' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1574388' + 'type' => '558569' + } + }, + 'Type' => 'Class' + }, + '23775459' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '23841129' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '23775607' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '23841129' + } + }, + 'Type' => 'Struct' + }, + '23775621' => { + 'BaseType' => '23841129', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '23775644' => { + 'Base' => { + '23775459' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '23853159' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '23841129' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '23775925' => { + 'BaseType' => '23775621', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '23776856' => { + 'Base' => { + '23775644' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '23841129' + } + }, + 'Type' => 'Class' + }, + '2377728' => { + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '189', + 'Name' => 'std::__pair_baseconst, DiscardSummary>', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_U1', + 'type' => '58800' + }, + '1' => { + 'key' => '_U2', + 'type' => '2521258' } }, 'Type' => 'Class' }, - '1557484' => { + '23838998' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '23841163' + } + }, + 'Type' => 'Class' + }, + '23841129' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, + 'Header' => 'literalpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern23LiteralPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LiteralPatternConverter) [_ZTIN7log4cxx7pattern23LiteralPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::~LiteralPatternConverter() [_ZN7log4cxx7pattern23LiteralPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::~LiteralPatternConverter() [_ZN7log4cxx7pattern23LiteralPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::getClass() const [_ZNK7log4cxx7pattern23LiteralPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23LiteralPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23LiteralPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern23LiteralPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } + }, + '23841163' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'literalpatternconverter.h', + 'Line' => '40', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter', + 'NameSpace' => 'log4cxx::pattern::LiteralPatternConverter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter::~ClazzLiteralPatternConverter() [_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter::~ClazzLiteralPatternConverter() [_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter) [_ZTIN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterE]' + } + }, + '23841309' => { + 'BaseType' => '23841163', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23841314' => { + 'Base' => { + '3120371' => { + 'pos' => '0' + } + }, + 'Line' => '31', + 'Memb' => { + '0' => { + 'name' => 'literal', + 'offset' => '114', + 'type' => '209673' + } + }, + 'Name' => 'struct log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate', + 'NameSpace' => 'log4cxx::pattern::LiteralPatternConverter', + 'Private' => 1, + 'Size' => '104', + 'Source' => 'literalpatternconverter.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate::~LiteralPatternConverterPrivate() [_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate::~LiteralPatternConverterPrivate() [_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate) [_ZTIN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateE]' + } + }, + '23841924' => { + 'BaseType' => '23841129', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '23852633' => { + 'BaseType' => '23838998', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23852638' => { + 'BaseType' => '23852633', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23852744' => { + 'BaseType' => '23841314', + 'Name' => 'struct log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23852749' => { + 'BaseType' => '23852744', + 'Name' => 'struct log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23853159' => { + 'BaseType' => '23775925', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23853189' => { + 'BaseType' => '23776856', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '23853214' => { + 'BaseType' => '23841129', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23853219' => { + 'BaseType' => '23853214', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23853671' => { + 'BaseType' => '23841924', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23853676' => { + 'BaseType' => '23853671', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23853870' => { + 'BaseType' => '23841163', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23853875' => { + 'BaseType' => '23853870', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '23853880' => { + 'BaseType' => '23841309', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '23853885' => { + 'BaseType' => '23853880', + 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2413246' => { + 'Header' => 'stl_function.h', + 'Line' => '117', + 'Name' => 'struct std::unary_functionconst, DiscardSummary>, std::__cxx11::basic_stringconst>', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Arg', + 'type' => '2357994' + }, + '1' => { + 'key' => '_Result', + 'type' => '58800' + } + }, + 'Type' => 'Struct' + }, + '2413302' => { 'Base' => { - '3358780' => { + '2413246' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'stl_function.h', + 'Line' => '1166', + 'Name' => 'struct std::_Select1stconst, DiscardSummary> >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { - 'type' => '3413936' + 'key' => '_Pair', + 'type' => '2357994' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '15713812' => { + '24208010' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '6293085' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'type' => '24258338' + } + }, + 'Type' => 'Class' + }, + '24208015' => { + 'Copied' => 1, + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'type' => '24264746' + } + }, + 'Type' => 'Class' + }, + '24208020' => { + 'Copied' => 1, + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'type' => '24265467' + } + }, + 'Type' => 'Class' + }, + '24208025' => { + 'Copied' => 1, + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'type' => '24263982' } }, 'Type' => 'Class' }, - '15713960' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', + '24254532' => { + 'Copied' => 1, + 'Header' => 'loader.h', + 'Line' => '33', + 'Name' => 'log4cxx::helpers::Loader', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '1', + 'Type' => 'Class' + }, + '24258338' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'xml.h', + 'Line' => '50', + 'Name' => 'log4cxx::helpers::XMLDOMNode', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) __cxa_pure_virtual', + '112' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMNode) [_ZTIN7log4cxx7helpers10XMLDOMNodeE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::helpers::XMLDOMNode::getClass() const [_ZNK7log4cxx7helpers10XMLDOMNode8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } + }, + '24258355' => { + 'Header' => 'xml.h', + 'Line' => '54', + 'Memb' => { + '0' => { + 'name' => 'NOT_IMPLEMENTED_NODE', + 'value' => '0' + }, + '1' => { + 'name' => 'ELEMENT_NODE', + 'value' => '1' + }, + '2' => { + 'name' => 'DOCUMENT_NODE', + 'value' => '9' + } + }, + 'Name' => 'enum log4cxx::helpers::XMLDOMNode::XMLDOMNodeType', + 'NameSpace' => 'log4cxx::helpers::XMLDOMNode', + 'Size' => '4', + 'Type' => 'Enum' + }, + '24258391' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'xml.h', + 'Line' => '53', + 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode', + 'NameSpace' => 'log4cxx::helpers::XMLDOMNode', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode::~ClazzXMLDOMNode() [_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode::~ClazzXMLDOMNode() [_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNode7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode) [_ZTIN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeE]' + } + }, + '24258537' => { + 'BaseType' => '24258391', + 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24258775' => { + 'BaseType' => '24258338', + 'Name' => 'log4cxx::helpers::XMLDOMNode const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24258951' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '6293085' + 'key' => 'T', + 'type' => '209529' } }, - 'Type' => 'Struct' - }, - '15713974' => { - 'BaseType' => '6293085', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + 'Type' => 'Class' }, - '15713997' => { - 'Base' => { - '15713812' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + '24260154' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => 'storage', 'offset' => '0', - 'type' => '15777770' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '197961' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '6293085' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => 'T', + 'type' => '566170' } }, 'Type' => 'Class' }, - '15714283' => { - 'BaseType' => '15713974', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '15715208' => { - 'Base' => { - '15713997' => { - 'pos' => '0' - } + '24260502' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '6293085' + 'key' => 'T', + 'type' => '1378023' } }, 'Type' => 'Class' }, - '15715892' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', + '24260850' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '15770775' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => 'T', + 'type' => '567956' } }, 'Type' => 'Class' }, - '15716040' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', + '24261198' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '15770775' + 'key' => 'T', + 'type' => '565063' } }, - 'Type' => 'Struct' - }, - '15716054' => { - 'BaseType' => '15770775', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + 'Type' => 'Class' }, - '15716077' => { - 'Base' => { - '15715892' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + '24261546' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => 'storage', 'offset' => '0', - 'type' => '15777886' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '197961' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '15770775' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => 'T', + 'type' => '566036' } }, 'Type' => 'Class' }, - '15716363' => { - 'BaseType' => '15716054', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '15717288' => { - 'Base' => { - '15716077' => { - 'pos' => '0' - } + '24261894' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '15770775' + 'key' => 'T', + 'type' => '565902' } }, 'Type' => 'Class' }, - '15717972' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', + '24262242' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '15769233' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => 'T', + 'type' => '565607' } }, 'Type' => 'Class' }, - '15718120' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', + '24262590' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '15769233' + 'key' => 'T', + 'type' => '24273662' } }, - 'Type' => 'Struct' - }, - '15718134' => { - 'BaseType' => '15769233', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + 'Type' => 'Class' }, - '15718157' => { - 'Base' => { - '15717972' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + '24262938' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => 'storage', 'offset' => '0', - 'type' => '15778002' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '197961' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '15769233' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => 'T', + 'type' => '3118502' } }, 'Type' => 'Class' }, - '15718443' => { - 'BaseType' => '15718134', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '15719368' => { - 'Base' => { - '15718157' => { - 'pos' => '0' - } + '24263286' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '15769233' + 'key' => 'T', + 'type' => '24258391' } }, 'Type' => 'Class' }, - '1574388' => { - 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'dateformat.h', - 'Line' => '33', - 'Name' => 'log4cxx::helpers::DateFormat', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '64' => '(int (*)(...)) log4cxx::helpers::DateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers10DateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DateFormat) [_ZTIN7log4cxx7helpers10DateFormatE]' - } - }, - '1574499' => { - 'BaseType' => '1574388', - 'Name' => 'log4cxx::helpers::DateFormat const', - 'Type' => 'Const' - }, - '1574504' => { - 'BaseType' => '1556423', - 'Header' => 'dateformat.h', - 'Line' => '87', - 'Name' => 'log4cxx::helpers::DateFormatPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '1574516' => { - 'BaseType' => '1574504', - 'Name' => 'log4cxx::helpers::DateFormatPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '1574521' => { - 'BaseType' => '1557484', - 'Header' => 'timezone.h', - 'Line' => '31', - 'Name' => 'log4cxx::helpers::TimeZonePtr', - 'NameSpace' => 'log4cxx::helpers', - 'Type' => 'Typedef' - }, - '1574533' => { - 'BaseType' => '1574521', - 'Name' => 'log4cxx::helpers::TimeZonePtr const', - 'Type' => 'Const' - }, - '1575233' => { - 'Base' => { - '1574388' => { - 'pos' => '0' - } - }, - 'Header' => 'cacheddateformat.h', - 'Line' => '27', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '1554022' - } - }, - 'Name' => 'log4cxx::pattern::CachedDateFormat', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::~CachedDateFormat() [_ZN7log4cxx7pattern16CachedDateFormatD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::~CachedDateFormat() [_ZN7log4cxx7pattern16CachedDateFormatD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern16CachedDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS_7helpers4PoolE]', - '64' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7pattern16CachedDateFormat11setTimeZoneERKSt10shared_ptrINS_7helpers8TimeZoneEE]', - '72' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern16CachedDateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS_7helpers4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::CachedDateFormat) [_ZTIN7log4cxx7pattern16CachedDateFormatE]' - } - }, - '1575279' => { - 'Line' => '29', - 'Memb' => { - '0' => { - 'name' => 'formatter', - 'offset' => '0', - 'type' => '1574504' - }, - '1' => { - 'name' => 'millisecondStart', - 'offset' => '16', - 'type' => '50231' - }, - '2' => { - 'name' => 'slotBegin', - 'offset' => '24', - 'type' => '649587' - }, - '3' => { - 'name' => 'cache', - 'offset' => '32', - 'type' => '63706' - }, - '4' => { - 'name' => 'expiration', - 'offset' => '64', - 'type' => '50239' - }, - '5' => { - 'name' => 'previousTime', - 'offset' => '72', - 'type' => '649587' - } - }, - 'Name' => 'struct log4cxx::pattern::CachedDateFormat::CachedDateFormatPriv', - 'NameSpace' => 'log4cxx::pattern::CachedDateFormat', - 'Private' => 1, - 'Size' => '80', - 'Source' => 'cacheddateformat.cpp', - 'Type' => 'Struct' - }, - '1576001' => { - 'BaseType' => '1575233', - 'Name' => 'log4cxx::pattern::CachedDateFormat const', - 'Size' => '16', - 'Type' => 'Const' - }, - '1576114' => { - 'BaseType' => '1575279', - 'Name' => 'struct log4cxx::pattern::CachedDateFormat::CachedDateFormatPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1576544' => { - 'BaseType' => '1556110', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1576602' => { - 'BaseType' => '407318', - 'Name' => 'log4cxx::logchar const[11]', - 'Size' => '11', - 'Type' => 'Array' - }, - '1576618' => { - 'BaseType' => '1576602', - 'Name' => 'log4cxx::logchar const[11] const', - 'Size' => '11', - 'Type' => 'Const' - }, - '15766329' => { + '24263634' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -111111,249 +113656,350 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '15769305' + 'type' => '24263999' } }, 'Type' => 'Class' }, - '1576641' => { - 'BaseType' => '407318', - 'Name' => 'log4cxx::logchar const[4]', - 'Size' => '4', - 'Type' => 'Array' - }, - '1576657' => { - 'BaseType' => '1576641', - 'Name' => 'log4cxx::logchar const[4] const', - 'Size' => '4', - 'Type' => 'Const' - }, - '1576783' => { - 'BaseType' => '1575233', - 'Name' => 'log4cxx::pattern::CachedDateFormat*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1576789' => { - 'BaseType' => '1576783', - 'Name' => 'log4cxx::pattern::CachedDateFormat*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1576794' => { - 'BaseType' => '1574516', - 'Name' => 'log4cxx::helpers::DateFormatPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1576800' => { - 'BaseType' => '1576001', - 'Name' => 'log4cxx::pattern::CachedDateFormat const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1576806' => { - 'BaseType' => '1576800', - 'Name' => 'log4cxx::pattern::CachedDateFormat const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1576811' => { - 'BaseType' => '1574533', - 'Name' => 'log4cxx::helpers::TimeZonePtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '15769233' => { + '24263982' => { 'Base' => { - '6059004' => { - 'pos' => '1', - 'virtual' => 1 - }, - '6292740' => { - 'pos' => '0', - 'virtual' => 1 - } + '24258338' => { + 'pos' => '0', + 'virtual' => 1 + } }, 'Copied' => 1, - 'Header' => 'timebasedrollingpolicy.h', - 'Line' => '140', + 'Header' => 'xml.h', + 'Line' => '86', + 'Name' => 'log4cxx::helpers::XMLDOMDocument', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::helpers::XMLDOMDocument::getClass() const [_ZNK7log4cxx7helpers14XMLDOMDocument8getClassEv]', + '112' => '(int (*)(...)) __cxa_pure_virtual', + '120' => '(int (*)(...)) __cxa_pure_virtual', + '128' => '(int (*)(...)) __cxa_pure_virtual', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '144' => '(int (*)(...)) __cxa_pure_virtual', + '152' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '160' => '(int (*)(...)) __cxa_pure_virtual', + '168' => '(int (*)(...)) __cxa_pure_virtual', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMDocument) [_ZTIN7log4cxx7helpers14XMLDOMDocumentE]', + '88' => '0u', + '96' => '0u' + } + }, + '24263999' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'xml.h', + 'Line' => '89', + 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument', + 'NameSpace' => 'log4cxx::helpers::XMLDOMDocument', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument::~ClazzXMLDOMDocument() [_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument::~ClazzXMLDOMDocument() [_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocument7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument) [_ZTIN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentE]' + } + }, + '24264145' => { + 'BaseType' => '24263999', + 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24264393' => { + 'BaseType' => '24263982', + 'Name' => 'log4cxx::helpers::XMLDOMDocument const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24264398' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '18867741' + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '32', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '24264763' + } + }, + 'Type' => 'Class' + }, + '24264746' => { + 'Base' => { + '24258338' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'xml.h', + 'Line' => '71', + 'Name' => 'log4cxx::helpers::XMLDOMElement', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TimeBasedRollingPolicy) [_ZTIN7log4cxx7rolling22TimeBasedRollingPolicyE]', - '112' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::~TimeBasedRollingPolicy() [_ZN7log4cxx7rolling22TimeBasedRollingPolicyD1Ev]', - '120' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::~TimeBasedRollingPolicy() [_ZN7log4cxx7rolling22TimeBasedRollingPolicyD0Ev]', - '128' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::getClass() const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy8getClassEv]', - '136' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy10instanceofERKNS_7helpers5ClassE]', - '144' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy4castERKNS_7helpers5ClassE]', - '152' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy15activateOptionsERNS_7helpers4PoolE]', - '16' => '(int (*)(...)) 0x00000000000010', - '160' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '168' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::isTriggeringEvent(log4cxx::Appender*, std::shared_ptr const&, std::__cxx11::basic_string, std::allocator > const&, unsigned long) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm]', - '176' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::initialize(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', - '184' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::rollover(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', - '192' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::getFormatSpecifiers[abi:cxx11]() const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy19getFormatSpecifiersB5cxx11Ev]', - '200' => '(int (*)(...)) -0x00000000000010', - '208' => '0u', - '216' => '(int (*)(...)) -0x00000000000010', - '224' => '(int (*)(...)) -0x00000000000010', - '232' => '0u', + '104' => '(int (*)(...)) log4cxx::helpers::XMLDOMElement::getClass() const [_ZNK7log4cxx7helpers13XMLDOMElement8getClassEv]', + '112' => '(int (*)(...)) __cxa_pure_virtual', + '120' => '(int (*)(...)) __cxa_pure_virtual', + '128' => '(int (*)(...)) __cxa_pure_virtual', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '144' => '(int (*)(...)) __cxa_pure_virtual', + '152' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '160' => '(int (*)(...)) __cxa_pure_virtual', '24' => '0u', - '240' => '(int (*)(...)) -0x00000000000010', - '248' => '(int (*)(...)) -0x00000000000010', - '256' => '0u', - '264' => '(int (*)(...)) -0x00000000000010', - '272' => '(int (*)(...)) -0x00000000000010', - '280' => '(int (*)(...)) -0x00000000000010', - '288' => '(int (*)(...)) -0x00000000000010', - '296' => '(int (*)(...)) -0x00000000000010', - '304' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TimeBasedRollingPolicy) [_ZTIN7log4cxx7rolling22TimeBasedRollingPolicyE]', - '312' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::~TimeBasedRollingPolicy() [_ZTv0_n24_N7log4cxx7rolling22TimeBasedRollingPolicyD1Ev]', - '32' => '(int (*)(...)) 0x00000000000010', - '320' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::~TimeBasedRollingPolicy() [_ZTv0_n24_N7log4cxx7rolling22TimeBasedRollingPolicyD0Ev]', - '328' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::getClass() const [_ZTv0_n32_NK7log4cxx7rolling22TimeBasedRollingPolicy8getClassEv]', - '336' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZTv0_n40_NK7log4cxx7rolling22TimeBasedRollingPolicy10instanceofERKNS_7helpers5ClassE]', - '344' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::cast(log4cxx::helpers::Class const&) const [_ZTv0_n48_NK7log4cxx7rolling22TimeBasedRollingPolicy4castERKNS_7helpers5ClassE]', - '352' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZTv0_n64_N7log4cxx7rolling22TimeBasedRollingPolicy15activateOptionsERNS_7helpers4PoolE]', - '360' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZTv0_n72_N7log4cxx7rolling22TimeBasedRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '368' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::initialize(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZTv0_n88_N7log4cxx7rolling22TimeBasedRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', - '376' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::rollover(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZTv0_n96_N7log4cxx7rolling22TimeBasedRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', - '384' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::getFormatSpecifiers[abi:cxx11]() const [_ZTv0_n112_NK7log4cxx7rolling22TimeBasedRollingPolicy19getFormatSpecifiersB5cxx11Ev]', + '32' => '0u', '40' => '0u', '48' => '0u', - '56' => '(int (*)(...)) 0x00000000000010', + '56' => '0u', '64' => '0u', '72' => '0u', '8' => '(int (*)(...)) 0', - '80' => '0u', + '80' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMElement) [_ZTIN7log4cxx7helpers13XMLDOMElementE]', '88' => '0u', '96' => '0u' } }, - '15769255' => { - 'BaseType' => '15769233', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy const', - 'Type' => 'Const' - }, - '15769305' => { + '24264763' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'rollingfileappender.h', - 'Line' => '81', - 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender', - 'NameSpace' => 'log4cxx::rolling::RollingFileAppender', + 'Header' => 'xml.h', + 'Line' => '74', + 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement', + 'NameSpace' => 'log4cxx::helpers::XMLDOMElement', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::~ClazzRollingFileAppender() [_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::~ClazzRollingFileAppender() [_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::newInstance() const [_ZNK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender) [_ZTIN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderE]' + '16' => '(int (*)(...)) log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement::~ClazzXMLDOMElement() [_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement::~ClazzXMLDOMElement() [_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElement7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement) [_ZTIN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementE]' } }, - '15769526' => { - 'BaseType' => '15769305', - 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender const', + '24264909' => { + 'BaseType' => '24264763', + 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement const', 'Size' => '8', 'Type' => 'Const' }, - '15769531' => { - 'Base' => { - '4970452' => { - 'pos' => '0' - } - }, - 'Line' => '37', + '24265114' => { + 'BaseType' => '24264746', + 'Name' => 'log4cxx::helpers::XMLDOMElement const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24265119' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { - 'name' => 'triggeringPolicy', - 'offset' => '288', - 'type' => '14545696' - }, - '1' => { - 'name' => 'rollingPolicy', - 'offset' => '304', - 'type' => '14545684' - }, - '2' => { - 'name' => 'fileLength', - 'offset' => '320', - 'type' => '50486' - }, - '3' => { - 'name' => '_event', - 'offset' => '328', - 'type' => '151288' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Name' => 'struct log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv', - 'NameSpace' => 'log4cxx::rolling::RollingFileAppender', - 'Protected' => 1, - 'Size' => '344', - 'Source' => 'rollingfileappender.cpp', - 'Type' => 'Struct', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '24265484' + } + }, + 'Type' => 'Class' + }, + '24265467' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'xml.h', + 'Line' => '107', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv::~RollingFileAppenderPriv() [_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv::~RollingFileAppenderPriv() [_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv) [_ZTIN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivE]' + '104' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMNodeList) [_ZTIN7log4cxx7helpers14XMLDOMNodeListE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::helpers::XMLDOMNodeList::getClass() const [_ZNK7log4cxx7helpers14XMLDOMNodeList8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' } }, - '15770775' => { + '24265484' => { 'Base' => { - '6059004' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'sizebasedtriggeringpolicy.h', - 'Line' => '43', + 'Header' => 'xml.h', + 'Line' => '110', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList', + 'NameSpace' => 'log4cxx::helpers::XMLDOMNodeList', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList::~ClazzXMLDOMNodeList() [_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList::~ClazzXMLDOMNodeList() [_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeList7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList) [_ZTIN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListE]' + } + }, + '24265630' => { + 'BaseType' => '24265484', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24265835' => { + 'BaseType' => '24265467', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24265840' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { - 'access' => 'protected', - 'name' => 'maxFileSize', - 'offset' => '8', - 'type' => '50486' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy', - 'NameSpace' => 'log4cxx::rolling', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5652418' + } + }, + 'Type' => 'Class' + }, + '24266321' => { + 'BaseType' => '24208010', + 'Header' => 'xml.h', + 'Line' => '65', + 'Name' => 'log4cxx::helpers::XMLDOMNodePtr', + 'NameSpace' => 'log4cxx::helpers', + 'Type' => 'Typedef' + }, + '24266333' => { + 'BaseType' => '24208015', + 'Header' => 'xml.h', + 'Line' => '78', + 'Name' => 'log4cxx::helpers::XMLDOMElementPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Type' => 'Typedef' + }, + '24266345' => { + 'BaseType' => '24208020', + 'Header' => 'xml.h', + 'Line' => '114', + 'Name' => 'log4cxx::helpers::XMLDOMNodeListPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Type' => 'Typedef' + }, + '24266357' => { + 'BaseType' => '24208025', + 'Header' => 'xml.h', + 'Line' => '95', + 'Name' => 'log4cxx::helpers::XMLDOMDocumentPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Type' => 'Typedef' + }, + '24271923' => { + 'BaseType' => '5652409', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24273645' => { + 'Base' => { + '564875' => { + 'pos' => '0' + } + }, + 'Header' => 'denyallfilter.h', + 'Line' => '35', + 'Name' => 'log4cxx::filter::DenyAllFilter', + 'NameSpace' => 'log4cxx::filter', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::isTriggeringEvent(log4cxx::Appender*, std::shared_ptr const&, std::__cxx11::basic_string, std::allocator > const&, unsigned long) [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm]', + '104' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter13DenyAllFilter10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter13DenyAllFilter4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::spi::Filter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3spi6Filter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter13DenyAllFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', '16' => '0u', '24' => '0u', '32' => '0u', @@ -111361,3052 +114007,3359 @@ $VAR1 = { '48' => '0u', '56' => '0u', '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::SizeBasedTriggeringPolicy) [_ZTIN7log4cxx7rolling25SizeBasedTriggeringPolicyE]', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::DenyAllFilter) [_ZTIN7log4cxx6filter13DenyAllFilterE]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::~SizeBasedTriggeringPolicy() [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD1Ev]', - '88' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::~SizeBasedTriggeringPolicy() [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD0Ev]', - '96' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::getClass() const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy8getClassEv]' + '80' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::~DenyAllFilter() [_ZN7log4cxx6filter13DenyAllFilterD1Ev]', + '88' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::~DenyAllFilter() [_ZN7log4cxx6filter13DenyAllFilterD0Ev]', + '96' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::getClass() const [_ZNK7log4cxx6filter13DenyAllFilter8getClassEv]' } }, - '15770821' => { - 'BaseType' => '15770775', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy const', - 'Type' => 'Const' - }, - '15770826' => { + '24273662' => { 'Base' => { - '1425696' => { - 'pos' => '0' - } - }, - 'Line' => '532', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'os', - 'offset' => '8', - 'type' => '4968631' - }, - '1' => { - 'access' => 'private', - 'name' => 'rfa', - 'offset' => '24', - 'type' => '14554226' - } + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::rolling::CountingOutputStream', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '32', - 'Source' => 'rollingfileappender.cpp', + 'Header' => 'denyallfilter.h', + 'Line' => '43', + 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter', + 'NameSpace' => 'log4cxx::filter::DenyAllFilter', + 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::~CountingOutputStream() [_ZN7log4cxx7rolling20CountingOutputStreamD2Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::~CountingOutputStream() [_ZN7log4cxx7rolling20CountingOutputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::OutputStream::getClass() const [_ZNK7log4cxx7helpers12OutputStream8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::OutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers12OutputStream10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::OutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers12OutputStream4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling20CountingOutputStream5closeERNS_7helpers4PoolE]', - '64' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling20CountingOutputStream5flushERNS_7helpers4PoolE]', - '72' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::write(log4cxx::helpers::ByteBuffer&, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling20CountingOutputStream5writeERNS_7helpers10ByteBufferERNS2_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::CountingOutputStream) [_ZTIN7log4cxx7rolling20CountingOutputStreamE]' + '16' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::~ClazzDenyAllFilter() [_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD2Ev]', + '24' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::~ClazzDenyAllFilter() [_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::newInstance() const [_ZNK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter) [_ZTIN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterE]' } }, - '15771156' => { - 'BaseType' => '14545684', - 'Name' => 'log4cxx::rolling::RollingPolicyPtr const', - 'Size' => '16', + '24273872' => { + 'BaseType' => '24273662', + 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter const', + 'Size' => '8', 'Type' => 'Const' }, - '15771173' => { - 'BaseType' => '14545696', - 'Name' => 'log4cxx::rolling::TriggeringPolicyPtr const', + '24274242' => { + 'BaseType' => '24273645', + 'Name' => 'log4cxx::filter::DenyAllFilter const', 'Size' => '16', 'Type' => 'Const' }, - '15777013' => { - 'BaseType' => '15766329', - 'Name' => 'log4cxx::helpers::WideLife*', + '24283720' => { + 'BaseType' => '24258951', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15777019' => { - 'BaseType' => '15777013', - 'Name' => 'log4cxx::helpers::WideLife*const', + '24283725' => { + 'BaseType' => '24283720', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '15777138' => { - 'BaseType' => '15769531', - 'Name' => 'struct log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv*', + '24283816' => { + 'BaseType' => '24260154', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15777144' => { - 'BaseType' => '15777138', - 'Name' => 'struct log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv*const', + '24283821' => { + 'BaseType' => '24283816', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '15777770' => { - 'BaseType' => '15714283', - 'Name' => 'std::__shared_ptr::element_type*', + '24283872' => { + 'BaseType' => '24260502', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15777886' => { - 'BaseType' => '15716363', - 'Name' => 'std::__shared_ptr::element_type*', + '24283877' => { + 'BaseType' => '24283872', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '15777909' => { - 'BaseType' => '15770775', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy*', + '24283928' => { + 'BaseType' => '24260850', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15778002' => { - 'BaseType' => '15718443', - 'Name' => 'std::__shared_ptr::element_type*', + '24283933' => { + 'BaseType' => '24283928', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '15778025' => { - 'BaseType' => '15769233', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy*', + '24283984' => { + 'BaseType' => '24261198', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15778496' => { - 'BaseType' => '15770826', - 'Name' => 'log4cxx::rolling::CountingOutputStream*', + '24283989' => { + 'BaseType' => '24283984', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24284040' => { + 'BaseType' => '24261546', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15778502' => { - 'BaseType' => '15778496', - 'Name' => 'log4cxx::rolling::CountingOutputStream*const', + '24284045' => { + 'BaseType' => '24284040', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '15778861' => { - 'BaseType' => '15770821', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy const*', + '24284096' => { + 'BaseType' => '24261894', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15778979' => { - 'BaseType' => '15769255', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy const*', + '24284101' => { + 'BaseType' => '24284096', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '15779138' => { - 'BaseType' => '14554226', - 'Name' => 'log4cxx::rolling::RollingFileAppender*const', + '24284152' => { + 'BaseType' => '24262242', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '15780246' => { - 'BaseType' => '14554984', - 'Name' => 'log4cxx::rolling::RollingFileAppender const*const', + '24284157' => { + 'BaseType' => '24284152', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '15780257' => { - 'BaseType' => '15771156', - 'Name' => 'log4cxx::rolling::RollingPolicyPtr const&', + '24284208' => { + 'BaseType' => '24262590', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '15780263' => { - 'BaseType' => '15771173', - 'Name' => 'log4cxx::rolling::TriggeringPolicyPtr const&', + '24284213' => { + 'BaseType' => '24284208', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Const' }, - '15780364' => { - 'BaseType' => '15769305', - 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender*', + '24284264' => { + 'BaseType' => '24262938', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15780370' => { - 'BaseType' => '15780364', - 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender*const', + '24284269' => { + 'BaseType' => '24284264', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '15780375' => { - 'BaseType' => '15769526', - 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender const*', + '24284320' => { + 'BaseType' => '24263286', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '15780381' => { - 'BaseType' => '15780375', - 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender const*const', + '24284325' => { + 'BaseType' => '24284320', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '1594565' => { - 'BaseType' => '50231', - 'Name' => 'int&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '16112027' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '24284376' => { + 'BaseType' => '24263634', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '16113160' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '16113160' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'rollingpolicy.h', - 'Line' => '44', - 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy', - 'NameSpace' => 'log4cxx::rolling::RollingPolicy', + '24284381' => { + 'BaseType' => '24284376', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::RollingPolicy::ClazzRollingPolicy::~ClazzRollingPolicy() [_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::RollingPolicy::ClazzRollingPolicy::~ClazzRollingPolicy() [_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::RollingPolicy::ClazzRollingPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling13RollingPolicy18ClazzRollingPolicy7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicy::ClazzRollingPolicy) [_ZTIN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyE]' - } + 'Type' => 'Const' }, - '16113318' => { - 'BaseType' => '16113160', - 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy const', + '24284432' => { + 'BaseType' => '24264398', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '16113560' => { - 'BaseType' => '6294384', - 'Name' => 'log4cxx::rolling::RollingPolicy const', + '24284437' => { + 'BaseType' => '24284432', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '16114608' => { - 'BaseType' => '16112027', - 'Name' => 'log4cxx::helpers::WideLife*', + '24284488' => { + 'BaseType' => '24265119', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '16114614' => { - 'BaseType' => '16114608', - 'Name' => 'log4cxx::helpers::WideLife*const', + '24284493' => { + 'BaseType' => '24284488', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '16114764' => { - 'BaseType' => '16113560', - 'Name' => 'log4cxx::rolling::RollingPolicy const*', + '24284544' => { + 'BaseType' => '24265840', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '16114770' => { - 'BaseType' => '16114764', - 'Name' => 'log4cxx::rolling::RollingPolicy const*const', + '24284549' => { + 'BaseType' => '24284544', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '16114787' => { - 'BaseType' => '16113160', - 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy*', + '24285341' => { + 'BaseType' => '24271923', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16114793' => { - 'BaseType' => '16114787', - 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy*const', + '24285346' => { + 'BaseType' => '24285341', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator const*const', 'Size' => '8', 'Type' => 'Const' }, - '16114798' => { - 'BaseType' => '16113318', - 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy const*', + '24285351' => { + 'BaseType' => '5652409', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator*', 'Size' => '8', 'Type' => 'Pointer' }, - '16114804' => { - 'BaseType' => '16114798', - 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy const*const', + '24285371' => { + 'BaseType' => '24265835', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '24285376' => { + 'BaseType' => '24285371', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList const*const', 'Size' => '8', 'Type' => 'Const' }, - '1622202' => { - 'BaseType' => '1574499', - 'Name' => 'log4cxx::helpers::DateFormat const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1622208' => { - 'BaseType' => '1622202', - 'Name' => 'log4cxx::helpers::DateFormat const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '16276108' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '24285381' => { + 'BaseType' => '24265467', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '16277653' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '16277653' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'rollingpolicybase.h', - 'Line' => '48', - 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase', - 'NameSpace' => 'log4cxx::rolling::RollingPolicyBase', + '24285386' => { + 'BaseType' => '24265114', + 'Name' => 'log4cxx::helpers::XMLDOMElement const*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase::~ClazzRollingPolicyBase() [_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase::~ClazzRollingPolicyBase() [_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBase7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase) [_ZTIN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseE]' - } + 'Type' => 'Pointer' }, - '16277811' => { - 'BaseType' => '16277653', - 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase const', + '24285391' => { + 'BaseType' => '24285386', + 'Name' => 'log4cxx::helpers::XMLDOMElement const*const', 'Size' => '8', 'Type' => 'Const' }, - '16284327' => { - 'BaseType' => '16276108', - 'Name' => 'log4cxx::helpers::WideLife*', + '24285396' => { + 'BaseType' => '24264746', + 'Name' => 'log4cxx::helpers::XMLDOMElement*', 'Size' => '8', 'Type' => 'Pointer' }, - '16284333' => { - 'BaseType' => '16284327', - 'Name' => 'log4cxx::helpers::WideLife*const', + '24285401' => { + 'BaseType' => '24264393', + 'Name' => 'log4cxx::helpers::XMLDOMDocument const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '24285406' => { + 'BaseType' => '24285401', + 'Name' => 'log4cxx::helpers::XMLDOMDocument const*const', 'Size' => '8', 'Type' => 'Const' }, - '16285728' => { - 'BaseType' => '6292740', - 'Name' => 'log4cxx::rolling::RollingPolicyBase*', + '24285411' => { + 'BaseType' => '24263982', + 'Name' => 'log4cxx::helpers::XMLDOMDocument*', 'Size' => '8', 'Type' => 'Pointer' }, - '16285734' => { - 'BaseType' => '16285728', - 'Name' => 'log4cxx::rolling::RollingPolicyBase*const', + '24285416' => { + 'BaseType' => '24258775', + 'Name' => 'log4cxx::helpers::XMLDOMNode const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '24285421' => { + 'BaseType' => '24285416', + 'Name' => 'log4cxx::helpers::XMLDOMNode const*const', 'Size' => '8', 'Type' => 'Const' }, - '16285803' => { - 'BaseType' => '16277653', - 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase*', + '24285426' => { + 'BaseType' => '24258338', + 'Name' => 'log4cxx::helpers::XMLDOMNode*', 'Size' => '8', 'Type' => 'Pointer' }, - '16285809' => { - 'BaseType' => '16285803', - 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase*const', + '24285436' => { + 'BaseType' => '11324886', + 'Name' => 'log4cxx::spi::RepositorySelector const*const', 'Size' => '8', 'Type' => 'Const' }, - '16285814' => { - 'BaseType' => '16277811', - 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase const*', + '24285446' => { + 'BaseType' => '24273645', + 'Name' => 'log4cxx::filter::DenyAllFilter*', 'Size' => '8', 'Type' => 'Pointer' }, - '16285820' => { - 'BaseType' => '16285814', - 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase const*const', + '24285451' => { + 'BaseType' => '24285446', + 'Name' => 'log4cxx::filter::DenyAllFilter*const', 'Size' => '8', 'Type' => 'Const' }, - '16396493' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '16419306' - } - }, - 'Type' => 'Struct' - }, - '16396579' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '16398114' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + '24285466' => { + 'BaseType' => '24274242', + 'Name' => 'log4cxx::filter::DenyAllFilter const*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '16419306' - }, - '1' => { - 'key' => '_Dp', - 'type' => '16396493' - } - }, - 'Type' => 'Class' - }, - '16396902' => { - 'Base' => { - '16396493' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '16396493' - } - }, - 'Type' => 'Struct' - }, - '16397155' => { - 'Base' => { - '16396902' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '16396493' - } - }, - 'Type' => 'Struct' + 'Type' => 'Pointer' }, - '16397453' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '16420962' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::RolloverDescription::RolloverDescriptionPrivate*>', - 'NameSpace' => 'std', + '24285471' => { + 'BaseType' => '24285466', + 'Name' => 'log4cxx::filter::DenyAllFilter const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '16420962' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '16397713' => { - 'Base' => { - '16397155' => { - 'pos' => '0' - }, - '16397453' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::RolloverDescription::RolloverDescriptionPrivate*>', - 'NameSpace' => 'std', + '24285481' => { + 'BaseType' => '18618499', + 'Name' => 'log4cxx::spi::LoggerRepository const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '16420962' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '16398114' => { - 'Base' => { - '16397713' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '24285521' => { + 'BaseType' => '576773', + 'Name' => 'log4cxx::Appender const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '16420962' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '16398444' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '16396579' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '24285531' => { + 'BaseType' => '10984793', + 'Name' => 'log4cxx::spi::LoggerFactory const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '16419306' - }, - '1' => { - 'key' => '_Dp', - 'type' => '16396493' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '16418202' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '24285561' => { + 'BaseType' => '956706', + 'Name' => 'log4cxx::spi::AppenderAttachable const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '16419471' - } - }, - 'Type' => 'Class' - }, - '16419306' => { - 'Line' => '27', - 'Memb' => { - '0' => { - 'name' => 'activeFileName', - 'offset' => '0', - 'type' => '63706' - }, - '1' => { - 'name' => 'append', - 'offset' => '32', - 'type' => '50284' - }, - '2' => { - 'name' => 'synchronous', - 'offset' => '40', - 'type' => '6294484' - }, - '3' => { - 'name' => 'asynchronous', - 'offset' => '56', - 'type' => '6294484' - } - }, - 'Name' => 'struct log4cxx::rolling::RolloverDescription::RolloverDescriptionPrivate', - 'NameSpace' => 'log4cxx::rolling::RolloverDescription', - 'Size' => '72', - 'Source' => 'rolloverdescription.cpp', - 'Type' => 'Struct' + 'Type' => 'Const' }, - '16419471' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'rolloverdescription.h', - 'Line' => '31', - 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription', - 'NameSpace' => 'log4cxx::rolling::RolloverDescription', + '24285616' => { + 'BaseType' => '577932', + 'Name' => 'log4cxx::spi::OptionHandler const*const', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::ClazzRolloverDescription::~ClazzRolloverDescription() [_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::ClazzRolloverDescription::~ClazzRolloverDescription() [_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::ClazzRolloverDescription::newInstance() const [_ZNK7log4cxx7rolling19RolloverDescription24ClazzRolloverDescription11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::ClazzRolloverDescription::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling19RolloverDescription24ClazzRolloverDescription7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RolloverDescription::ClazzRolloverDescription) [_ZTIN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionE]' - } + 'Type' => 'Const' }, - '16419667' => { - 'BaseType' => '16419471', - 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription const', + '24285916' => { + 'BaseType' => '5680253', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator*const', 'Size' => '8', 'Type' => 'Const' }, - '16420135' => { - 'BaseType' => '6294484', - 'Name' => 'log4cxx::rolling::ActionPtr const', - 'Size' => '16', + '24285926' => { + 'BaseType' => '5680258', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator const*const', + 'Size' => '8', 'Type' => 'Const' }, - '16420962' => { - 'BaseType' => '16419306', - 'Name' => 'struct log4cxx::rolling::RolloverDescription::RolloverDescriptionPrivate*', + '24285931' => { + 'BaseType' => '24265484', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList*', 'Size' => '8', 'Type' => 'Pointer' }, - '16421270' => { - 'BaseType' => '16418202', - 'Name' => 'log4cxx::helpers::WideLife*', + '24285936' => { + 'BaseType' => '24285931', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24285941' => { + 'BaseType' => '24265630', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16421276' => { - 'BaseType' => '16421270', - 'Name' => 'log4cxx::helpers::WideLife*const', + '24285946' => { + 'BaseType' => '24285941', + 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList const*const', 'Size' => '8', 'Type' => 'Const' }, - '16421524' => { - 'BaseType' => '16420135', - 'Name' => 'log4cxx::rolling::ActionPtr const&', + '24285951' => { + 'BaseType' => '24263999', + 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '16421590' => { - 'BaseType' => '6300235', - 'Name' => 'log4cxx::rolling::RolloverDescription*const', + '24285956' => { + 'BaseType' => '24285951', + 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument*const', 'Size' => '8', 'Type' => 'Const' }, - '16421607' => { - 'BaseType' => '6302322', - 'Name' => 'log4cxx::rolling::RolloverDescription const*const', + '24285961' => { + 'BaseType' => '24264145', + 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '24285966' => { + 'BaseType' => '24285961', + 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument const*const', 'Size' => '8', 'Type' => 'Const' }, - '16421612' => { - 'BaseType' => '16419471', - 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription*', + '24285971' => { + 'BaseType' => '24264763', + 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement*', 'Size' => '8', 'Type' => 'Pointer' }, - '16421618' => { - 'BaseType' => '16421612', - 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription*const', + '24285976' => { + 'BaseType' => '24285971', + 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement*const', 'Size' => '8', 'Type' => 'Const' }, - '16421623' => { - 'BaseType' => '16419667', - 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription const*', + '24285981' => { + 'BaseType' => '24264909', + 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16421629' => { - 'BaseType' => '16421623', - 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription const*const', + '24285986' => { + 'BaseType' => '24285981', + 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement const*const', 'Size' => '8', 'Type' => 'Const' }, - '16507959' => { - 'BaseType' => '7072850', - 'Name' => 'log4cxx::spi::RootLogger*const', + '24285991' => { + 'BaseType' => '24258391', + 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '16507993' => { - 'BaseType' => '7073796', - 'Name' => 'log4cxx::spi::RootLogger const*const', + '24285996' => { + 'BaseType' => '24285991', + 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode*const', 'Size' => '8', 'Type' => 'Const' }, - '16587397' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '24286001' => { + 'BaseType' => '24258537', + 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode const*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '16589073' - } - }, - 'Type' => 'Class' - }, - '16589039' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'shortfilelocationpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ShortFileLocationPatternConverter) [_ZTIN7log4cxx7pattern33ShortFileLocationPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::~ShortFileLocationPatternConverter() [_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::~ShortFileLocationPatternConverter() [_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } + 'Type' => 'Pointer' }, - '16589073' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'shortfilelocationpatternconverter.h', - 'Line' => '44', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern::ShortFileLocationPatternConverter', + '24286006' => { + 'BaseType' => '24286001', + 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode const*const', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter::~ClazzShortFileLocationPatternConverter() [_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter::~ClazzShortFileLocationPatternConverter() [_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter) [_ZTIN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterE]' - } + 'Type' => 'Const' }, - '16589231' => { - 'BaseType' => '16589073', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter const', + '24286021' => { + 'BaseType' => '3133967', + 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector*const', 'Size' => '8', 'Type' => 'Const' }, - '16589635' => { - 'BaseType' => '16589039', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter const', - 'Size' => '16', + '24286031' => { + 'BaseType' => '3133972', + 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector const*const', + 'Size' => '8', 'Type' => 'Const' }, - '16591558' => { - 'BaseType' => '16587397', - 'Name' => 'log4cxx::helpers::WideLife*', + '24286036' => { + 'BaseType' => '24273662', + 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter*', 'Size' => '8', 'Type' => 'Pointer' }, - '16591564' => { - 'BaseType' => '16591558', - 'Name' => 'log4cxx::helpers::WideLife*const', + '24286041' => { + 'BaseType' => '24286036', + 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter*const', 'Size' => '8', 'Type' => 'Const' }, - '16591925' => { - 'BaseType' => '16589039', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter*', + '24286046' => { + 'BaseType' => '24273872', + 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16591931' => { - 'BaseType' => '16591925', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter*const', + '24286051' => { + 'BaseType' => '24286046', + 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter const*const', 'Size' => '8', 'Type' => 'Const' }, - '16592036' => { - 'BaseType' => '16589635', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter const*', + '24286061' => { + 'BaseType' => '1391241', + 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '16592042' => { - 'BaseType' => '16592036', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter const*const', + '24286071' => { + 'BaseType' => '1391246', + 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler const*const', 'Size' => '8', 'Type' => 'Const' }, - '16592053' => { - 'BaseType' => '16589073', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter*', + '24286081' => { + 'BaseType' => '576728', + 'Name' => 'log4cxx::spi::Filter::ClazzFilter*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '16592059' => { - 'BaseType' => '16592053', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter*const', + '24286091' => { + 'BaseType' => '576733', + 'Name' => 'log4cxx::spi::Filter::ClazzFilter const*const', 'Size' => '8', 'Type' => 'Const' }, - '16592064' => { - 'BaseType' => '16589231', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter const*', + '24286116' => { + 'BaseType' => '576753', + 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '16592070' => { - 'BaseType' => '16592064', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter const*const', + '24286126' => { + 'BaseType' => '576758', + 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository const*const', 'Size' => '8', 'Type' => 'Const' }, - '16598101' => { - 'BaseType' => '16591925', - 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter*&&', + '24286141' => { + 'BaseType' => '576778', + 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory*const', 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '16663788' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '16706368' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '16663875' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '16665422' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + '24286151' => { + 'BaseType' => '576783', + 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '16706368' - }, - '1' => { - 'key' => '_Dp', - 'type' => '16663788' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '16664198' => { - 'Base' => { - '16663788' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '16663788' - } - }, - 'Type' => 'Struct' + '24286201' => { + 'BaseType' => '576828', + 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable*const', + 'Size' => '8', + 'Type' => 'Const' }, - '16664454' => { - 'Base' => { - '16664198' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '16663788' - } - }, - 'Type' => 'Struct' + '24286211' => { + 'BaseType' => '576833', + 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '16664754' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '16713689' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::SimpleDateFormat::SimpleDateFormatPrivate*>', - 'NameSpace' => 'std', + '24286221' => { + 'BaseType' => '576838', + 'Name' => 'log4cxx::Appender::ClazzAppender*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '16713689' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '16665017' => { - 'Base' => { - '16664454' => { - 'pos' => '0' - }, - '16664754' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::SimpleDateFormat::SimpleDateFormatPrivate*>', - 'NameSpace' => 'std', + '24286231' => { + 'BaseType' => '576843', + 'Name' => 'log4cxx::Appender::ClazzAppender const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '16713689' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '16665422' => { - 'Base' => { - '16665017' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '24286241' => { + 'BaseType' => '576848', + 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '16713689' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '16665754' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '16663875' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '24286251' => { + 'BaseType' => '576853', + 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '16706368' - }, - '1' => { - 'key' => '_Dp', - 'type' => '16663788' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '16674980' => { - 'Base' => { - '16690405' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '16714986' - } - }, - 'Type' => 'Class' + '24286335' => { + 'BaseType' => '215799', + 'Name' => 'log4cxx::helpers::Object const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '16675131' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '16674980' - } - }, - 'Type' => 'Struct' + '24286345' => { + 'BaseType' => '215804', + 'Name' => 'log4cxx::helpers::Object::ClazzObject*const', + 'Size' => '8', + 'Type' => 'Const' }, - '16675145' => { - 'BaseType' => '16714975', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits >::pointer', - 'NameSpace' => 'std::allocator_traits >', + '24286355' => { + 'BaseType' => '215809', + 'Name' => 'log4cxx::helpers::Object::ClazzObject const*const', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Const' }, - '16675451' => { + '24444267' => { 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '16675650' - } - }, - 'Name' => 'struct std::_Vector_base >', + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', - 'Size' => '24', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '16714986' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '16674980' + 'type' => '24494860' } }, 'Type' => 'Struct' }, - '16675464' => { + '24445217' => { 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', + 'Header' => 'unique_ptr.h', + 'Line' => '128', 'Memb' => { '0' => { - 'name' => '_M_start', + 'access' => 'private', + 'name' => '_M_t', 'offset' => '0', - 'type' => '16675638' - }, - '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '16675638' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '16675638' + 'type' => '24447627' } }, - 'Name' => 'struct std::_Vector_base >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '16675638' => { - 'BaseType' => '16691032', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base >::pointer', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '16675650' => { - 'Base' => { - '16674980' => { - 'pos' => '0' - }, - '16675464' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '16676430' => { - 'Base' => { - '16675451' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '16714986' - } - }, - 'Type' => 'Class' - }, - '16690405' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '16714986' - } - }, - 'Type' => 'Class' - }, - '16690831' => { - 'Base' => { - '16675131' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '16674980' - } - }, - 'Type' => 'Struct' - }, - '16691032' => { - 'BaseType' => '16675145', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '16706368' => { - 'Line' => '799', - 'Memb' => { - '0' => { - 'name' => 'timeZone', - 'offset' => '0', - 'type' => '1574521' - }, - '1' => { - 'name' => 'pattern', - 'offset' => '16', - 'type' => '16712564' - } - }, - 'Name' => 'struct log4cxx::helpers::SimpleDateFormat::SimpleDateFormatPrivate', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormat', - 'Private' => 1, - 'Size' => '40', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Struct' - }, - '16707257' => { - 'BaseType' => '3413936', - 'Name' => 'log4cxx::helpers::TimeZone const', - 'Type' => 'Const' - }, - '16707275' => { - 'Line' => '68', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - } - }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::PatternToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '8', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class' - }, - '16707663' => { - 'Base' => { - '16707275' => { - 'pos' => '0' - } - }, - 'Line' => '586', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '8', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken::~RFC822TimeZoneToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken::~RFC822TimeZoneToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenE]' - } - }, - '16707861' => { - 'BaseType' => '16707663', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken const', - 'Size' => '8', - 'Type' => 'Const' - }, - '16707866' => { - 'Base' => { - '16707275' => { - 'pos' => '0' - } - }, - 'Line' => '563', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'timeZone', - 'offset' => '8', - 'type' => '1574521' - } - }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '24', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken::~GeneralTimeZoneToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken::~GeneralTimeZoneToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenE]' - } - }, - '16708119' => { - 'BaseType' => '16707866', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken const', - 'Size' => '24', - 'Type' => 'Const' - }, - '16708124' => { - 'Base' => { - '16707275' => { - 'pos' => '0' - } - }, - 'Line' => '544', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'names', - 'offset' => '8', - 'type' => '2242385' - } - }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '32', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AMPMToken::~AMPMToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AMPMToken::~AMPMToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AMPMToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl9AMPMToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::AMPMToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenE]' - } - }, - '16708341' => { - 'BaseType' => '16708124', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken const', - 'Size' => '32', - 'Type' => 'Const' - }, - '16708346' => { - 'Base' => { - '16708543' => { - 'pos' => '0' - } - }, - 'Line' => '529', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken::~MicrosecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken::~MicrosecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenE]' - } - }, - '16708538' => { - 'BaseType' => '16708346', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken const', - 'Size' => '16', - 'Type' => 'Const' + 'type' => '24494860' + }, + '1' => { + 'key' => '_Dp', + 'type' => '24444267' + } + }, + 'Type' => 'Class' }, - '16708543' => { - 'Base' => { - '16707275' => { - 'pos' => '0' - } - }, - 'Line' => '237', + '24445853' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'width', - 'offset' => '8', - 'type' => '50486' + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '24444267' } }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class' - }, - '16708799' => { - 'BaseType' => '16708543', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken const', - 'Size' => '16', - 'Type' => 'Const' + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '24444267' + } + }, + 'Type' => 'Struct' }, - '16708804' => { + '24446111' => { 'Base' => { - '16708543' => { + '24445853' => { + 'access' => 'private', 'pos' => '0' } }, - 'Line' => '514', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken::~MillisecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken::~MillisecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl16MillisecondToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenE]' - } + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '24444267' + } + }, + 'Type' => 'Struct' }, - '16708996' => { - 'BaseType' => '16708804', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken const', - 'Size' => '16', - 'Type' => 'Const' + '24446417' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '24495474' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::Locale::LocalePrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '24495474' + } + }, + 'Type' => 'Struct' }, - '16709001' => { + '24446675' => { 'Base' => { - '16708543' => { + '24446111' => { 'pos' => '0' + }, + '24446417' => { + 'access' => 'private', + 'pos' => '1' } }, - 'Line' => '499', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::SecondToken::~SecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::SecondToken::~SecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::SecondToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl11SecondToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::SecondToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenE]' - } - }, - '16709193' => { - 'BaseType' => '16709001', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken const', - 'Size' => '16', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::Locale::LocalePrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '24495474' + } + }, + 'Type' => 'Struct' }, - '16709198' => { + '24447627' => { 'Base' => { - '16708543' => { + '24446675' => { 'pos' => '0' } }, - 'Line' => '484', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MinuteToken::~MinuteToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MinuteToken::~MinuteToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MinuteToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl11MinuteToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MinuteToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenE]' - } - }, - '16709390' => { - 'BaseType' => '16709198', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken const', - 'Size' => '16', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '24495474' + } + }, + 'Type' => 'Class' }, - '16709395' => { + '24449097' => { 'Base' => { - '16708543' => { + '24445217' => { 'pos' => '0' } }, - 'Line' => '466', + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '24494860' + }, + '1' => { + 'key' => '_Dp', + 'type' => '24444267' + } + }, + 'Type' => 'Struct' + }, + '24449326' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'offset', - 'offset' => '16', - 'type' => '50231' + 'name' => '_M_t', + 'offset' => '0', + 'type' => '24449097' } }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '24', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::HourToken::~HourToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::HourToken::~HourToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::HourToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl9HourToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::HourToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenE]' - } - }, - '16709606' => { - 'BaseType' => '16709395', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken const', - 'Size' => '24', - 'Type' => 'Const' + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '24494860' + }, + '1' => { + 'key' => '_Dp', + 'type' => '24444267' + } + }, + 'Type' => 'Class' }, - '16709611' => { - 'Base' => { - '16708543' => { - 'pos' => '0' - } + '24494847' => { + 'Header' => 'locale.h', + 'Line' => '28', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '24449326' + } }, - 'Line' => '448', + 'Name' => 'log4cxx::helpers::Locale', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class' + }, + '24494860' => { + 'Line' => '23', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'offset', - 'offset' => '16', - 'type' => '50231' + 'name' => 'language', + 'offset' => '0', + 'type' => '209673' + }, + '1' => { + 'name' => 'country', + 'offset' => '50', + 'type' => '209673' + }, + '2' => { + 'name' => 'variant', + 'offset' => '100', + 'type' => '209673' } }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '24', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken::~MilitaryHourToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken::~MilitaryHourToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenE]' - } + 'Name' => 'struct log4cxx::helpers::Locale::LocalePrivate', + 'NameSpace' => 'log4cxx::helpers::Locale', + 'Protected' => 1, + 'Size' => '96', + 'Source' => 'locale.cpp', + 'Type' => 'Struct' }, - '16709822' => { - 'BaseType' => '16709611', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken const', - 'Size' => '24', + '24495368' => { + 'BaseType' => '24494847', + 'Name' => 'log4cxx::helpers::Locale const', + 'Size' => '8', 'Type' => 'Const' }, - '16709827' => { - 'Base' => { - '16707275' => { - 'pos' => '0' - } - }, - 'Line' => '428', + '24495474' => { + 'BaseType' => '24494860', + 'Name' => 'struct log4cxx::helpers::Locale::LocalePrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '24495744' => { + 'BaseType' => '24494847', + 'Name' => 'log4cxx::helpers::Locale*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '24495749' => { + 'BaseType' => '24495744', + 'Name' => 'log4cxx::helpers::Locale*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24495754' => { + 'BaseType' => '24495368', + 'Name' => 'log4cxx::helpers::Locale const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '24495759' => { + 'BaseType' => '24495754', + 'Name' => 'log4cxx::helpers::Locale const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24495764' => { + 'BaseType' => '24495368', + 'Name' => 'log4cxx::helpers::Locale const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '24668421' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'names', - 'offset' => '8', - 'type' => '2242385' + 'name' => 'storage', + 'offset' => '0', + 'type' => '198038' } }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '32', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken::~FullDayNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken::~FullDayNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenE]' - } + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '564239' + } + }, + 'Type' => 'Class' }, - '16710044' => { - 'BaseType' => '16709827', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken const', + '24668770' => { + 'BaseType' => '24668421', + 'Name' => 'log4cxx::helpers::WideLifeconst', 'Size' => '32', 'Type' => 'Const' }, - '16710049' => { - 'Base' => { - '16707275' => { - 'pos' => '0' - } - }, - 'Line' => '408', + '24668802' => { + 'BaseType' => '573031', + 'Name' => 'log4cxx::spi::LocationInfo const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24668884' => { + 'BaseType' => '24668421', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '24668889' => { + 'BaseType' => '24668884', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '24668894' => { + 'BaseType' => '24668770', + 'Name' => 'log4cxx::helpers::WideLifeconst*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '24668899' => { + 'BaseType' => '24668894', + 'Name' => 'log4cxx::helpers::WideLifeconst*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2469072' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '517723' + } + }, + 'Type' => 'Class' + }, + '2469319' => { + 'Base' => { + '2353147' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '2352857' + } + }, + 'Type' => 'Struct' + }, + '2469544' => { + 'BaseType' => '2353161', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '2470949' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, DiscardSummary> >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '2357994' + } + }, + 'Type' => 'Class' + }, + '2471573' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, DiscardSummary> > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '2359312' + } + }, + 'Type' => 'Class' + }, + '2474139' => { + 'Copied' => 1, + 'Header' => 'aligned_buffer.h', + 'Line' => '47', + 'Memb' => { + '0' => { + 'name' => '_M_storage', + 'offset' => '0', + 'type' => '2523437' + } + }, + 'Name' => 'struct __gnu_cxx::__aligned_membufconst, DiscardSummary> >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '56', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '2357994' + } + }, + 'Type' => 'Struct' + }, + '2499676' => { + 'BaseType' => '1374417', + 'Name' => 'log4cxx::helpers::Exception const', + 'Type' => 'Const' + }, + '2500911' => { + 'Header' => 'threadutility.h', + 'Line' => '59', + 'Memb' => { + '0' => { + 'name' => 'NoConfiguration', + 'value' => '0' + }, + '1' => { + 'name' => 'BlockSignalsOnly', + 'value' => '1' + }, + '2' => { + 'name' => 'NameThreadOnly', + 'value' => '2' + }, + '3' => { + 'name' => 'BlockSignalsAndNameThread', + 'value' => '3' + } + }, + 'Name' => 'enum log4cxx::helpers::ThreadConfigurationType', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '4', + 'Type' => 'Enum' + }, + '2500954' => { + 'Header' => 'threadutility.h', + 'Line' => '70', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '2331149' + } + }, + 'Name' => 'log4cxx::helpers::ThreadUtility', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class' + }, + '2500967' => { + 'Line' => '39', + 'Memb' => { + '0' => { + 'name' => 'start_pre', + 'offset' => '0', + 'type' => '2501376' + }, + '1' => { + 'name' => 'started', + 'offset' => '50', + 'type' => '2501388' + }, + '2' => { + 'name' => 'start_post', + 'offset' => '100', + 'type' => '2501400' + } + }, + 'Name' => 'struct log4cxx::helpers::ThreadUtility::priv_data', + 'NameSpace' => 'log4cxx::helpers::ThreadUtility', + 'Private' => 1, + 'Size' => '96', + 'Source' => 'threadutility.cpp', + 'Type' => 'Struct' + }, + '2501376' => { + 'BaseType' => '2331741', + 'Header' => 'threadutility.h', + 'Line' => '38', + 'Name' => 'log4cxx::helpers::ThreadStartPre', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '32', + 'Type' => 'Typedef' + }, + '2501388' => { + 'BaseType' => '2332209', + 'Header' => 'threadutility.h', + 'Line' => '51', + 'Name' => 'log4cxx::helpers::ThreadStarted', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '32', + 'Type' => 'Typedef' + }, + '2501400' => { + 'BaseType' => '2331741', + 'Header' => 'threadutility.h', + 'Line' => '57', + 'Name' => 'log4cxx::helpers::ThreadStartPost', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '32', + 'Type' => 'Typedef' + }, + '2501628' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '2507835' + } + }, + 'Type' => 'Class' + }, + '25020560' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'names', - 'offset' => '8', - 'type' => '2242385' + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '32', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken::~AbbreviatedDayNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken::~AbbreviatedDayNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenE]' - } - }, - '16710266' => { - 'BaseType' => '16710049', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken const', - 'Size' => '32', - 'Type' => 'Const' + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5660239' + } + }, + 'Type' => 'Class' }, - '16710271' => { + '25025115' => { 'Base' => { - '16708543' => { - 'pos' => '0' - } + '564884' => { + 'pos' => '0' + } + }, + 'Line' => '34', + 'Memb' => { + '0' => { + 'name' => 'acceptOnMatch', + 'offset' => '36', + 'type' => '174077' + }, + '1' => { + 'name' => 'mustMatchAll', + 'offset' => '37', + 'type' => '174077' + }, + '2' => { + 'name' => 'lineNumber', + 'offset' => '40', + 'type' => '190263' + }, + '3' => { + 'name' => 'methodName', + 'offset' => '50', + 'type' => '89533' + } }, - 'Line' => '393', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', + 'Name' => 'struct log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate', + 'NameSpace' => 'log4cxx::filter::LocationInfoFilter', + 'Private' => 1, + 'Size' => '64', + 'Source' => 'locationinfofilter.cpp', + 'Type' => 'Struct', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken::~DayOfWeekInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken::~DayOfWeekInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenE]' + '16' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate::~LocationInfoFilterPrivate() [_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate::~LocationInfoFilterPrivate() [_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate) [_ZTIN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateE]' } }, - '16710463' => { - 'BaseType' => '16710271', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken const', + '25025853' => { + 'BaseType' => '5660230', + 'Name' => 'log4cxx::filter::LocationInfoFilter const', 'Size' => '16', 'Type' => 'Const' }, - '16710468' => { - 'Base' => { - '16708543' => { - 'pos' => '0' - } - }, - 'Line' => '378', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken::~DayInYearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken::~DayInYearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl14DayInYearToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenE]' - } + '2502832' => { + 'BaseType' => '2367072', + 'Header' => 'appenderattachableimpl.h', + 'Line' => '111', + 'Name' => 'log4cxx::helpers::AppenderAttachableImplPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '2502844' => { + 'Base' => { + '2503005' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '77', + 'Name' => 'log4cxx::helpers::IllegalArgumentException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::IllegalArgumentException::~IllegalArgumentException() [_ZN7log4cxx7helpers24IllegalArgumentExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::IllegalArgumentException::~IllegalArgumentException() [_ZN7log4cxx7helpers24IllegalArgumentExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::IllegalArgumentException) [_ZTIN7log4cxx7helpers24IllegalArgumentExceptionE]' + } + }, + '2503000' => { + 'BaseType' => '2502844', + 'Name' => 'log4cxx::helpers::IllegalArgumentException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '2503005' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '53', + 'Name' => 'log4cxx::helpers::RuntimeException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::RuntimeException::~RuntimeException() [_ZN7log4cxx7helpers16RuntimeExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::RuntimeException::~RuntimeException() [_ZN7log4cxx7helpers16RuntimeExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::RuntimeException) [_ZTIN7log4cxx7helpers16RuntimeExceptionE]' + } + }, + '2503218' => { + 'BaseType' => '2503005', + 'Name' => 'log4cxx::helpers::RuntimeException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '25034138' => { + 'BaseType' => '25020560', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '16710660' => { - 'BaseType' => '16710468', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken const', - 'Size' => '16', + '25034143' => { + 'BaseType' => '25034138', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', 'Type' => 'Const' }, - '16710665' => { - 'Base' => { - '16708543' => { - 'pos' => '0' - } - }, - 'Line' => '363', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken::~DayInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken::~DayInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenE]' - } + '25034249' => { + 'BaseType' => '25025115', + 'Name' => 'struct log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '16710857' => { - 'BaseType' => '16710665', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken const', - 'Size' => '16', + '25034254' => { + 'BaseType' => '25034249', + 'Name' => 'struct log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate*const', + 'Size' => '8', 'Type' => 'Const' }, - '16710862' => { - 'Base' => { - '16708543' => { - 'pos' => '0' - } - }, - 'Line' => '348', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken::~WeekInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken::~WeekInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenE]' - } + '25034874' => { + 'BaseType' => '5679693', + 'Name' => 'log4cxx::filter::LocationInfoFilter*const', + 'Size' => '8', + 'Type' => 'Const' }, - '16711054' => { - 'BaseType' => '16710862', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken const', - 'Size' => '16', + '25034894' => { + 'BaseType' => '25025853', + 'Name' => 'log4cxx::filter::LocationInfoFilter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '25034899' => { + 'BaseType' => '25034894', + 'Name' => 'log4cxx::filter::LocationInfoFilter const*const', + 'Size' => '8', 'Type' => 'Const' }, - '16711059' => { - 'Base' => { - '16708543' => { - 'pos' => '0' - } - }, - 'Line' => '333', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken::~WeekInYearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken::~WeekInYearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenE]' - } + '25034958' => { + 'BaseType' => '5679683', + 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter*const', + 'Size' => '8', + 'Type' => 'Const' }, - '16711251' => { - 'BaseType' => '16711059', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken const', - 'Size' => '16', + '25034968' => { + 'BaseType' => '5679688', + 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter const*const', + 'Size' => '8', 'Type' => 'Const' }, - '16711256' => { - 'Base' => { - '16707275' => { - 'pos' => '0' - } - }, - 'Line' => '314', - 'Memb' => { + '2503614' => { + 'BaseType' => '563933', + 'Name' => 'log4cxx::Level const', + 'Type' => 'Const' + }, + '2507817' => { + 'Base' => { + '1379573' => { + 'pos' => '1', + 'virtual' => 1 + }, + '566027' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'asyncappender.h', + 'Line' => '43', + 'Name' => 'log4cxx::AsyncAppender', + 'NameSpace' => 'log4cxx', + 'Size' => '24', + 'Type' => 'Class', + 'VTable' => { + '0' => '8u', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '(int (*)(...)) (& typeinfo for log4cxx::AsyncAppender) [_ZTIN7log4cxx13AsyncAppenderE]', + '144' => '(int (*)(...)) log4cxx::AsyncAppender::~AsyncAppender() [_ZN7log4cxx13AsyncAppenderD1Ev]', + '152' => '(int (*)(...)) log4cxx::AsyncAppender::~AsyncAppender() [_ZN7log4cxx13AsyncAppenderD0Ev]', + '16' => '(int (*)(...)) 0x00000000000008', + '160' => '(int (*)(...)) log4cxx::AsyncAppender::getClass() const [_ZNK7log4cxx13AsyncAppender8getClassEv]', + '168' => '(int (*)(...)) log4cxx::AsyncAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx13AsyncAppender10instanceofERKNS_7helpers5ClassE]', + '176' => '(int (*)(...)) log4cxx::AsyncAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx13AsyncAppender4castERKNS_7helpers5ClassE]', + '184' => '(int (*)(...)) log4cxx::AsyncAppender::addAppender(std::shared_ptr) [_ZN7log4cxx13AsyncAppender11addAppenderESt10shared_ptrINS_8AppenderEE]', + '192' => '(int (*)(...)) log4cxx::AsyncAppender::getAllAppenders() const [_ZNK7log4cxx13AsyncAppender15getAllAppendersEv]', + '200' => '(int (*)(...)) log4cxx::AsyncAppender::getAppender(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx13AsyncAppender11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '208' => '(int (*)(...)) log4cxx::AsyncAppender::isAttached(std::shared_ptr) const [_ZNK7log4cxx13AsyncAppender10isAttachedESt10shared_ptrINS_8AppenderEE]', + '216' => '(int (*)(...)) log4cxx::AsyncAppender::removeAllAppenders() [_ZN7log4cxx13AsyncAppender18removeAllAppendersEv]', + '224' => '(int (*)(...)) log4cxx::AsyncAppender::removeAppender(std::shared_ptr) [_ZN7log4cxx13AsyncAppender14removeAppenderESt10shared_ptrINS_8AppenderEE]', + '232' => '(int (*)(...)) log4cxx::AsyncAppender::removeAppender(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx13AsyncAppender14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AsyncAppender::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx13AsyncAppender8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '248' => '(int (*)(...)) log4cxx::AsyncAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx13AsyncAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '256' => '(int (*)(...)) log4cxx::AsyncAppender::close() [_ZN7log4cxx13AsyncAppender5closeEv]', + '264' => '(int (*)(...)) log4cxx::AsyncAppender::requiresLayout() const [_ZNK7log4cxx13AsyncAppender14requiresLayoutEv]', + '272' => '(int (*)(...)) log4cxx::AsyncAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx13AsyncAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '280' => '(int (*)(...)) -0x00000000000008', + '288' => '0u', + '296' => '(int (*)(...)) -0x00000000000008', + '304' => '0u', + '312' => '0u', + '32' => '0u', + '320' => '0u', + '328' => '0u', + '336' => '(int (*)(...)) -0x00000000000008', + '344' => '(int (*)(...)) -0x00000000000008', + '352' => '0u', + '360' => '0u', + '368' => '0u', + '376' => '0u', + '384' => '(int (*)(...)) -0x00000000000008', + '392' => '0u', + '40' => '0u', + '400' => '(int (*)(...)) -0x00000000000008', + '408' => '(int (*)(...)) -0x00000000000008', + '416' => '(int (*)(...)) -0x00000000000008', + '424' => '(int (*)(...)) -0x00000000000008', + '432' => '(int (*)(...)) -0x00000000000008', + '440' => '(int (*)(...)) -0x00000000000008', + '448' => '(int (*)(...)) (& typeinfo for log4cxx::AsyncAppender) [_ZTIN7log4cxx13AsyncAppenderE]', + '456' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::~AsyncAppender() [_ZTv0_n24_N7log4cxx13AsyncAppenderD1Ev]', + '464' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::~AsyncAppender() [_ZTv0_n24_N7log4cxx13AsyncAppenderD0Ev]', + '472' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::getClass() const [_ZTv0_n32_NK7log4cxx13AsyncAppender8getClassEv]', + '48' => '0u', + '480' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::instanceof(log4cxx::helpers::Class const&) const [_ZTv0_n40_NK7log4cxx13AsyncAppender10instanceofERKNS_7helpers5ClassE]', + '488' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::cast(log4cxx::helpers::Class const&) const [_ZTv0_n48_NK7log4cxx13AsyncAppender4castERKNS_7helpers5ClassE]', + '496' => '(int (*)(...)) log4cxx::AppenderSkeleton::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton15activateOptionsERNS_7helpers4PoolE]', + '504' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZTv0_n72_N7log4cxx13AsyncAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '512' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '520' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '528' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '536' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::close() [_ZTv0_n112_N7log4cxx13AsyncAppender5closeEv]', + '544' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZTv0_n120_N7log4cxx13AsyncAppender8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '552' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '56' => '0u', + '560' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '568' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '576' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '584' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::requiresLayout() const [_ZTv0_n160_NK7log4cxx13AsyncAppender14requiresLayoutEv]', + '592' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZTv0_n176_N7log4cxx13AsyncAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '64' => '0u', + '72' => '0u', + '8' => '0u', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '2507835' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'asyncappender.h', + 'Line' => '51', + 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender', + 'NameSpace' => 'log4cxx::AsyncAppender', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::AsyncAppender::ClazzAsyncAppender::~ClazzAsyncAppender() [_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD1Ev]', + '24' => '(int (*)(...)) log4cxx::AsyncAppender::ClazzAsyncAppender::~ClazzAsyncAppender() [_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::AsyncAppender::ClazzAsyncAppender::newInstance() const [_ZTch0_h0_NK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::AsyncAppender::ClazzAsyncAppender::getName[abi:cxx11]() const [_ZNK7log4cxx13AsyncAppender18ClazzAsyncAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::AsyncAppender::ClazzAsyncAppender::newInstance() const [_ZNK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::AsyncAppender::ClazzAsyncAppender) [_ZTIN7log4cxx13AsyncAppender18ClazzAsyncAppenderE]' + } + }, + '2508047' => { + 'BaseType' => '2507835', + 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2508052' => { + 'Base' => { + '1379591' => { + 'pos' => '0' + } + }, + 'Line' => '99', + 'Memb' => { + '0' => { + 'name' => 'buffer', + 'offset' => '388', + 'type' => '2509724' + }, + '1' => { + 'name' => 'bufferMutex', + 'offset' => '520', + 'type' => '106135' + }, + '2' => { + 'name' => 'bufferNotFull', + 'offset' => '584', + 'type' => '1810993' + }, + '3' => { + 'name' => 'bufferNotEmpty', + 'offset' => '662', + 'type' => '1810993' + }, + '4' => { + 'name' => 'discardMap', + 'offset' => '836', + 'type' => '2521552' + }, + '5' => { + 'name' => 'bufferSize', + 'offset' => '914', + 'type' => '190263' + }, + '6' => { + 'name' => 'appenders', + 'offset' => '1024', + 'type' => '2502832' + }, + '7' => { + 'name' => 'dispatcher', + 'offset' => '1046', + 'type' => '1797924' + }, + '8' => { + 'name' => 'locationInfo', + 'offset' => '1060', + 'type' => '174077' + }, + '9' => { + 'name' => 'blocking', + 'offset' => '1061', + 'type' => '174077' + } + }, + 'Name' => 'struct log4cxx::AsyncAppender::AsyncAppenderPriv', + 'NameSpace' => 'log4cxx::AsyncAppender', + 'Protected' => 1, + 'Size' => '432', + 'Source' => 'asyncappender.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::AsyncAppender::AsyncAppenderPriv::~AsyncAppenderPriv() [_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD1Ev]', + '24' => '(int (*)(...)) log4cxx::AsyncAppender::AsyncAppenderPriv::~AsyncAppenderPriv() [_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::AsyncAppender::AsyncAppenderPriv) [_ZTIN7log4cxx13AsyncAppender17AsyncAppenderPrivE]' + } + }, + '2509373' => { + 'BaseType' => '2507817', + 'Name' => 'log4cxx::AsyncAppender const', + 'Size' => '24', + 'Type' => 'Const' + }, + '2509724' => { + 'BaseType' => '2354662', + 'Header' => 'asyncappender.h', + 'Line' => '27', + 'Name' => 'log4cxx::LoggingEventList', + 'NameSpace' => 'log4cxx', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '2519981' => { + 'BaseType' => '2500967', + 'Name' => 'struct log4cxx::helpers::ThreadUtility::priv_data*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2520201' => { + 'BaseType' => '2500954', + 'Name' => 'log4cxx::helpers::ThreadUtility*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2520206' => { + 'BaseType' => '2520201', + 'Name' => 'log4cxx::helpers::ThreadUtility*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2520246' => { + 'Name' => 'void(*)(union std::_Any_data const&)', + 'Param' => { '0' => { - 'access' => 'private', - 'name' => 'names', - 'offset' => '8', - 'type' => '2242385' + 'type' => '574371' } }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '32', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken::~FullMonthNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken::~FullMonthNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenE]' - } - }, - '16711473' => { - 'BaseType' => '16711256', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken const', - 'Size' => '32', - 'Type' => 'Const' - }, - '16711478' => { - 'Base' => { - '16707275' => { - 'pos' => '0' - } + 'Return' => '1', + 'Size' => '8', + 'Type' => 'FuncPtr' + }, + '2520298' => { + 'Name' => 'void(*)(union std::_Any_data const&, std::__cxx11::basic_string&&, std::thread::id&&, unsigned long&&)', + 'Param' => { + '0' => { + 'type' => '574371' + }, + '1' => { + 'type' => '202710' + }, + '2' => { + 'type' => '1981563' + }, + '3' => { + 'type' => '574466' + } }, - 'Line' => '295', + 'Return' => '1', + 'Size' => '8', + 'Type' => 'FuncPtr' + }, + '2521258' => { + 'Line' => '49', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'maxEvent', + 'offset' => '0', + 'type' => '565581' + }, + '1' => { + 'access' => 'private', + 'name' => 'count', + 'offset' => '22', + 'type' => '190263' + } + }, + 'Name' => 'DiscardSummary', + 'Size' => '24', + 'Source' => 'asyncappender.cpp', + 'Type' => 'Class' + }, + '2521522' => { + 'BaseType' => '2521258', + 'Name' => 'DiscardSummary const', + 'Size' => '24', + 'Type' => 'Const' + }, + '2521527' => { + 'BaseType' => '2521258', + 'Name' => 'DiscardSummary*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2521532' => { + 'BaseType' => '2521527', + 'Name' => 'DiscardSummary*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2521542' => { + 'BaseType' => '2521522', + 'Name' => 'DiscardSummary const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '2521547' => { + 'BaseType' => '2521258', + 'Name' => 'DiscardSummary&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '2521552' => { + 'BaseType' => '2350416', + 'Line' => '93', + 'Name' => 'DiscardMap', + 'Size' => '48', + 'Source' => 'asyncappender.cpp', + 'Type' => 'Typedef' + }, + '2522174' => { + 'BaseType' => '2366141', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2522224' => { + 'BaseType' => '2501628', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2522229' => { + 'BaseType' => '2522224', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2522335' => { + 'BaseType' => '2508052', + 'Name' => 'struct log4cxx::AsyncAppender::AsyncAppenderPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2522340' => { + 'BaseType' => '2522335', + 'Name' => 'struct log4cxx::AsyncAppender::AsyncAppenderPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2523110' => { + 'BaseType' => '2523115', + 'Name' => 'char const[11]&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '2523115' => { + 'BaseType' => '191037', + 'Name' => 'char const[11]', + 'Size' => '11', + 'Type' => 'Array' + }, + '2523382' => { + 'BaseType' => '2507817', + 'Name' => 'log4cxx::AsyncAppender*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2523387' => { + 'BaseType' => '2523382', + 'Name' => 'log4cxx::AsyncAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2523392' => { + 'Class' => '2507817', + 'Name' => 'void()(log4cxx::AsyncAppender::*)', + 'Return' => '198458', + 'Size' => '8', + 'Type' => 'FieldPtr' + }, + '2523437' => { + 'BaseType' => '190206', + 'Name' => 'unsigned char[56]', + 'Size' => '56', + 'Type' => 'Array' + }, + '2523493' => { + 'BaseType' => '576748', + 'Name' => 'log4cxx::spi::LoggingEvent*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2525011' => { + 'BaseType' => '2509373', + 'Name' => 'log4cxx::AsyncAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2525016' => { + 'BaseType' => '2525011', + 'Name' => 'log4cxx::AsyncAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2525095' => { + 'BaseType' => '2507835', + 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2525100' => { + 'BaseType' => '2525095', + 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2525105' => { + 'BaseType' => '2508047', + 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2525110' => { + 'BaseType' => '2525105', + 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2526419' => { + 'BaseType' => '2502844', + 'Name' => 'log4cxx::helpers::IllegalArgumentException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2526424' => { + 'BaseType' => '2526419', + 'Name' => 'log4cxx::helpers::IllegalArgumentException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2526429' => { + 'BaseType' => '2503000', + 'Name' => 'log4cxx::helpers::IllegalArgumentException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '2526434' => { + 'BaseType' => '2502844', + 'Name' => 'log4cxx::helpers::IllegalArgumentException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '2526439' => { + 'BaseType' => '2503005', + 'Name' => 'log4cxx::helpers::RuntimeException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2526444' => { + 'BaseType' => '2526439', + 'Name' => 'log4cxx::helpers::RuntimeException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2526449' => { + 'BaseType' => '2503218', + 'Name' => 'log4cxx::helpers::RuntimeException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '2526454' => { + 'BaseType' => '2503005', + 'Name' => 'log4cxx::helpers::RuntimeException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '2526621' => { + 'BaseType' => '2499676', + 'Name' => 'log4cxx::helpers::Exception const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2527404' => { + 'BaseType' => '2523392', + 'Name' => 'void()(log4cxx::AsyncAppender::*)&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '2527409' => { + 'BaseType' => '2523382', + 'Name' => 'log4cxx::AsyncAppender*&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '2536667' => { + 'BaseType' => '1374417', + 'Name' => 'log4cxx::helpers::Exception*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2536672' => { + 'BaseType' => '2536667', + 'Name' => 'log4cxx::helpers::Exception*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '25445478' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'names', - 'offset' => '8', - 'type' => '2242385' + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '32', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken::~AbbreviatedMonthNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken::~AbbreviatedMonthNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenE]' - } + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '566440' + } + }, + 'Type' => 'Class' }, - '16711695' => { - 'BaseType' => '16711478', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken const', - 'Size' => '32', + '25463327' => { + 'BaseType' => '25445478', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '25463332' => { + 'BaseType' => '25463327', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', 'Type' => 'Const' }, - '16711700' => { - 'Base' => { - '16708543' => { - 'pos' => '0' - } - }, - 'Line' => '280', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MonthToken::~MonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MonthToken::~MonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MonthToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl10MonthToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MonthToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenE]' - } + '25463868' => { + 'BaseType' => '558708', + 'Name' => 'log4cxx::helpers::ResourceBundle*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '16711892' => { - 'BaseType' => '16711700', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken const', - 'Size' => '16', + '25464604' => { + 'BaseType' => '576768', + 'Name' => 'log4cxx::Logger const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '25464629' => { + 'BaseType' => '89533', + 'Name' => 'std::string&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '25464634' => { + 'BaseType' => '89705', + 'Name' => 'std::wstring&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '25464744' => { + 'BaseType' => '576788', + 'Name' => 'log4cxx::Logger::ClazzLogger*const', + 'Size' => '8', 'Type' => 'Const' }, - '16711897' => { + '25464754' => { + 'BaseType' => '576793', + 'Name' => 'log4cxx::Logger::ClazzLogger const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '25978367' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '25982700' + } + }, + 'Type' => 'Class' + }, + '25982682' => { 'Base' => { - '16708543' => { - 'pos' => '0' - } + '564875' => { + 'pos' => '0' + } }, - 'Line' => '265', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Header' => 'loggermatchfilter.h', + 'Line' => '45', + 'Name' => 'log4cxx::filter::LoggerMatchFilter', + 'NameSpace' => 'log4cxx::filter', 'Size' => '16', - 'Source' => 'simpledateformat.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::YearToken::~YearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::YearToken::~YearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::YearToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl9YearToken8getFieldERK14apr_time_exp_t]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::YearToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenE]' + '104' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter17LoggerMatchFilter10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter17LoggerMatchFilter4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter17LoggerMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter17LoggerMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LoggerMatchFilter) [_ZTIN7log4cxx6filter17LoggerMatchFilterE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::~LoggerMatchFilter() [_ZN7log4cxx6filter17LoggerMatchFilterD1Ev]', + '88' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::~LoggerMatchFilter() [_ZN7log4cxx6filter17LoggerMatchFilterD0Ev]', + '96' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::getClass() const [_ZNK7log4cxx6filter17LoggerMatchFilter8getClassEv]' } }, - '16712089' => { - 'BaseType' => '16711897', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken const', - 'Size' => '16', - 'Type' => 'Const' - }, - '16712094' => { + '25982700' => { 'Base' => { - '16707275' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Line' => '221', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Header' => 'loggermatchfilter.h', + 'Line' => '52', + 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter', + 'NameSpace' => 'log4cxx::filter::LoggerMatchFilter', 'Size' => '8', - 'Source' => 'simpledateformat.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::EraToken::~EraToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::EraToken::~EraToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::EraToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl8EraToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::EraToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenE]' + '16' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::~ClazzLoggerMatchFilter() [_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD2Ev]', + '24' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::~ClazzLoggerMatchFilter() [_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::newInstance() const [_ZNK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter) [_ZTIN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterE]' } }, - '16712296' => { - 'BaseType' => '16712094', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken const', + '25982908' => { + 'BaseType' => '25982700', + 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter const', 'Size' => '8', 'Type' => 'Const' }, - '16712301' => { + '25982913' => { 'Base' => { - '16707275' => { - 'pos' => '0' - } + '564884' => { + 'pos' => '0' + } }, - 'Line' => '202', + 'Line' => '32', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'ch', - 'offset' => '8', - 'type' => '407306' + 'name' => 'acceptOnMatch', + 'offset' => '36', + 'type' => '174077' }, '1' => { - 'access' => 'private', - 'name' => 'count', - 'offset' => '12', - 'type' => '50231' + 'name' => 'loggerToMatch', + 'offset' => '50', + 'type' => '209661' } }, - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '16', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Class', + 'Name' => 'struct log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate', + 'NameSpace' => 'log4cxx::filter::LoggerMatchFilter', + 'Private' => 1, + 'Size' => '64', + 'Source' => 'loggermatchfilter.cpp', + 'Type' => 'Struct', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::LiteralToken::~LiteralToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::LiteralToken::~LiteralToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::LiteralToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12LiteralToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::LiteralToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenE]' + '16' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate::~LoggerMatchFilterPrivate() [_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate::~LoggerMatchFilterPrivate() [_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate) [_ZTIN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateE]' } }, - '16712529' => { - 'BaseType' => '16712301', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken const', + '25983579' => { + 'BaseType' => '25982682', + 'Name' => 'log4cxx::filter::LoggerMatchFilter const', 'Size' => '16', 'Type' => 'Const' }, - '16712534' => { - 'BaseType' => '16716292', - 'Line' => '62', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::incrementFunction', - 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', - 'Size' => '8', - 'Source' => 'simpledateformat.cpp', - 'Type' => 'Typedef' - }, - '16712564' => { - 'BaseType' => '16676430', - 'Header' => 'simpledateformat.h', - 'Line' => '38', - 'Name' => 'log4cxx::helpers::PatternTokenList', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '24', - 'Type' => 'Typedef' - }, - '16713689' => { - 'BaseType' => '16706368', - 'Name' => 'struct log4cxx::helpers::SimpleDateFormat::SimpleDateFormatPrivate*', + '25991639' => { + 'BaseType' => '25978367', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '16714156' => { - 'BaseType' => '16714173', - 'Header' => 'apr_time.h', - 'Line' => '91', - 'Name' => 'apr_time_exp_t', - 'Size' => '44', - 'Type' => 'Typedef' - }, - '16714168' => { - 'BaseType' => '16714156', - 'Name' => 'apr_time_exp_t const', - 'Size' => '44', - 'Type' => 'Const' - }, - '16714173' => { - 'Header' => 'apr_time.h', - 'Line' => '98', - 'Memb' => { - '0' => { - 'name' => 'tm_usec', - 'offset' => '0', - 'type' => '4730280' - }, - '1' => { - 'name' => 'tm_sec', - 'offset' => '4', - 'type' => '4730280' - }, - '10' => { - 'name' => 'tm_gmtoff', - 'offset' => '40', - 'type' => '4730280' - }, - '2' => { - 'name' => 'tm_min', - 'offset' => '8', - 'type' => '4730280' - }, - '3' => { - 'name' => 'tm_hour', - 'offset' => '12', - 'type' => '4730280' - }, - '4' => { - 'name' => 'tm_mday', - 'offset' => '16', - 'type' => '4730280' - }, - '5' => { - 'name' => 'tm_mon', - 'offset' => '20', - 'type' => '4730280' - }, - '6' => { - 'name' => 'tm_year', - 'offset' => '24', - 'type' => '4730280' - }, - '7' => { - 'name' => 'tm_wday', - 'offset' => '28', - 'type' => '4730280' - }, - '8' => { - 'name' => 'tm_yday', - 'offset' => '32', - 'type' => '4730280' - }, - '9' => { - 'name' => 'tm_isdst', - 'offset' => '36', - 'type' => '4730280' - } - }, - 'Name' => 'struct apr_time_exp_t', - 'Size' => '44', - 'Type' => 'Struct' - }, - '16714975' => { - 'BaseType' => '16714986', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::PatternToken**', + '25991644' => { + 'BaseType' => '25991639', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '16714986' => { - 'BaseType' => '16707275', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::PatternToken*', + '25991750' => { + 'BaseType' => '25982913', + 'Name' => 'struct log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '16714992' => { - 'BaseType' => '16714986', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::PatternToken*const', + '25991755' => { + 'BaseType' => '25991750', + 'Name' => 'struct log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate*const', 'Size' => '8', 'Type' => 'Const' }, - '16715217' => { - 'BaseType' => '16676430', - 'Name' => 'std::vector&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '16715428' => { - 'BaseType' => '3418930', - 'Name' => 'log4cxx::helpers::SimpleDateFormat*const', + '25992370' => { + 'BaseType' => '25982682', + 'Name' => 'log4cxx::filter::LoggerMatchFilter*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '16715445' => { - 'BaseType' => '3420080', - 'Name' => 'log4cxx::helpers::SimpleDateFormat const*const', + '25992375' => { + 'BaseType' => '25992370', + 'Name' => 'log4cxx::filter::LoggerMatchFilter*const', 'Size' => '8', 'Type' => 'Const' }, - '16715456' => { - 'BaseType' => '16707663', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken*', + '25992395' => { + 'BaseType' => '25983579', + 'Name' => 'log4cxx::filter::LoggerMatchFilter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715462' => { - 'BaseType' => '16715456', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken*const', + '25992400' => { + 'BaseType' => '25992395', + 'Name' => 'log4cxx::filter::LoggerMatchFilter const*const', 'Size' => '8', 'Type' => 'Const' }, - '16715479' => { - 'BaseType' => '16707861', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken const*', + '25992454' => { + 'BaseType' => '25982700', + 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715485' => { - 'BaseType' => '16715479', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken const*const', + '25992459' => { + 'BaseType' => '25992454', + 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter*const', 'Size' => '8', 'Type' => 'Const' }, - '16715490' => { - 'BaseType' => '16714168', - 'Name' => 'apr_time_exp_t const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '16715496' => { - 'BaseType' => '16707866', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken*', + '25992464' => { + 'BaseType' => '25982908', + 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715502' => { - 'BaseType' => '16715496', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken*const', + '25992469' => { + 'BaseType' => '25992464', + 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter const*const', 'Size' => '8', 'Type' => 'Const' }, - '16715519' => { - 'BaseType' => '16708119', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken const*', - 'Size' => '8', - 'Type' => 'Pointer' + '26297060' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9953745' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '16715525' => { - 'BaseType' => '16715519', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken const*const', - 'Size' => '8', - 'Type' => 'Const' + '26297208' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9953745' + } + }, + 'Type' => 'Struct' }, - '16715530' => { - 'BaseType' => '16708124', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken*', - 'Size' => '8', - 'Type' => 'Pointer' + '26297222' => { + 'BaseType' => '9953745', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' }, - '16715536' => { - 'BaseType' => '16715530', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken*const', - 'Size' => '8', - 'Type' => 'Const' + '26297245' => { + 'Base' => { + '26297060' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '26372172' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9953745' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '16715553' => { - 'BaseType' => '16708341', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken const*', - 'Size' => '8', - 'Type' => 'Pointer' + '26297526' => { + 'BaseType' => '26297222', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' }, - '16715559' => { - 'BaseType' => '16715553', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken const*const', - 'Size' => '8', - 'Type' => 'Const' + '26298457' => { + 'Base' => { + '26297245' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9953745' + } + }, + 'Type' => 'Class' }, - '16715564' => { - 'BaseType' => '16708346', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken*', + '26357996' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '9953770' + } + }, + 'Type' => 'Class' }, - '16715570' => { - 'BaseType' => '16715564', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken*const', - 'Size' => '8', + '26360566' => { + 'BaseType' => '9953745', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter const', + 'Size' => '16', 'Type' => 'Const' }, - '16715587' => { - 'BaseType' => '16708538', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken const*', + '26371751' => { + 'BaseType' => '26357996', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715593' => { - 'BaseType' => '16715587', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken const*const', + '26371756' => { + 'BaseType' => '26371751', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '16715598' => { - 'BaseType' => '16708804', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken*', + '26372172' => { + 'BaseType' => '26297526', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715604' => { - 'BaseType' => '16715598', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken*const', + '26372202' => { + 'BaseType' => '26298457', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'RvalueRef' }, - '16715621' => { - 'BaseType' => '16708996', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken const*', + '26372227' => { + 'BaseType' => '9953745', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715627' => { - 'BaseType' => '16715621', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken const*const', + '26372232' => { + 'BaseType' => '26372227', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '16715632' => { - 'BaseType' => '16709001', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken*', + '26372753' => { + 'BaseType' => '26360566', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715638' => { - 'BaseType' => '16715632', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken*const', + '26372758' => { + 'BaseType' => '26372753', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '16715655' => { - 'BaseType' => '16709193', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken const*', + '26372913' => { + 'BaseType' => '9977450', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '16715661' => { - 'BaseType' => '16715655', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken const*const', + '26372923' => { + 'BaseType' => '9977455', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '16715666' => { - 'BaseType' => '16709198', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken*', - 'Size' => '8', - 'Type' => 'Pointer' + '26663912' => { + 'Copied' => 1, + 'Header' => 'stl_map.h', + 'Line' => '100', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '26663925' + } + }, + 'Name' => 'std::map, std::__cxx11::basic_string >', + 'NameSpace' => 'std', + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key', + 'type' => '51677' + }, + '1' => { + 'key' => '_Tp', + 'type' => '51677' + } + }, + 'Type' => 'Class' }, - '16715672' => { - 'BaseType' => '16715666', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken*const', - 'Size' => '8', - 'Type' => 'Const' + '26663925' => { + 'BaseType' => '26712339', + 'Header' => 'stl_map.h', + 'Line' => '150', + 'Name' => 'std::map, std::__cxx11::basic_string >::_Rep_type', + 'NameSpace' => 'std::map, std::__cxx11::basic_string >', + 'Private' => 1, + 'Size' => '48', + 'Type' => 'Typedef' }, - '16715689' => { - 'BaseType' => '16709390', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken const*', - 'Size' => '8', - 'Type' => 'Pointer' + '26710493' => { + 'Base' => { + '26718871' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '211', + 'Memb' => { + '0' => { + 'name' => 'first', + 'offset' => '0', + 'type' => '58800' + }, + '1' => { + 'name' => 'second', + 'offset' => '50', + 'type' => '51677' + } + }, + 'Name' => 'struct std::pairconst, std::__cxx11::basic_string >', + 'NameSpace' => 'std', + 'Size' => '64', + 'TParam' => { + '0' => { + 'key' => '_T1', + 'type' => '58800' + }, + '1' => { + 'key' => '_T2', + 'type' => '51677' + } + }, + 'Type' => 'Struct' }, - '16715695' => { - 'BaseType' => '16715689', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken const*const', - 'Size' => '8', - 'Type' => 'Const' + '26710953' => { + 'Base' => { + '26772179' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'name' => 'std::pair, std::allocator >, std::__cxx11::basic_string, std::allocator > >' + } + }, + 'Type' => 'Class' }, - '16715700' => { - 'BaseType' => '16709395', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken*', - 'Size' => '8', - 'Type' => 'Pointer' + '26711618' => { + 'Base' => { + '26772800' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'name' => 'std::_Rb_tree_node, std::allocator >, std::__cxx11::basic_string, std::allocator > > >' + } + }, + 'Type' => 'Class' }, - '16715706' => { - 'BaseType' => '16715700', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken*const', - 'Size' => '8', - 'Type' => 'Const' + '26711904' => { + 'Base' => { + '108124' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '216', + 'Memb' => { + '0' => { + 'name' => '_M_storage', + 'offset' => '50', + 'type' => '26774619' + } + }, + 'Name' => 'struct std::_Rb_tree_nodeconst, std::__cxx11::basic_string > >', + 'NameSpace' => 'std', + 'Size' => '96', + 'TParam' => { + '0' => { + 'key' => '_Val', + 'type' => '26710493' + } + }, + 'Type' => 'Struct' + }, + '26712339' => { + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '425', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '26712353' + } + }, + 'Name' => 'std::_Rb_tree, std::pairconst, std::__cxx11::basic_string >, std::_Select1stconst, std::__cxx11::basic_string > >, std::less >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >', + 'NameSpace' => 'std', + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key', + 'type' => '51677' + }, + '1' => { + 'key' => '_Val', + 'type' => '26710493' + }, + '2' => { + 'key' => '_KeyOfValue', + 'type' => '26739927' + }, + '3' => { + 'key' => '_Compare', + 'type' => '2359512' + }, + '4' => { + 'key' => '_Alloc', + 'type' => '26710953' + } + }, + 'Type' => 'Class' + }, + '26712353' => { + 'Base' => { + '108320' => { + 'pos' => '2' + }, + '2359588' => { + 'pos' => '1' + }, + '26711618' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '660', + 'Name' => 'struct std::_Rb_tree, std::pairconst, std::__cxx11::basic_string >, std::_Select1stconst, std::__cxx11::basic_string > >, std::less >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >::_Rb_tree_impl > >', + 'NameSpace' => 'std::_Rb_tree, std::pairconst, std::__cxx11::basic_string >, std::_Select1stconst, std::__cxx11::basic_string > >, std::less >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >', + 'Protected' => 1, + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key_compare', + 'type' => '2359512' + } + }, + 'Type' => 'Struct' + }, + '26718871' => { + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '189', + 'Name' => 'std::__pair_baseconst, std::__cxx11::basic_string >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_U1', + 'type' => '58800' + }, + '1' => { + 'key' => '_U2', + 'type' => '51677' + } + }, + 'Type' => 'Class' + }, + '26739871' => { + 'Header' => 'stl_function.h', + 'Line' => '117', + 'Name' => 'struct std::unary_functionconst, std::__cxx11::basic_string >, std::__cxx11::basic_stringconst>', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Arg', + 'type' => '26710493' + }, + '1' => { + 'key' => '_Result', + 'type' => '58800' + } + }, + 'Type' => 'Struct' }, - '16715723' => { - 'BaseType' => '16709606', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken const*', - 'Size' => '8', - 'Type' => 'Pointer' + '26739927' => { + 'Base' => { + '26739871' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_function.h', + 'Line' => '1166', + 'Name' => 'struct std::_Select1stconst, std::__cxx11::basic_string > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Pair', + 'type' => '26710493' + } + }, + 'Type' => 'Struct' }, - '16715729' => { - 'BaseType' => '16715723', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken const*const', - 'Size' => '8', - 'Type' => 'Const' + '26772179' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, std::__cxx11::basic_string > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '26710493' + } + }, + 'Type' => 'Class' }, - '16715734' => { - 'BaseType' => '16709611', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken*', - 'Size' => '8', - 'Type' => 'Pointer' + '26772800' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, std::__cxx11::basic_string > > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '26711904' + } + }, + 'Type' => 'Class' }, - '16715740' => { - 'BaseType' => '16715734', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken*const', - 'Size' => '8', - 'Type' => 'Const' + '26774619' => { + 'Copied' => 1, + 'Header' => 'aligned_buffer.h', + 'Line' => '47', + 'Memb' => { + '0' => { + 'name' => '_M_storage', + 'offset' => '0', + 'type' => '9976554' + } + }, + 'Name' => 'struct __gnu_cxx::__aligned_membufconst, std::__cxx11::basic_string > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '64', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '26710493' + } + }, + 'Type' => 'Struct' }, - '16715757' => { - 'BaseType' => '16709822', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken const*', - 'Size' => '8', - 'Type' => 'Pointer' + '2679474' => { + 'BaseType' => '955078', + 'Name' => 'log4cxx::Appender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '26797588' => { + 'Copied' => 1, + 'Header' => 'system.h', + 'Line' => '33', + 'Name' => 'log4cxx::helpers::System', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '1', + 'Type' => 'Class' }, - '16715763' => { - 'BaseType' => '16715757', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken const*const', + '26799011' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '564713' + } + }, + 'Type' => 'Class' }, - '16715768' => { - 'BaseType' => '16709827', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken*', + '26821444' => { + 'BaseType' => '567024', + 'Name' => 'log4cxx::MDC::Map*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715774' => { - 'BaseType' => '16715768', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '16715791' => { - 'BaseType' => '16710044', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken const*', + '26821449' => { + 'BaseType' => '26663912', + 'Name' => 'std::map, std::__cxx11::basic_string >*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715797' => { - 'BaseType' => '16715791', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '16715802' => { - 'BaseType' => '16710049', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken*', + '26821809' => { + 'BaseType' => '26799011', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715808' => { - 'BaseType' => '16715802', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken*const', + '26821814' => { + 'BaseType' => '26821809', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '16715825' => { - 'BaseType' => '16710266', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16715831' => { - 'BaseType' => '16715825', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken const*const', + '26822716' => { + 'BaseType' => '1392465', + 'Name' => 'log4cxx::spi::LoggingEvent const*const', 'Size' => '8', 'Type' => 'Const' }, - '16715836' => { - 'BaseType' => '16710271', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16715842' => { - 'BaseType' => '16715836', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken*const', + '26822791' => { + 'BaseType' => '576738', + 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent*const', 'Size' => '8', 'Type' => 'Const' }, - '16715859' => { - 'BaseType' => '16710463', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16715865' => { - 'BaseType' => '16715859', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken const*const', + '26822801' => { + 'BaseType' => '576743', + 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent const*const', 'Size' => '8', 'Type' => 'Const' }, - '16715870' => { - 'BaseType' => '16710468', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16715876' => { - 'BaseType' => '16715870', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken*const', + '2696816' => { + 'BaseType' => '2503614', + 'Name' => 'log4cxx::Level const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2696821' => { + 'BaseType' => '2696816', + 'Name' => 'log4cxx::Level const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '2699093' => { + 'Name' => 'void(std::__cxx11::basic_string, std::thread::id, unsigned long)', + 'Param' => { + '0' => { + 'type' => '51677' + }, + '1' => { + 'type' => '1797937' + }, + '2' => { + 'type' => '190225' + } + }, + 'Return' => '1', + 'Type' => 'Func' + }, + '27270068' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3121060' + } + }, + 'Type' => 'Class' }, - '16715893' => { - 'BaseType' => '16710660', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken const*', + '27282690' => { + 'BaseType' => '27270068', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715899' => { - 'BaseType' => '16715893', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken const*const', + '27282695' => { + 'BaseType' => '27282690', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '16715904' => { - 'BaseType' => '16710665', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16715910' => { - 'BaseType' => '16715904', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken*const', + '27283395' => { + 'BaseType' => '3134087', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '16715927' => { - 'BaseType' => '16710857', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16715933' => { - 'BaseType' => '16715927', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken const*const', + '27283405' => { + 'BaseType' => '3134092', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '16715938' => { - 'BaseType' => '16710862', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken*', + '27581394' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '1374445' + } + }, + 'Type' => 'Class' }, - '16715944' => { - 'BaseType' => '16715938', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken*const', + '27587455' => { + 'BaseType' => '1389697', + 'Name' => 'log4cxx::helpers::LogLog*const', 'Size' => '8', 'Type' => 'Const' }, - '16715961' => { - 'BaseType' => '16711054', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken const*', + '27589169' => { + 'BaseType' => '27581394', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '16715967' => { - 'BaseType' => '16715961', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken const*const', + '27589174' => { + 'BaseType' => '27589169', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '16715972' => { - 'BaseType' => '16711059', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken*', - 'Size' => '8', - 'Type' => 'Pointer' + '27915887' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3118493' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '16715978' => { - 'BaseType' => '16715972', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken*const', - 'Size' => '8', - 'Type' => 'Const' + '27916035' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3118493' + } + }, + 'Type' => 'Struct' }, - '16715995' => { - 'BaseType' => '16711251', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken const*', - 'Size' => '8', - 'Type' => 'Pointer' + '27916049' => { + 'BaseType' => '3118493', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' }, - '16716001' => { - 'BaseType' => '16715995', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken const*const', - 'Size' => '8', - 'Type' => 'Const' + '27916072' => { + 'Base' => { + '27915887' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '28017162' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3118493' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '16716006' => { - 'BaseType' => '16711256', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken*', - 'Size' => '8', - 'Type' => 'Pointer' + '27916353' => { + 'BaseType' => '27916049', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' }, - '16716012' => { - 'BaseType' => '16716006', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken*const', + '28001275' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '11314196' + } + }, + 'Type' => 'Class' }, - '16716029' => { - 'BaseType' => '16711473', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken const*', + '28017002' => { + 'BaseType' => '28001275', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '16716035' => { - 'BaseType' => '16716029', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken const*const', + '28017007' => { + 'BaseType' => '28017002', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '16716040' => { - 'BaseType' => '16711478', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken*', + '28017162' => { + 'BaseType' => '27916353', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '16716046' => { - 'BaseType' => '16716040', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken*const', + '28018638' => { + 'BaseType' => '11323653', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector*const', 'Size' => '8', 'Type' => 'Const' }, - '16716063' => { - 'BaseType' => '16711695', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16716069' => { - 'BaseType' => '16716063', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken const*const', + '28018648' => { + 'BaseType' => '11323658', + 'Name' => 'log4cxx::spi::DefaultRepositorySelector::ClazzDefaultRepositorySelector const*const', 'Size' => '8', 'Type' => 'Const' }, - '16716074' => { - 'BaseType' => '16711700', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken*', - 'Size' => '8', - 'Type' => 'Pointer' + '28185733' => { + 'Copied' => 1, + 'Name' => 'std::__cxx11::basic_stringstream', + 'NameSpace' => 'std::__cxx11', + 'TParam' => { + '0' => { + 'key' => '_CharT', + 'type' => '190393' + } + }, + 'Type' => 'Class' }, - '16716080' => { - 'BaseType' => '16716074', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken*const', - 'Size' => '8', - 'Type' => 'Const' + '28401382' => { + 'Base' => { + '28402052' => { + 'pos' => '0' + } + }, + 'Header' => 'stream.h', + 'Line' => '329', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'stream', + 'offset' => '1298', + 'type' => '28411711' + } + }, + 'Name' => 'log4cxx::wlogstream', + 'NameSpace' => 'log4cxx', + 'Size' => '520', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::wlogstream::~wlogstream() [_ZN7log4cxx10wlogstreamD2Ev]', + '24' => '(int (*)(...)) log4cxx::wlogstream::~wlogstream() [_ZN7log4cxx10wlogstreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::wlogstream::log(std::shared_ptr&, std::shared_ptr const&, log4cxx::spi::LocationInfo const&) [_ZN7log4cxx10wlogstream3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE]', + '40' => '(int (*)(...)) log4cxx::wlogstream::erase() [_ZN7log4cxx10wlogstream5eraseEv]', + '48' => '(int (*)(...)) log4cxx::wlogstream::get_stream_state(std::ios_base&, std::ios_base&, int&, bool&) const [_ZNK7log4cxx10wlogstream16get_stream_stateERSt8ios_baseS2_RiRb]', + '56' => '(int (*)(...)) log4cxx::wlogstream::refresh_stream_state() [_ZN7log4cxx10wlogstream20refresh_stream_stateEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::wlogstream) [_ZTIN7log4cxx10wlogstreamE]' + } }, - '16716097' => { - 'BaseType' => '16711892', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken const*', - 'Size' => '8', - 'Type' => 'Pointer' + '28401484' => { + 'BaseType' => '190393', + 'Header' => 'stream.h', + 'Line' => '331', + 'Name' => 'log4cxx::wlogstream::Ch', + 'NameSpace' => 'log4cxx::wlogstream', + 'Private' => 1, + 'Size' => '4', + 'Type' => 'Typedef' }, - '16716103' => { - 'BaseType' => '16716097', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken const*const', - 'Size' => '8', + '28401496' => { + 'BaseType' => '28401484', + 'Name' => 'log4cxx::wlogstream::Ch const', + 'Size' => '4', 'Type' => 'Const' }, - '16716108' => { - 'BaseType' => '16711897', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16716114' => { - 'BaseType' => '16716108', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken*const', - 'Size' => '8', + '28402047' => { + 'BaseType' => '28401382', + 'Name' => 'log4cxx::wlogstream const', + 'Size' => '520', 'Type' => 'Const' }, - '16716131' => { - 'BaseType' => '16712089', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16716137' => { - 'BaseType' => '16716131', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken const*const', - 'Size' => '8', - 'Type' => 'Const' + '28402052' => { + 'Header' => 'stream.h', + 'Line' => '37', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + }, + '1' => { + 'access' => 'private', + 'name' => 'initset', + 'offset' => '8', + 'type' => '28402981' + }, + '2' => { + 'access' => 'private', + 'name' => 'initclear', + 'offset' => '548', + 'type' => '28402981' + }, + '3' => { + 'access' => 'private', + 'name' => 'fillchar', + 'offset' => '1088', + 'type' => '190263' + }, + '4' => { + 'access' => 'private', + 'name' => 'fillset', + 'offset' => '1092', + 'type' => '174077' + }, + '5' => { + 'access' => 'private', + 'name' => 'enabled', + 'offset' => '1093', + 'type' => '174077' + }, + '6' => { + 'access' => 'private', + 'name' => 'logger', + 'offset' => '1096', + 'type' => '3121982' + }, + '7' => { + 'access' => 'private', + 'name' => 'level', + 'offset' => '1124', + 'type' => '567044' + }, + '8' => { + 'access' => 'private', + 'name' => 'location', + 'offset' => '1152', + 'type' => '564239' + } + }, + 'Name' => 'log4cxx::logstream_base', + 'NameSpace' => 'log4cxx', + 'Size' => '512', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) __cxa_pure_virtual', + '40' => '(int (*)(...)) __cxa_pure_virtual', + '48' => '(int (*)(...)) __cxa_pure_virtual', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::logstream_base) [_ZTIN7log4cxx14logstream_baseE]' + } }, - '16716142' => { - 'BaseType' => '16708543', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken*', - 'Size' => '8', - 'Type' => 'Pointer' + '28402981' => { + 'Base' => { + '101951' => { + 'pos' => '0' + } + }, + 'Header' => 'stream.h', + 'Line' => '183', + 'Name' => 'log4cxx::logstream_base::logstream_ios_base', + 'NameSpace' => 'log4cxx::logstream_base', + 'Private' => 1, + 'Size' => '216', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::logstream_base::logstream_ios_base::~logstream_ios_base() [_ZN7log4cxx14logstream_base18logstream_ios_baseD1Ev]', + '24' => '(int (*)(...)) log4cxx::logstream_base::logstream_ios_base::~logstream_ios_base() [_ZN7log4cxx14logstream_base18logstream_ios_baseD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::logstream_base::logstream_ios_base) [_ZTIN7log4cxx14logstream_base18logstream_ios_baseE]' + } }, - '16716148' => { - 'BaseType' => '16716142', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken*const', - 'Size' => '8', + '28403246' => { + 'BaseType' => '28402052', + 'Name' => 'log4cxx::logstream_base const', + 'Size' => '512', 'Type' => 'Const' }, - '16716165' => { - 'BaseType' => '16708799', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16716171' => { - 'BaseType' => '16716165', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken const*const', - 'Size' => '8', - 'Type' => 'Const' + '28403285' => { + 'Base' => { + '28402052' => { + 'pos' => '0' + } + }, + 'Header' => 'stream.h', + 'Line' => '226', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'stream', + 'offset' => '1298', + 'type' => '18126702' + } + }, + 'Name' => 'log4cxx::logstream', + 'NameSpace' => 'log4cxx', + 'Size' => '520', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::logstream::~logstream() [_ZN7log4cxx9logstreamD1Ev]', + '24' => '(int (*)(...)) log4cxx::logstream::~logstream() [_ZN7log4cxx9logstreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::logstream::log(std::shared_ptr&, std::shared_ptr const&, log4cxx::spi::LocationInfo const&) [_ZN7log4cxx9logstream3logERSt10shared_ptrINS_6LoggerEERKS1_INS_5LevelEERKNS_3spi12LocationInfoE]', + '40' => '(int (*)(...)) log4cxx::logstream::erase() [_ZN7log4cxx9logstream5eraseEv]', + '48' => '(int (*)(...)) log4cxx::logstream::get_stream_state(std::ios_base&, std::ios_base&, int&, bool&) const [_ZNK7log4cxx9logstream16get_stream_stateERSt8ios_baseS2_RiRb]', + '56' => '(int (*)(...)) log4cxx::logstream::refresh_stream_state() [_ZN7log4cxx9logstream20refresh_stream_stateEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::logstream) [_ZTIN7log4cxx9logstreamE]' + } }, - '16716176' => { - 'BaseType' => '16712094', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken*', - 'Size' => '8', - 'Type' => 'Pointer' + '28403382' => { + 'BaseType' => '191030', + 'Header' => 'stream.h', + 'Line' => '228', + 'Name' => 'log4cxx::logstream::Ch', + 'NameSpace' => 'log4cxx::logstream', + 'Private' => 1, + 'Size' => '1', + 'Type' => 'Typedef' }, - '16716182' => { - 'BaseType' => '16716176', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken*const', - 'Size' => '8', + '28403394' => { + 'BaseType' => '28403382', + 'Name' => 'log4cxx::logstream::Ch const', + 'Size' => '1', 'Type' => 'Const' }, - '16716199' => { - 'BaseType' => '16712296', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16716205' => { - 'BaseType' => '16716199', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken const*const', - 'Size' => '8', + '28403936' => { + 'BaseType' => '28403285', + 'Name' => 'log4cxx::logstream const', + 'Size' => '520', 'Type' => 'Const' }, - '16716210' => { - 'BaseType' => '16712301', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken*', + '28411630' => { + 'BaseType' => '28401382', + 'Name' => 'log4cxx::wlogstream*', 'Size' => '8', 'Type' => 'Pointer' }, - '16716216' => { - 'BaseType' => '16716210', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken*const', + '28411635' => { + 'BaseType' => '28411630', + 'Name' => 'log4cxx::wlogstream*const', 'Size' => '8', 'Type' => 'Const' }, - '16716233' => { - 'BaseType' => '16712529', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken const*', + '28411650' => { + 'BaseType' => '28401496', + 'Name' => 'log4cxx::wlogstream::Ch const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16716239' => { - 'BaseType' => '16716233', - 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '16716280' => { - 'BaseType' => '52148', - 'Name' => 'struct tm&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '16716286' => { - 'BaseType' => '16714156', - 'Name' => 'apr_time_exp_t&', + '28411655' => { + 'BaseType' => '28401382', + 'Name' => 'log4cxx::wlogstream&', 'Size' => '8', 'Type' => 'Ref' }, - '16716292' => { - 'Name' => 'void(*)(struct tm&, apr_time_exp_t&)', + '28411660' => { + 'Name' => 'log4cxx::logstream_base&(*)(log4cxx::logstream_base&)', 'Param' => { '0' => { - 'type' => '16716280' - }, - '1' => { - 'type' => '16716286' + 'type' => '28411681' } }, - 'Return' => '1', + 'Return' => '28411681', 'Size' => '8', 'Type' => 'FuncPtr' }, - '1677257' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1726371' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '1677405' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1726371' - } - }, - 'Type' => 'Struct' - }, - '1677419' => { - 'BaseType' => '1726371', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '1679375' => { - 'Base' => { - '1677257' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '1731963' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1726371' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '1679661' => { - 'BaseType' => '1677419', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '1680368' => { - 'Base' => { - '1679375' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1726371' - } - }, - 'Type' => 'Class' - }, - '16857607' => { - 'BaseType' => '16707257', - 'Name' => 'log4cxx::helpers::TimeZone const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '16857613' => { - 'BaseType' => '16857607', - 'Name' => 'log4cxx::helpers::TimeZone const*const', + '28411681' => { + 'BaseType' => '28402052', + 'Name' => 'log4cxx::logstream_base&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Ref' }, - '16919987' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '28411691' => { + 'BaseType' => '28402047', + 'Name' => 'log4cxx::wlogstream const*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '16921289' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '16921271' => { - 'Base' => { - '409118' => { - 'pos' => '0' - } - }, - 'Header' => 'simplelayout.h', - 'Line' => '37', - 'Name' => 'log4cxx::SimpleLayout', - 'NameSpace' => 'log4cxx', + '28411696' => { + 'BaseType' => '28411691', + 'Name' => 'log4cxx::wlogstream const*const', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::SimpleLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx12SimpleLayout10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::SimpleLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx12SimpleLayout4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::SimpleLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx12SimpleLayout15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::SimpleLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx12SimpleLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '136' => '(int (*)(...)) log4cxx::SimpleLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx12SimpleLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '144' => '(int (*)(...)) log4cxx::Layout::getContentType[abi:cxx11]() const [_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev]', - '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '168' => '(int (*)(...)) log4cxx::SimpleLayout::ignoresThrowable() const [_ZNK7log4cxx12SimpleLayout16ignoresThrowableEv]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::SimpleLayout) [_ZTIN7log4cxx12SimpleLayoutE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::SimpleLayout::~SimpleLayout() [_ZN7log4cxx12SimpleLayoutD1Ev]', - '88' => '(int (*)(...)) log4cxx::SimpleLayout::~SimpleLayout() [_ZN7log4cxx12SimpleLayoutD0Ev]', - '96' => '(int (*)(...)) log4cxx::SimpleLayout::getClass() const [_ZNK7log4cxx12SimpleLayout8getClassEv]' - } + 'Type' => 'Const' }, - '16921289' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'simplelayout.h', - 'Line' => '40', - 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout', - 'NameSpace' => 'log4cxx::SimpleLayout', + '28411711' => { + 'BaseType' => '28185733', + 'Name' => 'std::__cxx11::basic_stringstream*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::SimpleLayout::ClazzSimpleLayout::~ClazzSimpleLayout() [_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD2Ev]', - '24' => '(int (*)(...)) log4cxx::SimpleLayout::ClazzSimpleLayout::~ClazzSimpleLayout() [_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::SimpleLayout::ClazzSimpleLayout::newInstance() const [_ZTch0_h0_NK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::SimpleLayout::ClazzSimpleLayout::getName[abi:cxx11]() const [_ZNK7log4cxx12SimpleLayout17ClazzSimpleLayout7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::SimpleLayout::ClazzSimpleLayout::newInstance() const [_ZNK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::SimpleLayout::ClazzSimpleLayout) [_ZTIN7log4cxx12SimpleLayout17ClazzSimpleLayoutE]' - } + 'Type' => 'Pointer' }, - '16921509' => { - 'BaseType' => '16921289', - 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout const', + '28411721' => { + 'BaseType' => '28403285', + 'Name' => 'log4cxx::logstream*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '16922005' => { - 'BaseType' => '16921271', - 'Name' => 'log4cxx::SimpleLayout const', + '28411726' => { + 'BaseType' => '28411721', + 'Name' => 'log4cxx::logstream*const', 'Size' => '8', 'Type' => 'Const' }, - '16923295' => { - 'BaseType' => '16919987', - 'Name' => 'log4cxx::helpers::WideLife*', + '28411731' => { + 'BaseType' => '28403394', + 'Name' => 'log4cxx::logstream::Ch const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16923301' => { - 'BaseType' => '16923295', - 'Name' => 'log4cxx::helpers::WideLife*const', + '28411736' => { + 'BaseType' => '28403285', + 'Name' => 'log4cxx::logstream&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Ref' }, - '16923557' => { - 'BaseType' => '16921271', - 'Name' => 'log4cxx::SimpleLayout*', + '28411741' => { + 'BaseType' => '28403936', + 'Name' => 'log4cxx::logstream const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16923563' => { - 'BaseType' => '16923557', - 'Name' => 'log4cxx::SimpleLayout*const', + '28411746' => { + 'BaseType' => '28411741', + 'Name' => 'log4cxx::logstream const*const', 'Size' => '8', 'Type' => 'Const' }, - '16923591' => { - 'BaseType' => '16922005', - 'Name' => 'log4cxx::SimpleLayout const*', + '28411795' => { + 'BaseType' => '28402052', + 'Name' => 'log4cxx::logstream_base*', 'Size' => '8', 'Type' => 'Pointer' }, - '16923597' => { - 'BaseType' => '16923591', - 'Name' => 'log4cxx::SimpleLayout const*const', + '28411800' => { + 'BaseType' => '28411795', + 'Name' => 'log4cxx::logstream_base*const', 'Size' => '8', 'Type' => 'Const' }, - '16923608' => { - 'BaseType' => '16921289', - 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout*', + '28411805' => { + 'BaseType' => '28403246', + 'Name' => 'log4cxx::logstream_base const*', 'Size' => '8', 'Type' => 'Pointer' }, - '16923614' => { - 'BaseType' => '16923608', - 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout*const', + '28411810' => { + 'BaseType' => '28411805', + 'Name' => 'log4cxx::logstream_base const*const', 'Size' => '8', 'Type' => 'Const' }, - '16923619' => { - 'BaseType' => '16921509', - 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout const*', + '28411815' => { + 'BaseType' => '28402981', + 'Name' => 'log4cxx::logstream_base::logstream_ios_base*', 'Size' => '8', 'Type' => 'Pointer' }, - '16923625' => { - 'BaseType' => '16923619', - 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout const*const', + '28411820' => { + 'BaseType' => '28411815', + 'Name' => 'log4cxx::logstream_base::logstream_ios_base*const', 'Size' => '8', 'Type' => 'Const' }, - '16999454' => { + '28787918' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -114414,228 +117367,69 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '17000773' + 'type' => '5658142' } }, 'Type' => 'Class' }, - '17000773' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'sizebasedtriggeringpolicy.h', - 'Line' => '45', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy', - 'NameSpace' => 'log4cxx::rolling::SizeBasedTriggeringPolicy', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::~ClazzSizeBasedTriggeringPolicy() [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD2Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::~ClazzSizeBasedTriggeringPolicy() [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::newInstance() const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy) [_ZTIN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyE]' - } - }, - '17000993' => { - 'BaseType' => '17000773', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy const', + '28792243' => { + 'BaseType' => '5658133', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy const', 'Size' => '8', 'Type' => 'Const' }, - '17002907' => { - 'BaseType' => '16999454', - 'Name' => 'log4cxx::helpers::WideLife*', + '28800223' => { + 'BaseType' => '28787918', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '17002913' => { - 'BaseType' => '17002907', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17003069' => { - 'BaseType' => '15777909', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy*const', + '28800228' => { + 'BaseType' => '28800223', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '17003103' => { - 'BaseType' => '15778861', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy const*const', + '28800599' => { + 'BaseType' => '5679583', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy*const', 'Size' => '8', 'Type' => 'Const' }, - '17003120' => { - 'BaseType' => '17000773', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy*', + '28800624' => { + 'BaseType' => '28792243', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy const*', 'Size' => '8', 'Type' => 'Pointer' }, - '17003126' => { - 'BaseType' => '17003120', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy*const', + '28800629' => { + 'BaseType' => '28800624', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy const*const', 'Size' => '8', 'Type' => 'Const' }, - '17003131' => { - 'BaseType' => '17000993', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17003137' => { - 'BaseType' => '17003131', - 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy const*const', + '28800649' => { + 'BaseType' => '5679573', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy*const', 'Size' => '8', 'Type' => 'Const' }, - '17070737' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9238623' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '17070885' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9238623' - } - }, - 'Type' => 'Struct' - }, - '17070899' => { - 'BaseType' => '9238623', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '17070922' => { - 'Base' => { - '17070737' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '17110144' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9238623' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '17071208' => { - 'BaseType' => '17070899', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '17072128' => { - 'Base' => { - '17070922' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9238623' - } - }, - 'Type' => 'Class' - }, - '17101754' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '28800659' => { + 'BaseType' => '5679578', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '17104130' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '17102520' => { + '29164560' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -114643,1662 +117437,1616 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '17104782' + 'type' => '29169270' } }, 'Type' => 'Class' }, - '17103477' => { - 'BaseType' => '17072128', - 'Header' => 'triggeringeventevaluator.h', - 'Line' => '46', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluatorPtr', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '17104111' => { - 'Base' => { - '63470' => { - 'pos' => '1', - 'virtual' => 1 - }, - '9238623' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Line' => '352', - 'Name' => 'log4cxx::net::DefaultEvaluator', - 'NameSpace' => 'log4cxx::net', - 'Size' => '8', - 'Source' => 'smtpappender.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net16DefaultEvaluator4castERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::isTriggeringEvent(std::shared_ptr const&) [_ZN7log4cxx3net16DefaultEvaluator17isTriggeringEventERKSt10shared_ptrINS_3spi12LoggingEventEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '(int (*)(...)) (& typeinfo for log4cxx::net::DefaultEvaluator) [_ZTIN7log4cxx3net16DefaultEvaluatorE]', - '72' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::~DefaultEvaluator() [_ZN7log4cxx3net16DefaultEvaluatorD1Ev]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::~DefaultEvaluator() [_ZN7log4cxx3net16DefaultEvaluatorD0Ev]', - '88' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::getClass() const [_ZNK7log4cxx3net16DefaultEvaluator8getClassEv]', - '96' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net16DefaultEvaluator10instanceofERKNS_7helpers5ClassE]' - } - }, - '17104130' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Line' => '357', - 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator', - 'NameSpace' => 'log4cxx::net::DefaultEvaluator', - 'Size' => '8', - 'Source' => 'smtpappender.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::~ClazzDefaultEvaluator() [_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD1Ev]', - '24' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::~ClazzDefaultEvaluator() [_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::newInstance() const [_ZTch0_h0_NK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::getName[abi:cxx11]() const [_ZNK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::newInstance() const [_ZNK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator) [_ZTIN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorE]' - } - }, - '17104356' => { - 'BaseType' => '17104130', - 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17104759' => { - 'BaseType' => '17104111', - 'Name' => 'log4cxx::net::DefaultEvaluator const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17104764' => { + '29169252' => { 'Base' => { - '407542' => { + '564875' => { 'pos' => '0' } }, - 'Header' => 'smtpappender.h', - 'Line' => '71', - 'Name' => 'log4cxx::net::SMTPAppender', - 'NameSpace' => 'log4cxx::net', + 'Header' => 'mapfilter.h', + 'Line' => '41', + 'Name' => 'log4cxx::filter::MapFilter', + 'NameSpace' => 'log4cxx::filter', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', + '104' => '(int (*)(...)) log4cxx::filter::MapFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter9MapFilter10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::filter::MapFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter9MapFilter4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::filter::MapFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter9MapFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::filter::MapFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter9MapFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::SMTPAppender) [_ZTIN7log4cxx3net12SMTPAppenderE]', - '168' => '(int (*)(...)) log4cxx::net::SMTPAppender::~SMTPAppender() [_ZN7log4cxx3net12SMTPAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::net::SMTPAppender::~SMTPAppender() [_ZN7log4cxx3net12SMTPAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::net::SMTPAppender::getClass() const [_ZNK7log4cxx3net12SMTPAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::net::SMTPAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net12SMTPAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::net::SMTPAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net12SMTPAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::net::SMTPAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net12SMTPAppender15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::net::SMTPAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net12SMTPAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::net::SMTPAppender::close() [_ZN7log4cxx3net12SMTPAppender5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::net::SMTPAppender::requiresLayout() const [_ZNK7log4cxx3net12SMTPAppender14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::net::SMTPAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net12SMTPAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', '32' => '0u', '40' => '0u', '48' => '0u', '56' => '0u', '64' => '0u', - '72' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::MapFilter) [_ZTIN7log4cxx6filter9MapFilterE]', '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' + '80' => '(int (*)(...)) log4cxx::filter::MapFilter::~MapFilter() [_ZN7log4cxx6filter9MapFilterD1Ev]', + '88' => '(int (*)(...)) log4cxx::filter::MapFilter::~MapFilter() [_ZN7log4cxx6filter9MapFilterD0Ev]', + '96' => '(int (*)(...)) log4cxx::filter::MapFilter::getClass() const [_ZNK7log4cxx6filter9MapFilter8getClassEv]' } }, - '17104782' => { + '29169270' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'smtpappender.h', - 'Line' => '87', - 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender', - 'NameSpace' => 'log4cxx::net::SMTPAppender', + 'Header' => 'mapfilter.h', + 'Line' => '49', + 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter', + 'NameSpace' => 'log4cxx::filter::MapFilter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::SMTPAppender::ClazzSMTPAppender::~ClazzSMTPAppender() [_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD1Ev]', - '24' => '(int (*)(...)) log4cxx::net::SMTPAppender::ClazzSMTPAppender::~ClazzSMTPAppender() [_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::SMTPAppender::ClazzSMTPAppender::newInstance() const [_ZTch0_h0_NK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::net::SMTPAppender::ClazzSMTPAppender::getName[abi:cxx11]() const [_ZNK7log4cxx3net12SMTPAppender17ClazzSMTPAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::net::SMTPAppender::ClazzSMTPAppender::newInstance() const [_ZNK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SMTPAppender::ClazzSMTPAppender) [_ZTIN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderE]' - } - }, - '17105003' => { - 'BaseType' => '17104782', - 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17105008' => { - 'Base' => { - '407560' => { - 'pos' => '0' - } - }, - 'Line' => '383', - 'Memb' => { - '0' => { - 'name' => 'to', - 'offset' => '184', - 'type' => '63706' - }, - '1' => { - 'name' => 'cc', - 'offset' => '216', - 'type' => '63706' - }, - '10' => { - 'name' => 'locationInfo', - 'offset' => '448', - 'type' => '50284' - }, - '11' => { - 'name' => 'cb', - 'offset' => '456', - 'type' => '3105926' - }, - '12' => { - 'name' => 'evaluator', - 'offset' => '464', - 'type' => '17103477' - }, - '2' => { - 'name' => 'bcc', - 'offset' => '248', - 'type' => '63706' - }, - '3' => { - 'name' => 'from', - 'offset' => '280', - 'type' => '63706' - }, - '4' => { - 'name' => 'subject', - 'offset' => '312', - 'type' => '63706' - }, - '5' => { - 'name' => 'smtpHost', - 'offset' => '344', - 'type' => '63706' - }, - '6' => { - 'name' => 'smtpUsername', - 'offset' => '376', - 'type' => '63706' - }, - '7' => { - 'name' => 'smtpPassword', - 'offset' => '408', - 'type' => '63706' + '16' => '(int (*)(...)) log4cxx::filter::MapFilter::ClazzMapFilter::~ClazzMapFilter() [_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD2Ev]', + '24' => '(int (*)(...)) log4cxx::filter::MapFilter::ClazzMapFilter::~ClazzMapFilter() [_ZN7log4cxx6filter9MapFilter14ClazzMapFilterD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::MapFilter::ClazzMapFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::filter::MapFilter::ClazzMapFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter9MapFilter14ClazzMapFilter7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::filter::MapFilter::ClazzMapFilter::newInstance() const [_ZNK7log4cxx6filter9MapFilter14ClazzMapFilter11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::MapFilter::ClazzMapFilter) [_ZTIN7log4cxx6filter9MapFilter14ClazzMapFilterE]' + } + }, + '29169479' => { + 'BaseType' => '29169270', + 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '29169484' => { + 'Base' => { + '564884' => { + 'pos' => '0' + } + }, + 'Line' => '32', + 'Memb' => { + '0' => { + 'name' => 'acceptOnMatch', + 'offset' => '36', + 'type' => '174077' }, - '8' => { - 'name' => 'smtpPort', - 'offset' => '440', - 'type' => '50231' + '1' => { + 'name' => 'mustMatchAll', + 'offset' => '37', + 'type' => '174077' }, - '9' => { - 'name' => 'bufferSize', - 'offset' => '444', - 'type' => '50231' + '2' => { + 'name' => 'keyVals', + 'offset' => '50', + 'type' => '29170220' } }, - 'Name' => 'struct log4cxx::net::SMTPAppender::SMTPPriv', - 'NameSpace' => 'log4cxx::net::SMTPAppender', + 'Name' => 'struct log4cxx::filter::MapFilter::MapFilterPrivate', + 'NameSpace' => 'log4cxx::filter::MapFilter', 'Private' => 1, - 'Size' => '480', - 'Source' => 'smtpappender.cpp', + 'Size' => '80', + 'Source' => 'mapfilter.cpp', 'Type' => 'Struct', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::SMTPAppender::SMTPPriv::~SMTPPriv() [_ZN7log4cxx3net12SMTPAppender8SMTPPrivD1Ev]', - '24' => '(int (*)(...)) log4cxx::net::SMTPAppender::SMTPPriv::~SMTPPriv() [_ZN7log4cxx3net12SMTPAppender8SMTPPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SMTPAppender::SMTPPriv) [_ZTIN7log4cxx3net12SMTPAppender8SMTPPrivE]' + '16' => '(int (*)(...)) log4cxx::filter::MapFilter::MapFilterPrivate::~MapFilterPrivate() [_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::MapFilter::MapFilterPrivate::~MapFilterPrivate() [_ZN7log4cxx6filter9MapFilter16MapFilterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::MapFilter::MapFilterPrivate) [_ZTIN7log4cxx6filter9MapFilter16MapFilterPrivateE]' } }, - '17106944' => { - 'BaseType' => '17104764', - 'Name' => 'log4cxx::net::SMTPAppender const', - 'Size' => '16', - 'Type' => 'Const' - }, - '17109921' => { - 'BaseType' => '17101754', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17109927' => { - 'BaseType' => '17109921', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17110029' => { - 'BaseType' => '17102520', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17110035' => { - 'BaseType' => '17110029', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17110144' => { - 'BaseType' => '17071208', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17110173' => { - 'BaseType' => '9244764', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17110213' => { - 'BaseType' => '17104111', - 'Name' => 'log4cxx::net::DefaultEvaluator*', - 'Size' => '8', - 'Type' => 'Pointer' + '29170220' => { + 'BaseType' => '26663912', + 'Header' => 'mapfilter.h', + 'Line' => '43', + 'Name' => 'log4cxx::filter::MapFilter::KeyVals', + 'NameSpace' => 'log4cxx::filter::MapFilter', + 'Private' => 1, + 'Size' => '48', + 'Type' => 'Typedef' }, - '17110219' => { - 'BaseType' => '17110213', - 'Name' => 'log4cxx::net::DefaultEvaluator*const', - 'Size' => '8', + '29170233' => { + 'BaseType' => '29169252', + 'Name' => 'log4cxx::filter::MapFilter const', + 'Size' => '16', 'Type' => 'Const' }, - '17110341' => { - 'BaseType' => '17105008', - 'Name' => 'struct log4cxx::net::SMTPAppender::SMTPPriv*', + '29178633' => { + 'BaseType' => '29164560', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '17110347' => { - 'BaseType' => '17110341', - 'Name' => 'struct log4cxx::net::SMTPAppender::SMTPPriv*const', + '29178638' => { + 'BaseType' => '29178633', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '17111216' => { - 'BaseType' => '17104764', - 'Name' => 'log4cxx::net::SMTPAppender*', + '29178744' => { + 'BaseType' => '29169484', + 'Name' => 'struct log4cxx::filter::MapFilter::MapFilterPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '17111222' => { - 'BaseType' => '17111216', - 'Name' => 'log4cxx::net::SMTPAppender*const', + '29178749' => { + 'BaseType' => '29178744', + 'Name' => 'struct log4cxx::filter::MapFilter::MapFilterPrivate*const', 'Size' => '8', 'Type' => 'Const' }, - '17111250' => { - 'BaseType' => '17106944', - 'Name' => 'log4cxx::net::SMTPAppender const*', + '29179645' => { + 'BaseType' => '29169252', + 'Name' => 'log4cxx::filter::MapFilter*', 'Size' => '8', 'Type' => 'Pointer' }, - '17111256' => { - 'BaseType' => '17111250', - 'Name' => 'log4cxx::net::SMTPAppender const*const', + '29179650' => { + 'BaseType' => '29179645', + 'Name' => 'log4cxx::filter::MapFilter*const', 'Size' => '8', 'Type' => 'Const' }, - '17111261' => { - 'BaseType' => '17103477', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluatorPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '17111267' => { - 'BaseType' => '17104759', - 'Name' => 'log4cxx::net::DefaultEvaluator const*', + '29179670' => { + 'BaseType' => '29170233', + 'Name' => 'log4cxx::filter::MapFilter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '17111273' => { - 'BaseType' => '17111267', - 'Name' => 'log4cxx::net::DefaultEvaluator const*const', + '29179675' => { + 'BaseType' => '29179670', + 'Name' => 'log4cxx::filter::MapFilter const*const', 'Size' => '8', 'Type' => 'Const' }, - '17111290' => { - 'BaseType' => '17104130', - 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator*', + '29179729' => { + 'BaseType' => '29169270', + 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter*', 'Size' => '8', 'Type' => 'Pointer' }, - '17111296' => { - 'BaseType' => '17111290', - 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator*const', + '29179734' => { + 'BaseType' => '29179729', + 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter*const', 'Size' => '8', 'Type' => 'Const' }, - '17111301' => { - 'BaseType' => '17104356', - 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator const*', + '29179739' => { + 'BaseType' => '29169479', + 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '17111307' => { - 'BaseType' => '17111301', - 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator const*const', + '29179744' => { + 'BaseType' => '29179739', + 'Name' => 'log4cxx::filter::MapFilter::ClazzMapFilter const*const', 'Size' => '8', 'Type' => 'Const' }, - '17111348' => { - 'BaseType' => '17104782', - 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17111354' => { - 'BaseType' => '17111348', - 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender*const', + '29424743' => { + 'BaseType' => '575257', + 'Name' => 'log4cxx::MDC*const', 'Size' => '8', 'Type' => 'Const' }, - '17111359' => { - 'BaseType' => '17105003', - 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' + '29578726' => { + 'Copied' => 1, + 'Name' => 'std::__cxx11::basic_ostringstream', + 'NameSpace' => 'std::__cxx11', + 'TParam' => { + '0' => { + 'key' => '_CharT', + 'type' => '191030' + } + }, + 'Type' => 'Class' }, - '17111365' => { - 'BaseType' => '17111359', - 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender const*const', - 'Size' => '8', - 'Type' => 'Const' + '29578964' => { + 'Copied' => 1, + 'Name' => 'std::__cxx11::basic_ostringstream', + 'NameSpace' => 'std::__cxx11', + 'TParam' => { + '0' => { + 'key' => '_CharT', + 'type' => '190393' + } + }, + 'Type' => 'Class' }, - '1723634' => { - 'Header' => 'transcoder.h', - 'Line' => '36', - 'Name' => 'log4cxx::helpers::Transcoder', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '1', - 'Type' => 'Class' - }, - '1726009' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '1726389' - } - }, - 'Type' => 'Class' - }, - '1726371' => { - 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Header' => 'charsetdecoder.h', - 'Line' => '36', - 'Name' => 'log4cxx::helpers::CharsetDecoder', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::CharsetDecoder) [_ZTIN7log4cxx7helpers14CharsetDecoderE]' - } - }, - '1726389' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'charsetdecoder.h', - 'Line' => '39', - 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder', - 'NameSpace' => 'log4cxx::helpers::CharsetDecoder', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder::~ClazzCharsetDecoder() [_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder::~ClazzCharsetDecoder() [_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoder7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder) [_ZTIN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderE]' - } - }, - '1726547' => { - 'BaseType' => '1726389', - 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1727033' => { - 'BaseType' => '1726371', - 'Name' => 'log4cxx::helpers::CharsetDecoder const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1727446' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '61461' - } - }, - 'Name' => 'log4cxx::helpers::WideLife >', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '1680368' - } - }, - 'Type' => 'Class' - }, - '1727900' => { - 'Base' => { - '1726371' => { - 'pos' => '0' - } - }, - 'Line' => '233', - 'Name' => 'log4cxx::helpers::TrivialCharsetDecoder', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Source' => 'charsetdecoder.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetDecoder::~TrivialCharsetDecoder() [_ZN7log4cxx7helpers21TrivialCharsetDecoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetDecoder::~TrivialCharsetDecoder() [_ZN7log4cxx7helpers21TrivialCharsetDecoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers21TrivialCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TrivialCharsetDecoder) [_ZTIN7log4cxx7helpers21TrivialCharsetDecoderE]' - } - }, - '1728110' => { - 'Base' => { - '1726371' => { - 'pos' => '0' - } - }, - 'Line' => '327', - 'Name' => 'log4cxx::helpers::ISOLatinCharsetDecoder', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Source' => 'charsetdecoder.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetDecoder::~ISOLatinCharsetDecoder() [_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetDecoder::~ISOLatinCharsetDecoder() [_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers22ISOLatinCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ISOLatinCharsetDecoder) [_ZTIN7log4cxx7helpers22ISOLatinCharsetDecoderE]' - } - }, - '1728324' => { - 'Base' => { - '1726371' => { - 'pos' => '0' - } - }, - 'Line' => '372', - 'Name' => 'log4cxx::helpers::USASCIICharsetDecoder', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Source' => 'charsetdecoder.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetDecoder::~USASCIICharsetDecoder() [_ZN7log4cxx7helpers21USASCIICharsetDecoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetDecoder::~USASCIICharsetDecoder() [_ZN7log4cxx7helpers21USASCIICharsetDecoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers21USASCIICharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::USASCIICharsetDecoder) [_ZTIN7log4cxx7helpers21USASCIICharsetDecoderE]' - } - }, - '1728538' => { - 'Base' => { - '1726371' => { - 'pos' => '0' - } - }, - 'Line' => '428', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'state', - 'offset' => '8', - 'type' => '50695' - } - }, - 'Name' => 'log4cxx::helpers::LocaleCharsetDecoder', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Source' => 'charsetdecoder.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetDecoder::~LocaleCharsetDecoder() [_ZN7log4cxx7helpers20LocaleCharsetDecoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetDecoder::~LocaleCharsetDecoder() [_ZN7log4cxx7helpers20LocaleCharsetDecoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers20LocaleCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::LocaleCharsetDecoder) [_ZTIN7log4cxx7helpers20LocaleCharsetDecoderE]' - } - }, - '1728754' => { - 'Base' => { - '1726371' => { - 'pos' => '0' - } - }, - 'Line' => '52', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'pool', - 'offset' => '8', - 'type' => '62082' - }, - '1' => { - 'access' => 'private', - 'name' => 'mutex', - 'offset' => '24', - 'type' => '41413' - }, - '2' => { - 'access' => 'private', - 'name' => 'convset', - 'offset' => '64', - 'type' => '1734120' - } - }, - 'Name' => 'log4cxx::helpers::APRCharsetDecoder', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '72', - 'Source' => 'charsetdecoder.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::APRCharsetDecoder::~APRCharsetDecoder() [_ZN7log4cxx7helpers17APRCharsetDecoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::APRCharsetDecoder::~APRCharsetDecoder() [_ZN7log4cxx7helpers17APRCharsetDecoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::APRCharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers17APRCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRCharsetDecoder) [_ZTIN7log4cxx7helpers17APRCharsetDecoderE]' - } - }, - '1729333' => { - 'BaseType' => '1680368', - 'Header' => 'charsetdecoder.h', - 'Line' => '28', - 'Name' => 'log4cxx::helpers::CharsetDecoderPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '1729836' => { - 'BaseType' => '1336', - 'Name' => 'std::__cxx11::basic_string::const_iterator&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1729848' => { - 'BaseType' => '515036', - 'Name' => 'std::__cxx11::basic_string::const_iterator&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1731213' => { - 'BaseType' => '50486', - 'Header' => 'apr.h', - 'Line' => '357', - 'Name' => 'apr_size_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '1731243' => { - 'BaseType' => '1731255', - 'Header' => 'apr_xlate.h', - 'Line' => '39', - 'Name' => 'apr_xlate_t', - 'Type' => 'Typedef' - }, - '1731255' => { - 'Name' => 'struct apr_xlate_t', - 'Type' => 'Struct' - }, - '1731715' => { - 'BaseType' => '1726009', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1731721' => { - 'BaseType' => '1731715', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1731963' => { - 'BaseType' => '1679661', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1731986' => { - 'BaseType' => '1726371', - 'Name' => 'log4cxx::helpers::CharsetDecoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1731992' => { - 'BaseType' => '1731986', - 'Name' => 'log4cxx::helpers::CharsetDecoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1732032' => { - 'BaseType' => '1727446', - 'Name' => 'log4cxx::helpers::WideLife >*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1732038' => { - 'BaseType' => '1732032', - 'Name' => 'log4cxx::helpers::WideLife >*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1732132' => { - 'BaseType' => '1727900', - 'Name' => 'log4cxx::helpers::TrivialCharsetDecoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1732138' => { - 'BaseType' => '1732132', - 'Name' => 'log4cxx::helpers::TrivialCharsetDecoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1732243' => { - 'BaseType' => '1728110', - 'Name' => 'log4cxx::helpers::ISOLatinCharsetDecoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1732249' => { - 'BaseType' => '1732243', - 'Name' => 'log4cxx::helpers::ISOLatinCharsetDecoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1732354' => { - 'BaseType' => '1728324', - 'Name' => 'log4cxx::helpers::USASCIICharsetDecoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1732360' => { - 'BaseType' => '1732354', - 'Name' => 'log4cxx::helpers::USASCIICharsetDecoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1732465' => { - 'BaseType' => '1728538', - 'Name' => 'log4cxx::helpers::LocaleCharsetDecoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1732471' => { - 'BaseType' => '1732465', - 'Name' => 'log4cxx::helpers::LocaleCharsetDecoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1732576' => { - 'BaseType' => '1728754', - 'Name' => 'log4cxx::helpers::APRCharsetDecoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1732582' => { - 'BaseType' => '1732576', - 'Name' => 'log4cxx::helpers::APRCharsetDecoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1734120' => { - 'BaseType' => '1731243', - 'Name' => 'apr_xlate_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1734126' => { - 'BaseType' => '1727033', - 'Name' => 'log4cxx::helpers::CharsetDecoder const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1734132' => { - 'BaseType' => '1734126', - 'Name' => 'log4cxx::helpers::CharsetDecoder const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1734149' => { - 'BaseType' => '1726389', - 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1734155' => { - 'BaseType' => '1734149', - 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1734160' => { - 'BaseType' => '1726547', - 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1734166' => { - 'BaseType' => '1734160', - 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17357912' => { + '29622677' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '17381332' + 'type' => '559739' } }, 'Type' => 'Struct' }, - '17357998' => { + '29623626' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '17359533' + 'type' => '29626036' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '17381332' + 'type' => '559739' }, '1' => { 'key' => '_Dp', - 'type' => '17357912' + 'type' => '29622677' } }, 'Type' => 'Class' }, - '17358321' => { - 'Base' => { - '17357912' => { - 'pos' => '0' - } - }, + '29624267' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '29622677' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '17357912' + 'type' => '29622677' } }, 'Type' => 'Struct' }, - '17358574' => { + '29624525' => { 'Base' => { - '17358321' => { + '29624267' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '17357912' + 'type' => '29622677' } }, 'Type' => 'Struct' }, - '17358872' => { + '29624829' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '17382236' + 'type' => '573709' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::StrftimeDateFormat::StrftimeDateFormatPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::WideMessageBuffer*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '17382236' + 'type' => '573709' } }, 'Type' => 'Struct' }, - '17359132' => { + '29625087' => { 'Base' => { - '17358574' => { + '29624525' => { 'pos' => '0' }, - '17358872' => { + '29624829' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::StrftimeDateFormat::StrftimeDateFormatPrivate*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::WideMessageBuffer*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '17382236' + 'type' => '573709' } }, 'Type' => 'Struct' }, - '17359533' => { + '29626036' => { + 'Base' => { + '29625087' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '573709' + } + }, + 'Type' => 'Class' + }, + '29627482' => { 'Base' => { - '17359132' => { + '29623626' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => undef, - 'type' => '17382236' + 'key' => '_Tp', + 'type' => '559739' + }, + '1' => { + 'key' => '_Dp', + 'type' => '29622677' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '17359862' => { + '29627731' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '17357998' + 'type' => '29627482' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '17381332' + 'type' => '559739' }, '1' => { 'key' => '_Dp', - 'type' => '17357912' + 'type' => '29622677' } }, 'Type' => 'Class' }, - '17381332' => { - 'Line' => '27', - 'Memb' => { - '0' => { - 'name' => 'timeZone', - 'offset' => '0', - 'type' => '1574521' - }, - '1' => { - 'name' => 'pattern', - 'offset' => '16', - 'type' => '36898' - } - }, - 'Name' => 'struct log4cxx::helpers::StrftimeDateFormat::StrftimeDateFormatPrivate', - 'NameSpace' => 'log4cxx::helpers::StrftimeDateFormat', - 'Private' => 1, - 'Size' => '48', - 'Source' => 'strftimedateformat.cpp', - 'Type' => 'Struct' + '2963016' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3120371' + } + }, + 'Type' => 'Struct' + }, + '2963990' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2966410' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3120371' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2963016' + } + }, + 'Type' => 'Class' + }, + '2964624' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '2963016' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '2963016' + } + }, + 'Type' => 'Struct' + }, + '2964882' => { + 'Base' => { + '2964624' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '2963016' + } + }, + 'Type' => 'Struct' + }, + '2965188' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3130051' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::pattern::PatternConverter::PatternConverterPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '3130051' + } + }, + 'Type' => 'Struct' + }, + '2965446' => { + 'Base' => { + '2964882' => { + 'pos' => '0' + }, + '2965188' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::pattern::PatternConverter::PatternConverterPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '3130051' + } + }, + 'Type' => 'Struct' + }, + '2966410' => { + 'Base' => { + '2965446' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '3130051' + } + }, + 'Type' => 'Class' + }, + '2967852' => { + 'Base' => { + '2963990' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3120371' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2963016' + } + }, + 'Type' => 'Struct' + }, + '2968054' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2967852' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3120371' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2963016' + } + }, + 'Type' => 'Class' + }, + '29685050' => { + 'BaseType' => '573433', + 'Name' => 'log4cxx::helpers::CharMessageBuffer*const', + 'Size' => '8', + 'Type' => 'Const' }, - '17382236' => { - 'BaseType' => '17381332', - 'Name' => 'struct log4cxx::helpers::StrftimeDateFormat::StrftimeDateFormatPrivate*', + '29685091' => { + 'BaseType' => '573469', + 'Name' => 'log4cxx::helpers::CharMessageBuffer const*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '17383133' => { - 'BaseType' => '3419036', - 'Name' => 'log4cxx::helpers::StrftimeDateFormat*const', + '29685391' => { + 'BaseType' => '573709', + 'Name' => 'log4cxx::helpers::WideMessageBuffer*const', 'Size' => '8', 'Type' => 'Const' }, - '17383150' => { - 'BaseType' => '3420144', - 'Name' => 'log4cxx::helpers::StrftimeDateFormat const*const', + '29685406' => { + 'BaseType' => '573719', + 'Name' => 'log4cxx::helpers::WideMessageBuffer const*const', 'Size' => '8', 'Type' => 'Const' }, - '17581769' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '29685706' => { + 'BaseType' => '573959', + 'Name' => 'log4cxx::helpers::MessageBuffer*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '29685716' => { + 'BaseType' => '573964', + 'Name' => 'log4cxx::helpers::MessageBuffer const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '29685746' => { + 'Copied' => 1, + 'Line' => '35', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => 'buf', 'offset' => '0', - 'type' => '55091' + 'type' => '51677' + }, + '1' => { + 'name' => 'stream', + 'offset' => '50', + 'type' => '29686038' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Name' => 'struct StringOrStream', + 'Size' => '40', + 'Source' => 'messagebuffer.cpp', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '17583426' + 'type' => '191030' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '17583408' => { - 'Base' => { - '150952' => { + '29685893' => { + 'Copied' => 1, + 'Line' => '35', + 'Memb' => { + '0' => { + 'name' => 'buf', + 'offset' => '0', + 'type' => '58805' + }, + '1' => { + 'name' => 'stream', + 'offset' => '50', + 'type' => '29686063' + } + }, + 'Name' => 'struct StringOrStream', + 'Size' => '40', + 'Source' => 'messagebuffer.cpp', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '190393' + } + }, + 'Type' => 'Struct' + }, + '29686038' => { + 'BaseType' => '29578726', + 'Name' => 'std::__cxx11::basic_ostringstream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '29686063' => { + 'BaseType' => '29578964', + 'Name' => 'std::__cxx11::basic_ostringstream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '2968676' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3120509' + } + }, + 'Type' => 'Struct' + }, + '2969650' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2972070' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3120509' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2968676' + } + }, + 'Type' => 'Class' + }, + '2970284' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '2968676' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '2968676' + } + }, + 'Type' => 'Struct' + }, + '2970542' => { + 'Base' => { + '2970284' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '2968676' + } + }, + 'Type' => 'Struct' + }, + '2970848' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3130281' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::pattern::FormattingInfo::FormattingInfoPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '3130281' + } + }, + 'Type' => 'Struct' + }, + '2971106' => { + 'Base' => { + '2970542' => { + 'pos' => '0' + }, + '2970848' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::pattern::FormattingInfo::FormattingInfoPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '3130281' + } + }, + 'Type' => 'Struct' + }, + '2972070' => { + 'Base' => { + '2971106' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '3130281' + } + }, + 'Type' => 'Class' + }, + '2973512' => { + 'Base' => { + '2969650' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3120509' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2968676' + } + }, + 'Type' => 'Struct' + }, + '2973714' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2973512' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3120509' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2968676' + } + }, + 'Type' => 'Class' + }, + '2974321' => { + 'Copied' => 1, + 'Name' => 'std::map, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)>, std::less, std::allocator > >, std::allocator, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> > > >', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'name' => 'std::__cxx11::basic_string, std::allocator >' + }, + '1' => { + 'name' => 'std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)>' + }, + '2' => { + 'name' => 'std::less, std::allocator > >' + }, + '3' => { + 'type' => '9818722' + } + }, + 'Type' => 'Class' + }, + '2974326' => { + 'Base' => { + '6004741' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'type' => '3120362' + } + }, + 'Type' => 'Class' + }, + '2974331' => { + 'Base' => { + '16658560' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'type' => '3120500' + } + }, + 'Type' => 'Class' + }, + '2974366' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3121194' + } + }, + 'Type' => 'Struct' + }, + '2975340' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2977760' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3121194' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2974366' + } + }, + 'Type' => 'Class' + }, + '2975974' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '2974366' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '2974366' + } + }, + 'Type' => 'Struct' + }, + '2976232' => { + 'Base' => { + '2975974' => { + 'access' => 'private', 'pos' => '0' } - }, - 'Header' => 'stringmatchfilter.h', - 'Line' => '48', - 'Name' => 'log4cxx::filter::StringMatchFilter', - 'NameSpace' => 'log4cxx::filter', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter17StringMatchFilter10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter17StringMatchFilter4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter17StringMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter17StringMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::StringMatchFilter) [_ZTIN7log4cxx6filter17StringMatchFilterE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::~StringMatchFilter() [_ZN7log4cxx6filter17StringMatchFilterD1Ev]', - '88' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::~StringMatchFilter() [_ZN7log4cxx6filter17StringMatchFilterD0Ev]', - '96' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::getClass() const [_ZNK7log4cxx6filter17StringMatchFilter8getClassEv]' - } - }, - '17583426' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'stringmatchfilter.h', - 'Line' => '55', - 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter', - 'NameSpace' => 'log4cxx::filter::StringMatchFilter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::~ClazzStringMatchFilter() [_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::~ClazzStringMatchFilter() [_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::newInstance() const [_ZNK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter) [_ZTIN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterE]' - } - }, - '17583647' => { - 'BaseType' => '17583426', - 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17583652' => { - 'Base' => { - '150962' => { + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '2974366' + } + }, + 'Type' => 'Struct' + }, + '2976538' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3130541' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::PatternLayout::PatternLayoutPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '3130541' + } + }, + 'Type' => 'Struct' + }, + '2976796' => { + 'Base' => { + '2976232' => { 'pos' => '0' + }, + '2976538' => { + 'access' => 'private', + 'pos' => '1' } - }, - 'Line' => '32', - 'Memb' => { - '0' => { - 'name' => 'acceptOnMatch', - 'offset' => '24', - 'type' => '50284' - }, - '1' => { - 'name' => 'stringToMatch', - 'offset' => '32', - 'type' => '63706' - } - }, - 'Name' => 'struct log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate', - 'NameSpace' => 'log4cxx::filter::StringMatchFilter', - 'Private' => 1, - 'Size' => '64', - 'Source' => 'stringmatchfilter.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate::~StringMatchFilterPrivate() [_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate::~StringMatchFilterPrivate() [_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate) [_ZTIN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateE]' - } - }, - '17584324' => { - 'BaseType' => '17583408', - 'Name' => 'log4cxx::filter::StringMatchFilter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '17585959' => { - 'BaseType' => '17581769', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17585965' => { - 'BaseType' => '17585959', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17586084' => { - 'BaseType' => '17583652', - 'Name' => 'struct log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17586090' => { - 'BaseType' => '17586084', - 'Name' => 'struct log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17586528' => { - 'BaseType' => '17583408', - 'Name' => 'log4cxx::filter::StringMatchFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17586534' => { - 'BaseType' => '17586528', - 'Name' => 'log4cxx::filter::StringMatchFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17586556' => { - 'BaseType' => '17584324', - 'Name' => 'log4cxx::filter::StringMatchFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17586562' => { - 'BaseType' => '17586556', - 'Name' => 'log4cxx::filter::StringMatchFilter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17586620' => { - 'BaseType' => '17583426', - 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17586626' => { - 'BaseType' => '17586620', - 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17586631' => { - 'BaseType' => '17583647', - 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17586637' => { - 'BaseType' => '17586631', - 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17672658' => { - 'BaseType' => '14550254', - 'Name' => 'log4cxx::helpers::StringTokenizer*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17672669' => { - 'BaseType' => '14550260', - 'Name' => 'log4cxx::helpers::StringTokenizer const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1777409' => { - 'BaseType' => '1732132', - 'Name' => 'log4cxx::helpers::TrivialCharsetDecoder*&&', + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::PatternLayout::PatternLayoutPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'RvalueRef' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '3130541' + } + }, + 'Type' => 'Struct' }, - '1778612' => { - 'BaseType' => '1731986', - 'Name' => 'log4cxx::helpers::CharsetDecoder*&&', + '2977760' => { + 'Base' => { + '2976796' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'RvalueRef' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '3130541' + } + }, + 'Type' => 'Class' }, - '17841293' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '17841669' - } - }, - 'Type' => 'Class' - }, - '17841669' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'systemerrwriter.h', - 'Line' => '34', - 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter', - 'NameSpace' => 'log4cxx::helpers::SystemErrWriter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter::~ClazzSystemErrWriter() [_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter::~ClazzSystemErrWriter() [_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter::newInstance() const [_ZNK7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter) [_ZTIN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterE]' - } - }, - '17841865' => { - 'BaseType' => '17841669', - 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17843283' => { - 'BaseType' => '17841293', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17843289' => { - 'BaseType' => '17843283', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17843505' => { - 'BaseType' => '2850193', - 'Name' => 'log4cxx::helpers::SystemErrWriter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17843516' => { - 'BaseType' => '2849949', - 'Name' => 'log4cxx::helpers::SystemErrWriter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17843533' => { - 'BaseType' => '17841669', - 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17843539' => { - 'BaseType' => '17843533', - 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17843544' => { - 'BaseType' => '17841865', - 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17843550' => { - 'BaseType' => '17843544', - 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17920903' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '17921279' - } - }, - 'Type' => 'Class' - }, - '17921279' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'systemoutwriter.h', - 'Line' => '34', - 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter', - 'NameSpace' => 'log4cxx::helpers::SystemOutWriter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter::~ClazzSystemOutWriter() [_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter::~ClazzSystemOutWriter() [_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter::newInstance() const [_ZNK7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter) [_ZTIN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterE]' - } - }, - '17921475' => { - 'BaseType' => '17921279', - 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17922893' => { - 'BaseType' => '17920903', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17922899' => { - 'BaseType' => '17922893', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17923115' => { - 'BaseType' => '2850107', - 'Name' => 'log4cxx::helpers::SystemOutWriter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17923126' => { - 'BaseType' => '2849803', - 'Name' => 'log4cxx::helpers::SystemOutWriter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17923143' => { - 'BaseType' => '17921279', - 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17923149' => { - 'BaseType' => '17923143', - 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17923154' => { - 'BaseType' => '17921475', - 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17923160' => { - 'BaseType' => '17923154', - 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '17988084' => { - 'Header' => 'threadlocal.h', - 'Line' => '46', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'p', - 'offset' => '0', - 'type' => '62082' - }, - '1' => { - 'access' => 'private', - 'name' => 'key', - 'offset' => '16', - 'type' => '652173' - } - }, - 'Name' => 'log4cxx::helpers::ThreadLocal', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '24', - 'Type' => 'Class' - }, - '17988662' => { - 'BaseType' => '17988084', - 'Name' => 'log4cxx::helpers::ThreadLocal*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '17988668' => { - 'BaseType' => '17988662', - 'Name' => 'log4cxx::helpers::ThreadLocal*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '179907' => { - 'BaseType' => '151305', - 'Name' => 'log4cxx::spi::OptionHandler*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '179913' => { - 'BaseType' => '179907', - 'Name' => 'log4cxx::spi::OptionHandler*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18036030' => { + '2979202' => { + 'Base' => { + '2975340' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3121194' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2974366' + } + }, + 'Type' => 'Struct' + }, + '2979404' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2979202' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3121194' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2974366' + } + }, + 'Type' => 'Class' + }, + '2991346' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3115692' + } + }, + 'Type' => 'Struct' + }, + '2992320' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2994740' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3115692' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2991346' + } + }, + 'Type' => 'Class' + }, + '2992954' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '2991346' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '2991346' + } + }, + 'Type' => 'Struct' + }, + '2993212' => { + 'Base' => { + '2992954' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '2991346' + } + }, + 'Type' => 'Struct' + }, + '2993518' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3131231' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::OutputStreamWriter::OutputStreamWriterPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '3131231' + } + }, + 'Type' => 'Struct' + }, + '2993776' => { + 'Base' => { + '2993212' => { + 'pos' => '0' + }, + '2993518' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::OutputStreamWriter::OutputStreamWriterPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '3131231' + } + }, + 'Type' => 'Struct' + }, + '2994740' => { + 'Base' => { + '2993776' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '3131231' + } + }, + 'Type' => 'Class' + }, + '2996182' => { + 'Base' => { + '2992320' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3115692' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2991346' + } + }, + 'Type' => 'Struct' + }, + '2996384' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '2996182' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3115692' + }, + '1' => { + 'key' => '_Dp', + 'type' => '2991346' + } + }, + 'Type' => 'Class' + }, + '30066663' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '18059763' + 'type' => '9955075' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '18036178' => { + '30066811' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '18059763' + 'type' => '9955075' } }, 'Type' => 'Struct' }, - '18036192' => { - 'BaseType' => '18059763', + '30066825' => { + 'BaseType' => '9955075', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Size' => '16', 'Type' => 'Typedef' }, - '18036215' => { + '30066848' => { 'Base' => { - '18036030' => { + '30066663' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '18062084' + 'type' => '30147723' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '18059763' + 'type' => '9955075' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '18036501' => { - 'BaseType' => '18036192', + '30067129' => { + 'BaseType' => '30066825', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Size' => '16', 'Type' => 'Typedef' }, - '18036911' => { + '30067580' => { 'Base' => { - '18036215' => { + '30066848' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '18059763' + 'type' => '9955075' } }, 'Type' => 'Class' }, - '18058133' => { + '30133707' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -116306,734 +119054,358 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '18059797' + 'type' => '9955100' } }, 'Type' => 'Class' }, - '18059763' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'threadpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern22ThreadPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThreadPatternConverter) [_ZTIN7log4cxx7pattern22ThreadPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::~ThreadPatternConverter() [_ZN7log4cxx7pattern22ThreadPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::~ThreadPatternConverter() [_ZN7log4cxx7pattern22ThreadPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::getClass() const [_ZNK7log4cxx7pattern22ThreadPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern22ThreadPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern22ThreadPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } - }, - '18059797' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'threadpatternconverter.h', - 'Line' => '38', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter', - 'NameSpace' => 'log4cxx::pattern::ThreadPatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter::~ClazzThreadPatternConverter() [_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter::~ClazzThreadPatternConverter() [_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter) [_ZTIN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterE]' - } - }, - '18059955' => { - 'BaseType' => '18059797', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18060360' => { - 'BaseType' => '18059763', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter const', + '30136273' => { + 'BaseType' => '9955075', + 'Name' => 'log4cxx::pattern::MessagePatternConverter const', 'Size' => '16', 'Type' => 'Const' }, - '18061794' => { - 'BaseType' => '18058133', - 'Name' => 'log4cxx::helpers::WideLife*', + '30146965' => { + 'BaseType' => '30133707', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '18061800' => { - 'BaseType' => '18061794', - 'Name' => 'log4cxx::helpers::WideLife*const', + '30146970' => { + 'BaseType' => '30146965', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '18062084' => { - 'BaseType' => '18036501', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18062102' => { - 'BaseType' => '18059763', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter*', + '30147723' => { + 'BaseType' => '30067129', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '18062108' => { - 'BaseType' => '18062102', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18062130' => { - 'BaseType' => '18036911', - 'Name' => 'std::shared_ptr&&', + '30147753' => { + 'BaseType' => '30067580', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', 'Type' => 'RvalueRef' }, - '18062301' => { - 'BaseType' => '18060360', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter const*', + '30147958' => { + 'BaseType' => '9955075', + 'Name' => 'log4cxx::pattern::MessagePatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '18062307' => { - 'BaseType' => '18062301', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter const*const', + '30147963' => { + 'BaseType' => '30147958', + 'Name' => 'log4cxx::pattern::MessagePatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '18062618' => { - 'BaseType' => '18059797', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter*', + '30148384' => { + 'BaseType' => '30136273', + 'Name' => 'log4cxx::pattern::MessagePatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '18062624' => { - 'BaseType' => '18062618', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter*const', + '30148389' => { + 'BaseType' => '30148384', + 'Name' => 'log4cxx::pattern::MessagePatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '18062629' => { - 'BaseType' => '18059955', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter const*', + '30148740' => { + 'BaseType' => '9977345', + 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '18062635' => { - 'BaseType' => '18062629', - 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter const*const', + '30148750' => { + 'BaseType' => '9977350', + 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '18138464' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '18162451' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '18138612' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '18162451' - } - }, - 'Type' => 'Struct' - }, - '18138626' => { - 'BaseType' => '18162451', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '18138649' => { - 'Base' => { - '18138464' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '18164634' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '18162451' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '18138935' => { - 'BaseType' => '18138626', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '18139345' => { - 'Base' => { - '18138649' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '18162451' - } - }, - 'Type' => 'Class' - }, - '18160821' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '18162469' + '30290' => { + 'Base' => { + '178281' => { + 'pos' => '0' } - }, - 'Type' => 'Class' - }, - '18162451' => { - 'Base' => { - '2271385' => { + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'name' => 'char' + } + }, + 'Type' => 'Class' + }, + '3044231' => { + 'Base' => { + '27916072' => { 'pos' => '0' } - }, - 'Header' => 'threadusernamepatternconverter.h', - 'Line' => '30', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThreadUsernamePatternConverter) [_ZTIN7log4cxx7pattern30ThreadUsernamePatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::~ThreadUsernamePatternConverter() [_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::~ThreadUsernamePatternConverter() [_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::getClass() const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } - }, - '18162469' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'threadusernamepatternconverter.h', - 'Line' => '34', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter', - 'NameSpace' => 'log4cxx::pattern::ThreadUsernamePatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter::~ClazzThreadUsernamePatternConverter() [_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter::~ClazzThreadUsernamePatternConverter() [_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter) [_ZTIN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterE]' - } - }, - '18162627' => { - 'BaseType' => '18162469', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18163033' => { - 'BaseType' => '18162451', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '18164344' => { - 'BaseType' => '18160821', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18164350' => { - 'BaseType' => '18164344', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18164634' => { - 'BaseType' => '18138935', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18164652' => { - 'BaseType' => '18162451', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18164658' => { - 'BaseType' => '18164652', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18164680' => { - 'BaseType' => '18139345', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '18164851' => { - 'BaseType' => '18163033', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18164857' => { - 'BaseType' => '18164851', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18165174' => { - 'BaseType' => '18162469', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18165180' => { - 'BaseType' => '18165174', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18165185' => { - 'BaseType' => '18162627', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18165191' => { - 'BaseType' => '18165185', - 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18298896' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '648250' - } - }, - 'Type' => 'Class' - }, - '18300888' => { - 'BaseType' => '652648', - 'Name' => 'log4cxx::helpers::ThreadSpecificData*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18303126' => { - 'BaseType' => '18298896', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18303132' => { - 'BaseType' => '18303126', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '184086' => { - 'BaseType' => '151266', - 'Name' => 'log4cxx::spi::Filter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '184092' => { - 'BaseType' => '184086', - 'Name' => 'log4cxx::spi::Filter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18543791' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '833040' - } - }, - 'Type' => 'Class' - }, - '18545242' => { - 'BaseType' => '18543791', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18545248' => { - 'BaseType' => '18545242', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1863919' => { + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'type' => '3118493' + } + }, + 'Type' => 'Class' + }, + '3044559' => { + 'Base' => { + '5552974' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'type' => '565893' + } + }, + 'Type' => 'Class' + }, + '3044564' => { + 'Copied' => 1, + 'Name' => 'std::vector, std::allocator > >', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'type' => '457528' + }, + '1' => { + 'type' => '11856543' + } + }, + 'Type' => 'Class' + }, + '3044660' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '565598' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '3044808' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '565598' + } + }, + 'Type' => 'Struct' + }, + '3044822' => { + 'BaseType' => '565598', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '3044845' => { + 'Base' => { + '3044660' => { + 'pos' => '0' + } + }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '3132755' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1922121' + 'type' => '565598' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '1864067' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1922121' - } - }, - 'Type' => 'Struct' - }, - '1864081' => { - 'BaseType' => '1922121', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '8', + '3045126' => { + 'BaseType' => '3044822', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '18650134' => { + '30467725' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '18676273' + 'type' => '9955247' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '18650282' => { + '30467873' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '18676273' + 'type' => '9955247' } }, 'Type' => 'Struct' }, - '18650296' => { - 'BaseType' => '18676273', + '30467887' => { + 'BaseType' => '9955247', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Size' => '16', 'Type' => 'Typedef' }, - '18650319' => { + '30467910' => { 'Base' => { - '18650134' => { + '30467725' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '18679616' + 'type' => '30540612' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '18676273' + 'type' => '9955247' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '18650605' => { - 'BaseType' => '18650296', + '30468191' => { + 'BaseType' => '30467887', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Size' => '16', 'Type' => 'Typedef' }, - '18651499' => { + '30468642' => { 'Base' => { - '18650319' => { + '30467910' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '18676273' + 'type' => '9955247' } }, 'Type' => 'Class' }, - '1866070' => { - 'Base' => { - '1863919' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '1928216' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1922121' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '1866356' => { - 'BaseType' => '1864081', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '1867055' => { - 'Base' => { - '1866070' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '1922121' - } - }, - 'Type' => 'Class' - }, - '18674473' => { + '30527107' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -117041,869 +119413,519 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '18676307' + 'type' => '9955272' } }, 'Type' => 'Class' }, - '18676273' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'throwableinformationpatternconverter.h', - 'Line' => '37', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThrowableInformationPatternConverter) [_ZTIN7log4cxx7pattern36ThrowableInformationPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::~ThrowableInformationPatternConverter() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::~ThrowableInformationPatternConverter() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::getClass() const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } - }, - '18676307' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'throwableinformationpatternconverter.h', - 'Line' => '43', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter', - 'NameSpace' => 'log4cxx::pattern::ThrowableInformationPatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter::~ClazzThrowableInformationPatternConverter() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter::~ClazzThrowableInformationPatternConverter() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter) [_ZTIN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterE]' - } - }, - '18676465' => { - 'BaseType' => '18676307', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18676470' => { - 'Base' => { - '2428623' => { - 'pos' => '0' - } - }, - 'Line' => '30', - 'Memb' => { - '0' => { - 'name' => 'shortReport', - 'offset' => '72', - 'type' => '50291' - } - }, - 'Name' => 'struct log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate', - 'NameSpace' => 'log4cxx::pattern::ThrowableInformationPatternConverter', - 'Private' => 1, - 'Size' => '80', - 'Source' => 'throwableinformationpatternconverter.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate::~ThrowableInformationPatternConverterPrivate() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate::~ThrowableInformationPatternConverterPrivate() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate) [_ZTIN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateE]' - } - }, - '18677087' => { - 'BaseType' => '18676273', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter const', + '30529675' => { + 'BaseType' => '9955247', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter const', 'Size' => '16', 'Type' => 'Const' }, - '18678828' => { - 'BaseType' => '18674473', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18678834' => { - 'BaseType' => '18678828', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18678953' => { - 'BaseType' => '18676470', - 'Name' => 'struct log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate*', + '30540361' => { + 'BaseType' => '30527107', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '18678959' => { - 'BaseType' => '18678953', - 'Name' => 'struct log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate*const', + '30540366' => { + 'BaseType' => '30540361', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '18679616' => { - 'BaseType' => '18650605', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18679634' => { - 'BaseType' => '18676273', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter*', + '30540612' => { + 'BaseType' => '30468191', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '18679640' => { - 'BaseType' => '18679634', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18679662' => { - 'BaseType' => '18651499', - 'Name' => 'std::shared_ptr&&', + '30540642' => { + 'BaseType' => '30468642', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', 'Type' => 'RvalueRef' }, - '18679749' => { - 'BaseType' => '18677087', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter const*', + '30540807' => { + 'BaseType' => '9955247', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '18679755' => { - 'BaseType' => '18679749', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter const*const', + '30540812' => { + 'BaseType' => '30540807', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '18680167' => { - 'BaseType' => '18676307', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter*', + '30541148' => { + 'BaseType' => '30529675', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '18680173' => { - 'BaseType' => '18680167', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter*const', + '30541153' => { + 'BaseType' => '30541148', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '18680178' => { - 'BaseType' => '18676465', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter const*', + '30541313' => { + 'BaseType' => '9977335', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '18680184' => { - 'BaseType' => '18680178', - 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter const*const', + '30541323' => { + 'BaseType' => '9977340', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '18865790' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '18954198' - } - }, - 'Type' => 'Struct' - }, - '18865876' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '18867409' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '18954198' - }, - '1' => { - 'key' => '_Dp', - 'type' => '18865790' + '30578' => { + 'Base' => { + '178527' => { + 'pos' => '0' } - }, - 'Type' => 'Class' - }, - '18866199' => { + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'name' => 'wchar_t' + } + }, + 'Type' => 'Class' + }, + '30705342' => { 'Base' => { - '18865790' => { + '30767040' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '18865790' + 'type' => '30794229' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '18866452' => { - 'Base' => { - '18866199' => { - 'access' => 'private', - 'pos' => '0' - } - }, + '30705631' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '18865790' - } - }, - 'Type' => 'Struct' - }, - '18866748' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '18960096' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::TimeBasedRollingPolicy::TimeBasedRollingPolicyPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '18960096' - } - }, - 'Type' => 'Struct' - }, - '18867008' => { - 'Base' => { - '18866452' => { - 'pos' => '0' - }, - '18866748' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::TimeBasedRollingPolicy::TimeBasedRollingPolicyPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '18960096' + 'type' => '30705342' } }, 'Type' => 'Struct' }, - '18867409' => { - 'Base' => { - '18867008' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '30705645' => { + 'BaseType' => '30796625', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits >::pointer', + 'NameSpace' => 'std::allocator_traits >', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '18960096' - } - }, - 'Type' => 'Class' + 'Type' => 'Typedef' }, - '18867741' => { + '30706063' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Header' => 'stl_vector.h', + 'Line' => '84', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', + 'name' => '_M_impl', 'offset' => '0', - 'type' => '18865876' + 'type' => '30706262' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'struct std::_Vector_base >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '18954198' + 'type' => '30794229' }, '1' => { - 'key' => '_Dp', - 'type' => '18865790' - } - }, - 'Type' => 'Class' - }, - '18952473' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '18954432' - } - }, - 'Type' => 'Class' - }, - '18954198' => { - 'Line' => '42', - 'Memb' => { - '0' => { - 'name' => 'nextCheck', - 'offset' => '0', - 'type' => '649587' - }, - '1' => { - 'name' => 'lastFileName', - 'offset' => '8', - 'type' => '63706' - }, - '10' => { - 'name' => '_fileNamePattern', - 'offset' => '128', - 'type' => '63706' - }, - '11' => { - 'name' => 'multiprocess', - 'offset' => '160', - 'type' => '50284' - }, - '12' => { - 'name' => 'throwIOExceptionOnForkFailure', - 'offset' => '161', - 'type' => '50284' - }, - '2' => { - 'name' => 'suffixLength', - 'offset' => '40', - 'type' => '50231' - }, - '3' => { - 'name' => '_mmap', - 'offset' => '48', - 'type' => '18961852' - }, - '4' => { - 'name' => '_mmapPool', - 'offset' => '56', - 'type' => '62082' - }, - '5' => { - 'name' => '_file_map', - 'offset' => '72', - 'type' => '4781412' - }, - '6' => { - 'name' => '_mapFileName', - 'offset' => '80', - 'type' => '36898' - }, - '7' => { - 'name' => '_lock_file', - 'offset' => '112', - 'type' => '4781412' - }, - '8' => { - 'name' => 'bAlreadyInitialized', - 'offset' => '120', - 'type' => '50284' - }, - '9' => { - 'name' => 'bRefreshCurFile', - 'offset' => '121', - 'type' => '50284' - } - }, - 'Name' => 'struct log4cxx::rolling::TimeBasedRollingPolicy::TimeBasedRollingPolicyPrivate', - 'NameSpace' => 'log4cxx::rolling::TimeBasedRollingPolicy', - 'Private' => 1, - 'Size' => '168', - 'Source' => 'timebasedrollingpolicy.cpp', - 'Type' => 'Struct' - }, - '18954432' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'timebasedrollingpolicy.h', - 'Line' => '143', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy', - 'NameSpace' => 'log4cxx::rolling::TimeBasedRollingPolicy', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::~ClazzTimeBasedRollingPolicy() [_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::~ClazzTimeBasedRollingPolicy() [_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::newInstance() const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy) [_ZTIN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyE]' - } - }, - '18954655' => { - 'BaseType' => '18954432', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18960096' => { - 'BaseType' => '18954198', - 'Name' => 'struct log4cxx::rolling::TimeBasedRollingPolicy::TimeBasedRollingPolicyPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18961582' => { - 'BaseType' => '18961594', - 'Header' => 'apr_mmap.h', - 'Line' => '51', - 'Name' => 'apr_mmap_t', - 'Size' => '40', - 'Type' => 'Typedef' - }, - '18961594' => { - 'Header' => 'apr_mmap.h', - 'Line' => '62', - 'Memb' => { - '0' => { - 'name' => 'cntxt', - 'offset' => '0', - 'type' => '652756' - }, - '1' => { - 'name' => 'mm', - 'offset' => '8', - 'type' => '50560' - }, - '2' => { - 'name' => 'size', - 'offset' => '16', - 'type' => '1731213' - }, - '3' => { - 'name' => 'link', - 'offset' => '24', - 'type' => '18961607' - } - }, - 'Name' => 'struct apr_mmap_t', - 'Size' => '40', - 'Type' => 'Struct' - }, - '18961607' => { - 'Header' => 'apr_mmap.h', - 'Line' => '85', - 'Memb' => { - '0' => { - 'name' => 'next', - 'offset' => '0', - 'type' => '18961703' - }, - '1' => { - 'name' => 'prev', - 'offset' => '8', - 'type' => '18961703' - } - }, - 'Name' => 'apr_mmap_t::anon-struct-apr_mmap.h-85', - 'NameSpace' => 'apr_mmap_t', - 'Size' => '16', - 'Type' => 'Struct' - }, - '18961697' => { - 'BaseType' => '18961594', - 'Name' => 'struct apr_mmap_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18961703' => { - 'BaseType' => '18961697', - 'Name' => 'struct apr_mmap_t*volatile', - 'Size' => '8', - 'Type' => 'Volatile' - }, - '18961744' => { - 'BaseType' => '18952473', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18961750' => { - 'BaseType' => '18961744', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '18961852' => { - 'BaseType' => '18961582', - 'Name' => 'apr_mmap_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '18965375' => { - 'BaseType' => '15778025', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy*const', - 'Size' => '8', - 'Type' => 'Const' + 'key' => '_Alloc', + 'type' => '30705342' + } + }, + 'Type' => 'Struct' }, - '18965403' => { - 'BaseType' => '15778979', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy const*const', - 'Size' => '8', - 'Type' => 'Const' + '30706076' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', + 'Memb' => { + '0' => { + 'name' => '_M_start', + 'offset' => '0', + 'type' => '30706250' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '30706250' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '30706250' + } + }, + 'Name' => 'struct std::_Vector_base >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '24', + 'Type' => 'Struct' }, - '18965420' => { - 'BaseType' => '18954432', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy*', + '30706250' => { + 'BaseType' => '30767511', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base >::pointer', + 'NameSpace' => 'std::_Vector_base >', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Typedef' }, - '18965426' => { - 'BaseType' => '18965420', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy*const', - 'Size' => '8', - 'Type' => 'Const' + '30706262' => { + 'Base' => { + '30705342' => { + 'pos' => '0' + }, + '30706076' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '24', + 'Type' => 'Struct' }, - '18965431' => { - 'BaseType' => '18954655', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' + '30707086' => { + 'Base' => { + '30706063' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '30794229' + } + }, + 'Type' => 'Class' }, - '18965437' => { - 'BaseType' => '18965431', - 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy const*const', - 'Size' => '8', + '30710342' => { + 'BaseType' => '30707086', + 'Name' => 'std::vectorconst', + 'Size' => '24', 'Type' => 'Const' }, - '19174199' => { + '30710730' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '19210404' + 'type' => '6075057' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '19174347' => { + '30710878' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '19210404' + 'type' => '6075057' } }, 'Type' => 'Struct' }, - '19174361' => { - 'BaseType' => '19210404', + '30710892' => { + 'BaseType' => '6075057', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '40', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '8', 'Type' => 'Typedef' }, - '19174384' => { + '30712618' => { 'Base' => { - '19174199' => { + '30710730' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '19213586' + 'type' => '30797123' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '19210404' + 'type' => '6075057' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '19174670' => { - 'BaseType' => '19174361', + '30712897' => { + 'BaseType' => '30710892', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '40', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '8', 'Type' => 'Typedef' }, - '19175080' => { + '30713347' => { 'Base' => { - '19174384' => { + '30712618' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '19210404' + 'type' => '6075057' } }, 'Type' => 'Class' }, - '19175437' => { + '30719981' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '19210617' + 'type' => '30794443' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '19175585' => { + '30720129' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '19210617' + 'type' => '30794443' } }, 'Type' => 'Struct' }, - '19175599' => { - 'BaseType' => '19210617', + '30720143' => { + 'BaseType' => '30794443', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '40', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '8', 'Type' => 'Typedef' }, - '19175622' => { + '30720166' => { 'Base' => { - '19175437' => { + '30719981' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '19213697' + 'type' => '30797428' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '19210617' + 'type' => '30794443' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '19175908' => { - 'BaseType' => '19175599', + '30720445' => { + 'BaseType' => '30720143', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '40', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '8', 'Type' => 'Typedef' }, - '19176318' => { + '30720895' => { 'Base' => { - '19175622' => { + '30720166' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '19210617' + 'type' => '30794443' + } + }, + 'Type' => 'Class' + }, + '30767040' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '30794229' } }, 'Type' => 'Class' }, - '19208559' => { + '30767287' => { + 'Base' => { + '30705631' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '30705342' + } + }, + 'Type' => 'Struct' + }, + '30767511' => { + 'BaseType' => '30705645', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '30790674' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -117911,48 +119933,87 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '19208939' + 'type' => '6075063' } }, 'Type' => 'Class' }, - '19208939' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } + '30791430' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } }, - 'Header' => 'timezone.h', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '30794460' + } + }, + 'Type' => 'Class' + }, + '30791785' => { + 'Header' => 'widelife.h', 'Line' => '36', - 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone', - 'NameSpace' => 'log4cxx::helpers::TimeZone', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::TimeZone::ClazzTimeZone::~ClazzTimeZone() [_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::TimeZone::ClazzTimeZone::~ClazzTimeZone() [_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::ClazzTimeZone::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers8TimeZone13ClazzTimeZone7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZone::ClazzTimeZone) [_ZTIN7log4cxx7helpers8TimeZone13ClazzTimeZoneE]' - } + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '30794957' + } + }, + 'Type' => 'Class' }, - '19209097' => { - 'BaseType' => '19208939', - 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone const', + '30792140' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '30795472' + } + }, + 'Type' => 'Class' }, - '19209938' => { + '30792495' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -117960,370 +120021,617 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '61461' + 'type' => '202654' } }, - 'Name' => 'log4cxx::helpers::WideLife >', + 'Name' => 'log4cxx::helpers::WideLife >', 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '1557484' + 'type' => '30713347' } }, 'Type' => 'Class' }, - '19210404' => { + '30794224' => { + 'BaseType' => '6075057', + 'Name' => 'log4cxx::pattern::NameAbbreviator const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30794229' => { + 'Line' => '124', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'charCount', + 'offset' => '0', + 'type' => '51887' + }, + '1' => { + 'access' => 'private', + 'name' => 'ellipsis', + 'offset' => '8', + 'type' => '209678' + } + }, + 'Name' => 'log4cxx::pattern::PatternAbbreviatorFragment', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Source' => 'nameabbreviator.cpp', + 'Type' => 'Class' + }, + '30794438' => { + 'BaseType' => '30794229', + 'Name' => 'log4cxx::pattern::PatternAbbreviatorFragment const', + 'Size' => '16', + 'Type' => 'Const' + }, + '30794443' => { 'Base' => { - '3413936' => { + '6075057' => { 'pos' => '0' } }, - 'Line' => '43', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone', - 'NameSpace' => 'log4cxx::helpers::TimeZoneImpl', - 'Size' => '40', - 'Source' => 'timezone.cpp', + 'Line' => '45', + 'Name' => 'log4cxx::pattern::NOPAbbreviator', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '8', + 'Source' => 'nameabbreviator.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::GMTTimeZone::~GMTTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::GMTTimeZone::~GMTTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::TimeZone::getClass() const [_ZNK7log4cxx7helpers8TimeZone8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::TimeZone::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::GMTTimeZone::explode(apr_time_exp_t*, long) const [_ZNK7log4cxx7helpers12TimeZoneImpl11GMTTimeZone7explodeEP14apr_time_exp_tl]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZoneImpl::GMTTimeZone) [_ZTIN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneE]' + '16' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::~NOPAbbreviator() [_ZN7log4cxx7pattern14NOPAbbreviatorD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::~NOPAbbreviator() [_ZN7log4cxx7pattern14NOPAbbreviatorD0Ev]', + '32' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::getClass() const [_ZNK7log4cxx7pattern14NOPAbbreviator8getClassEv]', + '40' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern14NOPAbbreviator10instanceofERKNS_7helpers5ClassE]', + '48' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern14NOPAbbreviator4castERKNS_7helpers5ClassE]', + '56' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::abbreviate(unsigned long, std::__cxx11::basic_string, std::allocator >&) const [_ZNK7log4cxx7pattern14NOPAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NOPAbbreviator) [_ZTIN7log4cxx7pattern14NOPAbbreviatorE]' } }, - '19210612' => { - 'BaseType' => '19210404', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone const', - 'Size' => '40', + '30794460' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Line' => '48', + 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator', + 'NameSpace' => 'log4cxx::pattern::NOPAbbreviator', + 'Size' => '8', + 'Source' => 'nameabbreviator.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator::~ClazzNOPAbbreviator() [_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator::~ClazzNOPAbbreviator() [_ZN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviator7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator) [_ZTIN7log4cxx7pattern14NOPAbbreviator19ClazzNOPAbbreviatorE]' + } + }, + '30794608' => { + 'BaseType' => '30794460', + 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30794935' => { + 'BaseType' => '30794443', + 'Name' => 'log4cxx::pattern::NOPAbbreviator const', + 'Size' => '8', 'Type' => 'Const' }, - '19210617' => { + '30794940' => { 'Base' => { - '3413936' => { + '6075057' => { 'pos' => '0' } }, - 'Line' => '82', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone', - 'NameSpace' => 'log4cxx::helpers::TimeZoneImpl', - 'Size' => '40', - 'Source' => 'timezone.cpp', + 'Line' => '73', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'count', + 'offset' => '8', + 'type' => '190271' + } + }, + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Source' => 'nameabbreviator.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::LocalTimeZone::~LocalTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::LocalTimeZone::~LocalTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::TimeZone::getClass() const [_ZNK7log4cxx7helpers8TimeZone8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::TimeZone::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::LocalTimeZone::explode(apr_time_exp_t*, long) const [_ZNK7log4cxx7helpers12TimeZoneImpl13LocalTimeZone7explodeEP14apr_time_exp_tl]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZoneImpl::LocalTimeZone) [_ZTIN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneE]' + '16' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::~MaxElementAbbreviator() [_ZN7log4cxx7pattern21MaxElementAbbreviatorD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::~MaxElementAbbreviator() [_ZN7log4cxx7pattern21MaxElementAbbreviatorD0Ev]', + '32' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::getClass() const [_ZNK7log4cxx7pattern21MaxElementAbbreviator8getClassEv]', + '40' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern21MaxElementAbbreviator10instanceofERKNS_7helpers5ClassE]', + '48' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern21MaxElementAbbreviator4castERKNS_7helpers5ClassE]', + '56' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::abbreviate(unsigned long, std::__cxx11::basic_string, std::allocator >&) const [_ZNK7log4cxx7pattern21MaxElementAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MaxElementAbbreviator) [_ZTIN7log4cxx7pattern21MaxElementAbbreviatorE]' } }, - '19210841' => { - 'BaseType' => '19210617', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone const', - 'Size' => '40', + '30794957' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Line' => '81', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator', + 'NameSpace' => 'log4cxx::pattern::MaxElementAbbreviator', + 'Size' => '8', + 'Source' => 'nameabbreviator.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator::~ClazzMaxElementAbbreviator() [_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator::~ClazzMaxElementAbbreviator() [_ZN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviator7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator) [_ZTIN7log4cxx7pattern21MaxElementAbbreviator26ClazzMaxElementAbbreviatorE]' + } + }, + '30795105' => { + 'BaseType' => '30794957', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30795450' => { + 'BaseType' => '30794940', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator const', + 'Size' => '16', 'Type' => 'Const' }, - '19210846' => { + '30795455' => { 'Base' => { - '3413936' => { + '6075057' => { 'pos' => '0' } }, - 'Line' => '144', + 'Line' => '201', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'offset', - 'offset' => '40', - 'type' => '19211959' + 'name' => 'fragments', + 'offset' => '8', + 'type' => '30707086' } }, - 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone', - 'NameSpace' => 'log4cxx::helpers::TimeZoneImpl', - 'Size' => '48', - 'Source' => 'timezone.cpp', + 'Name' => 'log4cxx::pattern::PatternAbbreviator', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '32', + 'Source' => 'nameabbreviator.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::FixedTimeZone::~FixedTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::FixedTimeZone::~FixedTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::TimeZone::getClass() const [_ZNK7log4cxx7helpers8TimeZone8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::TimeZone::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::FixedTimeZone::explode(apr_time_exp_t*, long) const [_ZNK7log4cxx7helpers12TimeZoneImpl13FixedTimeZone7explodeEP14apr_time_exp_tl]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZoneImpl::FixedTimeZone) [_ZTIN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneE]' + '16' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::~PatternAbbreviator() [_ZN7log4cxx7pattern18PatternAbbreviatorD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::~PatternAbbreviator() [_ZN7log4cxx7pattern18PatternAbbreviatorD0Ev]', + '32' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::getClass() const [_ZNK7log4cxx7pattern18PatternAbbreviator8getClassEv]', + '40' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern18PatternAbbreviator10instanceofERKNS_7helpers5ClassE]', + '48' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern18PatternAbbreviator4castERKNS_7helpers5ClassE]', + '56' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::abbreviate(unsigned long, std::__cxx11::basic_string, std::allocator >&) const [_ZNK7log4cxx7pattern18PatternAbbreviator10abbreviateEmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternAbbreviator) [_ZTIN7log4cxx7pattern18PatternAbbreviatorE]' } }, - '19211060' => { - 'BaseType' => '19210846', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone const', - 'Size' => '48', + '30795472' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Line' => '209', + 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator', + 'NameSpace' => 'log4cxx::pattern::PatternAbbreviator', + 'Size' => '8', + 'Source' => 'nameabbreviator.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator::~ClazzPatternAbbreviator() [_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator::~ClazzPatternAbbreviator() [_ZN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviator7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator) [_ZTIN7log4cxx7pattern18PatternAbbreviator23ClazzPatternAbbreviatorE]' + } + }, + '30795620' => { + 'BaseType' => '30795472', + 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator const', + 'Size' => '8', 'Type' => 'Const' }, - '19211959' => { - 'BaseType' => '4730280', - 'Name' => 'apr_int32_t const', - 'Size' => '4', + '30795965' => { + 'BaseType' => '30795455', + 'Name' => 'log4cxx::pattern::PatternAbbreviator const', + 'Size' => '32', 'Type' => 'Const' }, - '19213275' => { - 'BaseType' => '19208559', - 'Name' => 'log4cxx::helpers::WideLife*', + '30795970' => { + 'BaseType' => '30713347', + 'Header' => 'nameabbreviator.h', + 'Line' => '30', + 'Name' => 'log4cxx::pattern::NameAbbreviatorPtr', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '30796469' => { + 'BaseType' => '30790674', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '19213281' => { - 'BaseType' => '19213275', - 'Name' => 'log4cxx::helpers::WideLife*const', + '30796474' => { + 'BaseType' => '30796469', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '19213458' => { - 'BaseType' => '3413936', - 'Name' => 'log4cxx::helpers::TimeZone*', + '30796625' => { + 'BaseType' => '30794229', + 'Name' => 'log4cxx::pattern::PatternAbbreviatorFragment*', 'Size' => '8', 'Type' => 'Pointer' }, - '19213464' => { - 'BaseType' => '19213458', - 'Name' => 'log4cxx::helpers::TimeZone*const', + '30796630' => { + 'BaseType' => '30796625', + 'Name' => 'log4cxx::pattern::PatternAbbreviatorFragment*const', 'Size' => '8', 'Type' => 'Const' }, - '19213504' => { - 'BaseType' => '19209938', - 'Name' => 'log4cxx::helpers::WideLife >*', + '30796645' => { + 'BaseType' => '30794438', + 'Name' => 'log4cxx::pattern::PatternAbbreviatorFragment const*', 'Size' => '8', 'Type' => 'Pointer' }, - '19213510' => { - 'BaseType' => '19213504', - 'Name' => 'log4cxx::helpers::WideLife >*const', + '30796650' => { + 'BaseType' => '30796645', + 'Name' => 'log4cxx::pattern::PatternAbbreviatorFragment const*const', 'Size' => '8', 'Type' => 'Const' }, - '19213586' => { - 'BaseType' => '19174670', - 'Name' => 'std::__shared_ptr::element_type*', + '30796830' => { + 'BaseType' => '30710342', + 'Name' => 'std::vectorconst&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '30796875' => { + 'BaseType' => '30791430', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '19213604' => { - 'BaseType' => '19210404', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone*', + '30796880' => { + 'BaseType' => '30796875', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30796931' => { + 'BaseType' => '30791785', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '19213610' => { - 'BaseType' => '19213604', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone*const', + '30796936' => { + 'BaseType' => '30796931', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '19213632' => { - 'BaseType' => '19175080', - 'Name' => 'std::shared_ptr&&', + '30796987' => { + 'BaseType' => '30792140', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Pointer' }, - '19213697' => { - 'BaseType' => '19175908', - 'Name' => 'std::__shared_ptr::element_type*', + '30796992' => { + 'BaseType' => '30796987', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30797123' => { + 'BaseType' => '30712897', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '19213715' => { - 'BaseType' => '19210617', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone*', + '30797253' => { + 'BaseType' => '30794940', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator*', 'Size' => '8', 'Type' => 'Pointer' }, - '19213721' => { - 'BaseType' => '19213715', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone*const', + '30797258' => { + 'BaseType' => '30797253', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator*const', 'Size' => '8', 'Type' => 'Const' }, - '19213743' => { - 'BaseType' => '19176318', - 'Name' => 'std::shared_ptr&&', + '30797348' => { + 'BaseType' => '30795455', + 'Name' => 'log4cxx::pattern::PatternAbbreviator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '30797353' => { + 'BaseType' => '30797348', + 'Name' => 'log4cxx::pattern::PatternAbbreviator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30797358' => { + 'BaseType' => '30792495', + 'Name' => 'log4cxx::helpers::WideLife >*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '30797363' => { + 'BaseType' => '30797358', + 'Name' => 'log4cxx::helpers::WideLife >*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30797428' => { + 'BaseType' => '30720445', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '30797458' => { + 'BaseType' => '30720895', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', 'Type' => 'RvalueRef' }, - '19213826' => { - 'BaseType' => '19210846', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone*', + '30797473' => { + 'BaseType' => '6075057', + 'Name' => 'log4cxx::pattern::NameAbbreviator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '30797478' => { + 'BaseType' => '30797473', + 'Name' => 'log4cxx::pattern::NameAbbreviator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30797623' => { + 'BaseType' => '30794443', + 'Name' => 'log4cxx::pattern::NOPAbbreviator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '30797628' => { + 'BaseType' => '30797623', + 'Name' => 'log4cxx::pattern::NOPAbbreviator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30798069' => { + 'BaseType' => '30795450', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '30798074' => { + 'BaseType' => '30798069', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30798235' => { + 'BaseType' => '30795965', + 'Name' => 'log4cxx::pattern::PatternAbbreviator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '30798240' => { + 'BaseType' => '30798235', + 'Name' => 'log4cxx::pattern::PatternAbbreviator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30798401' => { + 'BaseType' => '30794935', + 'Name' => 'log4cxx::pattern::NOPAbbreviator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '30798406' => { + 'BaseType' => '30798401', + 'Name' => 'log4cxx::pattern::NOPAbbreviator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30798606' => { + 'BaseType' => '30795472', + 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '30798611' => { + 'BaseType' => '30798606', + 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '30798616' => { + 'BaseType' => '30795620', + 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator const*', 'Size' => '8', 'Type' => 'Pointer' }, - '19213832' => { - 'BaseType' => '19213826', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone*const', + '30798621' => { + 'BaseType' => '30798616', + 'Name' => 'log4cxx::pattern::PatternAbbreviator::ClazzPatternAbbreviator const*const', 'Size' => '8', 'Type' => 'Const' }, - '19213931' => { - 'BaseType' => '19210612', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone const*', + '30798626' => { + 'BaseType' => '30794957', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator*', 'Size' => '8', 'Type' => 'Pointer' }, - '19213937' => { - 'BaseType' => '19213931', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone const*const', + '30798631' => { + 'BaseType' => '30798626', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator*const', 'Size' => '8', 'Type' => 'Const' }, - '19214000' => { - 'BaseType' => '19210841', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone const*', + '30798636' => { + 'BaseType' => '30795105', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator const*', 'Size' => '8', 'Type' => 'Pointer' }, - '19214006' => { - 'BaseType' => '19214000', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone const*const', + '30798641' => { + 'BaseType' => '30798636', + 'Name' => 'log4cxx::pattern::MaxElementAbbreviator::ClazzMaxElementAbbreviator const*const', 'Size' => '8', 'Type' => 'Const' }, - '19214069' => { - 'BaseType' => '19211060', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone const*', + '30798646' => { + 'BaseType' => '30794460', + 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator*', 'Size' => '8', 'Type' => 'Pointer' }, - '19214075' => { - 'BaseType' => '19214069', - 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone const*const', + '30798651' => { + 'BaseType' => '30798646', + 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator*const', 'Size' => '8', 'Type' => 'Const' }, - '19214789' => { - 'BaseType' => '16714156', - 'Name' => 'apr_time_exp_t*', + '30798656' => { + 'BaseType' => '30794608', + 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator const*', 'Size' => '8', 'Type' => 'Pointer' }, - '19214830' => { - 'BaseType' => '16714173', - 'Name' => 'struct apr_time_exp_t*', + '30798661' => { + 'BaseType' => '30798656', + 'Name' => 'log4cxx::pattern::NOPAbbreviator::ClazzNOPAbbreviator const*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '19214836' => { - 'BaseType' => '19208939', - 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone*', + '30798671' => { + 'BaseType' => '30794224', + 'Name' => 'log4cxx::pattern::NameAbbreviator const*', 'Size' => '8', 'Type' => 'Pointer' }, - '19214842' => { - 'BaseType' => '19214836', - 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone*const', + '30798676' => { + 'BaseType' => '30798671', + 'Name' => 'log4cxx::pattern::NameAbbreviator const*const', 'Size' => '8', 'Type' => 'Const' }, - '19214847' => { - 'BaseType' => '19209097', - 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone const*', + '30798686' => { + 'BaseType' => '6086571', + 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '19214853' => { - 'BaseType' => '19214847', - 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone const*const', + '30798696' => { + 'BaseType' => '6086576', + 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator const*const', 'Size' => '8', 'Type' => 'Const' }, - '1921760' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '3115683' => { + 'Base' => { + '3116358' => { + 'pos' => '0' + } + }, + 'Header' => 'outputstreamwriter.h', + 'Line' => '34', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '2996384' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '1922139' - } - }, - 'Type' => 'Class' - }, - '1922121' => { - 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Header' => 'charsetencoder.h', - 'Line' => '37', - 'Name' => 'log4cxx::helpers::CharsetEncoder', + 'Name' => 'log4cxx::helpers::OutputStreamWriter', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', - '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::CharsetEncoder) [_ZTIN7log4cxx7helpers14CharsetEncoderE]' + '16' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::~OutputStreamWriter() [_ZN7log4cxx7helpers18OutputStreamWriterD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::~OutputStreamWriter() [_ZN7log4cxx7helpers18OutputStreamWriterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::getClass() const [_ZNK7log4cxx7helpers18OutputStreamWriter8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers18OutputStreamWriter10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers18OutputStreamWriter4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18OutputStreamWriter5closeERNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18OutputStreamWriter5flushERNS0_4PoolE]', + '72' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::write(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18OutputStreamWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OutputStreamWriter) [_ZTIN7log4cxx7helpers18OutputStreamWriterE]' } }, - '1922139' => { + '3115692' => { + 'Line' => '30', + 'Memb' => { + '0' => { + 'name' => 'out', + 'offset' => '0', + 'type' => '7857651' + }, + '1' => { + 'name' => 'enc', + 'offset' => '22', + 'type' => '4974550' + } + }, + 'Name' => 'struct log4cxx::helpers::OutputStreamWriter::OutputStreamWriterPrivate', + 'NameSpace' => 'log4cxx::helpers::OutputStreamWriter', + 'Private' => 1, + 'Size' => '32', + 'Source' => 'outputstreamwriter.cpp', + 'Type' => 'Struct' + }, + '3115697' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'charsetencoder.h', + 'Header' => 'outputstreamwriter.h', 'Line' => '40', - 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder', - 'NameSpace' => 'log4cxx::helpers::CharsetEncoder', + 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter', + 'NameSpace' => 'log4cxx::helpers::OutputStreamWriter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder::~ClazzCharsetEncoder() [_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder::~ClazzCharsetEncoder() [_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD0Ev]', + '16' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter::~ClazzOutputStreamWriter() [_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter::~ClazzOutputStreamWriter() [_ZN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoder7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder) [_ZTIN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderE]' + '40' => '(int (*)(...)) log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter) [_ZTIN7log4cxx7helpers18OutputStreamWriter23ClazzOutputStreamWriterE]' } }, - '1922296' => { - 'BaseType' => '1922139', - 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1922919' => { - 'BaseType' => '1922121', - 'Name' => 'log4cxx::helpers::CharsetEncoder const', + '3115815' => { + 'BaseType' => '3115697', + 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter const', 'Size' => '8', 'Type' => 'Const' }, - '1923331' => { + '3115821' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -118331,1093 +120639,539 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '61461' + 'type' => '198038' } }, - 'Name' => 'log4cxx::helpers::WideLife >', + 'Name' => 'log4cxx::helpers::WideLife >', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', + 'Size' => '32', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '1867055' + 'type' => '51677' } }, 'Type' => 'Class' }, - '1923738' => { + '3116220' => { + 'BaseType' => '3115821', + 'Name' => 'log4cxx::helpers::WideLife >const', + 'Size' => '32', + 'Type' => 'Const' + }, + '3116225' => { 'Base' => { - '1922121' => { - 'pos' => '0' - } + '209311' => { + 'pos' => '0' + } }, - 'Line' => '306', - 'Name' => 'log4cxx::helpers::TrivialCharsetEncoder', + 'Copied' => 1, + 'Header' => 'charsetencoder.h', + 'Line' => '37', + 'Name' => 'log4cxx::helpers::CharsetEncoder', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Source' => 'charsetencoder.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetEncoder::~TrivialCharsetEncoder() [_ZN7log4cxx7helpers21TrivialCharsetEncoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetEncoder::~TrivialCharsetEncoder() [_ZN7log4cxx7helpers21TrivialCharsetEncoderD0Ev]', + '16' => '0u', + '24' => '0u', '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers21TrivialCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TrivialCharsetEncoder) [_ZTIN7log4cxx7helpers21TrivialCharsetEncoderE]' + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::CharsetEncoder) [_ZTIN7log4cxx7helpers14CharsetEncoderE]' } }, - '1923953' => { + '3116234' => { 'Base' => { - '1922121' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Line' => '218', - 'Name' => 'log4cxx::helpers::USASCIICharsetEncoder', - 'NameSpace' => 'log4cxx::helpers', + 'Header' => 'charsetencoder.h', + 'Line' => '40', + 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder', + 'NameSpace' => 'log4cxx::helpers::CharsetEncoder', 'Size' => '8', - 'Source' => 'charsetencoder.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetEncoder::~USASCIICharsetEncoder() [_ZN7log4cxx7helpers21USASCIICharsetEncoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetEncoder::~USASCIICharsetEncoder() [_ZN7log4cxx7helpers21USASCIICharsetEncoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers21USASCIICharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', - '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', - '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::USASCIICharsetEncoder) [_ZTIN7log4cxx7helpers21USASCIICharsetEncoderE]' + '16' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder::~ClazzCharsetEncoder() [_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder::~ClazzCharsetEncoder() [_ZN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoder7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder) [_ZTIN7log4cxx7helpers14CharsetEncoder19ClazzCharsetEncoderE]' } }, - '1924163' => { + '3116352' => { + 'BaseType' => '3116234', + 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3116358' => { 'Base' => { - '1922121' => { - 'pos' => '0' - } + '209311' => { + 'pos' => '0' + } }, - 'Line' => '262', - 'Name' => 'log4cxx::helpers::ISOLatinCharsetEncoder', + 'Header' => 'writer.h', + 'Line' => '33', + 'Name' => 'log4cxx::helpers::Writer', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Source' => 'charsetencoder.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetEncoder::~ISOLatinCharsetEncoder() [_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetEncoder::~ISOLatinCharsetEncoder() [_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers22ISOLatinCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', - '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', - '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ISOLatinCharsetEncoder) [_ZTIN7log4cxx7helpers22ISOLatinCharsetEncoderE]' + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::Writer::getClass() const [_ZNK7log4cxx7helpers6Writer8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Writer::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Writer10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::Writer::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Writer4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '64' => '(int (*)(...)) __cxa_pure_virtual', + '72' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Writer) [_ZTIN7log4cxx7helpers6WriterE]' } }, - '1924378' => { + '3116367' => { 'Base' => { - '1922121' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Line' => '383', - 'Name' => 'log4cxx::helpers::UTF16BECharsetEncoder', - 'NameSpace' => 'log4cxx::helpers', + 'Header' => 'writer.h', + 'Line' => '36', + 'Name' => 'log4cxx::helpers::Writer::ClazzWriter', + 'NameSpace' => 'log4cxx::helpers::Writer', 'Size' => '8', - 'Source' => 'charsetencoder.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::UTF16BECharsetEncoder::~UTF16BECharsetEncoder() [_ZN7log4cxx7helpers21UTF16BECharsetEncoderD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::UTF16BECharsetEncoder::~UTF16BECharsetEncoder() [_ZN7log4cxx7helpers21UTF16BECharsetEncoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::UTF16BECharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers21UTF16BECharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', - '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', - '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::UTF16BECharsetEncoder) [_ZTIN7log4cxx7helpers21UTF16BECharsetEncoderE]' + '16' => '(int (*)(...)) log4cxx::helpers::Writer::ClazzWriter::~ClazzWriter() [_ZN7log4cxx7helpers6Writer11ClazzWriterD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Writer::ClazzWriter::~ClazzWriter() [_ZN7log4cxx7helpers6Writer11ClazzWriterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Writer::ClazzWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers6Writer11ClazzWriter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Writer::ClazzWriter) [_ZTIN7log4cxx7helpers6Writer11ClazzWriterE]' } }, - '1924593' => { + '3116485' => { + 'BaseType' => '3116367', + 'Name' => 'log4cxx::helpers::Writer::ClazzWriter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3116491' => { 'Base' => { - '1922121' => { - 'pos' => '0' - } + '209311' => { + 'pos' => '0' + } }, - 'Line' => '417', - 'Name' => 'log4cxx::helpers::UTF16LECharsetEncoder', + 'Header' => 'outputstream.h', + 'Line' => '33', + 'Name' => 'log4cxx::helpers::OutputStream', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Source' => 'charsetencoder.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::UTF16LECharsetEncoder::~UTF16LECharsetEncoder() [_ZN7log4cxx7helpers21UTF16LECharsetEncoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::UTF16LECharsetEncoder::~UTF16LECharsetEncoder() [_ZN7log4cxx7helpers21UTF16LECharsetEncoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::UTF16LECharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers21UTF16LECharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', - '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', - '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::UTF16LECharsetEncoder) [_ZTIN7log4cxx7helpers21UTF16LECharsetEncoderE]' + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::OutputStream::getClass() const [_ZNK7log4cxx7helpers12OutputStream8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::OutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers12OutputStream10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::OutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers12OutputStream4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '64' => '(int (*)(...)) __cxa_pure_virtual', + '72' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OutputStream) [_ZTIN7log4cxx7helpers12OutputStreamE]' } }, - '1924808' => { + '3116500' => { 'Base' => { - '1922121' => { - 'pos' => '0' - } - }, - 'Line' => '451', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'state', - 'offset' => '8', - 'type' => '50695' - } + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::LocaleCharsetEncoder', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Source' => 'charsetencoder.cpp', + 'Header' => 'outputstream.h', + 'Line' => '36', + 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream', + 'NameSpace' => 'log4cxx::helpers::OutputStream', + 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetEncoder::~LocaleCharsetEncoder() [_ZN7log4cxx7helpers20LocaleCharsetEncoderD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetEncoder::~LocaleCharsetEncoder() [_ZN7log4cxx7helpers20LocaleCharsetEncoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers20LocaleCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', - '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', - '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::LocaleCharsetEncoder) [_ZTIN7log4cxx7helpers20LocaleCharsetEncoderE]' + '16' => '(int (*)(...)) log4cxx::helpers::OutputStream::ClazzOutputStream::~ClazzOutputStream() [_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::OutputStream::ClazzOutputStream::~ClazzOutputStream() [_ZN7log4cxx7helpers12OutputStream17ClazzOutputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::OutputStream::ClazzOutputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers12OutputStream17ClazzOutputStream7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OutputStream::ClazzOutputStream) [_ZTIN7log4cxx7helpers12OutputStream17ClazzOutputStreamE]' } }, - '1925027' => { - 'Base' => { - '1922121' => { - 'pos' => '0' - } - }, - 'Line' => '53', + '3116618' => { + 'BaseType' => '3116500', + 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3117865' => { + 'Header' => 'configurator.h', + 'Line' => '30', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'pool', - 'offset' => '8', - 'type' => '62082' + 'name' => 'Configured', + 'value' => '0' }, '1' => { - 'access' => 'private', - 'name' => 'mutex', - 'offset' => '24', - 'type' => '41413' - }, - '2' => { - 'access' => 'private', - 'name' => 'convset', - 'offset' => '64', - 'type' => '1734120' + 'name' => 'NotConfigured', + 'value' => '1' } }, - 'Name' => 'log4cxx::helpers::APRCharsetEncoder', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '72', - 'Source' => 'charsetencoder.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::APRCharsetEncoder::~APRCharsetEncoder() [_ZN7log4cxx7helpers17APRCharsetEncoderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::APRCharsetEncoder::~APRCharsetEncoder() [_ZN7log4cxx7helpers17APRCharsetEncoderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::APRCharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers17APRCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', - '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', - '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRCharsetEncoder) [_ZTIN7log4cxx7helpers17APRCharsetEncoderE]' - } + 'Name' => 'enum log4cxx::spi::ConfigurationStatus', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '4', + 'Type' => 'Enum' }, - '1925609' => { - 'BaseType' => '1867055', - 'Header' => 'charsetencoder.h', - 'Line' => '31', - 'Name' => 'log4cxx::helpers::CharsetEncoderPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', + '3118319' => { + 'BaseType' => '3044231', + 'Header' => 'repositoryselector.h', + 'Line' => '49', + 'Name' => 'log4cxx::spi::RepositorySelectorPtr', + 'NameSpace' => 'log4cxx::spi', 'Type' => 'Typedef' }, - '1925621' => { - 'BaseType' => '1925609', - 'Name' => 'log4cxx::helpers::CharsetEncoderPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '1927935' => { - 'BaseType' => '1921760', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1927941' => { - 'BaseType' => '1927935', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1928216' => { - 'BaseType' => '1866356', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1928239' => { - 'BaseType' => '1922121', - 'Name' => 'log4cxx::helpers::CharsetEncoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1928245' => { - 'BaseType' => '1928239', - 'Name' => 'log4cxx::helpers::CharsetEncoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1928285' => { - 'BaseType' => '1923331', - 'Name' => 'log4cxx::helpers::WideLife >*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1928291' => { - 'BaseType' => '1928285', - 'Name' => 'log4cxx::helpers::WideLife >*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1928385' => { - 'BaseType' => '1923738', - 'Name' => 'log4cxx::helpers::TrivialCharsetEncoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1928391' => { - 'BaseType' => '1928385', - 'Name' => 'log4cxx::helpers::TrivialCharsetEncoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1928496' => { - 'BaseType' => '1923953', - 'Name' => 'log4cxx::helpers::USASCIICharsetEncoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1928502' => { - 'BaseType' => '1928496', - 'Name' => 'log4cxx::helpers::USASCIICharsetEncoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1928607' => { - 'BaseType' => '1924163', - 'Name' => 'log4cxx::helpers::ISOLatinCharsetEncoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1928613' => { - 'BaseType' => '1928607', - 'Name' => 'log4cxx::helpers::ISOLatinCharsetEncoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1928718' => { - 'BaseType' => '1924378', - 'Name' => 'log4cxx::helpers::UTF16BECharsetEncoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1928724' => { - 'BaseType' => '1928718', - 'Name' => 'log4cxx::helpers::UTF16BECharsetEncoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1928829' => { - 'BaseType' => '1924593', - 'Name' => 'log4cxx::helpers::UTF16LECharsetEncoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1928835' => { - 'BaseType' => '1928829', - 'Name' => 'log4cxx::helpers::UTF16LECharsetEncoder*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1928940' => { - 'BaseType' => '1924808', - 'Name' => 'log4cxx::helpers::LocaleCharsetEncoder*', - 'Size' => '8', - 'Type' => 'Pointer' + '3118343' => { + 'BaseType' => '3044559', + 'Header' => 'logmanager.h', + 'Line' => '34', + 'Name' => 'log4cxx::spi::LoggerFactoryPtr', + 'NameSpace' => 'log4cxx::spi', + 'Type' => 'Typedef' }, - '1928946' => { - 'BaseType' => '1928940', - 'Name' => 'log4cxx::helpers::LocaleCharsetEncoder*const', - 'Size' => '8', + '3118355' => { + 'BaseType' => '3118343', + 'Name' => 'log4cxx::spi::LoggerFactoryPtr const', 'Type' => 'Const' }, - '1929051' => { - 'BaseType' => '1925027', - 'Name' => 'log4cxx::helpers::APRCharsetEncoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1929057' => { - 'BaseType' => '1929051', - 'Name' => 'log4cxx::helpers::APRCharsetEncoder*const', + '3118493' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'repositoryselector.h', + 'Line' => '42', + 'Name' => 'log4cxx::spi::RepositorySelector', + 'NameSpace' => 'log4cxx::spi', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::RepositorySelector) [_ZTIN7log4cxx3spi18RepositorySelectorE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::spi::RepositorySelector::getClass() const [_ZNK7log4cxx3spi18RepositorySelector8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } }, - '1931097' => { - 'BaseType' => '1922919', - 'Name' => 'log4cxx::helpers::CharsetEncoder const*', + '3118502' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'repositoryselector.h', + 'Line' => '45', + 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector', + 'NameSpace' => 'log4cxx::spi::RepositorySelector', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::RepositorySelector::ClazzRepositorySelector::~ClazzRepositorySelector() [_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::RepositorySelector::ClazzRepositorySelector::~ClazzRepositorySelector() [_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::RepositorySelector::ClazzRepositorySelector::getName[abi:cxx11]() const [_ZNK7log4cxx3spi18RepositorySelector23ClazzRepositorySelector7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::RepositorySelector::ClazzRepositorySelector) [_ZTIN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorE]' + } }, - '1931103' => { - 'BaseType' => '1931097', - 'Name' => 'log4cxx::helpers::CharsetEncoder const*const', + '3118620' => { + 'BaseType' => '3118502', + 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector const', 'Size' => '8', 'Type' => 'Const' }, - '1931108' => { - 'BaseType' => '1925609', - 'Name' => 'log4cxx::helpers::CharsetEncoderPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1931114' => { - 'BaseType' => '1925621', - 'Name' => 'log4cxx::helpers::CharsetEncoderPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '1931132' => { - 'BaseType' => '1922139', - 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '1931138' => { - 'BaseType' => '1931132', - 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder*const', + '3118759' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'configurator.h', + 'Line' => '38', + 'Name' => 'log4cxx::spi::Configurator', + 'NameSpace' => 'log4cxx::spi', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Configurator) [_ZTIN7log4cxx3spi12ConfiguratorE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::spi::Configurator::getClass() const [_ZNK7log4cxx3spi12Configurator8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } }, - '1931143' => { - 'BaseType' => '1922296', - 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder const*', + '3118768' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'configurator.h', + 'Line' => '41', + 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator', + 'NameSpace' => 'log4cxx::spi::Configurator', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::Configurator::ClazzConfigurator::~ClazzConfigurator() [_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD2Ev]', + '24' => '(int (*)(...)) log4cxx::spi::Configurator::ClazzConfigurator::~ClazzConfigurator() [_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::Configurator::ClazzConfigurator::getName[abi:cxx11]() const [_ZNK7log4cxx3spi12Configurator17ClazzConfigurator7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Configurator::ClazzConfigurator) [_ZTIN7log4cxx3spi12Configurator17ClazzConfiguratorE]' + } }, - '1931149' => { - 'BaseType' => '1931143', - 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder const*const', + '3118886' => { + 'BaseType' => '3118768', + 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator const', 'Size' => '8', 'Type' => 'Const' }, - '19529953' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '19531084' - } - }, - 'Type' => 'Class' - }, - '19531084' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'triggeringpolicy.h', - 'Line' => '48', - 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy', - 'NameSpace' => 'log4cxx::rolling::TriggeringPolicy', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy::~ClazzTriggeringPolicy() [_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD2Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy::~ClazzTriggeringPolicy() [_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicy7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy) [_ZTIN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyE]' - } - }, - '19531242' => { - 'BaseType' => '19531084', - 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19532553' => { - 'BaseType' => '19529953', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19532559' => { - 'BaseType' => '19532553', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19532754' => { - 'BaseType' => '19531084', - 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19532760' => { - 'BaseType' => '19532754', - 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19532765' => { - 'BaseType' => '19531242', - 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19532771' => { - 'BaseType' => '19532765', - 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19595957' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '19596333' - } - }, - 'Type' => 'Class' - }, - '19596333' => { - 'Base' => { - '62698' => { - 'pos' => '0' + '3119612' => { + 'Header' => 'basicconfigurator.h', + 'Line' => '38', + 'Name' => 'log4cxx::BasicConfigurator', + 'NameSpace' => 'log4cxx', + 'Size' => '1', + 'Type' => 'Class' + }, + '3120362' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 } - }, - 'Header' => 'writer.h', - 'Line' => '36', - 'Name' => 'log4cxx::helpers::Writer::ClazzWriter', - 'NameSpace' => 'log4cxx::helpers::Writer', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Writer::ClazzWriter::~ClazzWriter() [_ZN7log4cxx7helpers6Writer11ClazzWriterD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Writer::ClazzWriter::~ClazzWriter() [_ZN7log4cxx7helpers6Writer11ClazzWriterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Writer::ClazzWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers6Writer11ClazzWriter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Writer::ClazzWriter) [_ZTIN7log4cxx7helpers6Writer11ClazzWriterE]' - } - }, - '19596490' => { - 'BaseType' => '19596333', - 'Name' => 'log4cxx::helpers::Writer::ClazzWriter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19598481' => { - 'BaseType' => '19595957', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19598487' => { - 'BaseType' => '19598481', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19598654' => { - 'BaseType' => '4976475', - 'Name' => 'log4cxx::helpers::Writer*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19598671' => { - 'BaseType' => '19596333', - 'Name' => 'log4cxx::helpers::Writer::ClazzWriter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19598677' => { - 'BaseType' => '19598671', - 'Name' => 'log4cxx::helpers::Writer::ClazzWriter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19598682' => { - 'BaseType' => '19596490', - 'Name' => 'log4cxx::helpers::Writer::ClazzWriter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19598688' => { - 'BaseType' => '19598682', - 'Name' => 'log4cxx::helpers::Writer::ClazzWriter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19731536' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '19733404' - } - }, - 'Type' => 'Class' - }, - '19732349' => { - 'BaseType' => '1248337', - 'Name' => 'log4cxx::helpers::WriterPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '19733404' => { - 'Base' => { - '62698' => { + }, + 'Header' => 'patternconverter.h', + 'Line' => '45', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '2968054' + } + }, + 'Name' => 'log4cxx::pattern::PatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternConverter) [_ZTIN7log4cxx7pattern16PatternConverterE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getClass() const [_ZNK7log4cxx7pattern16PatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::PatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern16PatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::PatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern16PatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } + }, + '3120371' => { + 'Header' => 'patternconverter_priv.h', + 'Line' => '31', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + }, + '1' => { + 'name' => 'name', + 'offset' => '8', + 'type' => '209673' + }, + '2' => { + 'name' => 'style', + 'offset' => '64', + 'type' => '209673' + } + }, + 'Name' => 'struct log4cxx::pattern::PatternConverter::PatternConverterPrivate', + 'NameSpace' => 'log4cxx::pattern::PatternConverter', + 'Private' => 1, + 'Protected' => 1, + 'Size' => '72', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::PatternConverter::PatternConverterPrivate::~PatternConverterPrivate() [_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::PatternConverter::PatternConverterPrivate::~PatternConverterPrivate() [_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternConverter::PatternConverterPrivate) [_ZTIN7log4cxx7pattern16PatternConverter23PatternConverterPrivateE]' + } + }, + '3120376' => { + 'Base' => { + '208442' => { 'pos' => '0' } - }, - 'Header' => 'writerappender.h', - 'Line' => '41', - 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender', - 'NameSpace' => 'log4cxx::WriterAppender', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::WriterAppender::ClazzWriterAppender::~ClazzWriterAppender() [_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD2Ev]', - '24' => '(int (*)(...)) log4cxx::WriterAppender::ClazzWriterAppender::~ClazzWriterAppender() [_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::WriterAppender::ClazzWriterAppender::getName[abi:cxx11]() const [_ZNK7log4cxx14WriterAppender19ClazzWriterAppender7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::WriterAppender::ClazzWriterAppender) [_ZTIN7log4cxx14WriterAppender19ClazzWriterAppenderE]' - } - }, - '19733562' => { - 'BaseType' => '19733404', - 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19738839' => { - 'BaseType' => '19731536', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19738845' => { - 'BaseType' => '19738839', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19739823' => { - 'BaseType' => '2844858', - 'Name' => 'log4cxx::WriterAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19739829' => { - 'BaseType' => '19739823', - 'Name' => 'log4cxx::WriterAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19739869' => { - 'BaseType' => '19732349', - 'Name' => 'log4cxx::helpers::WriterPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '19739935' => { - 'BaseType' => '19733404', - 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19739941' => { - 'BaseType' => '19739935', - 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '19739946' => { - 'BaseType' => '19733562', - 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '19739952' => { - 'BaseType' => '19739946', - 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '1989483' => { - 'BaseType' => '1928239', - 'Name' => 'log4cxx::helpers::CharsetEncoder*&&', + }, + 'Header' => 'patternconverter.h', + 'Line' => '63', + 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter', + 'NameSpace' => 'log4cxx::pattern::PatternConverter', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::PatternConverter::ClazzPatternConverter::~ClazzPatternConverter() [_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::PatternConverter::ClazzPatternConverter::~ClazzPatternConverter() [_ZN7log4cxx7pattern16PatternConverter21ClazzPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::PatternConverter::ClazzPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern16PatternConverter21ClazzPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternConverter::ClazzPatternConverter) [_ZTIN7log4cxx7pattern16PatternConverter21ClazzPatternConverterE]' + } }, - '19981239' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20014792' - } - }, - 'Type' => 'Struct' - }, - '19981325' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '19982860' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20014792' - }, - '1' => { - 'key' => '_Dp', - 'type' => '19981239' - } - }, - 'Type' => 'Class' - }, - '19981648' => { - 'Base' => { - '19981239' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '19981239' - } - }, - 'Type' => 'Struct' - }, - '19981901' => { - 'Base' => { - '19981648' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '19981239' - } - }, - 'Type' => 'Struct' - }, - '19982199' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '20017253' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::xml::XMLLayout::XMLLayoutPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '20017253' - } - }, - 'Type' => 'Struct' - }, - '19982459' => { - 'Base' => { - '19981901' => { - 'pos' => '0' - }, - '19982199' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::xml::XMLLayout::XMLLayoutPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '20017253' - } - }, - 'Type' => 'Struct' - }, - '19982860' => { - 'Base' => { - '19982459' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '20017253' - } - }, - 'Type' => 'Class' - }, - '19983190' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '19981325' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20014792' - }, - '1' => { - 'key' => '_Dp', - 'type' => '19981239' - } - }, - 'Type' => 'Class' - }, - '20012826' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '20014871' - } - }, - 'Type' => 'Class' - }, - '20014774' => { - 'Base' => { - '409118' => { - 'pos' => '0' - } - }, - 'Header' => 'xmllayout.h', - 'Line' => '53', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '19983190' - } - }, - 'Name' => 'log4cxx::xml::XMLLayout', - 'NameSpace' => 'log4cxx::xml', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::xml::XMLLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3xml9XMLLayout10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::xml::XMLLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3xml9XMLLayout4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::xml::XMLLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3xml9XMLLayout15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::xml::XMLLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3xml9XMLLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::xml::XMLLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx3xml9XMLLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '144' => '(int (*)(...)) log4cxx::Layout::getContentType[abi:cxx11]() const [_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev]', - '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '168' => '(int (*)(...)) log4cxx::xml::XMLLayout::ignoresThrowable() const [_ZNK7log4cxx3xml9XMLLayout16ignoresThrowableEv]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::xml::XMLLayout) [_ZTIN7log4cxx3xml9XMLLayoutE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::xml::XMLLayout::~XMLLayout() [_ZN7log4cxx3xml9XMLLayoutD1Ev]', - '88' => '(int (*)(...)) log4cxx::xml::XMLLayout::~XMLLayout() [_ZN7log4cxx3xml9XMLLayoutD0Ev]', - '96' => '(int (*)(...)) log4cxx::xml::XMLLayout::getClass() const [_ZNK7log4cxx3xml9XMLLayout8getClassEv]' - } - }, - '20014792' => { - 'Line' => '35', - 'Memb' => { - '0' => { - 'name' => 'locationInfo', - 'offset' => '0', - 'type' => '50284' - }, - '1' => { - 'name' => 'properties', - 'offset' => '1', - 'type' => '50284' - }, - '2' => { - 'name' => 'expectedPatternLength', - 'offset' => '8', - 'type' => '50486' - } - }, - 'Name' => 'struct log4cxx::xml::XMLLayout::XMLLayoutPrivate', - 'NameSpace' => 'log4cxx::xml::XMLLayout', - 'Private' => 1, - 'Size' => '16', - 'Source' => 'xmllayout.cpp', - 'Type' => 'Struct' - }, - '20014871' => { - 'Base' => { - '62698' => { + '3120494' => { + 'BaseType' => '3120376', + 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3120500' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'formattinginfo.h', + 'Line' => '43', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '2973714' + } + }, + 'Name' => 'log4cxx::pattern::FormattingInfo', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FormattingInfo) [_ZTIN7log4cxx7pattern14FormattingInfoE]', + '56' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::~FormattingInfo() [_ZN7log4cxx7pattern14FormattingInfoD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::~FormattingInfo() [_ZN7log4cxx7pattern14FormattingInfoD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::getClass() const [_ZNK7log4cxx7pattern14FormattingInfo8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern14FormattingInfo10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern14FormattingInfo4castERKNS_7helpers5ClassE]' + } + }, + '3120509' => { + 'Line' => '25', + 'Memb' => { + '0' => { + 'name' => 'minLength', + 'offset' => '0', + 'type' => '190271' + }, + '1' => { + 'name' => 'maxLength', + 'offset' => '4', + 'type' => '190271' + }, + '2' => { + 'name' => 'leftAlign', + 'offset' => '8', + 'type' => '174084' + } + }, + 'Name' => 'struct log4cxx::pattern::FormattingInfo::FormattingInfoPrivate', + 'NameSpace' => 'log4cxx::pattern::FormattingInfo', + 'Private' => 1, + 'Size' => '12', + 'Source' => 'formattinginfo.cpp', + 'Type' => 'Struct' + }, + '3120514' => { + 'Base' => { + '208442' => { 'pos' => '0' } - }, - 'Header' => 'xmllayout.h', - 'Line' => '59', - 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout', - 'NameSpace' => 'log4cxx::xml::XMLLayout', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::xml::XMLLayout::ClazzXMLLayout::~ClazzXMLLayout() [_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD1Ev]', - '24' => '(int (*)(...)) log4cxx::xml::XMLLayout::ClazzXMLLayout::~ClazzXMLLayout() [_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::xml::XMLLayout::ClazzXMLLayout::newInstance() const [_ZTch0_h0_NK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::xml::XMLLayout::ClazzXMLLayout::getName[abi:cxx11]() const [_ZNK7log4cxx3xml9XMLLayout14ClazzXMLLayout7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::xml::XMLLayout::ClazzXMLLayout::newInstance() const [_ZNK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::xml::XMLLayout::ClazzXMLLayout) [_ZTIN7log4cxx3xml9XMLLayout14ClazzXMLLayoutE]' - } - }, - '20015092' => { - 'BaseType' => '20014871', - 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20015699' => { - 'BaseType' => '20014774', - 'Name' => 'log4cxx::xml::XMLLayout const', - 'Size' => '16', - 'Type' => 'Const' - }, - '20017253' => { - 'BaseType' => '20014792', - 'Name' => 'struct log4cxx::xml::XMLLayout::XMLLayoutPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20017665' => { - 'BaseType' => '20012826', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20017671' => { - 'BaseType' => '20017665', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20018217' => { - 'BaseType' => '20014774', - 'Name' => 'log4cxx::xml::XMLLayout*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20018223' => { - 'BaseType' => '20018217', - 'Name' => 'log4cxx::xml::XMLLayout*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20018245' => { - 'BaseType' => '20015699', - 'Name' => 'log4cxx::xml::XMLLayout const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20018251' => { - 'BaseType' => '20018245', - 'Name' => 'log4cxx::xml::XMLLayout const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20018262' => { - 'BaseType' => '20014871', - 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20018268' => { - 'BaseType' => '20018262', - 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20018273' => { - 'BaseType' => '20015092', - 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20018279' => { - 'BaseType' => '20018273', - 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20162113' => { + }, + 'Header' => 'formattinginfo.h', + 'Line' => '48', + 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo', + 'NameSpace' => 'log4cxx::pattern::FormattingInfo', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::ClazzFormattingInfo::~ClazzFormattingInfo() [_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::ClazzFormattingInfo::~ClazzFormattingInfo() [_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::ClazzFormattingInfo::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern14FormattingInfo19ClazzFormattingInfo7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FormattingInfo::ClazzFormattingInfo) [_ZTIN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoE]' + } + }, + '3120632' => { + 'BaseType' => '3120514', + 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3120638' => { + 'Header' => 'patternparser.h', + 'Line' => '50', + 'Name' => 'log4cxx::pattern::PatternParser', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '1', + 'Type' => 'Class' + }, + '31207286' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -119425,2633 +121179,2640 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '20163806' + 'type' => '6074656' } }, 'Type' => 'Class' }, - '20163806' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'zipcompressaction.h', - 'Line' => '34', - 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction', - 'NameSpace' => 'log4cxx::rolling::ZipCompressAction', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction::~ClazzZipCompressAction() [_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction::~ClazzZipCompressAction() [_ZN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling17ZipCompressAction22ClazzZipCompressAction7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction) [_ZTIN7log4cxx7rolling17ZipCompressAction22ClazzZipCompressActionE]' - } - }, - '20163964' => { - 'BaseType' => '20163806', - 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20163969' => { + '31209308' => { 'Base' => { - '63748' => { - 'pos' => '0' - } + '3120371' => { + 'pos' => '0' + } }, - 'Line' => '32', + 'Line' => '30', 'Memb' => { '0' => { - 'name' => 'source', - 'offset' => '72', - 'type' => '836412' - }, - '1' => { - 'name' => 'destination', - 'offset' => '80', - 'type' => '836412' - }, - '2' => { - 'name' => 'deleteSource', - 'offset' => '88', - 'type' => '50284' - }, - '3' => { - 'name' => 'throwIOExceptionOnForkFailure', - 'offset' => '89', - 'type' => '50284' + 'name' => 'abbreviator', + 'offset' => '114', + 'type' => '31210292' } }, - 'Name' => 'struct log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate', - 'NameSpace' => 'log4cxx::rolling::ZipCompressAction', + 'Name' => 'struct log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate', + 'NameSpace' => 'log4cxx::pattern::NamePatternConverter', 'Private' => 1, - 'Size' => '96', - 'Source' => 'zipcompressaction.cpp', + 'Size' => '88', + 'Source' => 'namepatternconverter.cpp', 'Type' => 'Struct', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate::~ZipCompressActionPrivate() [_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD2Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate::~ZipCompressActionPrivate() [_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate) [_ZTIN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateE]' + '16' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate::~NamePatternConverterPrivate() [_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate::~NamePatternConverterPrivate() [_ZN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate) [_ZTIN7log4cxx7pattern20NamePatternConverter27NamePatternConverterPrivateE]' } }, - '20167874' => { - 'BaseType' => '20162113', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20167880' => { - 'BaseType' => '20167874', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20167999' => { - 'BaseType' => '20163969', - 'Name' => 'struct log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20168005' => { - 'BaseType' => '20167999', - 'Name' => 'struct log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20168391' => { - 'BaseType' => '6302450', - 'Name' => 'log4cxx::rolling::ZipCompressAction const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20168402' => { - 'BaseType' => '6300784', - 'Name' => 'log4cxx::rolling::ZipCompressAction*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20168477' => { - 'BaseType' => '20163806', - 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20168483' => { - 'BaseType' => '20168477', - 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20168488' => { - 'BaseType' => '20163964', - 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20168494' => { - 'BaseType' => '20168488', - 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction const*const', - 'Size' => '8', + '3121008' => { + 'BaseType' => '2974321', + 'Header' => 'patternparser.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::PatternMap', + 'NameSpace' => 'log4cxx::pattern', + 'Type' => 'Typedef' + }, + '3121020' => { + 'BaseType' => '3121008', + 'Name' => 'log4cxx::pattern::PatternMap const', + 'Type' => 'Const' + }, + '3121025' => { + 'BaseType' => '2974326', + 'Header' => 'patternconverter.h', + 'Line' => '108', + 'Name' => 'log4cxx::pattern::PatternConverterPtr', + 'NameSpace' => 'log4cxx::pattern', + 'Type' => 'Typedef' + }, + '31210292' => { + 'BaseType' => '30795970', + 'Name' => 'log4cxx::pattern::NameAbbreviatorPtr const', + 'Size' => '16', 'Type' => 'Const' }, - '20232499' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20253942' - } - }, - 'Type' => 'Struct' - }, - '20232585' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '20234121' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20253942' - }, - '1' => { - 'key' => '_Dp', - 'type' => '20232499' - } - }, - 'Type' => 'Class' - }, - '20232908' => { - 'Base' => { - '20232499' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '20232499' - } - }, - 'Type' => 'Struct' - }, - '20233161' => { - 'Base' => { - '20232908' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '20232499' - } - }, - 'Type' => 'Struct' - }, - '20233460' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '20256374' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::DatagramPacket::DatagramPacketPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '20256374' - } - }, - 'Type' => 'Struct' - }, - '20233720' => { - 'Base' => { - '20233161' => { - 'pos' => '0' - }, - '20233460' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::DatagramPacket::DatagramPacketPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '20256374' - } - }, - 'Type' => 'Struct' - }, - '20234121' => { - 'Base' => { - '20233720' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '20256374' - } - }, - 'Type' => 'Class' - }, - '20234451' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '20232585' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20253942' - }, - '1' => { - 'key' => '_Dp', - 'type' => '20232499' - } - }, - 'Type' => 'Class' - }, - '20253924' => { - 'Base' => { - '63470' => { + '3121037' => { + 'BaseType' => '2974331', + 'Header' => 'formattinginfo.h', + 'Line' => '96', + 'Name' => 'log4cxx::pattern::FormattingInfoPtr', + 'NameSpace' => 'log4cxx::pattern', + 'Type' => 'Typedef' + }, + '3121049' => { + 'BaseType' => '3121037', + 'Name' => 'log4cxx::pattern::FormattingInfoPtr const', + 'Type' => 'Const' + }, + '3121054' => { + 'Base' => { + '3120362' => { + 'pos' => '0' + } + }, + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '37', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) __cxa_pure_virtual', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LoggingEventPatternConverter) [_ZTIN7log4cxx7pattern28LoggingEventPatternConverterE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::getClass() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } + }, + '3121060' => { + 'Base' => { + '208442' => { 'pos' => '0' } - }, - 'Header' => 'datagrampacket.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '20234451' - } - }, - 'Name' => 'log4cxx::helpers::DatagramPacket', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::~DatagramPacket() [_ZN7log4cxx7helpers14DatagramPacketD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::~DatagramPacket() [_ZN7log4cxx7helpers14DatagramPacketD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::getClass() const [_ZNK7log4cxx7helpers14DatagramPacket8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramPacket10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramPacket4castERKNS0_5ClassE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DatagramPacket) [_ZTIN7log4cxx7helpers14DatagramPacketE]' - } - }, - '20253942' => { - 'Line' => '23', - 'Memb' => { - '0' => { - 'name' => 'buf', - 'offset' => '0', - 'type' => '50560' - }, - '1' => { - 'name' => 'offset', - 'offset' => '8', - 'type' => '50231' - }, - '2' => { - 'name' => 'length', - 'offset' => '12', - 'type' => '50231' - }, - '3' => { - 'name' => 'address', - 'offset' => '16', - 'type' => '7592264' - }, - '4' => { - 'name' => 'port', - 'offset' => '32', - 'type' => '50231' - } - }, - 'Name' => 'struct log4cxx::helpers::DatagramPacket::DatagramPacketPriv', - 'NameSpace' => 'log4cxx::helpers::DatagramPacket', - 'Private' => 1, - 'Size' => '40', - 'Source' => 'datagrampacket.cpp', - 'Type' => 'Struct' - }, - '20254220' => { - 'Base' => { - '62698' => { + }, + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '51', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter', + 'NameSpace' => 'log4cxx::pattern::LoggingEventPatternConverter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter::~ClazzLoggingEventPatternConverter() [_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter::~ClazzLoggingEventPatternConverter() [_ZN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter) [_ZTIN7log4cxx7pattern28LoggingEventPatternConverter33ClazzLoggingEventPatternConverterE]' + } + }, + '3121178' => { + 'BaseType' => '3121060', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3121185' => { + 'Base' => { + '1381112' => { + 'pos' => '0' + } + }, + 'Header' => 'patternlayout.h', + 'Line' => '446', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '2979404' + } + }, + 'Name' => 'log4cxx::PatternLayout', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::PatternLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx13PatternLayout10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::PatternLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx13PatternLayout4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::PatternLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx13PatternLayout15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::PatternLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx13PatternLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '136' => '(int (*)(...)) log4cxx::PatternLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx13PatternLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '144' => '(int (*)(...)) log4cxx::Layout::getContentType[abi:cxx11]() const [_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev]', + '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '16' => '0u', + '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '168' => '(int (*)(...)) log4cxx::PatternLayout::ignoresThrowable() const [_ZNK7log4cxx13PatternLayout16ignoresThrowableEv]', + '176' => '(int (*)(...)) log4cxx::PatternLayout::getFormatSpecifiers[abi:cxx11]() [_ZN7log4cxx13PatternLayout19getFormatSpecifiersB5cxx11Ev]', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::PatternLayout) [_ZTIN7log4cxx13PatternLayoutE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::PatternLayout::~PatternLayout() [_ZN7log4cxx13PatternLayoutD1Ev]', + '88' => '(int (*)(...)) log4cxx::PatternLayout::~PatternLayout() [_ZN7log4cxx13PatternLayoutD0Ev]', + '96' => '(int (*)(...)) log4cxx::PatternLayout::getClass() const [_ZNK7log4cxx13PatternLayout8getClassEv]' + } + }, + '3121194' => { + 'Line' => '58', + 'Memb' => { + '0' => { + 'name' => 'conversionPattern', + 'offset' => '0', + 'type' => '209661' + }, + '1' => { + 'name' => 'patternConverters', + 'offset' => '50', + 'type' => '34967053' + }, + '2' => { + 'name' => 'patternFields', + 'offset' => '86', + 'type' => '34967065' + }, + '3' => { + 'name' => 'm_fatalColor', + 'offset' => '128', + 'type' => '209661' + }, + '4' => { + 'name' => 'm_errorColor', + 'offset' => '274', + 'type' => '209661' + }, + '5' => { + 'name' => 'm_warnColor', + 'offset' => '324', + 'type' => '209661' + }, + '6' => { + 'name' => 'm_infoColor', + 'offset' => '374', + 'type' => '209661' + }, + '7' => { + 'name' => 'm_debugColor', + 'offset' => '520', + 'type' => '209661' + }, + '8' => { + 'name' => 'm_traceColor', + 'offset' => '576', + 'type' => '209661' + }, + '9' => { + 'name' => 'expectedPatternLength', + 'offset' => '626', + 'type' => '190816' + } + }, + 'Name' => 'struct log4cxx::PatternLayout::PatternLayoutPrivate', + 'NameSpace' => 'log4cxx::PatternLayout', + 'Private' => 1, + 'Size' => '280', + 'Source' => 'patternlayout.cpp', + 'Type' => 'Struct' + }, + '3121199' => { + 'Base' => { + '208442' => { 'pos' => '0' } - }, - 'Header' => 'datagrampacket.h', - 'Line' => '42', - 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket', - 'NameSpace' => 'log4cxx::helpers::DatagramPacket', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::ClazzDatagramPacket::~ClazzDatagramPacket() [_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::ClazzDatagramPacket::~ClazzDatagramPacket() [_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::ClazzDatagramPacket::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14DatagramPacket19ClazzDatagramPacket7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DatagramPacket::ClazzDatagramPacket) [_ZTIN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketE]' - } - }, - '20254377' => { - 'BaseType' => '20254220', - 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20255167' => { - 'BaseType' => '20253924', - 'Name' => 'log4cxx::helpers::DatagramPacket const', - 'Size' => '16', - 'Type' => 'Const' - }, - '20255184' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '20254220' - } - }, - 'Type' => 'Class' - }, - '20256374' => { - 'BaseType' => '20253942', - 'Name' => 'struct log4cxx::helpers::DatagramPacket::DatagramPacketPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20256813' => { - 'BaseType' => '20255184', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20256819' => { - 'BaseType' => '20256813', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20256969' => { - 'BaseType' => '20255167', - 'Name' => 'log4cxx::helpers::DatagramPacket const*', + }, + 'Header' => 'patternlayout.h', + 'Line' => '451', + 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout', + 'NameSpace' => 'log4cxx::PatternLayout', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::PatternLayout::ClazzPatternLayout::~ClazzPatternLayout() [_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD1Ev]', + '24' => '(int (*)(...)) log4cxx::PatternLayout::ClazzPatternLayout::~ClazzPatternLayout() [_ZN7log4cxx13PatternLayout18ClazzPatternLayoutD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::PatternLayout::ClazzPatternLayout::newInstance() const [_ZTch0_h0_NK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::PatternLayout::ClazzPatternLayout::getName[abi:cxx11]() const [_ZNK7log4cxx13PatternLayout18ClazzPatternLayout7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::PatternLayout::ClazzPatternLayout::newInstance() const [_ZNK7log4cxx13PatternLayout18ClazzPatternLayout11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::PatternLayout::ClazzPatternLayout) [_ZTIN7log4cxx13PatternLayout18ClazzPatternLayoutE]' + } + }, + '3121369' => { + 'BaseType' => '3121199', + 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3121416' => { + 'BaseType' => '3121185', + 'Name' => 'log4cxx::PatternLayout const', + 'Type' => 'Const' + }, + '3121559' => { + 'Copied' => 1, + 'Header' => 'logmanager.h', + 'Line' => '44', + 'Name' => 'log4cxx::LogManager', + 'NameSpace' => 'log4cxx', + 'Size' => '1', + 'Type' => 'Class' + }, + '3121982' => { + 'BaseType' => '457528', + 'Header' => 'logmanager.h', + 'Line' => '28', + 'Name' => 'log4cxx::LoggerPtr', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '3121994' => { + 'BaseType' => '3044564', + 'Header' => 'logmanager.h', + 'Line' => '29', + 'Name' => 'log4cxx::LoggerList', + 'NameSpace' => 'log4cxx', + 'Type' => 'Typedef' + }, + '3122006' => { + 'Base' => { + '3122360' => { + 'pos' => '0' + } + }, + 'Header' => 'consoleappender.h', + 'Line' => '37', + 'Name' => 'log4cxx::ConsoleAppender', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::ConsoleAppender) [_ZTIN7log4cxx15ConsoleAppenderE]', + '168' => '(int (*)(...)) log4cxx::ConsoleAppender::~ConsoleAppender() [_ZN7log4cxx15ConsoleAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::ConsoleAppender::~ConsoleAppender() [_ZN7log4cxx15ConsoleAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::ConsoleAppender::getClass() const [_ZNK7log4cxx15ConsoleAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::ConsoleAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx15ConsoleAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::ConsoleAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx15ConsoleAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::ConsoleAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx15ConsoleAppender15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::ConsoleAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx15ConsoleAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::WriterAppender::close() [_ZN7log4cxx14WriterAppender5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::WriterAppender::requiresLayout() const [_ZNK7log4cxx14WriterAppender14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::WriterAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '312' => '(int (*)(...)) log4cxx::WriterAppender::checkEntryConditions() const [_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv]', + '32' => '0u', + '320' => '(int (*)(...)) log4cxx::WriterAppender::createWriter(std::shared_ptr&) [_ZN7log4cxx14WriterAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE]', + '328' => '(int (*)(...)) log4cxx::WriterAppender::subAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '336' => '(int (*)(...)) log4cxx::WriterAppender::writeFooter(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE]', + '344' => '(int (*)(...)) log4cxx::WriterAppender::writeHeader(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE]', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '3122015' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'consoleappender.h', + 'Line' => '43', + 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender', + 'NameSpace' => 'log4cxx::ConsoleAppender', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::ConsoleAppender::ClazzConsoleAppender::~ClazzConsoleAppender() [_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD1Ev]', + '24' => '(int (*)(...)) log4cxx::ConsoleAppender::ClazzConsoleAppender::~ClazzConsoleAppender() [_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::ConsoleAppender::ClazzConsoleAppender::newInstance() const [_ZTch0_h0_NK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::ConsoleAppender::ClazzConsoleAppender::getName[abi:cxx11]() const [_ZNK7log4cxx15ConsoleAppender20ClazzConsoleAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::ConsoleAppender::ClazzConsoleAppender::newInstance() const [_ZNK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::ConsoleAppender::ClazzConsoleAppender) [_ZTIN7log4cxx15ConsoleAppender20ClazzConsoleAppenderE]' + } + }, + '31220570' => { + 'BaseType' => '31207286', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '20256975' => { - 'BaseType' => '20256969', - 'Name' => 'log4cxx::helpers::DatagramPacket const*const', + '31220575' => { + 'BaseType' => '31220570', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '20256980' => { - 'BaseType' => '20253924', - 'Name' => 'log4cxx::helpers::DatagramPacket*', + '31220681' => { + 'BaseType' => '31209308', + 'Name' => 'struct log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '20256986' => { - 'BaseType' => '20256980', - 'Name' => 'log4cxx::helpers::DatagramPacket*const', + '31220686' => { + 'BaseType' => '31220681', + 'Name' => 'struct log4cxx::pattern::NamePatternConverter::NamePatternConverterPrivate*const', 'Size' => '8', 'Type' => 'Const' }, - '20257003' => { - 'BaseType' => '20254220', - 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20257009' => { - 'BaseType' => '20257003', - 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket*const', + '31221480' => { + 'BaseType' => '6086561', + 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '20257014' => { - 'BaseType' => '20254377', - 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20257020' => { - 'BaseType' => '20257014', - 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket const*const', + '31221490' => { + 'BaseType' => '6086566', + 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '20316072' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20347354' - } - }, - 'Type' => 'Struct' - }, - '20316195' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '20317954' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20347354' - }, - '1' => { - 'key' => '_Dp', - 'type' => '20316072' - } - }, - 'Type' => 'Class' - }, - '20316564' => { - 'Base' => { - '20316072' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '20316072' - } - }, - 'Type' => 'Struct' - }, - '20316857' => { - 'Base' => { - '20316564' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '20316072' - } - }, - 'Type' => 'Struct' - }, - '20317194' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '20349777' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::DatagramSocket::DatagramSocketPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '20349777' - } - }, - 'Type' => 'Struct' - }, - '20317494' => { - 'Base' => { - '20316857' => { - 'pos' => '0' - }, - '20317194' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::DatagramSocket::DatagramSocketPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '20349777' - } - }, - 'Type' => 'Struct' - }, - '20317954' => { - 'Base' => { - '20317494' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '3122171' => { + 'BaseType' => '3122015', + 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3122217' => { + 'BaseType' => '3122006', + 'Name' => 'log4cxx::ConsoleAppender const', + 'Type' => 'Const' + }, + '3122360' => { + 'Base' => { + '1379573' => { + 'pos' => '0' + } + }, + 'Header' => 'writerappender.h', + 'Line' => '36', + 'Name' => 'log4cxx::WriterAppender', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::WriterAppender) [_ZTIN7log4cxx14WriterAppenderE]', + '168' => '(int (*)(...)) log4cxx::WriterAppender::~WriterAppender() [_ZN7log4cxx14WriterAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::WriterAppender::~WriterAppender() [_ZN7log4cxx14WriterAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::WriterAppender::getClass() const [_ZNK7log4cxx14WriterAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::WriterAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx14WriterAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::WriterAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx14WriterAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::WriterAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::WriterAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx14WriterAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::WriterAppender::close() [_ZN7log4cxx14WriterAppender5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::WriterAppender::requiresLayout() const [_ZNK7log4cxx14WriterAppender14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::WriterAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '312' => '(int (*)(...)) log4cxx::WriterAppender::checkEntryConditions() const [_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv]', + '32' => '0u', + '320' => '(int (*)(...)) log4cxx::WriterAppender::createWriter(std::shared_ptr&) [_ZN7log4cxx14WriterAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE]', + '328' => '(int (*)(...)) log4cxx::WriterAppender::subAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '336' => '(int (*)(...)) log4cxx::WriterAppender::writeFooter(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE]', + '344' => '(int (*)(...)) log4cxx::WriterAppender::writeHeader(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE]', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '3122369' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'writerappender.h', + 'Line' => '41', + 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender', + 'NameSpace' => 'log4cxx::WriterAppender', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::WriterAppender::ClazzWriterAppender::~ClazzWriterAppender() [_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD2Ev]', + '24' => '(int (*)(...)) log4cxx::WriterAppender::ClazzWriterAppender::~ClazzWriterAppender() [_ZN7log4cxx14WriterAppender19ClazzWriterAppenderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::WriterAppender::ClazzWriterAppender::getName[abi:cxx11]() const [_ZNK7log4cxx14WriterAppender19ClazzWriterAppender7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::WriterAppender::ClazzWriterAppender) [_ZTIN7log4cxx14WriterAppender19ClazzWriterAppenderE]' + } + }, + '3122487' => { + 'BaseType' => '3122369', + 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3129701' => { + 'BaseType' => '946706', + 'Name' => 'log4cxx::AppenderPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '3130051' => { + 'BaseType' => '3120371', + 'Name' => 'struct log4cxx::pattern::PatternConverter::PatternConverterPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3130056' => { + 'BaseType' => '3130051', + 'Name' => 'struct log4cxx::pattern::PatternConverter::PatternConverterPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3130281' => { + 'BaseType' => '3120509', + 'Name' => 'struct log4cxx::pattern::FormattingInfo::FormattingInfoPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3130501' => { + 'BaseType' => '3120638', + 'Name' => 'log4cxx::pattern::PatternParser*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3130521' => { + 'BaseType' => '3121020', + 'Name' => 'log4cxx::pattern::PatternMap const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '3130526' => { + 'BaseType' => '3121049', + 'Name' => 'log4cxx::pattern::FormattingInfoPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '3130541' => { + 'BaseType' => '3121194', + 'Name' => 'struct log4cxx::PatternLayout::PatternLayoutPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3131231' => { + 'BaseType' => '3115692', + 'Name' => 'struct log4cxx::helpers::OutputStreamWriter::OutputStreamWriterPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3132696' => { + 'BaseType' => '3118355', + 'Name' => 'log4cxx::spi::LoggerFactoryPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '3132755' => { + 'BaseType' => '3045126', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3132805' => { + 'BaseType' => '3115821', + 'Name' => 'log4cxx::helpers::WideLife >*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3132810' => { + 'BaseType' => '3132805', + 'Name' => 'log4cxx::helpers::WideLife >*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3132815' => { + 'BaseType' => '3116220', + 'Name' => 'log4cxx::helpers::WideLife >const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3132820' => { + 'BaseType' => '3132815', + 'Name' => 'log4cxx::helpers::WideLife >const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3132935' => { + 'BaseType' => '3121185', + 'Name' => 'log4cxx::PatternLayout*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3132940' => { + 'BaseType' => '3132935', + 'Name' => 'log4cxx::PatternLayout*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3133115' => { + 'BaseType' => '3122006', + 'Name' => 'log4cxx::ConsoleAppender*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3133120' => { + 'BaseType' => '3133115', + 'Name' => 'log4cxx::ConsoleAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3133165' => { + 'BaseType' => '191037', + 'Name' => 'char const[24]', + 'Size' => '24', + 'Type' => 'Array' + }, + '3133181' => { + 'BaseType' => '3133165', + 'Name' => 'char const[24]&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '3133672' => { + 'BaseType' => '3121416', + 'Name' => 'log4cxx::PatternLayout const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3133817' => { + 'BaseType' => '3122217', + 'Name' => 'log4cxx::ConsoleAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3133967' => { + 'BaseType' => '3118502', + 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3133972' => { + 'BaseType' => '3118620', + 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3133977' => { + 'BaseType' => '3122015', + 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3133982' => { + 'BaseType' => '3122171', + 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3133987' => { + 'BaseType' => '3122369', + 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3133992' => { + 'BaseType' => '3122487', + 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3133997' => { + 'BaseType' => '3115697', + 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134002' => { + 'BaseType' => '3115815', + 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134007' => { + 'BaseType' => '3116234', + 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134012' => { + 'BaseType' => '3116352', + 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134017' => { + 'BaseType' => '3116367', + 'Name' => 'log4cxx::helpers::Writer::ClazzWriter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134022' => { + 'BaseType' => '3116485', + 'Name' => 'log4cxx::helpers::Writer::ClazzWriter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134027' => { + 'BaseType' => '3116500', + 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134032' => { + 'BaseType' => '3116618', + 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134067' => { + 'BaseType' => '3121199', + 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134072' => { + 'BaseType' => '3121369', + 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134077' => { + 'BaseType' => '3120514', + 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134082' => { + 'BaseType' => '3120632', + 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134087' => { + 'BaseType' => '3121060', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134092' => { + 'BaseType' => '3121178', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter::ClazzLoggingEventPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134097' => { + 'BaseType' => '3120376', + 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134102' => { + 'BaseType' => '3120494', + 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134132' => { + 'BaseType' => '3118768', + 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3134137' => { + 'BaseType' => '3118886', + 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '31437217' => { + 'BaseType' => '1929824', + 'Name' => 'log4cxx::NDC*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '20349777' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '20318293' => { + '31778386' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '20316195' - } - }, - 'Name' => 'std::unique_ptr >', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20347354' + 'type' => '31851675' }, '1' => { - 'key' => '_Dp', - 'type' => '20316072' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '20324415' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + '31778534' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20347336' + 'type' => '31851675' } }, 'Type' => 'Struct' }, - '20324541' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '20326300' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20347336' - }, - '1' => { - 'key' => '_Dp', - 'type' => '20324415' - } - }, - 'Type' => 'Class' - }, - '20324910' => { - 'Base' => { - '20324415' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '20324415' - } - }, - 'Type' => 'Struct' + '31778548' => { + 'BaseType' => '31851675', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' }, - '20325203' => { + '31778571' => { 'Base' => { - '20324910' => { - 'access' => 'private', + '31778386' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '20324415' - } - }, - 'Type' => 'Struct' - }, - '20325540' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'access' => 'private', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '20351065' + 'type' => '31864365' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::DatagramSocket*>', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Tp', + 'type' => '31851675' }, '1' => { - 'key' => '_Head', - 'type' => '20351065' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '20325840' => { - 'Base' => { - '20325203' => { - 'pos' => '0' - }, - '20325540' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::DatagramSocket*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '20351065' - } - }, - 'Type' => 'Struct' + '31778852' => { + 'BaseType' => '31778548', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' }, - '20326300' => { + '31779375' => { 'Base' => { - '20325840' => { + '31778571' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => undef, - 'type' => '20351065' + 'key' => '_Tp', + 'type' => '31851675' } }, 'Type' => 'Class' }, - '20326639' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + '31849174' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => 'storage', 'offset' => '0', - 'type' => '20324541' + 'type' => '197961' } }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '20347336' - }, - '1' => { - 'key' => '_Dp', - 'type' => '20324415' - } - }, - 'Type' => 'Class' - }, - '20330550' => { - 'Base' => { - '20432738' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'type' => '20253924' + 'key' => 'T', + 'type' => '31851709' } }, 'Type' => 'Class' }, - '20347336' => { + '31851675' => { 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Header' => 'datagramsocket.h', - 'Line' => '37', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '20318293' - } + '3121054' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::DatagramSocket', - 'NameSpace' => 'log4cxx::helpers', + 'Header' => 'mdcpatternconverter.h', + 'Line' => '32', + 'Name' => 'log4cxx::pattern::MDCPatternConverter', + 'NameSpace' => 'log4cxx::pattern', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern19MDCPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', '16' => '0u', '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::getClass() const [_ZNK7log4cxx7helpers14DatagramSocket8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramSocket10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramSocket4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '64' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::close() [_ZN7log4cxx7helpers14DatagramSocket5closeEv]', - '72' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DatagramSocket) [_ZTIN7log4cxx7helpers14DatagramSocketE]', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MDCPatternConverter) [_ZTIN7log4cxx7pattern19MDCPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::~MDCPatternConverter() [_ZN7log4cxx7pattern19MDCPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::~MDCPatternConverter() [_ZN7log4cxx7pattern19MDCPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::getClass() const [_ZNK7log4cxx7pattern19MDCPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern19MDCPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern19MDCPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '20347354' => { - 'Header' => 'datagramsocket_priv.h', - 'Line' => '28', - 'Memb' => { - '0' => { - 'name' => 'address', - 'offset' => '0', - 'type' => '7592264' - }, - '1' => { - 'name' => 'localAddress', - 'offset' => '16', - 'type' => '7592264' - }, - '2' => { - 'name' => 'port', - 'offset' => '32', - 'type' => '50231' - }, - '3' => { - 'name' => 'localPort', - 'offset' => '36', - 'type' => '50231' - } - }, - 'Name' => 'struct log4cxx::helpers::DatagramSocket::DatagramSocketPriv', - 'NameSpace' => 'log4cxx::helpers::DatagramSocket', - 'Protected' => 1, - 'Size' => '40', - 'Type' => 'Struct' - }, - '20347547' => { + '31851709' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'datagramsocket.h', - 'Line' => '44', - 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket', - 'NameSpace' => 'log4cxx::helpers::DatagramSocket', + 'Header' => 'mdcpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter', + 'NameSpace' => 'log4cxx::pattern::MDCPatternConverter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::ClazzDatagramSocket::~ClazzDatagramSocket() [_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::ClazzDatagramSocket::~ClazzDatagramSocket() [_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD0Ev]', + '16' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter::~ClazzMDCPatternConverter() [_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter::~ClazzMDCPatternConverter() [_ZN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::ClazzDatagramSocket::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14DatagramSocket19ClazzDatagramSocket7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DatagramSocket::ClazzDatagramSocket) [_ZTIN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketE]' + '40' => '(int (*)(...)) log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter) [_ZTIN7log4cxx7pattern19MDCPatternConverter24ClazzMDCPatternConverterE]' } }, - '20347705' => { - 'BaseType' => '20347547', - 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket const', + '31851856' => { + 'BaseType' => '31851709', + 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '20348535' => { - 'BaseType' => '20347336', - 'Name' => 'log4cxx::helpers::DatagramSocket const', - 'Size' => '16', - 'Type' => 'Const' - }, - '20348552' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '20347547' - } - }, - 'Type' => 'Class' - }, - '20349314' => { - 'Base' => { - '20347336' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'aprdatagramsocket.h', - 'Line' => '27', - 'Name' => 'log4cxx::helpers::APRDatagramSocket', - 'NameSpace' => 'log4cxx::helpers', + '31852263' => { + 'BaseType' => '31851675', + 'Name' => 'log4cxx::pattern::MDCPatternConverter const', 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::~APRDatagramSocket() [_ZN7log4cxx7helpers17APRDatagramSocketD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::~APRDatagramSocket() [_ZN7log4cxx7helpers17APRDatagramSocketD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::getClass() const [_ZNK7log4cxx7helpers14DatagramSocket8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramSocket10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramSocket4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::bind(int, std::shared_ptr) [_ZN7log4cxx7helpers17APRDatagramSocket4bindEiSt10shared_ptrINS0_11InetAddressEE]', - '64' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::close() [_ZN7log4cxx7helpers17APRDatagramSocket5closeEv]', - '72' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::connect(std::shared_ptr, int) [_ZN7log4cxx7helpers17APRDatagramSocket7connectESt10shared_ptrINS0_11InetAddressEEi]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRDatagramSocket) [_ZTIN7log4cxx7helpers17APRDatagramSocketE]', - '80' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::isClosed() const [_ZNK7log4cxx7helpers17APRDatagramSocket8isClosedEv]', - '88' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::receive(std::shared_ptr&) [_ZN7log4cxx7helpers17APRDatagramSocket7receiveERSt10shared_ptrINS0_14DatagramPacketEE]', - '96' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::send(std::shared_ptr&) [_ZN7log4cxx7helpers17APRDatagramSocket4sendERSt10shared_ptrINS0_14DatagramPacketEE]' - } - }, - '20349643' => { - 'BaseType' => '20330550', - 'Header' => 'datagrampacket.h', - 'Line' => '107', - 'Name' => 'log4cxx::helpers::DatagramPacketPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Type' => 'Typedef' - }, - '20349655' => { - 'BaseType' => '20326639', - 'Header' => 'datagramsocket.h', - 'Line' => '33', - 'Name' => 'log4cxx::helpers::DatagramSocketUniquePtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '20349777' => { - 'BaseType' => '20347354', - 'Name' => 'struct log4cxx::helpers::DatagramSocket::DatagramSocketPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20349783' => { - 'BaseType' => '20349777', - 'Name' => 'struct log4cxx::helpers::DatagramSocket::DatagramSocketPriv*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20350940' => { - 'BaseType' => '20348552', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20350946' => { - 'BaseType' => '20350940', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20351065' => { - 'BaseType' => '20347336', - 'Name' => 'log4cxx::helpers::DatagramSocket*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20351071' => { - 'BaseType' => '20351065', - 'Name' => 'log4cxx::helpers::DatagramSocket*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20351356' => { - 'BaseType' => '20349314', - 'Name' => 'log4cxx::helpers::APRDatagramSocket*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20351362' => { - 'BaseType' => '20351356', - 'Name' => 'log4cxx::helpers::APRDatagramSocket*const', - 'Size' => '8', 'Type' => 'Const' }, - '20351700' => { - 'BaseType' => '20348535', - 'Name' => 'log4cxx::helpers::DatagramSocket const*', + '31864114' => { + 'BaseType' => '31849174', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '20351706' => { - 'BaseType' => '20351700', - 'Name' => 'log4cxx::helpers::DatagramSocket const*const', + '31864119' => { + 'BaseType' => '31864114', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '20351711' => { - 'BaseType' => '20349643', - 'Name' => 'log4cxx::helpers::DatagramPacketPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '20351723' => { - 'BaseType' => '20347547', - 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket*', + '31864365' => { + 'BaseType' => '31778852', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '20351729' => { - 'BaseType' => '20351723', - 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket*const', + '31864395' => { + 'BaseType' => '31779375', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'RvalueRef' }, - '20351734' => { - 'BaseType' => '20347705', - 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket const*', + '31864420' => { + 'BaseType' => '31851675', + 'Name' => 'log4cxx::pattern::MDCPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '20351740' => { - 'BaseType' => '20351734', - 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket const*const', + '31864425' => { + 'BaseType' => '31864420', + 'Name' => 'log4cxx::pattern::MDCPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '20432553' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20253924' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '20432701' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20253924' - } - }, - 'Type' => 'Struct' - }, - '20432715' => { - 'BaseType' => '20253924', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '20432738' => { - 'Base' => { - '20432553' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '20457756' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20253924' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '20433025' => { - 'BaseType' => '20432715', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '20454639' => { - 'BaseType' => '20349314', - 'Name' => 'log4cxx::helpers::APRDatagramSocket const', - 'Size' => '16', - 'Type' => 'Const' - }, - '20457126' => { - 'BaseType' => '20457138', - 'Header' => 'apr_network_io.h', - 'Line' => '219', - 'Name' => 'apr_socket_t', - 'Type' => 'Typedef' + '31864921' => { + 'BaseType' => '31852263', + 'Name' => 'log4cxx::pattern::MDCPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '20457138' => { - 'Name' => 'struct apr_socket_t', - 'Type' => 'Struct' + '31864926' => { + 'BaseType' => '31864921', + 'Name' => 'log4cxx::pattern::MDCPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '20457413' => { - 'BaseType' => '20457126', - 'Name' => 'apr_socket_t*', + '31865440' => { + 'BaseType' => '31851709', + 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '20457756' => { - 'BaseType' => '20433025', - 'Name' => 'std::__shared_ptr::element_type*', + '31865445' => { + 'BaseType' => '31865440', + 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '20457934' => { - 'BaseType' => '20454639', - 'Name' => 'log4cxx::helpers::APRDatagramSocket const*', + '31865450' => { + 'BaseType' => '31851856', + 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '20457940' => { - 'BaseType' => '20457934', - 'Name' => 'log4cxx::helpers::APRDatagramSocket const*const', + '31865455' => { + 'BaseType' => '31865450', + 'Name' => 'log4cxx::pattern::MDCPatternConverter::ClazzMDCPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '20556148' => { + '32196805' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20580423' - } - }, - 'Type' => 'Struct' - }, - '20556271' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '20558029' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20580423' + 'type' => '9955763' }, '1' => { - 'key' => '_Dp', - 'type' => '20556148' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '20556640' => { - 'Base' => { - '20556148' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + '32196953' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '20556148' + 'key' => '_Tp', + 'type' => '9955763' } }, 'Type' => 'Struct' }, - '20556933' => { + '32196967' => { + 'BaseType' => '9955763', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '32196990' => { 'Base' => { - '20556640' => { - 'access' => 'private', + '32196805' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '20556148' - } - }, - 'Type' => 'Struct' - }, - '20557269' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'access' => 'private', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '20581606' + 'type' => '32269670' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ServerSocket::ServerSocketPrivate*>', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Tp', + 'type' => '9955763' }, '1' => { - 'key' => '_Head', - 'type' => '20581606' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '20557569' => { - 'Base' => { - '20556933' => { - 'pos' => '0' - }, - '20557269' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ServerSocket::ServerSocketPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '20581606' - } - }, - 'Type' => 'Struct' + '32197271' => { + 'BaseType' => '32196967', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' }, - '20558029' => { + '32197722' => { 'Base' => { - '20557569' => { + '32196990' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => undef, - 'type' => '20581606' + 'key' => '_Tp', + 'type' => '9955763' } }, 'Type' => 'Class' }, - '20558368' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + '32256187' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => 'storage', 'offset' => '0', - 'type' => '20556271' + 'type' => '197961' } }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '20580423' - }, - '1' => { - 'key' => '_Dp', - 'type' => '20556148' + 'key' => 'T', + 'type' => '9955788' } }, 'Type' => 'Class' }, - '20558986' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20580405' - } - }, - 'Type' => 'Struct' + '32258728' => { + 'BaseType' => '9955763', + 'Name' => 'log4cxx::pattern::NDCPatternConverter const', + 'Size' => '16', + 'Type' => 'Const' }, - '20559112' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '20560870' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + '32269419' => { + 'BaseType' => '32256187', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20580405' - }, - '1' => { - 'key' => '_Dp', - 'type' => '20558986' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '20559481' => { - 'Base' => { - '20558986' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '20558986' - } - }, - 'Type' => 'Struct' + '32269424' => { + 'BaseType' => '32269419', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32269670' => { + 'BaseType' => '32197271', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '32269700' => { + 'BaseType' => '32197722', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '32269865' => { + 'BaseType' => '9955763', + 'Name' => 'log4cxx::pattern::NDCPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '32269870' => { + 'BaseType' => '32269865', + 'Name' => 'log4cxx::pattern::NDCPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32270206' => { + 'BaseType' => '32258728', + 'Name' => 'log4cxx::pattern::NDCPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '32270211' => { + 'BaseType' => '32270206', + 'Name' => 'log4cxx::pattern::NDCPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32270371' => { + 'BaseType' => '9977295', + 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32270381' => { + 'BaseType' => '9977300', + 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '20559774' => { + '32635819' => { 'Base' => { - '20559481' => { - 'access' => 'private', + '32729641' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '20558986' - } - }, - 'Type' => 'Struct' - }, - '20560110' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '20581915' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ServerSocket*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '20581915' + 'type' => '32766881' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '20560410' => { - 'Base' => { - '20559774' => { - 'pos' => '0' - }, - '20560110' => { - 'access' => 'private', - 'pos' => '1' - } - }, + '32636108' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ServerSocket*>', + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '20581915' + 'type' => '32635819' } }, 'Type' => 'Struct' }, - '20560870' => { - 'Base' => { - '20560410' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '32636122' => { + 'BaseType' => '32785754', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits >::pointer', + 'NameSpace' => 'std::allocator_traits >', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '20581915' - } - }, - 'Type' => 'Class' + 'Type' => 'Typedef' }, - '20561209' => { + '32636453' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Header' => 'stl_vector.h', + 'Line' => '84', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', + 'name' => '_M_impl', 'offset' => '0', - 'type' => '20559112' + 'type' => '32636652' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'struct std::_Vector_base >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20580405' + 'type' => '32766881' }, '1' => { - 'key' => '_Dp', - 'type' => '20558986' + 'key' => '_Alloc', + 'type' => '32635819' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '20564938' => { - 'Base' => { - '20639832' => { - 'pos' => '0' - } - }, + '32636466' => { 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'type' => '20662270' - } - }, - 'Type' => 'Class' - }, - '20580405' => { - 'Header' => 'serversocket.h', - 'Line' => '33', + 'Header' => 'stl_vector.h', + 'Line' => '91', 'Memb' => { '0' => { - 'name' => '_vptr', + 'name' => '_M_start', 'offset' => '0', - 'type' => '66091' + 'type' => '32636640' }, '1' => { - 'access' => 'protected', - 'name' => 'm_priv', + 'name' => '_M_finish', 'offset' => '8', - 'type' => '20558368' - } - }, - 'Name' => 'log4cxx::helpers::ServerSocket', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) __cxa_pure_virtual', - '40' => '(int (*)(...)) log4cxx::helpers::ServerSocket::close() [_ZN7log4cxx7helpers12ServerSocket5closeEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ServerSocket) [_ZTIN7log4cxx7helpers12ServerSocketE]' - } - }, - '20580423' => { - 'Header' => 'serversocket_priv.h', - 'Line' => '28', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' + 'type' => '32636640' }, - '1' => { - 'name' => 'timeout', - 'offset' => '8', - 'type' => '50231' + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '32636640' } }, - 'Name' => 'struct log4cxx::helpers::ServerSocket::ServerSocketPrivate', - 'NameSpace' => 'log4cxx::helpers::ServerSocket', - 'Protected' => 1, - 'Size' => '16', + 'Name' => 'struct std::_Vector_base >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '24', 'Type' => 'Struct' }, - '20580822' => { - 'BaseType' => '20580405', - 'Name' => 'log4cxx::helpers::ServerSocket const', - 'Size' => '16', - 'Type' => 'Const' + '32636640' => { + 'BaseType' => '32730113', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base >::pointer', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '8', + 'Type' => 'Typedef' }, - '20580827' => { + '32636652' => { 'Base' => { - '20580405' => { + '32635819' => { 'pos' => '0' + }, + '32636466' => { + 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'aprserversocket.h', - 'Line' => '31', - 'Name' => 'log4cxx::helpers::APRServerSocket', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::~APRServerSocket() [_ZN7log4cxx7helpers15APRServerSocketD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::~APRServerSocket() [_ZN7log4cxx7helpers15APRServerSocketD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::accept() [_ZN7log4cxx7helpers15APRServerSocket6acceptEv]', - '40' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::close() [_ZN7log4cxx7helpers15APRServerSocket5closeEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRServerSocket) [_ZTIN7log4cxx7helpers15APRServerSocketE]' - } - }, - '20580832' => { - 'BaseType' => '20564938', - 'Header' => 'socket.h', - 'Line' => '32', - 'Name' => 'log4cxx::helpers::SocketPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Type' => 'Typedef' - }, - '20580844' => { - 'BaseType' => '20561209', - 'Header' => 'serversocket.h', - 'Line' => '31', - 'Name' => 'log4cxx::helpers::ServerSocketUniquePtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '20581606' => { - 'BaseType' => '20580423', - 'Name' => 'struct log4cxx::helpers::ServerSocket::ServerSocketPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20581612' => { - 'BaseType' => '20581606', - 'Name' => 'struct log4cxx::helpers::ServerSocket::ServerSocketPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20581915' => { - 'BaseType' => '20580405', - 'Name' => 'log4cxx::helpers::ServerSocket*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20581921' => { - 'BaseType' => '20581915', - 'Name' => 'log4cxx::helpers::ServerSocket*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20582206' => { - 'BaseType' => '20580827', - 'Name' => 'log4cxx::helpers::APRServerSocket*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20582212' => { - 'BaseType' => '20582206', - 'Name' => 'log4cxx::helpers::APRServerSocket*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20582579' => { - 'BaseType' => '20580822', - 'Name' => 'log4cxx::helpers::ServerSocket const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20582585' => { - 'BaseType' => '20582579', - 'Name' => 'log4cxx::helpers::ServerSocket const*const', - 'Size' => '8', - 'Type' => 'Const' + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '24', + 'Type' => 'Struct' }, - '2062382' => { - 'Copied' => 1, - 'Header' => 'locale_classes.h', - 'Line' => '62', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '2139275' - } - }, - 'Name' => 'std::locale', - 'NameSpace' => 'std', - 'Size' => '8', - 'Type' => 'Class' - }, - '2062996' => { - 'Copied' => 1, - 'Header' => 'locale_classes.h', - 'Line' => '522', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '0', - 'type' => '147846' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_facets', - 'offset' => '8', - 'type' => '2139316' - }, - '2' => { - 'access' => 'private', - 'name' => '_M_facets_size', - 'offset' => '16', - 'type' => '7956' - }, - '3' => { - 'access' => 'private', - 'name' => '_M_caches', - 'offset' => '24', - 'type' => '2139316' - }, - '4' => { - 'access' => 'private', - 'name' => '_M_names', - 'offset' => '32', - 'type' => '55602' - } - }, - 'Name' => 'std::locale::_Impl', - 'NameSpace' => 'std::locale', - 'Size' => '40', - 'Type' => 'Class' - }, - '20638570' => { + '32637477' => { + 'Base' => { + '32636453' => { + 'access' => 'protected', + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector', 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '32766881' + } + }, + 'Type' => 'Class' + }, + '32729641' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator', + 'NameSpace' => '__gnu_cxx', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20662270' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'type' => '32766881' } }, 'Type' => 'Class' }, - '20638718' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', + '32729888' => { + 'Base' => { + '32636108' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits >', + 'NameSpace' => '__gnu_cxx', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '20662270' + 'key' => '_Alloc', + 'type' => '32635819' } }, 'Type' => 'Struct' }, - '20638732' => { - 'BaseType' => '20662270', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + '32730113' => { + 'BaseType' => '32636122', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits >', + 'Size' => '8', 'Type' => 'Typedef' }, - '20639832' => { - 'Base' => { - '20638570' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + '32757731' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => 'storage', 'offset' => '0', - 'type' => '20667239' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '197961' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '20662270' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => 'T', + 'type' => '5661373' } }, 'Type' => 'Class' }, - '20640119' => { - 'BaseType' => '20638732', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '2064104' => { - 'Copied' => 1, - 'Name' => 'std::locale::facet', - 'NameSpace' => 'std::locale', - 'Private' => 1, - 'Type' => 'Class' - }, - '2064109' => { - 'BaseType' => '2064104', - 'Name' => 'std::locale::facet const', - 'Type' => 'Const' - }, - '2064115' => { - 'BaseType' => '2062382', - 'Name' => 'std::locale const', - 'Size' => '8', - 'Type' => 'Const' - }, - '20662270' => { + '32766861' => { 'Base' => { - '63470' => { - 'pos' => '0' - } + '1379591' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'socket.h', - 'Line' => '43', + 'Header' => 'odbcappender_priv.h', + 'Line' => '52', 'Memb' => { '0' => { - 'access' => 'protected', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '20733168' + 'name' => 'databaseURL', + 'offset' => '388', + 'type' => '209661' + }, + '1' => { + 'name' => 'databaseUser', + 'offset' => '534', + 'type' => '209661' + }, + '10' => { + 'name' => 'mappedName', + 'offset' => '900', + 'type' => '6007393' + }, + '11' => { + 'name' => 'parameterValue', + 'offset' => '1032', + 'type' => '32637477' + }, + '2' => { + 'name' => 'databasePassword', + 'offset' => '584', + 'type' => '209661' + }, + '3' => { + 'name' => 'connection', + 'offset' => '640', + 'type' => '32768036' + }, + '4' => { + 'name' => 'env', + 'offset' => '648', + 'type' => '32768677' + }, + '5' => { + 'name' => 'sqlStatement', + 'offset' => '662', + 'type' => '209661' + }, + '6' => { + 'name' => 'bufferSize', + 'offset' => '808', + 'type' => '190816' + }, + '7' => { + 'name' => 'buffer', + 'offset' => '822', + 'type' => '2354662' + }, + '8' => { + 'name' => 'timeZone', + 'offset' => '864', + 'type' => '4207803' + }, + '9' => { + 'name' => 'preparedStatement', + 'offset' => '886', + 'type' => '32784692' } }, - 'Name' => 'log4cxx::helpers::Socket', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', + 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv', + 'NameSpace' => 'log4cxx::db::ODBCAppender', + 'Protected' => 1, + 'Size' => '432', + 'Type' => 'Struct', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::Socket::getClass() const [_ZNK7log4cxx7helpers6Socket8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Socket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Socket10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::Socket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Socket4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '64' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Socket) [_ZTIN7log4cxx7helpers6SocketE]' + '16' => '(int (*)(...)) log4cxx::db::ODBCAppender::ODBCAppenderPriv::~ODBCAppenderPriv() [_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD1Ev]', + '24' => '(int (*)(...)) log4cxx::db::ODBCAppender::ODBCAppenderPriv::~ODBCAppenderPriv() [_ZN7log4cxx2db12ODBCAppender16ODBCAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::ODBCAppender::ODBCAppenderPriv) [_ZTIN7log4cxx2db12ODBCAppender16ODBCAppenderPrivE]' } }, - '20662445' => { - 'Base' => { - '20580423' => { - 'pos' => '0' - } - }, - 'Line' => '32', + '32766881' => { + 'Copied' => 1, + 'Header' => 'odbcappender_priv.h', + 'Line' => '118', 'Memb' => { '0' => { - 'name' => 'pool', - 'offset' => '16', - 'type' => '62082' + 'name' => 'converter', + 'offset' => '0', + 'type' => '32766894' }, '1' => { - 'name' => 'mutex', - 'offset' => '32', - 'type' => '41413' + 'name' => 'paramType', + 'offset' => '22', + 'type' => '32767315' }, '2' => { - 'name' => 'socket', + 'name' => 'paramMaxCharCount', + 'offset' => '36', + 'type' => '32785311' + }, + '3' => { + 'name' => 'paramValue', + 'offset' => '50', + 'type' => '32785299' + }, + '4' => { + 'name' => 'paramValueSize', + 'offset' => '64', + 'type' => '32785335' + }, + '5' => { + 'name' => 'strLen_or_Ind', 'offset' => '72', - 'type' => '20457413' + 'type' => '32785323' } }, - 'Name' => 'struct log4cxx::helpers::APRServerSocket::APRServerSocketPriv', - 'NameSpace' => 'log4cxx::helpers::APRServerSocket', - 'Private' => 1, - 'Size' => '80', - 'Source' => 'aprserversocket.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::APRServerSocketPriv::~APRServerSocketPriv() [_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::APRServerSocketPriv::~APRServerSocketPriv() [_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRServerSocket::APRServerSocketPriv) [_ZTIN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivE]' - } + 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding', + 'NameSpace' => 'log4cxx::db::ODBCAppender::ODBCAppenderPriv', + 'Size' => '56', + 'Type' => 'Struct' + }, + '32766894' => { + 'BaseType' => '9956513', + 'Header' => 'odbcappender_priv.h', + 'Line' => '120', + 'Name' => 'log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding::ConverterPtr', + 'NameSpace' => 'log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '32767010' => { + 'BaseType' => '32766881', + 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding const', + 'Size' => '56', + 'Type' => 'Const' + }, + '32767315' => { + 'BaseType' => '190256', + 'Header' => 'odbcappender.h', + 'Line' => '154', + 'Name' => 'log4cxx::db::ODBCAppender::SQLSMALLINT', + 'NameSpace' => 'log4cxx::db::ODBCAppender', + 'Size' => '2', + 'Type' => 'Typedef' + }, + '32768036' => { + 'BaseType' => '190924', + 'Header' => 'odbcappender.h', + 'Line' => '151', + 'Name' => 'log4cxx::db::ODBCAppender::SQLHDBC', + 'NameSpace' => 'log4cxx::db::ODBCAppender', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '32768677' => { + 'BaseType' => '190924', + 'Header' => 'odbcappender.h', + 'Line' => '152', + 'Name' => 'log4cxx::db::ODBCAppender::SQLHENV', + 'NameSpace' => 'log4cxx::db::ODBCAppender', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '32768704' => { + 'BaseType' => '5661367', + 'Name' => 'log4cxx::db::ODBCAppender const', + 'Size' => '16', + 'Type' => 'Const' }, - '20662837' => { + '32768709' => { 'Base' => { - '20662270' => { - 'pos' => '0' - } + '1374417' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'aprsocket.h', - 'Line' => '30', - 'Name' => 'log4cxx::helpers::APRSocket', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', + 'Header' => 'odbcappender.h', + 'Line' => '38', + 'Name' => 'log4cxx::db::SQLException', + 'NameSpace' => 'log4cxx::db', + 'Size' => '144', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::APRSocket::~APRSocket() [_ZN7log4cxx7helpers9APRSocketD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::APRSocket::~APRSocket() [_ZN7log4cxx7helpers9APRSocketD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Socket::getClass() const [_ZNK7log4cxx7helpers6Socket8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Socket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Socket10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::Socket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Socket4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::APRSocket::write(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers9APRSocket5writeERNS0_10ByteBufferE]', - '64' => '(int (*)(...)) log4cxx::helpers::APRSocket::close() [_ZN7log4cxx7helpers9APRSocket5closeEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRSocket) [_ZTIN7log4cxx7helpers9APRSocketE]' + '16' => '(int (*)(...)) log4cxx::db::SQLException::~SQLException() [_ZN7log4cxx2db12SQLExceptionD2Ev]', + '24' => '(int (*)(...)) log4cxx::db::SQLException::~SQLException() [_ZN7log4cxx2db12SQLExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::SQLException) [_ZTIN7log4cxx2db12SQLExceptionE]' } }, - '20666815' => { - 'BaseType' => '20662445', - 'Name' => 'struct log4cxx::helpers::APRServerSocket::APRServerSocketPriv*', + '32768924' => { + 'BaseType' => '32768709', + 'Name' => 'log4cxx::db::SQLException const', + 'Size' => '144', + 'Type' => 'Const' + }, + '32784692' => { + 'BaseType' => '190924', + 'Line' => '52', + 'Name' => 'SQLHSTMT', + 'Size' => '8', + 'Source' => 'odbcappender.cpp', + 'Type' => 'Typedef' + }, + '32785299' => { + 'BaseType' => '190924', + 'Header' => 'odbcappender_priv.h', + 'Line' => '36', + 'Name' => 'SQLPOINTER', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '32785311' => { + 'BaseType' => '194920', + 'Header' => 'odbcappender_priv.h', + 'Line' => '37', + 'Name' => 'SQLULEN', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '32785323' => { + 'BaseType' => '194872', + 'Header' => 'odbcappender_priv.h', + 'Line' => '38', + 'Name' => 'SQLLEN', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '32785335' => { + 'BaseType' => '190282', + 'Header' => 'odbcappender_priv.h', + 'Line' => '39', + 'Name' => 'SQLINTEGER', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '32785754' => { + 'BaseType' => '32766881', + 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding*', 'Size' => '8', 'Type' => 'Pointer' }, - '20666821' => { - 'BaseType' => '20666815', - 'Name' => 'struct log4cxx::helpers::APRServerSocket::APRServerSocketPriv*const', + '32785759' => { + 'BaseType' => '32785754', + 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding*const', 'Size' => '8', 'Type' => 'Const' }, - '20667239' => { - 'BaseType' => '20640119', - 'Name' => 'std::__shared_ptr::element_type*', + '32785799' => { + 'BaseType' => '32767010', + 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding const*', 'Size' => '8', 'Type' => 'Pointer' }, - '20667257' => { - 'BaseType' => '20564938', - 'Name' => 'std::shared_ptr*', + '32785804' => { + 'BaseType' => '32785799', + 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv::DataBinding const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32786822' => { + 'BaseType' => '32757731', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '20667357' => { - 'BaseType' => '20662837', - 'Name' => 'log4cxx::helpers::APRSocket*', + '32786827' => { + 'BaseType' => '32786822', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32786933' => { + 'BaseType' => '32766861', + 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv*', 'Size' => '8', 'Type' => 'Pointer' }, - '20730948' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20761457' - } - }, - 'Type' => 'Struct' + '32786938' => { + 'BaseType' => '32786933', + 'Name' => 'struct log4cxx::db::ODBCAppender::ODBCAppenderPriv*const', + 'Size' => '8', + 'Type' => 'Const' }, - '20731071' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + '32788836' => { + 'BaseType' => '32768704', + 'Name' => 'log4cxx::db::ODBCAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '32788841' => { + 'BaseType' => '32788836', + 'Name' => 'log4cxx::db::ODBCAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32788851' => { + 'BaseType' => '5680273', + 'Name' => 'log4cxx::db::ODBCAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32788876' => { + 'BaseType' => '32788881', + 'Name' => 'unsigned short**', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '32788881' => { + 'BaseType' => '190213', + 'Name' => 'unsigned short*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '32789185' => { + 'BaseType' => '5680263', + 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32789195' => { + 'BaseType' => '5680268', + 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32789200' => { + 'BaseType' => '32768709', + 'Name' => 'log4cxx::db::SQLException*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '32789205' => { + 'BaseType' => '32789200', + 'Name' => 'log4cxx::db::SQLException*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '32789210' => { + 'BaseType' => '32768924', + 'Name' => 'log4cxx::db::SQLException const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '3279075' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3334217' + } + }, + 'Type' => 'Struct' + }, + '3280024' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '3282427' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3334217' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3279075' + } + }, + 'Type' => 'Class' + }, + '3280650' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3279075' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '3279075' + } + }, + 'Type' => 'Struct' + }, + '3280908' => { + 'Base' => { + '3280650' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '3279075' + } + }, + 'Type' => 'Struct' + }, + '3281215' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3336686' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::BufferedWriter::BufferedWriterPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '3336686' + } + }, + 'Type' => 'Struct' + }, + '3281473' => { + 'Base' => { + '3280908' => { + 'pos' => '0' + }, + '3281215' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::BufferedWriter::BufferedWriterPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '3336686' + } + }, + 'Type' => 'Struct' + }, + '3282427' => { + 'Base' => { + '3281473' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '3336686' + } + }, + 'Type' => 'Class' + }, + '3283896' => { + 'Base' => { + '3280024' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3334217' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3279075' + } + }, + 'Type' => 'Struct' + }, + '3284125' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '3283896' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3334217' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3279075' + } + }, + 'Type' => 'Class' + }, + '3284842' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3116358' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '3284988' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3116358' + } + }, + 'Type' => 'Struct' + }, + '3285002' => { + 'BaseType' => '3116358', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '3285982' => { + 'Base' => { + '3284842' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '3337079' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3116358' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '3286261' => { + 'BaseType' => '3285002', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '3286583' => { + 'Base' => { + '3285982' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3116358' + } + }, + 'Type' => 'Class' + }, + '33225233' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => 'storage', 'offset' => '0', - 'type' => '20732829' + 'type' => '197961' } }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '20761457' - }, - '1' => { - 'key' => '_Dp', - 'type' => '20730948' + 'key' => 'T', + 'type' => '1374860' } }, 'Type' => 'Class' }, - '20731440' => { - 'Base' => { - '20730948' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '20730948' - } - }, - 'Type' => 'Struct' - }, - '20731733' => { - 'Base' => { - '20731440' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '20730948' - } - }, - 'Type' => 'Struct' + '33237422' => { + 'BaseType' => '33225233', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '20732069' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '20763476' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::Socket::SocketPrivate*>', - 'NameSpace' => 'std', + '33237427' => { + 'BaseType' => '33237422', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '20763476' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '20732369' => { - 'Base' => { - '20731733' => { - 'pos' => '0' - }, - '20732069' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::Socket::SocketPrivate*>', - 'NameSpace' => 'std', + '33237875' => { + 'BaseType' => '1390987', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '20763476' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '20732829' => { - 'Base' => { - '20732369' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '33237900' => { + 'BaseType' => '1391201', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '20763476' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '20733168' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '20731071' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '33237910' => { + 'BaseType' => '1391206', + 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler::ClazzOnlyOnceErrorHandler const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20761457' - }, - '1' => { - 'key' => '_Dp', - 'type' => '20730948' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '20738322' => { + '3334200' => { + 'Base' => { + '3116358' => { + 'pos' => '0' + } + }, + 'Header' => 'bufferedwriter.h', + 'Line' => '33', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '3284125' + } + }, + 'Name' => 'log4cxx::helpers::BufferedWriter', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::~BufferedWriter() [_ZN7log4cxx7helpers14BufferedWriterD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::~BufferedWriter() [_ZN7log4cxx7helpers14BufferedWriterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::getClass() const [_ZNK7log4cxx7helpers14BufferedWriter8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14BufferedWriter10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14BufferedWriter4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers14BufferedWriter5closeERNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers14BufferedWriter5flushERNS0_4PoolE]', + '72' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::write(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers14BufferedWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::BufferedWriter) [_ZTIN7log4cxx7helpers14BufferedWriterE]' + } + }, + '3334217' => { + 'Line' => '24', + 'Memb' => { + '0' => { + 'name' => 'out', + 'offset' => '0', + 'type' => '3335202' + }, + '1' => { + 'name' => 'sz', + 'offset' => '22', + 'type' => '190816' + }, + '2' => { + 'name' => 'buf', + 'offset' => '36', + 'type' => '209661' + } + }, + 'Name' => 'struct log4cxx::helpers::BufferedWriter::BufferedWriterPriv', + 'NameSpace' => 'log4cxx::helpers::BufferedWriter', + 'Private' => 1, + 'Size' => '56', + 'Source' => 'bufferedwriter.cpp', + 'Type' => 'Struct' + }, + '3334333' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'bufferedwriter.h', + 'Line' => '39', + 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter', + 'NameSpace' => 'log4cxx::helpers::BufferedWriter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::ClazzBufferedWriter::~ClazzBufferedWriter() [_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::ClazzBufferedWriter::~ClazzBufferedWriter() [_ZN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::BufferedWriter::ClazzBufferedWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14BufferedWriter19ClazzBufferedWriter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::BufferedWriter::ClazzBufferedWriter) [_ZTIN7log4cxx7helpers14BufferedWriter19ClazzBufferedWriterE]' + } + }, + '3334480' => { + 'BaseType' => '3334333', + 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3334942' => { + 'BaseType' => '3334200', + 'Name' => 'log4cxx::helpers::BufferedWriter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '3335197' => { + 'BaseType' => '3116358', + 'Name' => 'log4cxx::helpers::Writer const', + 'Type' => 'Const' + }, + '3335202' => { + 'BaseType' => '3286583', + 'Header' => 'writer.h', + 'Line' => '55', + 'Name' => 'log4cxx::helpers::WriterPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '3335214' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3334333' + } + }, + 'Type' => 'Class' + }, + '3336686' => { + 'BaseType' => '3334217', + 'Name' => 'struct log4cxx::helpers::BufferedWriter::BufferedWriterPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3337079' => { + 'BaseType' => '3286261', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3337129' => { + 'BaseType' => '3335202', + 'Name' => 'log4cxx::helpers::WriterPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '3337134' => { + 'BaseType' => '3116358', + 'Name' => 'log4cxx::helpers::Writer*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3337139' => { + 'BaseType' => '3337134', + 'Name' => 'log4cxx::helpers::Writer*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3337144' => { + 'BaseType' => '3335214', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3337149' => { + 'BaseType' => '3337144', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3337535' => { + 'BaseType' => '3334942', + 'Name' => 'log4cxx::helpers::BufferedWriter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3337540' => { + 'BaseType' => '3337535', + 'Name' => 'log4cxx::helpers::BufferedWriter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3337545' => { + 'BaseType' => '3334200', + 'Name' => 'log4cxx::helpers::BufferedWriter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3337550' => { + 'BaseType' => '3337545', + 'Name' => 'log4cxx::helpers::BufferedWriter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3337565' => { + 'BaseType' => '3334333', + 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3337570' => { + 'BaseType' => '3337565', + 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3337575' => { + 'BaseType' => '3334480', + 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3337580' => { + 'BaseType' => '3337575', + 'Name' => 'log4cxx::helpers::BufferedWriter::ClazzBufferedWriter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3359293' => { + 'BaseType' => '3335197', + 'Name' => 'log4cxx::helpers::Writer const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3359298' => { + 'BaseType' => '3359293', + 'Name' => 'log4cxx::helpers::Writer const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '33642842' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20662270' - } - }, - 'Type' => 'Struct' - }, - '20738448' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '20740206' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20662270' + 'type' => '3118759' }, '1' => { - 'key' => '_Dp', - 'type' => '20738322' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '20738817' => { - 'Base' => { - '20738322' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '20738322' - } - }, - 'Type' => 'Struct' - }, - '20739110' => { - 'Base' => { - '20738817' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + '33642990' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '20738322' - } - }, - 'Type' => 'Struct' - }, - '20739446' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '20764316' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::Socket*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '20764316' - } - }, - 'Type' => 'Struct' - }, - '20739746' => { - 'Base' => { - '20739110' => { - 'pos' => '0' - }, - '20739446' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::Socket*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '20764316' + 'key' => '_Tp', + 'type' => '3118759' } }, 'Type' => 'Struct' }, - '20740206' => { + '33643004' => { + 'BaseType' => '3118759', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '33643027' => { 'Base' => { - '20739746' => { + '33642842' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '20764316' - } - }, - 'Type' => 'Class' - }, - '20740545' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '20738448' + 'type' => '33742600' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20662270' + 'type' => '3118759' }, '1' => { - 'key' => '_Dp', - 'type' => '20738322' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '20761457' => { - 'Header' => 'socket_priv.h', - 'Line' => '28', + '33643308' => { + 'BaseType' => '33643004', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '33644258' => { + 'Base' => { + '33643027' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3118759' + } + }, + 'Type' => 'Class' + }, + '33725457' => { + 'BaseType' => '33644258', + 'Header' => 'configurator.h', + 'Line' => '63', + 'Name' => 'log4cxx::spi::ConfiguratorPtr', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '33729447' => { + 'BaseType' => '5660980', + 'Name' => 'log4cxx::PropertyConfigurator const', + 'Type' => 'Const' + }, + '33729452' => { + 'Base' => { + '1909459' => { + 'pos' => '0' + } + }, + 'Line' => '49', 'Memb' => { '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - }, - '1' => { - 'name' => 'address', - 'offset' => '8', - 'type' => '7592264' - }, - '2' => { - 'name' => 'port', - 'offset' => '24', - 'type' => '50231' + 'access' => 'private', + 'name' => 'm_config', + 'offset' => '22', + 'type' => '33725457' } }, - 'Name' => 'struct log4cxx::helpers::Socket::SocketPrivate', - 'NameSpace' => 'log4cxx::helpers::Socket', - 'Protected' => 1, + 'Name' => 'log4cxx::ConfiguratorWatchdog', + 'NameSpace' => 'log4cxx', 'Size' => '32', - 'Type' => 'Struct', + 'Source' => 'optionconverter.cpp', + 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Socket::SocketPrivate::~SocketPrivate() [_ZN7log4cxx7helpers6Socket13SocketPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Socket::SocketPrivate::~SocketPrivate() [_ZN7log4cxx7helpers6Socket13SocketPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Socket::SocketPrivate) [_ZTIN7log4cxx7helpers6Socket13SocketPrivateE]' + '16' => '(int (*)(...)) log4cxx::ConfiguratorWatchdog::~ConfiguratorWatchdog() [_ZN7log4cxx20ConfiguratorWatchdogD2Ev]', + '24' => '(int (*)(...)) log4cxx::ConfiguratorWatchdog::~ConfiguratorWatchdog() [_ZN7log4cxx20ConfiguratorWatchdogD0Ev]', + '32' => '(int (*)(...)) log4cxx::ConfiguratorWatchdog::doOnChange() [_ZN7log4cxx20ConfiguratorWatchdog10doOnChangeEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::ConfiguratorWatchdog) [_ZTIN7log4cxx20ConfiguratorWatchdogE]' } }, - '20761588' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'socket.h', - 'Line' => '50', - 'Name' => 'log4cxx::helpers::Socket::ClazzSocket', - 'NameSpace' => 'log4cxx::helpers::Socket', + '33742600' => { + 'BaseType' => '33643308', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Socket::ClazzSocket::~ClazzSocket() [_ZN7log4cxx7helpers6Socket11ClazzSocketD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Socket::ClazzSocket::~ClazzSocket() [_ZN7log4cxx7helpers6Socket11ClazzSocketD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Socket::ClazzSocket::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers6Socket11ClazzSocket7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Socket::ClazzSocket) [_ZTIN7log4cxx7helpers6Socket11ClazzSocketE]' - } + 'Type' => 'Pointer' + }, + '33742792' => { + 'BaseType' => '33742797', + 'Name' => 'char const[19]&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '33742797' => { + 'BaseType' => '191037', + 'Name' => 'char const[19]', + 'Size' => '19', + 'Type' => 'Array' }, - '20761745' => { - 'BaseType' => '20761588', - 'Name' => 'log4cxx::helpers::Socket::ClazzSocket const', + '33743043' => { + 'BaseType' => '5679478', + 'Name' => 'log4cxx::PropertyConfigurator*const', 'Size' => '8', 'Type' => 'Const' }, - '20762241' => { - 'BaseType' => '20662270', - 'Name' => 'log4cxx::helpers::Socket const', - 'Size' => '16', + '33743660' => { + 'BaseType' => '33729447', + 'Name' => 'log4cxx::PropertyConfigurator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '33743830' => { + 'BaseType' => '33729452', + 'Name' => 'log4cxx::ConfiguratorWatchdog*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '33743835' => { + 'BaseType' => '33743830', + 'Name' => 'log4cxx::ConfiguratorWatchdog*const', + 'Size' => '8', 'Type' => 'Const' }, - '20762246' => { + '34036427' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -122059,356 +123820,176 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '20761588' + 'type' => '3116500' } }, 'Type' => 'Class' }, - '20763348' => { - 'BaseType' => '7592264', - 'Name' => 'log4cxx::helpers::InetAddressPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '20763353' => { - 'BaseType' => '20740545', - 'Header' => 'socket.h', - 'Line' => '33', - 'Name' => 'log4cxx::helpers::SocketUniquePtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '20763476' => { - 'BaseType' => '20761457', - 'Name' => 'struct log4cxx::helpers::Socket::SocketPrivate*', + '34038421' => { + 'BaseType' => '34036427', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '20763482' => { - 'BaseType' => '20763476', - 'Name' => 'struct log4cxx::helpers::Socket::SocketPrivate*const', + '34038426' => { + 'BaseType' => '34038421', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '20764191' => { - 'BaseType' => '20762246', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20764197' => { - 'BaseType' => '20764191', - 'Name' => 'log4cxx::helpers::WideLife*const', + '34038827' => { + 'BaseType' => '3134027', + 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream*const', 'Size' => '8', 'Type' => 'Const' }, - '20764316' => { - 'BaseType' => '20662270', - 'Name' => 'log4cxx::helpers::Socket*', + '34038837' => { + 'BaseType' => '3134032', + 'Name' => 'log4cxx::helpers::OutputStream::ClazzOutputStream const*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '20764322' => { - 'BaseType' => '20764316', - 'Name' => 'log4cxx::helpers::Socket*const', - 'Size' => '8', + '34245159' => { + 'BaseType' => '3115683', + 'Name' => 'log4cxx::helpers::OutputStreamWriter const', + 'Size' => '16', 'Type' => 'Const' }, - '20764613' => { - 'BaseType' => '20667357', - 'Name' => 'log4cxx::helpers::APRSocket*const', + '34245665' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3115697' + } + }, + 'Type' => 'Class' }, - '20764951' => { - 'BaseType' => '20762241', - 'Name' => 'log4cxx::helpers::Socket const*', + '34248804' => { + 'BaseType' => '34245665', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '20764957' => { - 'BaseType' => '20764951', - 'Name' => 'log4cxx::helpers::Socket const*const', + '34248809' => { + 'BaseType' => '34248804', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '20764962' => { - 'BaseType' => '7592264', - 'Name' => 'log4cxx::helpers::InetAddressPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '20765003' => { - 'BaseType' => '20763348', - 'Name' => 'log4cxx::helpers::InetAddressPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '20765009' => { - 'BaseType' => '20761588', - 'Name' => 'log4cxx::helpers::Socket::ClazzSocket*', + '34249435' => { + 'BaseType' => '34245159', + 'Name' => 'log4cxx::helpers::OutputStreamWriter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '20765015' => { - 'BaseType' => '20765009', - 'Name' => 'log4cxx::helpers::Socket::ClazzSocket*const', + '34249440' => { + 'BaseType' => '34249435', + 'Name' => 'log4cxx::helpers::OutputStreamWriter const*const', 'Size' => '8', 'Type' => 'Const' }, - '20765020' => { - 'BaseType' => '20761745', - 'Name' => 'log4cxx::helpers::Socket::ClazzSocket const*', + '34249445' => { + 'BaseType' => '3115683', + 'Name' => 'log4cxx::helpers::OutputStreamWriter*', 'Size' => '8', 'Type' => 'Pointer' }, - '20765026' => { - 'BaseType' => '20765020', - 'Name' => 'log4cxx::helpers::Socket::ClazzSocket const*const', + '34249450' => { + 'BaseType' => '34249445', + 'Name' => 'log4cxx::helpers::OutputStreamWriter*const', 'Size' => '8', 'Type' => 'Const' }, - '20861149' => { - 'Base' => { - '20761457' => { - 'pos' => '0' - } - }, - 'Line' => '31', - 'Memb' => { - '0' => { - 'name' => 'pool', - 'offset' => '32', - 'type' => '62082' - }, - '1' => { - 'name' => 'socket', - 'offset' => '48', - 'type' => '20457413' - } - }, - 'Name' => 'struct log4cxx::helpers::APRSocket::APRSocketPriv', - 'NameSpace' => 'log4cxx::helpers::APRSocket', - 'Private' => 1, - 'Size' => '56', - 'Source' => 'aprsocket.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::APRSocket::APRSocketPriv::~APRSocketPriv() [_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::APRSocket::APRSocketPriv::~APRSocketPriv() [_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRSocket::APRSocketPriv) [_ZTIN7log4cxx7helpers9APRSocket13APRSocketPrivE]' - } - }, - '20864983' => { - 'BaseType' => '20861149', - 'Name' => 'struct log4cxx::helpers::APRSocket::APRSocketPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '20864989' => { - 'BaseType' => '20864983', - 'Name' => 'struct log4cxx::helpers::APRSocket::APRSocketPriv*const', + '34249470' => { + 'BaseType' => '3133997', + 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter*const', 'Size' => '8', 'Type' => 'Const' }, - '20978982' => { - 'Base' => { - '21004800' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '20564938' - } - }, - 'Type' => 'Class' - }, - '20979134' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '20978982' - } - }, - 'Type' => 'Struct' - }, - '20979148' => { - 'BaseType' => '20667257', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', + '34249480' => { + 'BaseType' => '3134002', + 'Name' => 'log4cxx::helpers::OutputStreamWriter::ClazzOutputStreamWriter const*const', 'Size' => '8', - 'Type' => 'Typedef' - }, - '20979397' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '20979596' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20564938' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '20978982' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '20979410' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', + '34463068' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { - 'name' => '_M_start', + 'access' => 'private', + 'name' => 'storage', 'offset' => '0', - 'type' => '20979584' - }, - '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '20979584' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '20979584' + 'type' => '197961' } }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '20979584' => { - 'BaseType' => '21005366', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Typedef' - }, - '20979596' => { - 'Base' => { - '20978982' => { - 'pos' => '0' - }, - '20979410' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '20980374' => { - 'Base' => { - '20979397' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', - 'NameSpace' => 'std', - 'Size' => '24', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '20564938' + 'key' => 'T', + 'type' => '3120376' } }, 'Type' => 'Class' }, - '21004800' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20564938' - } - }, - 'Type' => 'Class' + '34465756' => { + 'BaseType' => '34463068', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '21005165' => { - 'Base' => { - '20979134' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '20978982' - } - }, - 'Type' => 'Struct' + '34465761' => { + 'BaseType' => '34465756', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' }, - '21005366' => { - 'BaseType' => '20979148', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', + '34466205' => { + 'BaseType' => '3134097', + 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter*const', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Const' + }, + '34466215' => { + 'BaseType' => '3134102', + 'Name' => 'log4cxx::pattern::PatternConverter::ClazzPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '21022416' => { + '3463' => { + 'BaseType' => '190225', + 'Header' => 'c++config.h', + 'Line' => '280', + 'Name' => 'std::size_t', + 'NameSpace' => 'std', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '34956498' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -122416,2315 +123997,1408 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '21024351' + 'type' => '3121199' } }, 'Type' => 'Class' }, - '21023268' => { - 'BaseType' => '20580832', - 'Name' => 'log4cxx::helpers::SocketPtr const', + '34964157' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'relativetimepatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter', + 'NameSpace' => 'log4cxx::pattern', 'Size' => '16', - 'Type' => 'Const' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::RelativeTimePatternConverter) [_ZTIN7log4cxx7pattern28RelativeTimePatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::~RelativeTimePatternConverter() [_ZN7log4cxx7pattern28RelativeTimePatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::~RelativeTimePatternConverter() [_ZN7log4cxx7pattern28RelativeTimePatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::getClass() const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } }, - '21024333' => { + '34964182' => { 'Base' => { - '407542' => { + '208442' => { 'pos' => '0' } }, - 'Header' => 'telnetappender.h', - 'Line' => '64', - 'Name' => 'log4cxx::net::TelnetAppender', - 'NameSpace' => 'log4cxx::net', + 'Header' => 'relativetimepatternconverter.h', + 'Line' => '38', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter', + 'NameSpace' => 'log4cxx::pattern::RelativeTimePatternConverter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter::~ClazzRelativeTimePatternConverter() [_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter::~ClazzRelativeTimePatternConverter() [_ZN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter) [_ZTIN7log4cxx7pattern28RelativeTimePatternConverter33ClazzRelativeTimePatternConverterE]' + } + }, + '34964300' => { + 'BaseType' => '34964182', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '34964841' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'propertiespatternconverter.h', + 'Line' => '39', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter', + 'NameSpace' => 'log4cxx::pattern', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern26PropertiesPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::TelnetAppender) [_ZTIN7log4cxx3net14TelnetAppenderE]', - '168' => '(int (*)(...)) log4cxx::net::TelnetAppender::~TelnetAppender() [_ZN7log4cxx3net14TelnetAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::net::TelnetAppender::~TelnetAppender() [_ZN7log4cxx3net14TelnetAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::net::TelnetAppender::getClass() const [_ZNK7log4cxx3net14TelnetAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::net::TelnetAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net14TelnetAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::net::TelnetAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net14TelnetAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::net::TelnetAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net14TelnetAppender15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::net::TelnetAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net14TelnetAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::net::TelnetAppender::close() [_ZN7log4cxx3net14TelnetAppender5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::net::TelnetAppender::requiresLayout() const [_ZNK7log4cxx3net14TelnetAppender14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::net::TelnetAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net14TelnetAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', '32' => '0u', '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PropertiesPatternConverter) [_ZTIN7log4cxx7pattern26PropertiesPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::~PropertiesPatternConverter() [_ZN7log4cxx7pattern26PropertiesPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::~PropertiesPatternConverter() [_ZN7log4cxx7pattern26PropertiesPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::getClass() const [_ZNK7log4cxx7pattern26PropertiesPatternConverter8getClassEv]', '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' + '80' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern26PropertiesPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern26PropertiesPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '21024351' => { + '34964866' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'telnetappender.h', - 'Line' => '73', - 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender', - 'NameSpace' => 'log4cxx::net::TelnetAppender', + 'Header' => 'propertiespatternconverter.h', + 'Line' => '45', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter', + 'NameSpace' => 'log4cxx::pattern::PropertiesPatternConverter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter::~ClazzPropertiesPatternConverter() [_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter::~ClazzPropertiesPatternConverter() [_ZN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter) [_ZTIN7log4cxx7pattern26PropertiesPatternConverter31ClazzPropertiesPatternConverterE]' + } + }, + '34964984' => { + 'BaseType' => '34964866', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter const', 'Size' => '8', + 'Type' => 'Const' + }, + '34965012' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'throwableinformationpatternconverter.h', + 'Line' => '37', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::TelnetAppender::ClazzTelnetAppender::~ClazzTelnetAppender() [_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD2Ev]', - '24' => '(int (*)(...)) log4cxx::net::TelnetAppender::ClazzTelnetAppender::~ClazzTelnetAppender() [_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::TelnetAppender::ClazzTelnetAppender::newInstance() const [_ZTch0_h0_NK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::net::TelnetAppender::ClazzTelnetAppender::getName[abi:cxx11]() const [_ZNK7log4cxx3net14TelnetAppender19ClazzTelnetAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::net::TelnetAppender::ClazzTelnetAppender::newInstance() const [_ZNK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::TelnetAppender::ClazzTelnetAppender) [_ZTIN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderE]' + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThrowableInformationPatternConverter) [_ZTIN7log4cxx7pattern36ThrowableInformationPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::~ThrowableInformationPatternConverter() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::~ThrowableInformationPatternConverter() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::getClass() const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '21024572' => { - 'BaseType' => '21024351', - 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21024577' => { + '34965037' => { 'Base' => { - '407560' => { + '208442' => { 'pos' => '0' } }, - 'Line' => '34', - 'Memb' => { - '0' => { - 'name' => 'port', - 'offset' => '184', - 'type' => '50231' - }, - '1' => { - 'name' => 'connections', - 'offset' => '192', - 'type' => '21025617' - }, - '2' => { - 'name' => 'encoding', - 'offset' => '216', - 'type' => '63706' - }, - '3' => { - 'name' => 'encoder', - 'offset' => '248', - 'type' => '1925609' - }, - '4' => { - 'name' => 'serverSocket', - 'offset' => '264', - 'type' => '20561209' - }, - '5' => { - 'name' => 'sh', - 'offset' => '272', - 'type' => '749238' - }, - '6' => { - 'name' => 'activeConnections', - 'offset' => '280', - 'type' => '50486' - } - }, - 'Name' => 'struct log4cxx::net::TelnetAppender::TelnetAppenderPriv', - 'NameSpace' => 'log4cxx::net::TelnetAppender', - 'Private' => 1, - 'Size' => '288', - 'Source' => 'telnetappender.cpp', - 'Type' => 'Struct', + 'Header' => 'throwableinformationpatternconverter.h', + 'Line' => '43', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter', + 'NameSpace' => 'log4cxx::pattern::ThrowableInformationPatternConverter', + 'Size' => '8', + 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::TelnetAppender::TelnetAppenderPriv::~TelnetAppenderPriv() [_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD2Ev]', - '24' => '(int (*)(...)) log4cxx::net::TelnetAppender::TelnetAppenderPriv::~TelnetAppenderPriv() [_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::TelnetAppender::TelnetAppenderPriv) [_ZTIN7log4cxx3net14TelnetAppender18TelnetAppenderPrivE]' + '16' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter::~ClazzThrowableInformationPatternConverter() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter::~ClazzThrowableInformationPatternConverter() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter) [_ZTIN7log4cxx7pattern36ThrowableInformationPatternConverter41ClazzThrowableInformationPatternConverterE]' } }, - '21025612' => { - 'BaseType' => '21024333', - 'Name' => 'log4cxx::net::TelnetAppender const', - 'Size' => '16', + '34965155' => { + 'BaseType' => '34965037', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter const', + 'Size' => '8', 'Type' => 'Const' }, - '21025617' => { - 'BaseType' => '20980374', - 'Header' => 'telnetappender.h', - 'Line' => '37', - 'Name' => 'log4cxx::net::ConnectionList', - 'NameSpace' => 'log4cxx::net', + '34967053' => { + 'BaseType' => '9814083', + 'Header' => 'patternlayout.h', + 'Line' => '28', + 'Name' => 'log4cxx::LoggingEventPatternConverterList', + 'NameSpace' => 'log4cxx', 'Size' => '24', 'Type' => 'Typedef' }, - '21029215' => { - 'BaseType' => '21022416', - 'Name' => 'log4cxx::helpers::WideLife*', + '34967065' => { + 'BaseType' => '16499831', + 'Header' => 'patternlayout.h', + 'Line' => '29', + 'Name' => 'log4cxx::FormattingInfoList', + 'NameSpace' => 'log4cxx', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '34977197' => { + 'BaseType' => '34956498', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '21029221' => { - 'BaseType' => '21029215', - 'Name' => 'log4cxx::helpers::WideLife*const', + '34977202' => { + 'BaseType' => '34977197', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '21030054' => { - 'BaseType' => '21024577', - 'Name' => 'struct log4cxx::net::TelnetAppender::TelnetAppenderPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21030060' => { - 'BaseType' => '21030054', - 'Name' => 'struct log4cxx::net::TelnetAppender::TelnetAppenderPriv*const', + '34980156' => { + 'BaseType' => '3133672', + 'Name' => 'log4cxx::PatternLayout const*const', 'Size' => '8', 'Type' => 'Const' }, - '21030642' => { - 'BaseType' => '21024333', - 'Name' => 'log4cxx::net::TelnetAppender*', + '34980171' => { + 'BaseType' => '34965037', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '21030648' => { - 'BaseType' => '21030642', - 'Name' => 'log4cxx::net::TelnetAppender*const', + '34980176' => { + 'BaseType' => '34965155', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '21031156' => { - 'BaseType' => '21025612', - 'Name' => 'log4cxx::net::TelnetAppender const*', + '34980181' => { + 'BaseType' => '34964866', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '21031162' => { - 'BaseType' => '21031156', - 'Name' => 'log4cxx::net::TelnetAppender const*const', + '34980186' => { + 'BaseType' => '34964984', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '21031196' => { - 'BaseType' => '21023268', - 'Name' => 'log4cxx::helpers::SocketPtr const&', + '34980221' => { + 'BaseType' => '34964182', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '21031238' => { - 'BaseType' => '21024351', - 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender*', + '34980226' => { + 'BaseType' => '34964300', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '21031244' => { - 'BaseType' => '21031238', - 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender*const', + '34980441' => { + 'BaseType' => '3134067', + 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout*const', 'Size' => '8', 'Type' => 'Const' }, - '21031249' => { - 'BaseType' => '21024572', - 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21031255' => { - 'BaseType' => '21031249', - 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender const*const', + '34980451' => { + 'BaseType' => '3134072', + 'Name' => 'log4cxx::PatternLayout::ClazzPatternLayout const*const', 'Size' => '8', 'Type' => 'Const' }, - '2105361' => { + '3506162' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3604044' + } + }, + 'Type' => 'Struct' + }, + '3507136' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '3509558' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3604044' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3506162' + } + }, + 'Type' => 'Class' + }, + '3507772' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3506162' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '3506162' + } + }, + 'Type' => 'Struct' + }, + '3508030' => { 'Base' => { - '2114548' => { + '3507772' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '208', + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '3506162' + } + }, + 'Type' => 'Struct' + }, + '3508336' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', 'Memb' => { '0' => { - 'name' => 'first', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '7336' - }, - '1' => { - 'name' => 'second', - 'offset' => '32', - 'type' => '2141385' + 'type' => '3606544' } }, - 'Name' => 'struct std::pairconst, log4cxx::helpers::Class const*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ByteArrayInputStream::ByteArrayInputStreamPriv*>', 'NameSpace' => 'std', - 'Size' => '40', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_T1', - 'type' => '7336' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' }, '1' => { - 'key' => '_T2', - 'type' => '2141385' + 'key' => '_Head', + 'type' => '3606544' } }, 'Type' => 'Struct' }, - '2105966' => { + '3508594' => { 'Base' => { - '2122585' => { + '3508030' => { 'pos' => '0' + }, + '3508336' => { + 'access' => 'private', + 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, log4cxx::helpers::Class const*> >', + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ByteArrayInputStream::ByteArrayInputStreamPriv*>', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { - 'name' => 'std::pair, std::allocator >, log4cxx::helpers::Class const*>' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '3606544' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '2106367' => { + '3509558' => { 'Base' => { - '2123180' => { + '3508594' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, log4cxx::helpers::Class const*> > >', + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { - 'name' => 'std::_Rb_tree_node, std::allocator >, log4cxx::helpers::Class const*> >' + 'key' => undef, + 'type' => '3606544' } }, 'Type' => 'Class' }, - '2106518' => { + '3511038' => { 'Base' => { - '556185' => { - 'pos' => '0' - } + '3507136' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '216', + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3604044' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3506162' + } + }, + 'Type' => 'Struct' + }, + '3511269' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { - 'name' => '_M_storage', - 'offset' => '32', - 'type' => '2123748' + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '3511038' } }, - 'Name' => 'struct std::_Rb_tree_nodeconst, log4cxx::helpers::Class const*> >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', - 'Size' => '72', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Val', - 'type' => '2105361' + 'key' => '_Tp', + 'type' => '3604044' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3506162' + } + }, + 'Type' => 'Class' + }, + '3511925' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3603265' } }, 'Type' => 'Struct' }, - '2106907' => { + '3512899' => { 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '436', + 'Header' => 'unique_ptr.h', + 'Line' => '128', 'Memb' => { '0' => { - 'access' => 'protected', - 'name' => '_M_impl', + 'access' => 'private', + 'name' => '_M_t', 'offset' => '0', - 'type' => '2106921' + 'type' => '3515321' } }, - 'Name' => 'std::_Rb_tree, std::pairconst, log4cxx::helpers::Class const*>, std::_Select1stconst, log4cxx::helpers::Class const*> >, std::less >, std::allocator, std::allocator >, log4cxx::helpers::Class const*> > >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', - 'Size' => '48', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Key', - 'type' => '68' + 'key' => '_Tp', + 'type' => '3603265' }, '1' => { - 'key' => '_Val', - 'type' => '2105361' + 'key' => '_Dp', + 'type' => '3511925' + } + }, + 'Type' => 'Class' + }, + '3513535' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3511925' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' }, - '2' => { - 'key' => '_KeyOfValue', - 'type' => '2116983' + '1' => { + 'key' => '_Head', + 'type' => '3511925' + } + }, + 'Type' => 'Struct' + }, + '3513793' => { + 'Base' => { + '3513535' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' }, - '3' => { - 'key' => '_Compare', - 'type' => '772116' + '1' => { + 'key' => undef, + 'type' => '3511925' + } + }, + 'Type' => 'Struct' + }, + '3514099' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3606824' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ByteBuffer::ByteBufferPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' }, - '4' => { - 'key' => '_Alloc', - 'type' => '2105966' + '1' => { + 'key' => '_Head', + 'type' => '3606824' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '2106921' => { + '3514357' => { 'Base' => { - '2106367' => { + '3513793' => { 'pos' => '0' }, - '556381' => { - 'pos' => '2' - }, - '772192' => { - 'pos' => '1' - } + '3514099' => { + 'access' => 'private', + 'pos' => '1' + } }, 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '673', - 'Name' => 'struct std::_Rb_tree, std::pairconst, log4cxx::helpers::Class const*>, std::_Select1stconst, log4cxx::helpers::Class const*> >, std::less >, std::allocator, std::allocator >, log4cxx::helpers::Class const*> > >::_Rb_tree_impl > >', - 'NameSpace' => 'std::_Rb_tree, std::pairconst, log4cxx::helpers::Class const*>, std::_Select1stconst, log4cxx::helpers::Class const*> >, std::less >, std::allocator, std::allocator >, log4cxx::helpers::Class const*> > >', - 'Protected' => 1, - 'Size' => '48', + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ByteBuffer::ByteBufferPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Key_compare', - 'type' => '772116' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '3606824' } }, 'Type' => 'Struct' }, - '211' => { - 'BaseType' => '48607', - 'Header' => 'basic_string.h', - 'Line' => '96', - 'Name' => 'std::__cxx11::basic_string::pointer', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '2112116' => { + '3515321' => { + 'Base' => { + '3514357' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'stl_map.h', - 'Line' => '100', + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '3606824' + } + }, + 'Type' => 'Class' + }, + '3516763' => { + 'Base' => { + '3512899' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3603265' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3511925' + } + }, + 'Type' => 'Struct' + }, + '3516965' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '2112129' + 'type' => '3516763' } }, - 'Name' => 'std::map, log4cxx::helpers::Class const*>', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', - 'Size' => '48', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Key', - 'type' => '68' + 'key' => '_Tp', + 'type' => '3603265' }, '1' => { - 'key' => '_Tp', - 'type' => '2141385' + 'key' => '_Dp', + 'type' => '3511925' } }, 'Type' => 'Class' }, - '2112129' => { - 'BaseType' => '2106907', - 'Header' => 'stl_map.h', - 'Line' => '148', - 'Name' => 'std::map, log4cxx::helpers::Class const*>::_Rep_type', - 'NameSpace' => 'std::map, log4cxx::helpers::Class const*>', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' - }, - '2114548' => { + '3545632' => { + 'Base' => { + '3583664' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '190', - 'Name' => 'std::__pair_baseconst, log4cxx::helpers::Class const*>', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_U1', - 'type' => '7336' - }, - '1' => { - 'key' => '_U2', - 'type' => '2141385' + 'name' => 'unsigned char' } }, 'Type' => 'Class' }, - '2116951' => { - 'Header' => 'stl_function.h', - 'Line' => '105', - 'Name' => 'struct std::unary_functionconst, log4cxx::helpers::Class const*>, std::__cxx11::basic_stringconst>', + '3545917' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Arg', - 'type' => '2105361' + 'type' => '3545632' + } + }, + 'Type' => 'Struct' + }, + '3545931' => { + 'BaseType' => '3608894', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits >::pointer', + 'NameSpace' => 'std::allocator_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '3546262' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '84', + 'Memb' => { + '0' => { + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '3546461' + } + }, + 'Name' => 'struct std::_Vector_base >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '190206' }, '1' => { - 'key' => '_Result', - 'type' => '7336' + 'key' => '_Alloc', + 'type' => '3545632' } }, 'Type' => 'Struct' }, - '2116983' => { + '3546275' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', + 'Memb' => { + '0' => { + 'name' => '_M_start', + 'offset' => '0', + 'type' => '3546449' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '3546449' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '3546449' + } + }, + 'Name' => 'struct std::_Vector_base >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '3546449' => { + 'BaseType' => '3584123', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base >::pointer', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '3546461' => { 'Base' => { - '2116951' => { + '3545632' => { 'pos' => '0' + }, + '3546275' => { + 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '1147', - 'Name' => 'struct std::_Select1stconst, log4cxx::helpers::Class const*> >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Pair', - 'type' => '2105361' - } - }, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '24', 'Type' => 'Struct' }, - '2122585' => { + '3547258' => { + 'Base' => { + '3546262' => { + 'access' => 'protected', + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, log4cxx::helpers::Class const*> >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector', + 'NameSpace' => 'std', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2105361' + 'type' => '190206' } }, 'Type' => 'Class' }, - '21230430' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '21231178' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21272323' - }, - '1' => { - 'key' => '_Dp', - 'type' => '21231055' - } - }, - 'Type' => 'Class' - }, - '21231055' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21272323' - } - }, - 'Type' => 'Struct' - }, - '21231178' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '21232711' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + '3550402' => { + 'BaseType' => '3547258', + 'Name' => 'std::vectorconst', + 'Size' => '24', + 'Type' => 'Const' + }, + '35669241' => { + 'BaseType' => '3130501', + 'Name' => 'log4cxx::pattern::PatternParser*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21272323' - }, - '1' => { - 'key' => '_Dp', - 'type' => '21231055' - } - }, - 'Type' => 'Class' - }, - '21231501' => { - 'Base' => { - '21231055' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '21231055' - } - }, - 'Type' => 'Struct' - }, - '21231754' => { - 'Base' => { - '21231501' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '21231055' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '2123180' => { + '3583664' => { 'Copied' => 1, 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, log4cxx::helpers::Class const*> > >', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator', 'NameSpace' => '__gnu_cxx', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2106518' + 'type' => '190206' } }, 'Type' => 'Class' }, - '21232050' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '21277226' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '21277226' - } - }, - 'Type' => 'Struct' - }, - '21232310' => { - 'Base' => { - '21231754' => { - 'pos' => '0' - }, - '21232050' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '21277226' - } - }, - 'Type' => 'Struct' - }, - '21232711' => { - 'Base' => { - '21232310' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '21277226' - } - }, - 'Type' => 'Class' - }, - '2123748' => { - 'Copied' => 1, - 'Header' => 'aligned_buffer.h', - 'Line' => '47', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '0', - 'type' => '2141749' - } + '3583908' => { + 'Base' => { + '3545917' => { + 'pos' => '0' + } }, - 'Name' => 'struct __gnu_cxx::__aligned_membufconst, log4cxx::helpers::Class const*> >', + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits >', 'NameSpace' => '__gnu_cxx', - 'Size' => '40', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '2105361' + 'key' => '_Alloc', + 'type' => '3545632' } }, 'Type' => 'Struct' }, - '21272305' => { - 'Base' => { - '407542' => { - 'pos' => '0' - } - }, - 'Header' => 'socketappenderskeleton.h', - 'Line' => '35', - 'Name' => 'log4cxx::net::SocketAppenderSkeleton', - 'NameSpace' => 'log4cxx::net', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::SocketAppenderSkeleton) [_ZTIN7log4cxx3net22SocketAppenderSkeletonE]', - '168' => '0u', - '176' => '0u', - '184' => '(int (*)(...)) log4cxx::AppenderSkeleton::getClass() const [_ZNK7log4cxx16AppenderSkeleton8getClassEv]', - '192' => '(int (*)(...)) log4cxx::AppenderSkeleton::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx16AppenderSkeleton10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::AppenderSkeleton::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx16AppenderSkeleton4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net22SocketAppenderSkeleton15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net22SocketAppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::close() [_ZN7log4cxx3net22SocketAppenderSkeleton5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::requiresLayout() const [_ZNK7log4cxx3net22SocketAppenderSkeleton14requiresLayoutEv]', - '304' => '(int (*)(...)) __cxa_pure_virtual', - '312' => '(int (*)(...)) __cxa_pure_virtual', - '32' => '0u', - '320' => '(int (*)(...)) __cxa_pure_virtual', - '328' => '(int (*)(...)) __cxa_pure_virtual', - '336' => '(int (*)(...)) __cxa_pure_virtual', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '21272323' => { - 'Base' => { - '407560' => { - 'pos' => '0' - } - }, - 'Header' => 'socketappenderskeleton_priv.h', - 'Line' => '29', - 'Memb' => { - '0' => { - 'name' => 'remoteHost', - 'offset' => '184', - 'type' => '63706' - }, - '1' => { - 'name' => 'address', - 'offset' => '216', - 'type' => '7592264' - }, - '2' => { - 'name' => 'port', - 'offset' => '232', - 'type' => '50231' - }, - '3' => { - 'name' => 'reconnectionDelay', - 'offset' => '236', - 'type' => '50231' - }, - '4' => { - 'name' => 'locationInfo', - 'offset' => '240', - 'type' => '50284' - }, - '5' => { - 'name' => 'thread', - 'offset' => '248', - 'type' => '749238' - }, - '6' => { - 'name' => 'interrupt', - 'offset' => '256', - 'type' => '761051' - }, - '7' => { - 'name' => 'interrupt_mutex', - 'offset' => '304', - 'type' => '41413' - } - }, - 'Name' => 'struct log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv', - 'NameSpace' => 'log4cxx::net::SocketAppenderSkeleton', - 'Protected' => 1, - 'Size' => '344', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv::~SocketAppenderSkeletonPriv() [_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD1Ev]', - '24' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv::~SocketAppenderSkeletonPriv() [_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv) [_ZTIN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivE]' - } - }, - '21273679' => { - 'BaseType' => '21272305', - 'Name' => 'log4cxx::net::SocketAppenderSkeleton const', - 'Size' => '16', - 'Type' => 'Const' - }, - '21277226' => { - 'BaseType' => '21272323', - 'Name' => 'struct log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21277232' => { - 'BaseType' => '21277226', - 'Name' => 'struct log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21277935' => { - 'BaseType' => '21272305', - 'Name' => 'log4cxx::net::SocketAppenderSkeleton*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21277941' => { - 'BaseType' => '21277935', - 'Name' => 'log4cxx::net::SocketAppenderSkeleton*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21278949' => { - 'BaseType' => '21273679', - 'Name' => 'log4cxx::net::SocketAppenderSkeleton const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21278955' => { - 'BaseType' => '21278949', - 'Name' => 'log4cxx::net::SocketAppenderSkeleton const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21278960' => { - 'BaseType' => '20580832', - 'Name' => 'log4cxx::helpers::SocketPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '2136707' => { - 'BaseType' => '2112116', - 'Header' => 'class.h', - 'Line' => '47', - 'Name' => 'log4cxx::helpers::Class::ClassMap', - 'NameSpace' => 'log4cxx::helpers::Class', - 'Private' => 1, - 'Size' => '48', + '3584123' => { + 'BaseType' => '3545931', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits >', + 'Size' => '8', 'Type' => 'Typedef' }, - '2137501' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '3603265' => { + 'Line' => '25', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => 'base', 'offset' => '0', - 'type' => '824420' + 'type' => '192483' + }, + '1' => { + 'name' => 'pos', + 'offset' => '8', + 'type' => '190816' + }, + '2' => { + 'name' => 'lim', + 'offset' => '22', + 'type' => '190816' + }, + '3' => { + 'name' => 'cap', + 'offset' => '36', + 'type' => '190816' } }, - 'Name' => 'log4cxx::helpers::WideLife, log4cxx::helpers::Class const*> >', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '2112116' - } - }, - 'Type' => 'Class' - }, - '2137863' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '182', - 'Name' => 'log4cxx::helpers::ClassNotFoundException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ClassNotFoundException::~ClassNotFoundException() [_ZN7log4cxx7helpers22ClassNotFoundExceptionD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ClassNotFoundException::~ClassNotFoundException() [_ZN7log4cxx7helpers22ClassNotFoundExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ClassNotFoundException) [_ZTIN7log4cxx7helpers22ClassNotFoundExceptionE]' - } + 'Name' => 'struct log4cxx::helpers::ByteBuffer::ByteBufferPriv', + 'NameSpace' => 'log4cxx::helpers::ByteBuffer', + 'Private' => 1, + 'Size' => '32', + 'Source' => 'bytebuffer.cpp', + 'Type' => 'Struct' }, - '2138046' => { - 'BaseType' => '2137863', - 'Name' => 'log4cxx::helpers::ClassNotFoundException const', - 'Size' => '144', + '3603780' => { + 'BaseType' => '208311', + 'Name' => 'log4cxx::helpers::ByteBuffer const', + 'Size' => '8', 'Type' => 'Const' }, - '2138051' => { + '3604026' => { 'Base' => { - '832107' => { - 'pos' => '0' - } + '3605480' => { + 'pos' => '0' + } }, - 'Header' => 'exception.h', - 'Line' => '169', - 'Name' => 'log4cxx::helpers::InstantiationException', + 'Header' => 'bytearrayinputstream.h', + 'Line' => '35', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '3511269' + } + }, + 'Name' => 'log4cxx::helpers::ByteArrayInputStream', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', + 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::InstantiationException::~InstantiationException() [_ZN7log4cxx7helpers22InstantiationExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::InstantiationException::~InstantiationException() [_ZN7log4cxx7helpers22InstantiationExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InstantiationException) [_ZTIN7log4cxx7helpers22InstantiationExceptionE]' + '16' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::~ByteArrayInputStream() [_ZN7log4cxx7helpers20ByteArrayInputStreamD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::~ByteArrayInputStream() [_ZN7log4cxx7helpers20ByteArrayInputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::getClass() const [_ZNK7log4cxx7helpers20ByteArrayInputStream8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers20ByteArrayInputStream10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers20ByteArrayInputStream4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::read(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers20ByteArrayInputStream4readERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::close() [_ZN7log4cxx7helpers20ByteArrayInputStream5closeEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ByteArrayInputStream) [_ZTIN7log4cxx7helpers20ByteArrayInputStreamE]' } }, - '2138208' => { - 'BaseType' => '2138051', - 'Name' => 'log4cxx::helpers::InstantiationException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '2139269' => { - 'BaseType' => '2064115', - 'Name' => 'std::locale const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2139275' => { - 'BaseType' => '2062996', - 'Name' => 'std::locale::_Impl*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2139316' => { - 'BaseType' => '2139322', - 'Name' => 'std::locale::facet const**', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2139322' => { - 'BaseType' => '2064109', - 'Name' => 'std::locale::facet const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2141385' => { - 'BaseType' => '62703', - 'Name' => 'log4cxx::helpers::Class const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2141391' => { - 'BaseType' => '2141385', - 'Name' => 'log4cxx::helpers::Class const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2141438' => { - 'BaseType' => '2137501', - 'Name' => 'log4cxx::helpers::WideLife, log4cxx::helpers::Class const*> >*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2141444' => { - 'BaseType' => '2141438', - 'Name' => 'log4cxx::helpers::WideLife, log4cxx::helpers::Class const*> >*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2141749' => { - 'BaseType' => '50179', - 'Name' => 'unsigned char[40]', - 'Size' => '40', - 'Type' => 'Array' - }, - '2141869' => { - 'BaseType' => '62698', - 'Name' => 'log4cxx::helpers::Class*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2141875' => { - 'BaseType' => '2141869', - 'Name' => 'log4cxx::helpers::Class*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2141886' => { - 'BaseType' => '2136707', - 'Name' => 'log4cxx::helpers::Class::ClassMap&', - 'Size' => '8', - 'Type' => 'Ref' + '3604044' => { + 'Line' => '29', + 'Memb' => { + '0' => { + 'name' => 'buf', + 'offset' => '0', + 'type' => '3604708' + }, + '1' => { + 'name' => 'pos', + 'offset' => '36', + 'type' => '190816' + } + }, + 'Name' => 'struct log4cxx::helpers::ByteArrayInputStream::ByteArrayInputStreamPriv', + 'NameSpace' => 'log4cxx::helpers::ByteArrayInputStream', + 'Private' => 1, + 'Size' => '32', + 'Source' => 'bytearrayinputstream.cpp', + 'Type' => 'Struct' }, - '2142284' => { - 'BaseType' => '2137863', - 'Name' => 'log4cxx::helpers::ClassNotFoundException*', + '3604142' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'bytearrayinputstream.h', + 'Line' => '41', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream', + 'NameSpace' => 'log4cxx::helpers::ByteArrayInputStream', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream::~ClazzByteArrayInputStream() [_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream::~ClazzByteArrayInputStream() [_ZN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStream7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream) [_ZTIN7log4cxx7helpers20ByteArrayInputStream25ClazzByteArrayInputStreamE]' + } }, - '2142290' => { - 'BaseType' => '2142284', - 'Name' => 'log4cxx::helpers::ClassNotFoundException*const', + '3604290' => { + 'BaseType' => '3604142', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream const', 'Size' => '8', 'Type' => 'Const' }, - '2142295' => { - 'BaseType' => '2138046', - 'Name' => 'log4cxx::helpers::ClassNotFoundException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '2142301' => { - 'BaseType' => '2137863', - 'Name' => 'log4cxx::helpers::ClassNotFoundException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '2142307' => { - 'BaseType' => '2138051', - 'Name' => 'log4cxx::helpers::InstantiationException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2142313' => { - 'BaseType' => '2142307', - 'Name' => 'log4cxx::helpers::InstantiationException*const', - 'Size' => '8', + '3604674' => { + 'BaseType' => '3604026', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream const', + 'Size' => '16', 'Type' => 'Const' }, - '2142318' => { - 'BaseType' => '2138208', - 'Name' => 'log4cxx::helpers::InstantiationException const&', - 'Size' => '8', - 'Type' => 'Ref' + '3604708' => { + 'BaseType' => '3547258', + 'Header' => 'bytearrayinputstream.h', + 'Line' => '30', + 'Name' => 'log4cxx::helpers::ByteList', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '24', + 'Type' => 'Typedef' }, - '2142324' => { - 'BaseType' => '2138051', - 'Name' => 'log4cxx::helpers::InstantiationException&', + '3604725' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Ref' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3604142' + } + }, + 'Type' => 'Class' }, - '21528499' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21559242' - } - }, - 'Type' => 'Struct' - }, - '21528585' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '21530119' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21559242' - }, - '1' => { - 'key' => '_Dp', - 'type' => '21528499' - } - }, - 'Type' => 'Class' - }, - '21528908' => { - 'Base' => { - '21528499' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '21528499' - } - }, - 'Type' => 'Struct' - }, - '21529161' => { - 'Base' => { - '21528908' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '21528499' - } - }, - 'Type' => 'Struct' - }, - '21529459' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '21561211' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::SocketOutputStream::SocketOutputStreamPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '21561211' - } - }, - 'Type' => 'Struct' - }, - '21529719' => { - 'Base' => { - '21529161' => { - 'pos' => '0' - }, - '21529459' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::SocketOutputStream::SocketOutputStreamPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '21561211' - } - }, - 'Type' => 'Struct' - }, - '21530119' => { - 'Base' => { - '21529719' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '21561211' - } - }, - 'Type' => 'Class' - }, - '21530448' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '21528585' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21559242' - }, - '1' => { - 'key' => '_Dp', - 'type' => '21528499' - } - }, - 'Type' => 'Class' - }, - '21559224' => { - 'Base' => { - '1425696' => { - 'pos' => '0' - } - }, - 'Header' => 'socketoutputstream.h', - 'Line' => '31', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '21530448' - } - }, - 'Name' => 'log4cxx::helpers::SocketOutputStream', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::~SocketOutputStream() [_ZN7log4cxx7helpers18SocketOutputStreamD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::~SocketOutputStream() [_ZN7log4cxx7helpers18SocketOutputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::getClass() const [_ZNK7log4cxx7helpers18SocketOutputStream8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers18SocketOutputStream10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers18SocketOutputStream4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18SocketOutputStream5closeERNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18SocketOutputStream5flushERNS0_4PoolE]', - '72' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::write(log4cxx::helpers::ByteBuffer&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18SocketOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SocketOutputStream) [_ZTIN7log4cxx7helpers18SocketOutputStreamE]' - } - }, - '21559242' => { - 'Line' => '29', - 'Memb' => { - '0' => { - 'name' => 'array', - 'offset' => '0', - 'type' => '1339705' - }, - '1' => { - 'name' => 'socket', - 'offset' => '24', - 'type' => '20580832' - } - }, - 'Name' => 'struct log4cxx::helpers::SocketOutputStream::SocketOutputStreamPrivate', - 'NameSpace' => 'log4cxx::helpers::SocketOutputStream', - 'Private' => 1, - 'Size' => '40', - 'Source' => 'socketoutputstream.cpp', - 'Type' => 'Struct' - }, - '21559331' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'socketoutputstream.h', - 'Line' => '34', - 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream', - 'NameSpace' => 'log4cxx::helpers::SocketOutputStream', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream::~ClazzSocketOutputStream() [_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream::~ClazzSocketOutputStream() [_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStream7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream) [_ZTIN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamE]' - } - }, - '21559489' => { - 'BaseType' => '21559331', - 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21559934' => { - 'BaseType' => '21559224', - 'Name' => 'log4cxx::helpers::SocketOutputStream const', - 'Size' => '16', - 'Type' => 'Const' - }, - '21559968' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '21559331' - } - }, - 'Type' => 'Class' - }, - '21561211' => { - 'BaseType' => '21559242', - 'Name' => 'struct log4cxx::helpers::SocketOutputStream::SocketOutputStreamPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21562644' => { - 'BaseType' => '21559968', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21562650' => { - 'BaseType' => '21562644', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21562800' => { - 'BaseType' => '21559934', - 'Name' => 'log4cxx::helpers::SocketOutputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21562806' => { - 'BaseType' => '21562800', - 'Name' => 'log4cxx::helpers::SocketOutputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21562811' => { - 'BaseType' => '21559224', - 'Name' => 'log4cxx::helpers::SocketOutputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21562817' => { - 'BaseType' => '21562811', - 'Name' => 'log4cxx::helpers::SocketOutputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21562840' => { - 'BaseType' => '21559331', - 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21562846' => { - 'BaseType' => '21562840', - 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21562851' => { - 'BaseType' => '21559489', - 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21562857' => { - 'BaseType' => '21562851', - 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21692147' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '21694039' - } - }, - 'Type' => 'Class' - }, - '21694021' => { - 'Base' => { - '21272305' => { - 'pos' => '0' - } - }, - 'Header' => 'xmlsocketappender.h', - 'Line' => '99', - 'Name' => 'log4cxx::net::XMLSocketAppender', - 'NameSpace' => 'log4cxx::net', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::XMLSocketAppender) [_ZTIN7log4cxx3net17XMLSocketAppenderE]', - '168' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::~XMLSocketAppender() [_ZN7log4cxx3net17XMLSocketAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::~XMLSocketAppender() [_ZN7log4cxx3net17XMLSocketAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::getClass() const [_ZNK7log4cxx3net17XMLSocketAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net17XMLSocketAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net17XMLSocketAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net22SocketAppenderSkeleton15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net22SocketAppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::close() [_ZN7log4cxx3net22SocketAppenderSkeleton5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::requiresLayout() const [_ZNK7log4cxx3net22SocketAppenderSkeleton14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net17XMLSocketAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '312' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::setSocket(std::shared_ptr&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net17XMLSocketAppender9setSocketERSt10shared_ptrINS_7helpers6SocketEERNS3_4PoolE]', - '32' => '0u', - '320' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::cleanUp(log4cxx::helpers::Pool&) [_ZN7log4cxx3net17XMLSocketAppender7cleanUpERNS_7helpers4PoolE]', - '328' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::getDefaultDelay() const [_ZNK7log4cxx3net17XMLSocketAppender15getDefaultDelayEv]', - '336' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::getDefaultPort() const [_ZNK7log4cxx3net17XMLSocketAppender14getDefaultPortEv]', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '21694039' => { - 'Base' => { - '62698' => { + '3605480' => { + 'Base' => { + '209311' => { 'pos' => '0' } - }, - 'Header' => 'xmlsocketappender.h', - 'Line' => '117', - 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender', - 'NameSpace' => 'log4cxx::net::XMLSocketAppender', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::~ClazzXMLSocketAppender() [_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD2Ev]', - '24' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::~ClazzXMLSocketAppender() [_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::newInstance() const [_ZTch0_h0_NK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::getName[abi:cxx11]() const [_ZNK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::newInstance() const [_ZNK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender) [_ZTIN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderE]' - } - }, - '21694260' => { - 'BaseType' => '21694039', - 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21694265' => { - 'Base' => { - '21272323' => { - 'pos' => '0' - } - }, - 'Line' => '37', - 'Memb' => { - '0' => { - 'name' => 'writer', - 'offset' => '344', - 'type' => '1248337' - } - }, - 'Name' => 'struct log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv', - 'NameSpace' => 'log4cxx::net::XMLSocketAppender', - 'Private' => 1, - 'Size' => '360', - 'Source' => 'xmlsocketappender.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv::~XMLSocketAppenderPriv() [_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD2Ev]', - '24' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv::~XMLSocketAppenderPriv() [_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv) [_ZTIN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivE]' - } - }, - '21695188' => { - 'BaseType' => '21694021', - 'Name' => 'log4cxx::net::XMLSocketAppender const', - 'Size' => '16', - 'Type' => 'Const' - }, - '21698576' => { - 'BaseType' => '21692147', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21698582' => { - 'BaseType' => '21698576', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21698750' => { - 'BaseType' => '21694265', - 'Name' => 'struct log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21698756' => { - 'BaseType' => '21698750', - 'Name' => 'struct log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21701113' => { - 'BaseType' => '21695188', - 'Name' => 'log4cxx::net::XMLSocketAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21701119' => { - 'BaseType' => '21701113', - 'Name' => 'log4cxx::net::XMLSocketAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21701124' => { - 'BaseType' => '21694021', - 'Name' => 'log4cxx::net::XMLSocketAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21701130' => { - 'BaseType' => '21701124', - 'Name' => 'log4cxx::net::XMLSocketAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21701230' => { - 'BaseType' => '21694039', - 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21701236' => { - 'BaseType' => '21701230', - 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender*const', + }, + 'Header' => 'inputstream.h', + 'Line' => '34', + 'Name' => 'log4cxx::helpers::InputStream', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::InputStream::getClass() const [_ZNK7log4cxx7helpers11InputStream8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::InputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers11InputStream10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::InputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers11InputStream4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '64' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InputStream) [_ZTIN7log4cxx7helpers11InputStreamE]' + } + }, + '3605490' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'inputstream.h', + 'Line' => '37', + 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream', + 'NameSpace' => 'log4cxx::helpers::InputStream', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::InputStream::ClazzInputStream::~ClazzInputStream() [_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::InputStream::ClazzInputStream::~ClazzInputStream() [_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::InputStream::ClazzInputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers11InputStream16ClazzInputStream7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InputStream::ClazzInputStream) [_ZTIN7log4cxx7helpers11InputStream16ClazzInputStreamE]' + } + }, + '3605608' => { + 'BaseType' => '3605490', + 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3605731' => { + 'BaseType' => '3605480', + 'Name' => 'log4cxx::helpers::InputStream const', + 'Type' => 'Const' + }, + '3606544' => { + 'BaseType' => '3604044', + 'Name' => 'struct log4cxx::helpers::ByteArrayInputStream::ByteArrayInputStreamPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3606824' => { + 'BaseType' => '3603265', + 'Name' => 'struct log4cxx::helpers::ByteBuffer::ByteBufferPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3607044' => { + 'BaseType' => '208311', + 'Name' => 'log4cxx::helpers::ByteBuffer*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3607049' => { + 'BaseType' => '3603780', + 'Name' => 'log4cxx::helpers::ByteBuffer const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3608894' => { + 'BaseType' => '190206', + 'Name' => 'unsigned char*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3609074' => { + 'BaseType' => '3550402', + 'Name' => 'std::vectorconst&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '3609129' => { + 'BaseType' => '3604725', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3609134' => { + 'BaseType' => '3609129', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3609535' => { + 'BaseType' => '3604674', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3609540' => { + 'BaseType' => '3609535', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3609545' => { + 'BaseType' => '3604026', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3609550' => { + 'BaseType' => '3609545', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3609565' => { + 'BaseType' => '3604142', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3609570' => { + 'BaseType' => '3609565', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3609575' => { + 'BaseType' => '3604290', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3609580' => { + 'BaseType' => '3609575', + 'Name' => 'log4cxx::helpers::ByteArrayInputStream::ClazzByteArrayInputStream const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3609585' => { + 'BaseType' => '3605490', + 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3609590' => { + 'BaseType' => '3605608', + 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3610658' => { + 'BaseType' => '3605480', + 'Name' => 'log4cxx::helpers::InputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3610663' => { + 'BaseType' => '3610658', + 'Name' => 'log4cxx::helpers::InputStream*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '3625381' => { + 'BaseType' => '3605731', + 'Name' => 'log4cxx::helpers::InputStream const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3625386' => { + 'BaseType' => '3625381', + 'Name' => 'log4cxx::helpers::InputStream const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '36347585' => { + 'BaseType' => '5677534', + 'Name' => 'log4cxx::helpers::Properties*const', 'Size' => '8', 'Type' => 'Const' }, - '21701241' => { - 'BaseType' => '21694260', - 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21701247' => { - 'BaseType' => '21701241', - 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender const*const', + '36347605' => { + 'BaseType' => '5677549', + 'Name' => 'log4cxx::helpers::Properties const*const', 'Size' => '8', 'Type' => 'Const' }, - '21926854' => { + '36347883' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', + 'Line' => '27', + 'Name' => 'PropertyParser', 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21970488' - } - }, - 'Type' => 'Struct' - }, - '21926940' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '21928473' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21970488' - }, - '1' => { - 'key' => '_Dp', - 'type' => '21926854' - } - }, + 'Source' => 'properties.cpp', 'Type' => 'Class' }, - '21927263' => { - 'Base' => { - '21926854' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '21926854' - } - }, - 'Type' => 'Struct' - }, - '21927516' => { - 'Base' => { - '21927263' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '21926854' - } - }, - 'Type' => 'Struct' - }, - '21927812' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '21971329' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::SyslogWriter::SyslogWriterPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '21971329' - } - }, - 'Type' => 'Struct' - }, - '21928072' => { - 'Base' => { - '21927516' => { - 'pos' => '0' - }, - '21927812' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::SyslogWriter::SyslogWriterPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '21971329' - } - }, - 'Type' => 'Struct' - }, - '21928473' => { - 'Base' => { - '21928072' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '36348070' => { + 'BaseType' => '36347883', + 'Name' => 'PropertyParser*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '21971329' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '21928802' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '21926940' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '36348075' => { + 'BaseType' => '36348070', + 'Name' => 'PropertyParser*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21970488' - }, - '1' => { - 'key' => '_Dp', - 'type' => '21926854' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '21938025' => { + '36738365' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20347336' + 'type' => '34964841' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '21938173' => { + '36738513' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20347336' + 'type' => '34964841' } }, 'Type' => 'Struct' }, - '21938187' => { - 'BaseType' => '20347336', + '36738527' => { + 'BaseType' => '34964841', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', 'Type' => 'Typedef' }, - '21938210' => { + '36738550' => { 'Base' => { - '21938025' => { + '36738365' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '21972850' + 'type' => '36822729' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '20347336' + 'type' => '34964841' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '21938496' => { - 'BaseType' => '21938187', + '36738831' => { + 'BaseType' => '36738527', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '21939027' => { - 'Base' => { - '21938210' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '20347336' - } - }, - 'Type' => 'Class' - }, - '21970475' => { - 'Header' => 'syslogwriter.h', - 'Line' => '33', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '21928802' - } - }, - 'Name' => 'log4cxx::helpers::SyslogWriter', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '21970488' => { - 'Line' => '29', - 'Memb' => { - '0' => { - 'name' => 'syslogHost', - 'offset' => '0', - 'type' => '63706' - }, - '1' => { - 'name' => 'syslogHostPort', - 'offset' => '32', - 'type' => '50231' - }, - '2' => { - 'name' => 'address', - 'offset' => '40', - 'type' => '7592264' - }, - '3' => { - 'name' => 'ds', - 'offset' => '56', - 'type' => '21971159' - } - }, - 'Name' => 'struct log4cxx::helpers::SyslogWriter::SyslogWriterPrivate', - 'NameSpace' => 'log4cxx::helpers::SyslogWriter', - 'Private' => 1, - 'Size' => '72', - 'Source' => 'syslogwriter.cpp', - 'Type' => 'Struct' - }, - '21971159' => { - 'BaseType' => '21939027', - 'Header' => 'datagramsocket.h', - 'Line' => '32', - 'Name' => 'log4cxx::helpers::DatagramSocketPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '21971329' => { - 'BaseType' => '21970488', - 'Name' => 'struct log4cxx::helpers::SyslogWriter::SyslogWriterPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21971613' => { - 'BaseType' => '21970475', - 'Name' => 'log4cxx::helpers::SyslogWriter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '21971619' => { - 'BaseType' => '21971613', - 'Name' => 'log4cxx::helpers::SyslogWriter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '21972850' => { - 'BaseType' => '21938496', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '22099845' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21970475' - } - }, - 'Type' => 'Struct' - }, - '22099968' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '22101500' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '21970475' - }, - '1' => { - 'key' => '_Dp', - 'type' => '22099845' - } - }, - 'Type' => 'Class' - }, - '22100291' => { - 'Base' => { - '22099845' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '22099845' - } - }, - 'Type' => 'Struct' - }, - '22100544' => { - 'Base' => { - '22100291' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '22099845' - } - }, - 'Type' => 'Struct' - }, - '22100840' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '21971613' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::SyslogWriter*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '21971613' - } - }, - 'Type' => 'Struct' - }, - '22101100' => { - 'Base' => { - '22100544' => { - 'pos' => '0' - }, - '22100840' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::SyslogWriter*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '21971613' - } - }, - 'Type' => 'Struct' - }, - '22101500' => { - 'Base' => { - '22101100' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '21971613' - } - }, - 'Type' => 'Class' + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' }, - '22101829' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '22099968' - } + '36739379' => { + 'Base' => { + '36738550' => { + 'pos' => '0' + } }, - 'Name' => 'std::unique_ptr >', + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '21970475' - }, - '1' => { - 'key' => '_Dp', - 'type' => '22099845' + 'type' => '34964841' } }, 'Type' => 'Class' }, - '22138053' => { + '36808280' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -124732,5459 +125406,7755 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '22139963' + 'type' => '34964866' } }, 'Type' => 'Class' }, - '22139945' => { - 'Base' => { - '407542' => { - 'pos' => '0' - } - }, - 'Header' => 'syslogappender.h', - 'Line' => '41', - 'Name' => 'log4cxx::net::SyslogAppender', - 'NameSpace' => 'log4cxx::net', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::SyslogAppender) [_ZTIN7log4cxx3net14SyslogAppenderE]', - '168' => '(int (*)(...)) log4cxx::net::SyslogAppender::~SyslogAppender() [_ZN7log4cxx3net14SyslogAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::net::SyslogAppender::~SyslogAppender() [_ZN7log4cxx3net14SyslogAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::net::SyslogAppender::getClass() const [_ZNK7log4cxx3net14SyslogAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::net::SyslogAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net14SyslogAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::net::SyslogAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net14SyslogAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::net::SyslogAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net14SyslogAppender15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::net::SyslogAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net14SyslogAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::net::SyslogAppender::close() [_ZN7log4cxx3net14SyslogAppender5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::net::SyslogAppender::requiresLayout() const [_ZNK7log4cxx3net14SyslogAppender14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::net::SyslogAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net14SyslogAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '22139963' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'syslogappender.h', - 'Line' => '44', - 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender', - 'NameSpace' => 'log4cxx::net::SyslogAppender', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::SyslogAppender::ClazzSyslogAppender::~ClazzSyslogAppender() [_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD1Ev]', - '24' => '(int (*)(...)) log4cxx::net::SyslogAppender::ClazzSyslogAppender::~ClazzSyslogAppender() [_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::SyslogAppender::ClazzSyslogAppender::newInstance() const [_ZTch0_h0_NK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::net::SyslogAppender::ClazzSyslogAppender::getName[abi:cxx11]() const [_ZNK7log4cxx3net14SyslogAppender19ClazzSyslogAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::net::SyslogAppender::ClazzSyslogAppender::newInstance() const [_ZNK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SyslogAppender::ClazzSyslogAppender) [_ZTIN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderE]' - } - }, - '22140184' => { - 'BaseType' => '22139963', - 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '22140189' => { + '36810617' => { 'Base' => { - '407560' => { - 'pos' => '0' - } + '3120371' => { + 'pos' => '0' + } }, - 'Header' => 'syslogappender_priv.h', - 'Line' => '57', + 'Line' => '33', 'Memb' => { '0' => { - 'name' => 'syslogFacility', - 'offset' => '184', - 'type' => '50231' - }, - '1' => { - 'name' => 'facilityStr', - 'offset' => '192', - 'type' => '63706' - }, - '2' => { - 'name' => 'facilityPrinting', - 'offset' => '224', - 'type' => '50284' - }, - '3' => { - 'name' => 'sw', - 'offset' => '232', - 'type' => '22101829' - }, - '4' => { - 'name' => 'syslogHost', - 'offset' => '240', - 'type' => '63706' - }, - '5' => { - 'name' => 'syslogHostPort', - 'offset' => '272', - 'type' => '50231' - }, - '6' => { - 'name' => 'maxMessageLength', - 'offset' => '276', - 'type' => '50231' + 'name' => 'option', + 'offset' => '114', + 'type' => '209673' } }, - 'Name' => 'struct log4cxx::net::SyslogAppender::SyslogAppenderPriv', - 'NameSpace' => 'log4cxx::net::SyslogAppender', + 'Name' => 'struct log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate', + 'NameSpace' => 'log4cxx::pattern::PropertiesPatternConverter', 'Private' => 1, - 'Size' => '280', + 'Size' => '104', + 'Source' => 'propertiespatternconverter.cpp', 'Type' => 'Struct', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::net::SyslogAppender::SyslogAppenderPriv::~SyslogAppenderPriv() [_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD1Ev]', - '24' => '(int (*)(...)) log4cxx::net::SyslogAppender::SyslogAppenderPriv::~SyslogAppenderPriv() [_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SyslogAppender::SyslogAppenderPriv) [_ZTIN7log4cxx3net14SyslogAppender18SyslogAppenderPrivE]' + '16' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate::~PropertiesPatternConverterPrivate() [_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate::~PropertiesPatternConverterPrivate() [_ZN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate) [_ZTIN7log4cxx7pattern26PropertiesPatternConverter33PropertiesPatternConverterPrivateE]' } }, - '22141479' => { - 'BaseType' => '22139945', - 'Name' => 'log4cxx::net::SyslogAppender const', + '36811183' => { + 'BaseType' => '34964841', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter const', 'Size' => '16', 'Type' => 'Const' }, - '22144590' => { - 'BaseType' => '22138053', - 'Name' => 'log4cxx::helpers::WideLife*', + '36822008' => { + 'BaseType' => '36808280', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '22144596' => { - 'BaseType' => '22144590', - 'Name' => 'log4cxx::helpers::WideLife*const', + '36822013' => { + 'BaseType' => '36822008', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '22144715' => { - 'BaseType' => '22140189', - 'Name' => 'struct log4cxx::net::SyslogAppender::SyslogAppenderPriv*', + '36822119' => { + 'BaseType' => '36810617', + 'Name' => 'struct log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '22144721' => { - 'BaseType' => '22144715', - 'Name' => 'struct log4cxx::net::SyslogAppender::SyslogAppenderPriv*const', + '36822124' => { + 'BaseType' => '36822119', + 'Name' => 'struct log4cxx::pattern::PropertiesPatternConverter::PropertiesPatternConverterPrivate*const', 'Size' => '8', 'Type' => 'Const' }, - '22145793' => { - 'BaseType' => '22141479', - 'Name' => 'log4cxx::net::SyslogAppender const*', + '36822729' => { + 'BaseType' => '36738831', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '22145799' => { - 'BaseType' => '22145793', - 'Name' => 'log4cxx::net::SyslogAppender const*const', + '36822759' => { + 'BaseType' => '36739379', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'RvalueRef' }, - '22145804' => { - 'BaseType' => '22139945', - 'Name' => 'log4cxx::net::SyslogAppender*', + '36822810' => { + 'BaseType' => '34964841', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '22145810' => { - 'BaseType' => '22145804', - 'Name' => 'log4cxx::net::SyslogAppender*const', + '36822815' => { + 'BaseType' => '36822810', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '22145898' => { - 'BaseType' => '22139963', - 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender*', + '36823379' => { + 'BaseType' => '36811183', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '22145904' => { - 'BaseType' => '22145898', - 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender*const', + '36823384' => { + 'BaseType' => '36823379', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '22145909' => { - 'BaseType' => '22140184', - 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender const*', + '36823583' => { + 'BaseType' => '34980181', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '22145915' => { - 'BaseType' => '22145909', - 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender const*const', + '36823593' => { + 'BaseType' => '34980186', + 'Name' => 'log4cxx::pattern::PropertiesPatternConverter::ClazzPropertiesPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '2239842' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2270651' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '2239990' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2270651' - } - }, - 'Type' => 'Struct' - }, - '2240004' => { - 'BaseType' => '2270651', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '2240027' => { - 'Base' => { - '2239842' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '2273627' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2270651' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '2240313' => { - 'BaseType' => '2240004', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '2240668' => { - 'Base' => { - '2240027' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2270651' - } - }, - 'Type' => 'Class' - }, - '22408480' => { + '37178208' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '22555428' + 'type' => '37455437' } }, 'Type' => 'Struct' }, - '22408566' => { + '37179182' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '22410099' + 'type' => '37181608' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '22555428' + 'type' => '37455437' }, '1' => { 'key' => '_Dp', - 'type' => '22408480' + 'type' => '37178208' } }, 'Type' => 'Class' }, - '22408889' => { - 'Base' => { - '22408480' => { - 'pos' => '0' - } - }, + '37179822' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '37178208' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '22408480' + 'type' => '37178208' } }, 'Type' => 'Struct' }, - '22409142' => { + '37180080' => { 'Base' => { - '22408889' => { + '37179822' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '22408480' + 'type' => '37178208' } }, 'Type' => 'Struct' }, - '22409438' => { + '37180386' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '22560875' + 'type' => '37476229' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::xml::DOMConfigurator::DOMConfiguratorPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::StringTokenizer::StringTokenizerPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '22560875' + 'type' => '37476229' } }, 'Type' => 'Struct' }, - '22409698' => { + '37180644' => { 'Base' => { - '22409142' => { + '37180080' => { 'pos' => '0' }, - '22409438' => { + '37180386' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::xml::DOMConfigurator::DOMConfiguratorPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '22560875' - } - }, - 'Type' => 'Struct' - }, - '2241007' => { - 'BaseType' => '2240668', - 'Name' => 'std::shared_ptrconst', - 'Size' => '16', - 'Type' => 'Const' - }, - '22410099' => { - 'Base' => { - '22409698' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '22560875' - } - }, - 'Type' => 'Class' - }, - '2241022' => { - 'Base' => { - '2254956' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::__cxx11::basic_string, std::allocator >' - } - }, - 'Type' => 'Class' - }, - '22410430' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '22408566' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '22555428' - }, - '1' => { - 'key' => '_Dp', - 'type' => '22408480' - } - }, - 'Type' => 'Class' - }, - '2241173' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits, std::allocator > > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '2241022' - } - }, - 'Type' => 'Struct' - }, - '2241187' => { - 'BaseType' => '61477', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits, std::allocator > > >::pointer', - 'NameSpace' => 'std::allocator_traits, std::allocator > > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '2241436' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '2241635' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator, std::allocator > > >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '68' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '2241022' - } - }, - 'Type' => 'Struct' - }, - '2241449' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', - 'Memb' => { - '0' => { - 'name' => '_M_start', - 'offset' => '0', - 'type' => '2241623' - }, - '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '2241623' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '2241623' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator, std::allocator > > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator, std::allocator > > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '2241623' => { - 'BaseType' => '2255523', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator, std::allocator > > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator, std::allocator > > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '2241635' => { - 'Base' => { - '2241022' => { - 'pos' => '0' - }, - '2241449' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator, std::allocator > > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator, std::allocator > > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '2242385' => { - 'Base' => { - '2241436' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '68' - } - }, - 'Type' => 'Class' - }, - '2245486' => { - 'BaseType' => '2242385', - 'Name' => 'std::vector >const', - 'Size' => '24', - 'Type' => 'Const' - }, - '2245506' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2270778' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '2245654' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2270778' - } - }, - 'Type' => 'Struct' - }, - '2245668' => { - 'BaseType' => '2270778', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '2245691' => { - 'Base' => { - '2245506' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '2273965' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2270778' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '2245977' => { - 'BaseType' => '2245668', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '2246871' => { - 'Base' => { - '2245691' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2270778' - } - }, - 'Type' => 'Class' - }, - '22486131' => { + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::StringTokenizer::StringTokenizerPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '37476229' + } + }, + 'Type' => 'Struct' + }, + '37181608' => { 'Base' => { - '22531553' => { + '37180644' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { - 'type' => '129326' + 'key' => undef, + 'type' => '37476229' } }, 'Type' => 'Class' }, - '22486283' => { + '37183050' => { + 'Base' => { + '37179182' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Alloc', - 'type' => '22486131' + 'key' => '_Tp', + 'type' => '37455437' + }, + '1' => { + 'key' => '_Dp', + 'type' => '37178208' } }, 'Type' => 'Struct' }, - '22486297' => { - 'BaseType' => '153680', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '22486697' => { + '37183252' => { 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { - 'name' => '_M_impl', + 'access' => 'private', + 'name' => '_M_t', 'offset' => '0', - 'type' => '22486896' + 'type' => '37183050' } }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', - 'Size' => '24', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '129326' + 'type' => '37455437' }, '1' => { - 'key' => '_Alloc', - 'type' => '22486131' + 'key' => '_Dp', + 'type' => '37178208' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '22486710' => { + '37300087' => { + 'Base' => { + '37368875' => { + 'access' => 'private', + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', + 'Header' => 'stl_pair.h', + 'Line' => '211', 'Memb' => { '0' => { - 'name' => '_M_start', + 'name' => 'first', 'offset' => '0', - 'type' => '22486884' + 'type' => '58800' }, '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '22486884' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '22486884' + 'name' => 'second', + 'offset' => '50', + 'type' => '871963' } }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '22486884' => { - 'BaseType' => '22532282', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '22486896' => { - 'Base' => { - '22486131' => { - 'pos' => '0' - }, - '22486710' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', + 'Name' => 'struct std::pairconst, std::shared_ptr >', + 'NameSpace' => 'std', + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_T1', + 'type' => '58800' + }, + '1' => { + 'key' => '_T2', + 'type' => '871963' + } + }, 'Type' => 'Struct' }, - '22487674' => { + '37300704' => { 'Base' => { - '22486697' => { - 'access' => 'protected', + '37425084' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, std::shared_ptr > >', 'NameSpace' => 'std', - 'Size' => '24', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '129326' + 'name' => 'std::pair, std::allocator >, std::shared_ptr >' } }, 'Type' => 'Class' }, - '22498150' => { + '37301373' => { + 'Base' => { + '37425708' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, std::shared_ptr > > >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '17104764' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'name' => 'std::_Rb_tree_node, std::allocator >, std::shared_ptr > >' } }, 'Type' => 'Class' }, - '22498298' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + '37301663' => { + 'Base' => { + '108124' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_tree.h', + 'Line' => '216', + 'Memb' => { + '0' => { + 'name' => '_M_storage', + 'offset' => '50', + 'type' => '37429291' + } + }, + 'Name' => 'struct std::_Rb_tree_nodeconst, std::shared_ptr > >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '80', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '17104764' + 'key' => '_Val', + 'type' => '37300087' } }, 'Type' => 'Struct' }, - '22498312' => { - 'BaseType' => '17104764', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '22498335' => { - 'Base' => { - '22498150' => { - 'pos' => '0' - } - }, + '37302099' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Header' => 'stl_tree.h', + 'Line' => '425', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_ptr', + 'access' => 'protected', + 'name' => '_M_impl', 'offset' => '0', - 'type' => '22567003' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '37302113' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '48', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '17104764' + 'key' => '_Key', + 'type' => '51677' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Val', + 'type' => '37300087' + }, + '2' => { + 'key' => '_KeyOfValue', + 'type' => '37387026' + }, + '3' => { + 'key' => '_Compare', + 'type' => '2359512' + }, + '4' => { + 'key' => '_Alloc', + 'type' => '37300704' } }, 'Type' => 'Class' }, - '22498621' => { - 'BaseType' => '22498312', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '22499449' => { + '37302113' => { 'Base' => { - '22498335' => { + '108320' => { + 'pos' => '2' + }, + '2359588' => { + 'pos' => '1' + }, + '37301373' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'stl_tree.h', + 'Line' => '660', + 'Name' => 'struct std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >::_Rb_tree_impl > >', + 'NameSpace' => 'std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >', + 'Protected' => 1, + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Key_compare', + 'type' => '2359512' + } + }, + 'Type' => 'Struct' + }, + '37307479' => { + 'Copied' => 1, + 'Header' => 'stl_map.h', + 'Line' => '100', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '37307492' + } + }, + 'Name' => 'std::map, std::shared_ptr >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '48', 'TParam' => { '0' => { + 'key' => '_Key', + 'type' => '51677' + }, + '1' => { 'key' => '_Tp', - 'type' => '17104764' + 'type' => '871963' } }, 'Type' => 'Class' }, - '22501950' => { + '37307492' => { + 'BaseType' => '37302099', + 'Header' => 'stl_map.h', + 'Line' => '150', + 'Name' => 'std::map, std::shared_ptr >::_Rep_type', + 'NameSpace' => 'std::map, std::shared_ptr >', + 'Private' => 1, + 'Size' => '48', + 'Type' => 'Typedef' + }, + '37335900' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '262822' + 'type' => '5657945' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '22502098' => { + '37336048' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '262822' + 'type' => '5657945' } }, 'Type' => 'Struct' }, - '22502112' => { - 'BaseType' => '262822', + '37336062' => { + 'BaseType' => '5657945', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '22502135' => { + '37336085' => { 'Base' => { - '22501950' => { + '37335900' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '22567225' + 'type' => '37482452' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '262822' + 'type' => '5657945' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '22502421' => { - 'BaseType' => '22502112', + '37336366' => { + 'BaseType' => '37336062', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '22503249' => { + '37337329' => { 'Base' => { - '22502135' => { + '37336085' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '262822' + 'type' => '5657945' } }, 'Type' => 'Class' }, - '22505750' => { + '37344295' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '407542' + 'type' => '5658321' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '22505898' => { + '37344443' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '407542' + 'type' => '5658321' } }, 'Type' => 'Struct' }, - '22505912' => { - 'BaseType' => '407542', + '37344457' => { + 'BaseType' => '5658321', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '22505935' => { + '37344480' => { 'Base' => { - '22505750' => { + '37344295' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '22567457' + 'type' => '37482699' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '407542' + 'type' => '5658321' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '22506221' => { - 'BaseType' => '22505912', + '37344761' => { + 'BaseType' => '37344457', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '22507049' => { + '37345597' => { 'Base' => { - '22505935' => { + '37344480' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '407542' + 'type' => '5658321' } }, 'Type' => 'Class' }, - '22512198' => { + '37345963' => { + 'BaseType' => '37345597', + 'Name' => 'std::shared_ptrconst', + 'Size' => '16', + 'Type' => 'Const' + }, + '37346738' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '6058130' + 'type' => '5658455' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '22512346' => { + '37346886' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '6058130' + 'type' => '5658455' } }, 'Type' => 'Struct' }, - '22512360' => { - 'BaseType' => '6058130', + '37346900' => { + 'BaseType' => '5658455', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '22512383' => { + '37346923' => { 'Base' => { - '22512198' => { + '37346738' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '22567829' + 'type' => '37482794' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '6058130' + 'type' => '5658455' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '22512669' => { - 'BaseType' => '22512360', + '37347204' => { + 'BaseType' => '37346900', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '22513497' => { + '37348040' => { 'Base' => { - '22512383' => { + '37346923' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '6058130' + 'type' => '5658455' } }, 'Type' => 'Class' }, - '22531553' => { + '37348406' => { + 'BaseType' => '37348040', + 'Name' => 'std::shared_ptrconst', + 'Size' => '16', + 'Type' => 'Const' + }, + '37368875' => { 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', + 'Header' => 'stl_pair.h', + 'Line' => '189', + 'Name' => 'std::__pair_baseconst, std::shared_ptr >', + 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '129326' + 'key' => '_U1', + 'type' => '58800' + }, + '1' => { + 'key' => '_U2', + 'type' => '871963' } }, 'Type' => 'Class' }, - '22532081' => { + '37386970' => { + 'Header' => 'stl_function.h', + 'Line' => '117', + 'Name' => 'struct std::unary_functionconst, std::shared_ptr >, std::__cxx11::basic_stringconst>', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Arg', + 'type' => '37300087' + }, + '1' => { + 'key' => '_Result', + 'type' => '58800' + } + }, + 'Type' => 'Struct' + }, + '37387026' => { 'Base' => { - '22486283' => { + '37386970' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', + 'Header' => 'stl_function.h', + 'Line' => '1166', + 'Name' => 'struct std::_Select1stconst, std::shared_ptr > >', + 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Alloc', - 'type' => '22486131' + 'key' => '_Pair', + 'type' => '37300087' } }, 'Type' => 'Struct' }, - '22532282' => { - 'BaseType' => '22486297', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '2254956' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '68' - } - }, - 'Type' => 'Class' - }, - '22551918' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + '37425084' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, std::shared_ptr > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '22555530' + 'key' => '_Tp', + 'type' => '37300087' } }, 'Type' => 'Class' }, - '2255321' => { - 'Base' => { - '2241173' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits, std::allocator > > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '2241022' - } - }, - 'Type' => 'Struct' - }, - '2255523' => { - 'BaseType' => '2241187', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits, std::allocator > > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits, std::allocator > > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '22555410' => { - 'Base' => { - '2699638' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Header' => 'domconfigurator.h', - 'Line' => '64', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '22410430' - } - }, - 'Name' => 'log4cxx::xml::DOMConfigurator', - 'NameSpace' => 'log4cxx::xml', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3xml15DOMConfigurator4castERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::doConfigure(log4cxx::File const&, std::shared_ptr) [_ZN7log4cxx3xml15DOMConfigurator11doConfigureERKNS_4FileESt10shared_ptrINS_3spi16LoggerRepositoryEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '(int (*)(...)) (& typeinfo for log4cxx::xml::DOMConfigurator) [_ZTIN7log4cxx3xml15DOMConfiguratorE]', - '72' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::~DOMConfigurator() [_ZN7log4cxx3xml15DOMConfiguratorD1Ev]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::~DOMConfigurator() [_ZN7log4cxx3xml15DOMConfiguratorD0Ev]', - '88' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::getClass() const [_ZNK7log4cxx3xml15DOMConfigurator8getClassEv]', - '96' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3xml15DOMConfigurator10instanceofERKNS_7helpers5ClassE]' - } - }, - '22555428' => { - 'Line' => '61', - 'Memb' => { - '0' => { - 'name' => 'props', - 'offset' => '0', - 'type' => '832974' - }, - '1' => { - 'name' => 'repository', - 'offset' => '8', - 'type' => '835664' - }, - '2' => { - 'name' => 'loggerFactory', - 'offset' => '24', - 'type' => '1149734' - } - }, - 'Name' => 'struct log4cxx::xml::DOMConfigurator::DOMConfiguratorPrivate', - 'NameSpace' => 'log4cxx::xml::DOMConfigurator', - 'Private' => 1, - 'Size' => '40', - 'Source' => 'domconfigurator.cpp', - 'Type' => 'Struct' - }, - '22555530' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'domconfigurator.h', - 'Line' => '212', - 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator', - 'NameSpace' => 'log4cxx::xml::DOMConfigurator', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::~ClazzDOMConfigurator() [_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD1Ev]', - '24' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::~ClazzDOMConfigurator() [_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::newInstance() const [_ZTch0_h0_NK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::getName[abi:cxx11]() const [_ZNK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::newInstance() const [_ZNK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator) [_ZTIN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorE]' - } - }, - '22555753' => { - 'BaseType' => '22555530', - 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator const', - 'Size' => '8', - 'Type' => 'Const' - }, - '22555878' => { - 'BaseType' => '14483802', - 'Header' => 'domconfigurator.h', - 'Line' => '71', - 'Name' => 'log4cxx::xml::DOMConfigurator::AppenderMap', - 'NameSpace' => 'log4cxx::xml::DOMConfigurator', - 'Protected' => 1, - 'Size' => '48', - 'Type' => 'Typedef' - }, - '22557268' => { - 'BaseType' => '22555410', - 'Name' => 'log4cxx::xml::DOMConfigurator const', - 'Size' => '16', - 'Type' => 'Const' - }, - '22557273' => { - 'Base' => { - '648210' => { - 'pos' => '0' - } - }, - 'Line' => '72', - 'Name' => 'log4cxx::xml::XMLWatchdog', - 'NameSpace' => 'log4cxx::xml', - 'Size' => '16', - 'Source' => 'domconfigurator.cpp', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::xml::XMLWatchdog::~XMLWatchdog() [_ZN7log4cxx3xml11XMLWatchdogD1Ev]', - '24' => '(int (*)(...)) log4cxx::xml::XMLWatchdog::~XMLWatchdog() [_ZN7log4cxx3xml11XMLWatchdogD0Ev]', - '32' => '(int (*)(...)) log4cxx::xml::XMLWatchdog::doOnChange() [_ZN7log4cxx3xml11XMLWatchdog10doOnChangeEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::xml::XMLWatchdog) [_ZTIN7log4cxx3xml11XMLWatchdogE]' - } - }, - '22560875' => { - 'BaseType' => '22555428', - 'Name' => 'struct log4cxx::xml::DOMConfigurator::DOMConfiguratorPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '22563168' => { - 'BaseType' => '22563180', - 'Header' => 'apr_tables.h', - 'Line' => '59', - 'Name' => 'apr_array_header_t', - 'Size' => '32', - 'Type' => 'Typedef' - }, - '22563180' => { - 'Header' => 'apr_tables.h', - 'Line' => '62', - 'Memb' => { - '0' => { - 'name' => 'pool', - 'offset' => '0', - 'type' => '652756' - }, - '1' => { - 'name' => 'elt_size', - 'offset' => '8', - 'type' => '50231' - }, - '2' => { - 'name' => 'nelts', - 'offset' => '12', - 'type' => '50231' - }, - '3' => { - 'name' => 'nalloc', - 'offset' => '16', - 'type' => '50231' - }, - '4' => { - 'name' => 'elts', - 'offset' => '24', - 'type' => '51958' - } - }, - 'Name' => 'struct apr_array_header_t', - 'Size' => '32', - 'Type' => 'Struct' - }, - '22563355' => { - 'BaseType' => '22563367', - 'Header' => 'apr_xml.h', - 'Line' => '50', - 'Name' => 'apr_text', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '22563367' => { - 'Header' => 'apr_xml.h', - 'Line' => '53', + '37425708' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, std::shared_ptr > > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '37301663' + } + }, + 'Type' => 'Class' + }, + '37429291' => { + 'Copied' => 1, + 'Header' => 'aligned_buffer.h', + 'Line' => '47', 'Memb' => { '0' => { - 'name' => 'text', + 'name' => '_M_storage', 'offset' => '0', - 'type' => '51127' - }, - '1' => { - 'name' => 'next', - 'offset' => '8', - 'type' => '22563407' + 'type' => '18616149' } }, - 'Name' => 'struct apr_text', - 'Size' => '16', + 'Name' => 'struct __gnu_cxx::__aligned_membufconst, std::shared_ptr > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '48', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '37300087' + } + }, 'Type' => 'Struct' }, - '22563407' => { - 'BaseType' => '22563367', - 'Name' => 'struct apr_text*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '22563413' => { - 'BaseType' => '22563425', - 'Header' => 'apr_xml.h', - 'Line' => '61', - 'Name' => 'apr_text_header', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '22563425' => { - 'Header' => 'apr_xml.h', - 'Line' => '64', + '37455424' => { + 'Header' => 'stringtokenizer.h', + 'Line' => '28', 'Memb' => { '0' => { - 'name' => 'first', + 'access' => 'private', + 'name' => 'm_priv', 'offset' => '0', - 'type' => '22563465' - }, - '1' => { - 'name' => 'last', - 'offset' => '8', - 'type' => '22563465' + 'type' => '37183252' } }, - 'Name' => 'struct apr_text_header', - 'Size' => '16', - 'Type' => 'Struct' - }, - '22563465' => { - 'BaseType' => '22563355', - 'Name' => 'apr_text*', + 'Name' => 'log4cxx::helpers::StringTokenizer', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class' }, - '22563483' => { - 'Header' => 'apr_xml.h', - 'Line' => '148', + '37455437' => { + 'Line' => '29', 'Memb' => { '0' => { - 'name' => 'name', + 'name' => 'src', 'offset' => '0', - 'type' => '51127' + 'type' => '209661' }, '1' => { - 'name' => 'ns', - 'offset' => '8', - 'type' => '50231' + 'name' => 'delim', + 'offset' => '50', + 'type' => '209661' }, '2' => { - 'name' => 'value', - 'offset' => '16', - 'type' => '51127' - }, - '3' => { - 'name' => 'next', - 'offset' => '24', - 'type' => '22563783' + 'name' => 'pos', + 'offset' => '100', + 'type' => '190816' } }, - 'Name' => 'struct apr_xml_attr', - 'Size' => '32', + 'Name' => 'struct log4cxx::helpers::StringTokenizer::StringTokenizerPrivate', + 'NameSpace' => 'log4cxx::helpers::StringTokenizer', + 'Private' => 1, + 'Size' => '72', + 'Source' => 'stringtokenizer.cpp', 'Type' => 'Struct' }, - '22563549' => { - 'BaseType' => '22563561', - 'Header' => 'apr_xml.h', - 'Line' => '143', - 'Name' => 'apr_xml_elem', - 'Size' => '112', - 'Type' => 'Typedef' + '37455653' => { + 'BaseType' => '37455424', + 'Name' => 'log4cxx::helpers::StringTokenizer const', + 'Size' => '8', + 'Type' => 'Const' }, - '22563561' => { - 'Header' => 'apr_xml.h', - 'Line' => '162', + '37457020' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { - 'name' => 'name', + 'access' => 'private', + 'name' => 'storage', 'offset' => '0', - 'type' => '51127' - }, - '1' => { - 'name' => 'ns', - 'offset' => '8', - 'type' => '50231' - }, - '10' => { - 'name' => 'ns_scope', - 'offset' => '96', - 'type' => '22563800' - }, - '11' => { - 'name' => 'priv', - 'offset' => '104', - 'type' => '50560' - }, - '2' => { - 'name' => 'lang', - 'offset' => '16', - 'type' => '51127' - }, - '3' => { - 'name' => 'first_cdata', - 'offset' => '24', - 'type' => '22563413' - }, - '4' => { - 'name' => 'following_cdata', - 'offset' => '40', - 'type' => '22563413' - }, - '5' => { - 'name' => 'parent', - 'offset' => '56', - 'type' => '22563789' - }, - '6' => { - 'name' => 'next', - 'offset' => '64', - 'type' => '22563789' - }, - '7' => { - 'name' => 'first_child', - 'offset' => '72', - 'type' => '22563789' - }, - '8' => { - 'name' => 'attr', - 'offset' => '80', - 'type' => '22563783' - }, - '9' => { - 'name' => 'last_child', - 'offset' => '88', - 'type' => '22563789' + 'type' => '197961' } }, - 'Name' => 'struct apr_xml_elem', - 'Size' => '112', - 'Type' => 'Struct' + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5660989' + } + }, + 'Type' => 'Class' }, - '22563731' => { - 'BaseType' => '22563743', - 'Header' => 'apr_xml.h', - 'Line' => '145', - 'Name' => 'apr_xml_doc', + '37465004' => { + 'BaseType' => '5657945', + 'Name' => 'log4cxx::rolling::RollingFileAppender const', + 'Type' => 'Const' + }, + '37465305' => { + 'BaseType' => '37348040', + 'Header' => 'triggeringpolicy.h', + 'Line' => '75', + 'Name' => 'log4cxx::rolling::TriggeringPolicyPtr', + 'NameSpace' => 'log4cxx::rolling', 'Size' => '16', 'Type' => 'Typedef' }, - '22563743' => { - 'Header' => 'apr_xml.h', - 'Line' => '200', - 'Memb' => { - '0' => { - 'name' => 'root', - 'offset' => '0', - 'type' => '22563806' - }, - '1' => { - 'name' => 'namespaces', - 'offset' => '8', - 'type' => '22563812' - } + '37465317' => { + 'BaseType' => '37465305', + 'Name' => 'log4cxx::rolling::TriggeringPolicyPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '37465322' => { + 'BaseType' => '37345597', + 'Header' => 'rollingpolicy.h', + 'Line' => '83', + 'Name' => 'log4cxx::rolling::RollingPolicyPtr', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '37465334' => { + 'BaseType' => '37465322', + 'Name' => 'log4cxx::rolling::RollingPolicyPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '37465352' => { + 'Base' => { + '1909459' => { + 'pos' => '0' + } }, - 'Name' => 'struct apr_xml_doc', + 'Line' => '53', + 'Name' => 'log4cxx::PropertyWatchdog', + 'NameSpace' => 'log4cxx', 'Size' => '16', - 'Type' => 'Struct' + 'Source' => 'propertyconfigurator.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::PropertyWatchdog::~PropertyWatchdog() [_ZN7log4cxx16PropertyWatchdogD1Ev]', + '24' => '(int (*)(...)) log4cxx::PropertyWatchdog::~PropertyWatchdog() [_ZN7log4cxx16PropertyWatchdogD0Ev]', + '32' => '(int (*)(...)) log4cxx::PropertyWatchdog::doOnChange() [_ZN7log4cxx16PropertyWatchdog10doOnChangeEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::PropertyWatchdog) [_ZTIN7log4cxx16PropertyWatchdogE]' + } }, - '22563783' => { - 'BaseType' => '22563483', - 'Name' => 'struct apr_xml_attr*', + '37476229' => { + 'BaseType' => '37455437', + 'Name' => 'struct log4cxx::helpers::StringTokenizer::StringTokenizerPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '22563789' => { - 'BaseType' => '22563561', - 'Name' => 'struct apr_xml_elem*', + '37476449' => { + 'BaseType' => '37455424', + 'Name' => 'log4cxx::helpers::StringTokenizer*', 'Size' => '8', 'Type' => 'Pointer' }, - '22563795' => { - 'Name' => 'struct apr_xml_ns_scope', - 'Type' => 'Struct' + '37476454' => { + 'BaseType' => '37476449', + 'Name' => 'log4cxx::helpers::StringTokenizer*const', + 'Size' => '8', + 'Type' => 'Const' }, - '22563800' => { - 'BaseType' => '22563795', - 'Name' => 'struct apr_xml_ns_scope*', + '37476459' => { + 'BaseType' => '37455653', + 'Name' => 'log4cxx::helpers::StringTokenizer const*', 'Size' => '8', 'Type' => 'Pointer' }, - '22563806' => { - 'BaseType' => '22563549', - 'Name' => 'apr_xml_elem*', + '37480974' => { + 'BaseType' => '37465352', + 'Name' => 'log4cxx::PropertyWatchdog*', 'Size' => '8', 'Type' => 'Pointer' }, - '22563812' => { - 'BaseType' => '22563168', - 'Name' => 'apr_array_header_t*', + '37480979' => { + 'BaseType' => '37480974', + 'Name' => 'log4cxx::PropertyWatchdog*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '37481000' => { + 'BaseType' => '37457020', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '22565097' => { - 'BaseType' => '22557273', - 'Name' => 'log4cxx::xml::XMLWatchdog*', + '37481005' => { + 'BaseType' => '37481000', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '37481371' => { + 'BaseType' => '37307479', + 'Name' => 'std::map, std::shared_ptr >*', 'Size' => '8', 'Type' => 'Pointer' }, - '22565103' => { - 'BaseType' => '22565097', - 'Name' => 'log4cxx::xml::XMLWatchdog*const', + '37482013' => { + 'BaseType' => '37482018', + 'Name' => 'char const[17]&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '37482018' => { + 'BaseType' => '191037', + 'Name' => 'char const[17]', + 'Size' => '17', + 'Type' => 'Array' + }, + '37482452' => { + 'BaseType' => '37336366', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '37482507' => { + 'BaseType' => '5679568', + 'Name' => 'log4cxx::rolling::RollingFileAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '37482699' => { + 'BaseType' => '37344761', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '37482729' => { + 'BaseType' => '37345963', + 'Name' => 'std::shared_ptrconst&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '37482794' => { + 'BaseType' => '37347204', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '37482824' => { + 'BaseType' => '37348406', + 'Name' => 'std::shared_ptrconst&', 'Size' => '8', + 'Type' => 'Ref' + }, + '37484296' => { + 'BaseType' => '37465004', + 'Name' => 'log4cxx::rolling::RollingFileAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '37484511' => { + 'BaseType' => '33743660', + 'Name' => 'log4cxx::PropertyConfigurator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '37484536' => { + 'BaseType' => '565552', + 'Name' => 'log4cxx::spi::LoggerRepositoryPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '37484806' => { + 'BaseType' => '5679468', + 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '37484816' => { + 'BaseType' => '5679473', + 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '37486220' => { + 'BaseType' => '37465317', + 'Name' => 'log4cxx::rolling::TriggeringPolicyPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '37486225' => { + 'BaseType' => '37465334', + 'Name' => 'log4cxx::rolling::RollingPolicyPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '3761318' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3830616' + } + }, + 'Type' => 'Struct' + }, + '3762267' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '3764673' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3830616' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3761318' + } + }, + 'Type' => 'Class' + }, + '3762899' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3761318' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '3761318' + } + }, + 'Type' => 'Struct' + }, + '3763157' => { + 'Base' => { + '3762899' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '3761318' + } + }, + 'Type' => 'Struct' + }, + '3763463' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '3833137' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ByteArrayOutputStream::ByteArrayOutputStreamPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '3833137' + } + }, + 'Type' => 'Struct' + }, + '3763721' => { + 'Base' => { + '3763157' => { + 'pos' => '0' + }, + '3763463' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ByteArrayOutputStream::ByteArrayOutputStreamPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '3833137' + } + }, + 'Type' => 'Struct' + }, + '3764673' => { + 'Base' => { + '3763721' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '3833137' + } + }, + 'Type' => 'Class' + }, + '3766120' => { + 'Base' => { + '3762267' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3830616' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3761318' + } + }, + 'Type' => 'Struct' + }, + '3766341' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '3766120' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '3830616' + }, + '1' => { + 'key' => '_Dp', + 'type' => '3761318' + } + }, + 'Type' => 'Class' + }, + '38046853' => { + 'BaseType' => '558708', + 'Name' => 'log4cxx::helpers::ResourceBundle const', 'Type' => 'Const' }, - '22565128' => { - 'BaseType' => '22551918', - 'Name' => 'log4cxx::helpers::WideLife*', + '38047346' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '38047712' + } + }, + 'Type' => 'Class' + }, + '38047695' => { + 'Base' => { + '558708' => { + 'pos' => '0' + } + }, + 'Header' => 'propertyresourcebundle.h', + 'Line' => '35', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => 'properties', + 'offset' => '36', + 'type' => '562694' + } + }, + 'Name' => 'log4cxx::helpers::PropertyResourceBundle', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '32', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::~PropertyResourceBundle() [_ZN7log4cxx7helpers22PropertyResourceBundleD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::~PropertyResourceBundle() [_ZN7log4cxx7helpers22PropertyResourceBundleD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::getClass() const [_ZNK7log4cxx7helpers22PropertyResourceBundle8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers22PropertyResourceBundle10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers22PropertyResourceBundle4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::getString(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx7helpers22PropertyResourceBundle9getStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::PropertyResourceBundle) [_ZTIN7log4cxx7helpers22PropertyResourceBundleE]' + } + }, + '38047712' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'propertyresourcebundle.h', + 'Line' => '38', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle', + 'NameSpace' => 'log4cxx::helpers::PropertyResourceBundle', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle::~ClazzPropertyResourceBundle() [_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle::~ClazzPropertyResourceBundle() [_ZN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundle7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle) [_ZTIN7log4cxx7helpers22PropertyResourceBundle27ClazzPropertyResourceBundleE]' + } }, - '22565134' => { - 'BaseType' => '22565128', - 'Name' => 'log4cxx::helpers::WideLife*const', + '38047859' => { + 'BaseType' => '38047712', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle const', 'Size' => '8', 'Type' => 'Const' }, - '22566472' => { - 'BaseType' => '22487674', - 'Name' => 'std::vector >&', - 'Size' => '8', - 'Type' => 'Ref' + '38048199' => { + 'BaseType' => '38047695', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle const', + 'Size' => '32', + 'Type' => 'Const' }, - '22567003' => { - 'BaseType' => '22498621', - 'Name' => 'std::__shared_ptr::element_type*', + '38049963' => { + 'BaseType' => '38047346', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '22567225' => { - 'BaseType' => '22502421', - 'Name' => 'std::__shared_ptr::element_type*', + '38049968' => { + 'BaseType' => '38049963', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '22567457' => { - 'BaseType' => '22506221', - 'Name' => 'std::__shared_ptr::element_type*', + '38050424' => { + 'BaseType' => '38047695', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle*', 'Size' => '8', 'Type' => 'Pointer' }, - '22567829' => { - 'BaseType' => '22512669', - 'Name' => 'std::__shared_ptr::element_type*', + '38050429' => { + 'BaseType' => '38050424', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '22569353' => { - 'BaseType' => '22555410', - 'Name' => 'log4cxx::xml::DOMConfigurator*', + '38050444' => { + 'BaseType' => '38048199', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle const*', 'Size' => '8', 'Type' => 'Pointer' }, - '22569359' => { - 'BaseType' => '22569353', - 'Name' => 'log4cxx::xml::DOMConfigurator*const', + '38050449' => { + 'BaseType' => '38050444', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle const*const', 'Size' => '8', 'Type' => 'Const' }, - '22569375' => { - 'BaseType' => '1729333', - 'Name' => 'log4cxx::helpers::CharsetDecoderPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '22569381' => { - 'BaseType' => '22563731', - 'Name' => 'apr_xml_doc*', + '38050454' => { + 'BaseType' => '38047712', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle*', 'Size' => '8', 'Type' => 'Pointer' }, - '22569387' => { - 'BaseType' => '22555878', - 'Name' => 'log4cxx::xml::DOMConfigurator::AppenderMap&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '22569393' => { - 'BaseType' => '262988', - 'Name' => 'log4cxx::AppenderPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '22569399' => { - 'BaseType' => '14545351', - 'Name' => 'log4cxx::config::PropertySetter&', + '38050459' => { + 'BaseType' => '38050454', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle*const', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Const' }, - '22569405' => { - 'BaseType' => '22557268', - 'Name' => 'log4cxx::xml::DOMConfigurator const*', + '38050464' => { + 'BaseType' => '38047859', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle const*', 'Size' => '8', 'Type' => 'Pointer' }, - '22569411' => { - 'BaseType' => '22569405', - 'Name' => 'log4cxx::xml::DOMConfigurator const*const', + '38050469' => { + 'BaseType' => '38050464', + 'Name' => 'log4cxx::helpers::PropertyResourceBundle::ClazzPropertyResourceBundle const*const', 'Size' => '8', 'Type' => 'Const' }, - '22569440' => { - 'BaseType' => '22555530', - 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator*', + '38051616' => { + 'BaseType' => '38046853', + 'Name' => 'log4cxx::helpers::ResourceBundle const*', 'Size' => '8', 'Type' => 'Pointer' }, - '22569446' => { - 'BaseType' => '22569440', - 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator*const', + '38051621' => { + 'BaseType' => '38051616', + 'Name' => 'log4cxx::helpers::ResourceBundle const*const', 'Size' => '8', 'Type' => 'Const' }, - '22569451' => { - 'BaseType' => '22555753', - 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '22569457' => { - 'BaseType' => '22569451', - 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator const*const', + '38063981' => { + 'BaseType' => '25463868', + 'Name' => 'log4cxx::helpers::ResourceBundle*const', 'Size' => '8', 'Type' => 'Const' }, - '2269136' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '3830598' => { + 'Base' => { + '3116491' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '2270812' - } - }, - 'Type' => 'Class' - }, - '2269898' => { - 'Header' => 'widelife.h', + 'Header' => 'bytearrayoutputstream.h', 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '61461' - } - }, - 'Name' => 'log4cxx::helpers::WideLife >', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '2240668' - } - }, - 'Type' => 'Class' - }, - '2270651' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Copied' => 1, - 'Header' => 'patternconverter.h', - 'Line' => '45', - 'Memb' => { - '0' => { - 'access' => 'protected', 'name' => 'm_priv', 'offset' => '8', - 'type' => '2391088' + 'type' => '3766341' } }, - 'Name' => 'log4cxx::pattern::PatternConverter', - 'NameSpace' => 'log4cxx::pattern', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternConverter) [_ZTIN7log4cxx7pattern16PatternConverterE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getClass() const [_ZNK7log4cxx7pattern16PatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::PatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern16PatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::PatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern16PatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) __cxa_pure_virtual' + '16' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::~ByteArrayOutputStream() [_ZN7log4cxx7helpers21ByteArrayOutputStreamD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::~ByteArrayOutputStream() [_ZN7log4cxx7helpers21ByteArrayOutputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::getClass() const [_ZNK7log4cxx7helpers21ByteArrayOutputStream8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers21ByteArrayOutputStream10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers21ByteArrayOutputStream4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers21ByteArrayOutputStream5closeERNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers21ByteArrayOutputStream5flushERNS0_4PoolE]', + '72' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::write(log4cxx::helpers::ByteBuffer&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers21ByteArrayOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ByteArrayOutputStream) [_ZTIN7log4cxx7helpers21ByteArrayOutputStreamE]' } }, - '2270773' => { - 'BaseType' => '2270651', - 'Name' => 'log4cxx::pattern::PatternConverter const', - 'Type' => 'Const' - }, - '2270778' => { - 'Base' => { - '2271640' => { - 'pos' => '0' - } + '3830616' => { + 'Copied' => 1, + 'Line' => '27', + 'Memb' => { + '0' => { + 'name' => 'array', + 'offset' => '0', + 'type' => '3604708' + } }, - 'Header' => 'classnamepatternconverter.h', - 'Line' => '36', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern25ClassNamePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ClassNamePatternConverter) [_ZTIN7log4cxx7pattern25ClassNamePatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::~ClassNamePatternConverter() [_ZN7log4cxx7pattern25ClassNamePatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::~ClassNamePatternConverter() [_ZN7log4cxx7pattern25ClassNamePatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::getClass() const [_ZNK7log4cxx7pattern25ClassNamePatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern25ClassNamePatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern25ClassNamePatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } + 'Name' => 'struct log4cxx::helpers::ByteArrayOutputStream::ByteArrayOutputStreamPriv', + 'NameSpace' => 'log4cxx::helpers::ByteArrayOutputStream', + 'Private' => 1, + 'Size' => '24', + 'Source' => 'bytearrayoutputstream.cpp', + 'Type' => 'Struct' }, - '2270812' => { + '3830668' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'classnamepatternconverter.h', - 'Line' => '44', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter', - 'NameSpace' => 'log4cxx::pattern::ClassNamePatternConverter', + 'Header' => 'bytearrayoutputstream.h', + 'Line' => '42', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream', + 'NameSpace' => 'log4cxx::helpers::ByteArrayOutputStream', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter::~ClazzClassNamePatternConverter() [_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter::~ClazzClassNamePatternConverter() [_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD0Ev]', + '16' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream::~ClazzByteArrayOutputStream() [_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream::~ClazzByteArrayOutputStream() [_ZN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter) [_ZTIN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterE]' + '40' => '(int (*)(...)) log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStream7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream) [_ZTIN7log4cxx7helpers21ByteArrayOutputStream26ClazzByteArrayOutputStreamE]' } }, - '2270970' => { - 'BaseType' => '2270812', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter const', + '3830816' => { + 'BaseType' => '3830668', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream const', 'Size' => '8', 'Type' => 'Const' }, - '2271380' => { - 'BaseType' => '2270778', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '2271385' => { - 'Base' => { - '2270651' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'loggingeventpatternconverter.h', - 'Line' => '37', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter', - 'NameSpace' => 'log4cxx::pattern', + '3831272' => { + 'BaseType' => '3830598', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream const', 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) __cxa_pure_virtual', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LoggingEventPatternConverter) [_ZTIN7log4cxx7pattern28LoggingEventPatternConverterE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::getClass() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } - }, - '2271635' => { - 'BaseType' => '2271385', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter const', 'Type' => 'Const' }, - '2271640' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'namepatternconverter.h', + '3831318' => { + 'Header' => 'widelife.h', 'Line' => '36', - 'Name' => 'log4cxx::pattern::NamePatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) __cxa_pure_virtual', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NamePatternConverter) [_ZTIN7log4cxx7pattern20NamePatternConverterE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::getClass() const [_ZNK7log4cxx7pattern20NamePatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern20NamePatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern20NamePatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3830668' + } + }, + 'Type' => 'Class' }, - '2271802' => { - 'BaseType' => '2271640', - 'Name' => 'log4cxx::pattern::NamePatternConverter const', + '3832324' => { + 'BaseType' => '3116491', + 'Name' => 'log4cxx::helpers::OutputStream const', 'Type' => 'Const' }, - '2271807' => { - 'BaseType' => '2240668', - 'Header' => 'patternconverter.h', - 'Line' => '108', - 'Name' => 'log4cxx::pattern::PatternConverterPtr', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '2273417' => { - 'BaseType' => '2271635', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter const*', + '3833137' => { + 'BaseType' => '3830616', + 'Name' => 'struct log4cxx::helpers::ByteArrayOutputStream::ByteArrayOutputStreamPriv*', 'Size' => '8', 'Type' => 'Pointer' }, - '2273423' => { - 'BaseType' => '2273417', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2273472' => { - 'BaseType' => '2269136', - 'Name' => 'log4cxx::helpers::WideLife*', + '3833900' => { + 'BaseType' => '3831318', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '2273478' => { - 'BaseType' => '2273472', - 'Name' => 'log4cxx::helpers::WideLife*const', + '3833905' => { + 'BaseType' => '3833900', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '2273627' => { - 'BaseType' => '2240313', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2273645' => { - 'BaseType' => '2240668', - 'Name' => 'std::shared_ptr*', + '3834321' => { + 'BaseType' => '3831272', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream const*', 'Size' => '8', 'Type' => 'Pointer' }, - '2273656' => { - 'BaseType' => '2241007', - 'Name' => 'std::shared_ptrconst&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '2273842' => { - 'BaseType' => '2245486', - 'Name' => 'std::vector >const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '2273854' => { - 'BaseType' => '2242385', - 'Name' => 'std::vector >&', + '3834326' => { + 'BaseType' => '3834321', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream const*const', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Const' }, - '2273883' => { - 'BaseType' => '2269898', - 'Name' => 'log4cxx::helpers::WideLife >*', + '3834331' => { + 'BaseType' => '3830598', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream*', 'Size' => '8', 'Type' => 'Pointer' }, - '2273889' => { - 'BaseType' => '2273883', - 'Name' => 'log4cxx::helpers::WideLife >*const', + '3834336' => { + 'BaseType' => '3834331', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream*const', 'Size' => '8', 'Type' => 'Const' }, - '2273965' => { - 'BaseType' => '2245977', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2273983' => { - 'BaseType' => '2270778', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter*', + '3834351' => { + 'BaseType' => '3830668', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream*', 'Size' => '8', 'Type' => 'Pointer' }, - '2273989' => { - 'BaseType' => '2273983', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter*const', + '3834356' => { + 'BaseType' => '3834351', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream*const', 'Size' => '8', 'Type' => 'Const' }, - '2274011' => { - 'BaseType' => '2246871', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '2274182' => { - 'BaseType' => '2271380', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter const*', + '3834361' => { + 'BaseType' => '3830816', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream const*', 'Size' => '8', 'Type' => 'Pointer' }, - '2274188' => { - 'BaseType' => '2274182', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter const*const', + '3834366' => { + 'BaseType' => '3834361', + 'Name' => 'log4cxx::helpers::ByteArrayOutputStream::ClazzByteArrayOutputStream const*const', 'Size' => '8', 'Type' => 'Const' }, - '2274547' => { - 'BaseType' => '2270812', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter*', + '38343926' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566161' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '38344074' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566161' + } + }, + 'Type' => 'Struct' + }, + '38344088' => { + 'BaseType' => '566161', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '38344111' => { + 'Base' => { + '38343926' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '38413009' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566161' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '38344392' => { + 'BaseType' => '38344088', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '38345228' => { + 'Base' => { + '38344111' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566161' + } + }, + 'Type' => 'Class' + }, + '3835477' => { + 'BaseType' => '3116491', + 'Name' => 'log4cxx::helpers::OutputStream*', 'Size' => '8', 'Type' => 'Pointer' }, - '2274553' => { - 'BaseType' => '2274547', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter*const', + '3835482' => { + 'BaseType' => '3835477', + 'Name' => 'log4cxx::helpers::OutputStream*const', 'Size' => '8', 'Type' => 'Const' }, - '2274558' => { - 'BaseType' => '2270970', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter const*', + '38405184' => { + 'BaseType' => '5677629', + 'Name' => 'log4cxx::config::PropertySetter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '38413009' => { + 'BaseType' => '38344392', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '3853767' => { + 'BaseType' => '3832324', + 'Name' => 'log4cxx::helpers::OutputStream const*', 'Size' => '8', 'Type' => 'Pointer' }, - '2274564' => { - 'BaseType' => '2274558', - 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter const*const', + '3853772' => { + 'BaseType' => '3853767', + 'Name' => 'log4cxx::helpers::OutputStream const*const', 'Size' => '8', 'Type' => 'Const' }, - '227611' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + '38610738' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '260741' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '19984696' + } + }, + 'Type' => 'Class' + }, + '38612682' => { + 'BaseType' => '38610738', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '38612687' => { + 'BaseType' => '38612682', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '38613088' => { + 'BaseType' => '19987835', + 'Name' => 'log4cxx::helpers::Reader::ClazzReader*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '38613098' => { + 'BaseType' => '19987840', + 'Name' => 'log4cxx::helpers::Reader::ClazzReader const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '38929497' => { + 'Base' => { + '4207448' => { + 'pos' => '0' + } + }, + 'Header' => 'relativetimedateformat.h', + 'Line' => '32', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'startTime', + 'offset' => '8', + 'type' => '1914488' } }, - 'Type' => 'Struct' - }, - '227697' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '229233' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { + 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::RelativeTimeDateFormat::~RelativeTimeDateFormat() [_ZN7log4cxx7helpers22RelativeTimeDateFormatD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::RelativeTimeDateFormat::~RelativeTimeDateFormat() [_ZN7log4cxx7helpers22RelativeTimeDateFormatD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::RelativeTimeDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers22RelativeTimeDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::DateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers10DateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::RelativeTimeDateFormat) [_ZTIN7log4cxx7helpers22RelativeTimeDateFormatE]' + } + }, + '38929696' => { + 'BaseType' => '38929497', + 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat const', + 'Size' => '16', + 'Type' => 'Const' + }, + '38940778' => { + 'BaseType' => '38929497', + 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '38940783' => { + 'BaseType' => '38940778', + 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '38940798' => { + 'BaseType' => '38929696', + 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '38940803' => { + 'BaseType' => '38940798', + 'Name' => 'log4cxx::helpers::RelativeTimeDateFormat const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '39210387' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '34964157' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '39210535' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '34964157' + } + }, + 'Type' => 'Struct' + }, + '39210549' => { + 'BaseType' => '34964157', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '39210572' => { + 'Base' => { + '39210387' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '260741' + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '39283638' }, '1' => { - 'key' => '_Dp', - 'type' => '227611' + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Type' => 'Class' - }, - '228020' => { - 'Base' => { - '227611' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '34964157' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '39210853' => { + 'BaseType' => '39210549', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '39211304' => { + 'Base' => { + '39210572' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '34964157' + } + }, + 'Type' => 'Class' + }, + '39270123' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '227611' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Type' => 'Struct' - }, - '228273' => { - 'Base' => { - '228020' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '34964182' + } + }, + 'Type' => 'Class' + }, + '39272668' => { + 'BaseType' => '34964157', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '39283387' => { + 'BaseType' => '39270123', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '39283392' => { + 'BaseType' => '39283387', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '39283638' => { + 'BaseType' => '39210853', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '39283668' => { + 'BaseType' => '39211304', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '39283833' => { + 'BaseType' => '34964157', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '39283838' => { + 'BaseType' => '39283833', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '39284174' => { + 'BaseType' => '39272668', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '39284179' => { + 'BaseType' => '39284174', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '39284334' => { + 'BaseType' => '34980221', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '39284344' => { + 'BaseType' => '34980226', + 'Name' => 'log4cxx::pattern::RelativeTimePatternConverter::ClazzRelativeTimePatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '39461919' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '38047695' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '39462067' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '38047695' + } + }, + 'Type' => 'Struct' + }, + '39462081' => { + 'BaseType' => '38047695', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '39462104' => { + 'Base' => { + '39461919' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '39535855' }, '1' => { - 'key' => undef, - 'type' => '227611' + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Type' => 'Struct' - }, - '228571' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '263881' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::AppenderAttachableImpl::priv_data*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '38047695' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '39462383' => { + 'BaseType' => '39462081', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '39463358' => { + 'Base' => { + '39462104' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '38047695' + } + }, + 'Type' => 'Class' + }, + '39533046' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '263881' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Type' => 'Struct' - }, - '228831' => { - 'Base' => { - '228273' => { - 'pos' => '0' - }, - '228571' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::AppenderAttachableImpl::priv_data*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '558717' + } + }, + 'Type' => 'Class' + }, + '39535714' => { + 'BaseType' => '39533046', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '39535719' => { + 'BaseType' => '39535714', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '39535855' => { + 'BaseType' => '39462383', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '39537017' => { + 'BaseType' => '576798', + 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '39537027' => { + 'BaseType' => '576803', + 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40061134' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657354' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '40061282' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657354' + } + }, + 'Type' => 'Struct' + }, + '40061296' => { + 'BaseType' => '5657354', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '40061319' => { + 'Base' => { + '40061134' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '40199820' }, '1' => { - 'key' => undef, - 'type' => '263881' + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Type' => 'Struct' - }, - '229233' => { - 'Base' => { - '228831' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657354' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '40061600' => { + 'BaseType' => '40061296', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '40062563' => { + 'Base' => { + '40061319' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657354' + } + }, + 'Type' => 'Class' + }, + '40064724' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657757' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '40064872' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657757' + } + }, + 'Type' => 'Struct' + }, + '40064886' => { + 'BaseType' => '5657757', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '40064909' => { + 'Base' => { + '40064724' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { '0' => { - 'key' => undef, - 'type' => '263881' + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '40199925' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Type' => 'Class' - }, - '229563' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '227697' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657757' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '40065190' => { + 'BaseType' => '40064886', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '40066153' => { + 'Base' => { + '40064909' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657757' + } + }, + 'Type' => 'Class' + }, + '40068275' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657564' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '40068423' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657564' + } + }, + 'Type' => 'Struct' + }, + '40068437' => { + 'BaseType' => '5657564', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '40068460' => { + 'Base' => { + '40068275' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '260741' + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '40200030' }, '1' => { - 'key' => '_Dp', - 'type' => '227611' + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Type' => 'Class' - }, - '2304034' => { - 'BaseType' => '2271640', - 'Name' => 'log4cxx::pattern::NamePatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2304040' => { - 'BaseType' => '2304034', - 'Name' => 'log4cxx::pattern::NamePatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2304118' => { - 'BaseType' => '2271385', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2304124' => { - 'BaseType' => '2304118', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2306353' => { - 'BaseType' => '2271802', - 'Name' => 'log4cxx::pattern::NamePatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2306359' => { - 'BaseType' => '2306353', - 'Name' => 'log4cxx::pattern::NamePatternConverter const*const', + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657564' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '40068741' => { + 'BaseType' => '40068437', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '40069704' => { + 'Base' => { + '40068460' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657564' + } + }, + 'Type' => 'Class' + }, + '4014802' => { + 'BaseType' => '3607044', + 'Name' => 'log4cxx::helpers::ByteBuffer*const', 'Size' => '8', 'Type' => 'Const' }, - '2306540' => { - 'BaseType' => '2270773', - 'Name' => 'log4cxx::pattern::PatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2306546' => { - 'BaseType' => '2306540', - 'Name' => 'log4cxx::pattern::PatternConverter const*const', + '4014812' => { + 'BaseType' => '3607049', + 'Name' => 'log4cxx::helpers::ByteBuffer const*const', 'Size' => '8', 'Type' => 'Const' }, - '232317' => { - 'Base' => { - '237806' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '262983' - } - }, - 'Type' => 'Class' - }, - '232615' => { - 'BaseType' => '232317', - 'Name' => 'std::shared_ptrconst', - 'Size' => '16', - 'Type' => 'Const' - }, - '232620' => { - 'Base' => { - '245591' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + '40172502' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { '0' => { - 'type' => '232317' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Type' => 'Class' - }, - '232771' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '232620' - } + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5657954' + } + }, + 'Type' => 'Class' + }, + '40180190' => { + 'BaseType' => '5657564', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy const', + 'Type' => 'Const' + }, + '40180711' => { + 'Base' => { + '12966918' => { + 'pos' => '0' + } }, - 'Type' => 'Struct' - }, - '232785' => { - 'BaseType' => '264542', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '233185' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '233384' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { + 'Line' => '37', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '232317' + 'name' => 'triggeringPolicy', + 'offset' => '648', + 'type' => '37465305' }, '1' => { - 'key' => '_Alloc', - 'type' => '232620' + 'name' => 'rollingPolicy', + 'offset' => '772', + 'type' => '37465322' + }, + '2' => { + 'name' => 'fileLength', + 'offset' => '800', + 'type' => '190816' + }, + '3' => { + 'name' => '_event', + 'offset' => '808', + 'type' => '565581' } }, - 'Type' => 'Struct' - }, - '233198' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', - 'Memb' => { - '0' => { - 'name' => '_M_start', - 'offset' => '0', - 'type' => '233372' - }, - '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '233372' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '233372' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '233372' => { - 'BaseType' => '246320', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '233384' => { - 'Base' => { - '232620' => { - 'pos' => '0' - }, - '233198' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '234162' => { - 'Base' => { - '233185' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '232317' - } + 'Name' => 'struct log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv', + 'NameSpace' => 'log4cxx::rolling::RollingFileAppender', + 'Protected' => 1, + 'Size' => '344', + 'Source' => 'rollingfileappender.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv::~RollingFileAppenderPriv() [_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv::~RollingFileAppenderPriv() [_ZN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv) [_ZTIN7log4cxx7rolling19RollingFileAppender23RollingFileAppenderPrivE]' + } + }, + '40182219' => { + 'BaseType' => '5657757', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy const', + 'Type' => 'Const' + }, + '40182224' => { + 'Base' => { + '3116491' => { + 'pos' => '0' + } }, - 'Type' => 'Class' - }, - '2350468' => { - 'BaseType' => '64660', - 'Name' => 'log4cxx::helpers::ClassRegistration*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '237321' => { - 'BaseType' => '234162', - 'Name' => 'std::vector >const', - 'Size' => '24', - 'Type' => 'Const' - }, - '237621' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + 'Line' => '532', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '262983' + 'access' => 'private', + 'name' => 'os', + 'offset' => '8', + 'type' => '7857651' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '237769' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '262983' + 'access' => 'private', + 'name' => 'rfa', + 'offset' => '36', + 'type' => '5679568' } }, - 'Type' => 'Struct' - }, - '237783' => { - 'BaseType' => '262983', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '237806' => { - 'Base' => { - '237621' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '264854' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { + 'Name' => 'log4cxx::rolling::CountingOutputStream', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '32', + 'Source' => 'rollingfileappender.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::~CountingOutputStream() [_ZN7log4cxx7rolling20CountingOutputStreamD2Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::~CountingOutputStream() [_ZN7log4cxx7rolling20CountingOutputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::OutputStream::getClass() const [_ZNK7log4cxx7helpers12OutputStream8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::OutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers12OutputStream10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::OutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers12OutputStream4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling20CountingOutputStream5closeERNS_7helpers4PoolE]', + '64' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling20CountingOutputStream5flushERNS_7helpers4PoolE]', + '72' => '(int (*)(...)) log4cxx::rolling::CountingOutputStream::write(log4cxx::helpers::ByteBuffer&, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling20CountingOutputStream5writeERNS_7helpers10ByteBufferERNS2_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::CountingOutputStream) [_ZTIN7log4cxx7rolling20CountingOutputStreamE]' + } + }, + '40199124' => { + 'BaseType' => '40172502', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '40199129' => { + 'BaseType' => '40199124', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40199235' => { + 'BaseType' => '40180711', + 'Name' => 'struct log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '40199240' => { + 'BaseType' => '40199235', + 'Name' => 'struct log4cxx::rolling::RollingFileAppender::RollingFileAppenderPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40199820' => { + 'BaseType' => '40061600', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '40199925' => { + 'BaseType' => '40065190', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '40199980' => { + 'BaseType' => '5679553', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40200030' => { + 'BaseType' => '40068741', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '40200085' => { + 'BaseType' => '5679538', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40200541' => { + 'BaseType' => '40182224', + 'Name' => 'log4cxx::rolling::CountingOutputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '40200546' => { + 'BaseType' => '40200541', + 'Name' => 'log4cxx::rolling::CountingOutputStream*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40201582' => { + 'BaseType' => '40182219', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '40201743' => { + 'BaseType' => '40180190', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '40202158' => { + 'BaseType' => '37484296', + 'Name' => 'log4cxx::rolling::RollingFileAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40202357' => { + 'BaseType' => '5679558', + 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40202367' => { + 'BaseType' => '5679563', + 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40764331' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '262983' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Type' => 'Class' - }, - '238093' => { - 'BaseType' => '237783', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '238406' => { - 'Base' => { - '4476635' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '531', - 'Name' => 'std::weak_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5658330' + } + }, + 'Type' => 'Class' + }, + '40776833' => { + 'BaseType' => '40764331', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '40776838' => { + 'BaseType' => '40776833', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40777209' => { + 'BaseType' => '16792973', + 'Name' => 'log4cxx::rolling::RollingPolicy const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40777229' => { + 'BaseType' => '5679613', + 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '40777239' => { + 'BaseType' => '5679618', + 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '41262238' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { '0' => { - 'type' => '262983' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Type' => 'Class' - }, - '2388858' => { + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5657229' + } + }, + 'Type' => 'Class' + }, + '41284074' => { + 'BaseType' => '41262238', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '41284079' => { + 'BaseType' => '41284074', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '41285813' => { + 'BaseType' => '5679603', + 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '41285823' => { + 'BaseType' => '5679608', + 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4137360' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2428623' + 'type' => '4208793' } }, 'Type' => 'Struct' }, - '2388984' => { + '4138310' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '2390748' + 'type' => '4140713' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2428623' + 'type' => '4208793' }, '1' => { 'key' => '_Dp', - 'type' => '2388858' + 'type' => '4137360' } }, 'Type' => 'Class' }, - '2389353' => { - 'Base' => { - '2388858' => { - 'pos' => '0' - } - }, + '4138936' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '4137360' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '2388858' + 'type' => '4137360' } }, 'Type' => 'Struct' }, - '2389646' => { + '4139194' => { 'Base' => { - '2389353' => { + '4138936' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '2388858' + 'type' => '4137360' } }, 'Type' => 'Struct' }, - '2389987' => { + '4139501' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '2430539' + 'type' => '4209701' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::pattern::PatternConverter::PatternConverterPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::pattern::CachedDateFormat::CachedDateFormatPriv*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '2430539' + 'type' => '4209701' } }, 'Type' => 'Struct' }, - '2390287' => { + '4139759' => { 'Base' => { - '2389646' => { + '4139194' => { 'pos' => '0' }, - '2389987' => { + '4139501' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::pattern::PatternConverter::PatternConverterPrivate*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::pattern::CachedDateFormat::CachedDateFormatPriv*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '2430539' + 'type' => '4209701' } }, 'Type' => 'Struct' }, - '2390748' => { + '4140713' => { 'Base' => { - '2390287' => { + '4139759' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '2430539' + 'type' => '4209701' } }, 'Type' => 'Class' }, - '2391088' => { + '4142183' => { + 'Base' => { + '4138310' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '4208793' + }, + '1' => { + 'key' => '_Dp', + 'type' => '4137360' + } + }, + 'Type' => 'Struct' + }, + '4142412' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '2388984' + 'type' => '4142183' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2428623' + 'type' => '4208793' }, '1' => { 'key' => '_Dp', - 'type' => '2388858' + 'type' => '4137360' } }, 'Type' => 'Class' }, - '2402989' => { + '4156599' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2428893' + 'type' => '4207448' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '2403137' => { + '4156745' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2428893' + 'type' => '4207448' } }, 'Type' => 'Struct' }, - '2403151' => { - 'BaseType' => '2428893', + '4156759' => { + 'BaseType' => '4207448', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '2403174' => { + '4157744' => { 'Base' => { - '2402989' => { + '4156599' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '2432561' + 'type' => '4212634' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2428893' + 'type' => '4207448' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '2403460' => { - 'BaseType' => '2403151', + '41577678' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5657052' + } + }, + 'Type' => 'Class' + }, + '4158023' => { + 'BaseType' => '4156759', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '2403870' => { + '4158345' => { 'Base' => { - '2403174' => { + '4157744' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2428893' + 'type' => '4207448' } }, 'Type' => 'Class' }, - '2427077' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '41584777' => { + 'BaseType' => '41577678', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '41584782' => { + 'BaseType' => '41584777', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '41585303' => { + 'BaseType' => '16790490', + 'Name' => 'log4cxx::rolling::RolloverDescription const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '41585313' => { + 'BaseType' => '5679623', + 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '41585323' => { + 'BaseType' => '5679628', + 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4169230' => { + 'Base' => { + '9216156' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '2428927' + 'type' => '4208199' } }, 'Type' => 'Class' }, - '2428623' => { - 'Header' => 'patternconverter_priv.h', - 'Line' => '31', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - }, - '1' => { - 'name' => 'name', - 'offset' => '8', - 'type' => '262804' - }, - '2' => { - 'name' => 'style', - 'offset' => '40', - 'type' => '262804' - } + '41928066' => { + 'BaseType' => '18616927', + 'Name' => 'log4cxx::spi::RootLogger const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4207448' => { + 'Base' => { + '209311' => { + 'pos' => '0' + } }, - 'Name' => 'struct log4cxx::pattern::PatternConverter::PatternConverterPrivate', - 'NameSpace' => 'log4cxx::pattern::PatternConverter', - 'Protected' => 1, - 'Size' => '72', - 'Type' => 'Struct', + 'Header' => 'dateformat.h', + 'Line' => '33', + 'Name' => 'log4cxx::helpers::DateFormat', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::PatternConverter::PatternConverterPrivate::~PatternConverterPrivate() [_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::PatternConverter::PatternConverterPrivate::~PatternConverterPrivate() [_ZN7log4cxx7pattern16PatternConverter23PatternConverterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::PatternConverter::PatternConverterPrivate) [_ZTIN7log4cxx7pattern16PatternConverter23PatternConverterPrivateE]' + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '64' => '(int (*)(...)) log4cxx::helpers::DateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers10DateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DateFormat) [_ZTIN7log4cxx7helpers10DateFormatE]' } }, - '2428893' => { + '4207458' => { 'Base' => { - '2271385' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'colorstartpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter', - 'NameSpace' => 'log4cxx::pattern', + 'Header' => 'dateformat.h', + 'Line' => '36', + 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat', + 'NameSpace' => 'log4cxx::helpers::DateFormat', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::DateFormat::ClazzDateFormat::~ClazzDateFormat() [_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::DateFormat::ClazzDateFormat::~ClazzDateFormat() [_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::ClazzDateFormat::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers10DateFormat15ClazzDateFormat7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DateFormat::ClazzDateFormat) [_ZTIN7log4cxx7helpers10DateFormat15ClazzDateFormatE]' + } + }, + '4207576' => { + 'BaseType' => '4207458', + 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4207781' => { + 'BaseType' => '4207448', + 'Name' => 'log4cxx::helpers::DateFormat const', + 'Type' => 'Const' + }, + '4207786' => { + 'BaseType' => '4158345', + 'Header' => 'dateformat.h', + 'Line' => '87', + 'Name' => 'log4cxx::helpers::DateFormatPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '4207798' => { + 'BaseType' => '4207786', + 'Name' => 'log4cxx::helpers::DateFormatPtr const', 'Size' => '16', + 'Type' => 'Const' + }, + '4207803' => { + 'BaseType' => '4169230', + 'Header' => 'timezone.h', + 'Line' => '31', + 'Name' => 'log4cxx::helpers::TimeZonePtr', + 'NameSpace' => 'log4cxx::helpers', + 'Type' => 'Typedef' + }, + '4207815' => { + 'BaseType' => '4207803', + 'Name' => 'log4cxx::helpers::TimeZonePtr const', + 'Type' => 'Const' + }, + '4208199' => { + 'Base' => { + '209311' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'timezone.h', + 'Line' => '33', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => 'id', + 'offset' => '8', + 'type' => '209661' + } + }, + 'Name' => 'log4cxx::helpers::TimeZone', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '40', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern26ColorStartPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', '16' => '0u', '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorStartPatternConverter) [_ZTIN7log4cxx7pattern26ColorStartPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::~ColorStartPatternConverter() [_ZN7log4cxx7pattern26ColorStartPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::~ColorStartPatternConverter() [_ZN7log4cxx7pattern26ColorStartPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::getClass() const [_ZNK7log4cxx7pattern26ColorStartPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern26ColorStartPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern26ColorStartPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + '32' => '(int (*)(...)) log4cxx::helpers::TimeZone::getClass() const [_ZNK7log4cxx7helpers8TimeZone8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::TimeZone::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZone) [_ZTIN7log4cxx7helpers8TimeZoneE]' } }, - '2428927' => { + '4208209' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'colorstartpatternconverter.h', - 'Line' => '41', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter', - 'NameSpace' => 'log4cxx::pattern::ColorStartPatternConverter', + 'Header' => 'timezone.h', + 'Line' => '36', + 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone', + 'NameSpace' => 'log4cxx::helpers::TimeZone', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter::~ClazzColorStartPatternConverter() [_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter::~ClazzColorStartPatternConverter() [_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD0Ev]', + '16' => '(int (*)(...)) log4cxx::helpers::TimeZone::ClazzTimeZone::~ClazzTimeZone() [_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::TimeZone::ClazzTimeZone::~ClazzTimeZone() [_ZN7log4cxx7helpers8TimeZone13ClazzTimeZoneD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter) [_ZTIN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterE]' + '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::ClazzTimeZone::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers8TimeZone13ClazzTimeZone7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZone::ClazzTimeZone) [_ZTIN7log4cxx7helpers8TimeZone13ClazzTimeZoneE]' } }, - '2429085' => { - 'BaseType' => '2428927', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter const', + '4208327' => { + 'BaseType' => '4208209', + 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone const', 'Size' => '8', 'Type' => 'Const' }, - '2429090' => { + '4208748' => { 'Base' => { - '2428623' => { + '4207448' => { 'pos' => '0' } }, - 'Line' => '135', + 'Header' => 'cacheddateformat.h', + 'Line' => '27', 'Memb' => { '0' => { - 'name' => 'm_fatalColor', - 'offset' => '72', - 'type' => '63706' + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '4142412' + } + }, + 'Name' => 'log4cxx::pattern::CachedDateFormat', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::~CachedDateFormat() [_ZN7log4cxx7pattern16CachedDateFormatD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::~CachedDateFormat() [_ZN7log4cxx7pattern16CachedDateFormatD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern16CachedDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS_7helpers4PoolE]', + '64' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7pattern16CachedDateFormat11setTimeZoneERKSt10shared_ptrINS_7helpers8TimeZoneEE]', + '72' => '(int (*)(...)) log4cxx::pattern::CachedDateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern16CachedDateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS_7helpers4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::CachedDateFormat) [_ZTIN7log4cxx7pattern16CachedDateFormatE]' + } + }, + '4208793' => { + 'Line' => '29', + 'Memb' => { + '0' => { + 'name' => 'formatter', + 'offset' => '0', + 'type' => '4207786' }, '1' => { - 'name' => 'm_errorColor', - 'offset' => '104', - 'type' => '63706' + 'name' => 'millisecondStart', + 'offset' => '22', + 'type' => '190263' }, '2' => { - 'name' => 'm_warnColor', - 'offset' => '136', - 'type' => '63706' + 'name' => 'slotBegin', + 'offset' => '36', + 'type' => '1914488' }, '3' => { - 'name' => 'm_infoColor', - 'offset' => '168', - 'type' => '63706' + 'name' => 'cache', + 'offset' => '50', + 'type' => '209661' }, '4' => { - 'name' => 'm_debugColor', - 'offset' => '200', - 'type' => '63706' + 'name' => 'expiration', + 'offset' => '100', + 'type' => '190271' }, '5' => { - 'name' => 'm_traceColor', - 'offset' => '232', - 'type' => '63706' + 'name' => 'previousTime', + 'offset' => '114', + 'type' => '1914488' } }, - 'Name' => 'struct log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate', - 'NameSpace' => 'log4cxx::pattern::ColorStartPatternConverter', + 'Name' => 'struct log4cxx::pattern::CachedDateFormat::CachedDateFormatPriv', + 'NameSpace' => 'log4cxx::pattern::CachedDateFormat', 'Private' => 1, - 'Size' => '264', - 'Source' => 'colorstartpatternconverter.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate::~ColorPatternConverterPrivate() [_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate::~ColorPatternConverterPrivate() [_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate) [_ZTIN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateE]' - } + 'Size' => '80', + 'Source' => 'cacheddateformat.cpp', + 'Type' => 'Struct' }, - '2429951' => { - 'BaseType' => '2428893', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter const', + '4209509' => { + 'BaseType' => '4208748', + 'Name' => 'log4cxx::pattern::CachedDateFormat const', 'Size' => '16', 'Type' => 'Const' }, - '2430539' => { - 'BaseType' => '2428623', - 'Name' => 'struct log4cxx::pattern::PatternConverter::PatternConverterPrivate*', + '4209701' => { + 'BaseType' => '4208793', + 'Name' => 'struct log4cxx::pattern::CachedDateFormat::CachedDateFormatPriv*', 'Size' => '8', 'Type' => 'Pointer' }, - '2430545' => { - 'BaseType' => '2430539', - 'Name' => 'struct log4cxx::pattern::PatternConverter::PatternConverterPrivate*const', + '4212634' => { + 'BaseType' => '4158023', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '2431970' => { - 'BaseType' => '2427077', - 'Name' => 'log4cxx::helpers::WideLife*', + '4212684' => { + 'BaseType' => '4207448', + 'Name' => 'log4cxx::helpers::DateFormat*', 'Size' => '8', 'Type' => 'Pointer' }, - '2431976' => { - 'BaseType' => '2431970', - 'Name' => 'log4cxx::helpers::WideLife*const', + '4212689' => { + 'BaseType' => '4212684', + 'Name' => 'log4cxx::helpers::DateFormat*const', 'Size' => '8', 'Type' => 'Const' }, - '2432095' => { - 'BaseType' => '2429090', - 'Name' => 'struct log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate*', + '4212694' => { + 'BaseType' => '563928', + 'Name' => 'log4cxx::logchar const[11]', + 'Size' => '11', + 'Type' => 'Array' + }, + '4212710' => { + 'BaseType' => '4212694', + 'Name' => 'log4cxx::logchar const[11] const', + 'Size' => '11', + 'Type' => 'Const' + }, + '4212725' => { + 'BaseType' => '563928', + 'Name' => 'log4cxx::logchar const[4]', + 'Size' => '4', + 'Type' => 'Array' + }, + '4212741' => { + 'BaseType' => '4212725', + 'Name' => 'log4cxx::logchar const[4] const', + 'Size' => '4', + 'Type' => 'Const' + }, + '4212766' => { + 'BaseType' => '1929539', + 'Name' => 'char const[4]&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '4213092' => { + 'BaseType' => '4208748', + 'Name' => 'log4cxx::pattern::CachedDateFormat*', 'Size' => '8', 'Type' => 'Pointer' }, - '2432101' => { - 'BaseType' => '2432095', - 'Name' => 'struct log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate*const', + '4213097' => { + 'BaseType' => '4213092', + 'Name' => 'log4cxx::pattern::CachedDateFormat*const', 'Size' => '8', 'Type' => 'Const' }, - '2432561' => { - 'BaseType' => '2403460', - 'Name' => 'std::__shared_ptr::element_type*', + '4213102' => { + 'BaseType' => '4207798', + 'Name' => 'log4cxx::helpers::DateFormatPtr const&', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Ref' }, - '2432579' => { - 'BaseType' => '2428893', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter*', + '4213107' => { + 'BaseType' => '4209509', + 'Name' => 'log4cxx::pattern::CachedDateFormat const*', 'Size' => '8', 'Type' => 'Pointer' }, - '2432585' => { - 'BaseType' => '2432579', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter*const', + '4213112' => { + 'BaseType' => '4213107', + 'Name' => 'log4cxx::pattern::CachedDateFormat const*const', 'Size' => '8', 'Type' => 'Const' }, - '2432607' => { - 'BaseType' => '2403870', - 'Name' => 'std::shared_ptr&&', + '4213117' => { + 'BaseType' => '4207815', + 'Name' => 'log4cxx::helpers::TimeZonePtr const&', 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '2432749' => { - 'BaseType' => '50678', - 'Name' => 'char const[12]', - 'Size' => '12', - 'Type' => 'Array' - }, - '2432765' => { - 'BaseType' => '50678', - 'Name' => 'char const[11]', - 'Size' => '11', - 'Type' => 'Array' + 'Type' => 'Ref' }, - '2432810' => { - 'BaseType' => '2429951', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter const*', + '4213132' => { + 'BaseType' => '4207458', + 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat*', 'Size' => '8', 'Type' => 'Pointer' }, - '2432816' => { - 'BaseType' => '2432810', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter const*const', + '4213137' => { + 'BaseType' => '4207576', + 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '2433139' => { - 'BaseType' => '63706', - 'Name' => 'log4cxx::LogString*', + '4213142' => { + 'BaseType' => '4208209', + 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone*', 'Size' => '8', 'Type' => 'Pointer' }, - '2433180' => { - 'BaseType' => '2428927', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter*', + '4213147' => { + 'BaseType' => '4208327', + 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone const*', 'Size' => '8', 'Type' => 'Pointer' }, - '2433186' => { - 'BaseType' => '2433180', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter*const', + '4213873' => { + 'BaseType' => '4207781', + 'Name' => 'log4cxx::helpers::DateFormat const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '2433191' => { - 'BaseType' => '2429085', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter const*', + '4213878' => { + 'BaseType' => '4213873', + 'Name' => 'log4cxx::helpers::DateFormat const*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '2433197' => { - 'BaseType' => '2433191', - 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter const*const', + '422275' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558578' + } + }, + 'Type' => 'Struct' + }, + '42265495' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '9954756' + } + }, + 'Type' => 'Class' + }, + '42268062' => { + 'BaseType' => '9954731', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42278742' => { + 'BaseType' => '42265495', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42278747' => { + 'BaseType' => '42278742', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42279088' => { + 'BaseType' => '9954731', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42279093' => { + 'BaseType' => '42279088', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42279393' => { + 'BaseType' => '42268062', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42279398' => { + 'BaseType' => '42279393', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42279413' => { + 'BaseType' => '9977365', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42279423' => { + 'BaseType' => '9977370', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42286686' => { + 'BaseType' => '42279088', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter*&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '4230610' => { + 'BaseType' => '190263', + 'Name' => 'int&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Ref' }, - '245591' => { + '423249' => { 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '425665' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558578' + }, + '1' => { + 'key' => '_Dp', + 'type' => '422275' + } + }, + 'Type' => 'Class' + }, + '423879' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '422275' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '422275' + } + }, + 'Type' => 'Struct' + }, + '424137' => { + 'Base' => { + '423879' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '232317' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '422275' + } + }, + 'Type' => 'Struct' + }, + '424443' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '572681' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::AppenderAttachableImpl::priv_data*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '572681' + } + }, + 'Type' => 'Struct' + }, + '42461057' => { + 'Base' => { + '42508357' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '42544416' + } + }, + 'Type' => 'Class' + }, + '42461347' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '42461057' + } + }, + 'Type' => 'Struct' + }, + '42461361' => { + 'BaseType' => '42544406', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits >::pointer', + 'NameSpace' => 'std::allocator_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '42461746' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '84', + 'Memb' => { + '0' => { + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '42461945' + } + }, + 'Name' => 'struct std::_Vector_base >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '42544416' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '42461057' + } + }, + 'Type' => 'Struct' + }, + '42461759' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', + 'Memb' => { + '0' => { + 'name' => '_M_start', + 'offset' => '0', + 'type' => '42461933' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '42461933' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '42461933' + } + }, + 'Name' => 'struct std::_Vector_base >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '42461933' => { + 'BaseType' => '42508828', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base >::pointer', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '42461945' => { + 'Base' => { + '42461057' => { + 'pos' => '0' + }, + '42461759' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '42462769' => { + 'Base' => { + '42461746' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '42544416' + } + }, + 'Type' => 'Class' + }, + '424701' => { + 'Base' => { + '424137' => { + 'pos' => '0' + }, + '424443' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::AppenderAttachableImpl::priv_data*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '572681' + } + }, + 'Type' => 'Struct' + }, + '42508357' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '42544416' + } + }, + 'Type' => 'Class' + }, + '42508604' => { + 'Base' => { + '42461347' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '42461057' + } + }, + 'Type' => 'Struct' + }, + '42508828' => { + 'BaseType' => '42461361', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '42531213' => { + 'BaseType' => '4208199', + 'Name' => 'log4cxx::helpers::TimeZone const', + 'Type' => 'Const' + }, + '42531230' => { + 'Line' => '68', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + } + }, + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::PatternToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '8', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::PatternToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl12PatternTokenE]' + } + }, + '42531605' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '586', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '8', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken::~RFC822TimeZoneToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken::~RFC822TimeZoneToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl19RFC822TimeZoneTokenE]' + } + }, + '42531798' => { + 'BaseType' => '42531605', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42531803' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '563', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'timeZone', + 'offset' => '8', + 'type' => '4207803' + } + }, + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '24', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken::~GeneralTimeZoneToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken::~GeneralTimeZoneToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl20GeneralTimeZoneTokenE]' + } + }, + '42532051' => { + 'BaseType' => '42531803', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken const', + 'Size' => '24', + 'Type' => 'Const' + }, + '42532056' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '544', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'names', + 'offset' => '8', + 'type' => '6007393' + } + }, + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '32', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AMPMToken::~AMPMToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AMPMToken::~AMPMToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AMPMToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl9AMPMToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::AMPMToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl9AMPMTokenE]' + } + }, + '42532268' => { + 'BaseType' => '42532056', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken const', + 'Size' => '32', + 'Type' => 'Const' + }, + '42532273' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '529', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken::~MicrosecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken::~MicrosecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl16MicrosecondTokenE]' + } + }, + '42532458' => { + 'BaseType' => '42532273', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42532463' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '237', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'width', + 'offset' => '8', + 'type' => '190816' + } + }, + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::NumericToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl12NumericTokenE]' + } + }, + '42532709' => { + 'BaseType' => '42532463', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42532714' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '514', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken::~MillisecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken::~MillisecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl16MillisecondToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl16MillisecondTokenE]' + } + }, + '42532899' => { + 'BaseType' => '42532714', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42532904' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '499', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::SecondToken::~SecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::SecondToken::~SecondToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::SecondToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl11SecondToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::SecondToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl11SecondTokenE]' + } + }, + '42533089' => { + 'BaseType' => '42532904', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42533094' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '484', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MinuteToken::~MinuteToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MinuteToken::~MinuteToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MinuteToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl11MinuteToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MinuteToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl11MinuteTokenE]' + } + }, + '42533279' => { + 'BaseType' => '42533094', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42533284' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '466', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'offset', + 'offset' => '22', + 'type' => '190263' } }, - 'Type' => 'Class' - }, - '246' => { - 'Header' => 'basic_string.h', - 'Line' => '176', - 'Memb' => { - '0' => { - 'name' => '_M_local_buf', - 'offset' => '0', - 'type' => '61461' - }, - '1' => { - 'name' => '_M_allocated_capacity', - 'offset' => '0', - 'type' => '281' - } - }, - 'Name' => 'std::__cxx11::basic_string::anon-union-basic_string.h-176', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Private' => 1, - 'Size' => '16', - 'Type' => 'Union' - }, - '2461118' => { - 'BaseType' => '2432749', - 'Name' => 'char const[12]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '2461124' => { - 'BaseType' => '2432765', - 'Name' => 'char const[11]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '246119' => { - 'Base' => { - '232771' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '24', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::HourToken::~HourToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::HourToken::~HourToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::HourToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl9HourToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::HourToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl9HourTokenE]' + } + }, + '42533488' => { + 'BaseType' => '42533284', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken const', + 'Size' => '24', + 'Type' => 'Const' + }, + '42533493' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '448', + 'Memb' => { '0' => { - 'key' => '_Alloc', - 'type' => '232620' + 'access' => 'private', + 'name' => 'offset', + 'offset' => '22', + 'type' => '190263' } }, - 'Type' => 'Struct' - }, - '246320' => { - 'BaseType' => '232785', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '2584218' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2607150' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '2584366' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2607150' - } - }, - 'Type' => 'Struct' - }, - '2584380' => { - 'BaseType' => '2607150', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '2584403' => { - 'Base' => { - '2584218' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '2609455' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '24', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken::~MilitaryHourToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken::~MilitaryHourToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl17MilitaryHourTokenE]' + } + }, + '42533697' => { + 'BaseType' => '42533493', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken const', + 'Size' => '24', + 'Type' => 'Const' + }, + '42533702' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '428', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'names', + 'offset' => '8', + 'type' => '6007393' + } + }, + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '32', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken::~FullDayNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken::~FullDayNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl16FullDayNameTokenE]' + } + }, + '42533914' => { + 'BaseType' => '42533702', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken const', + 'Size' => '32', + 'Type' => 'Const' + }, + '42533919' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '408', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'names', + 'offset' => '8', + 'type' => '6007393' + } + }, + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '32', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken::~AbbreviatedDayNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken::~AbbreviatedDayNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl23AbbreviatedDayNameTokenE]' + } + }, + '42534131' => { + 'BaseType' => '42533919', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken const', + 'Size' => '32', + 'Type' => 'Const' + }, + '42534136' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '393', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken::~DayOfWeekInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken::~DayOfWeekInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl21DayOfWeekInMonthTokenE]' + } + }, + '42534321' => { + 'BaseType' => '42534136', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42534326' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '378', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken::~DayInYearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken::~DayInYearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl14DayInYearToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl14DayInYearTokenE]' + } + }, + '42534511' => { + 'BaseType' => '42534326', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42534516' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '363', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken::~DayInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken::~DayInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl15DayInMonthTokenE]' + } + }, + '42534701' => { + 'BaseType' => '42534516', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42534706' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '348', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken::~WeekInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken::~WeekInMonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl16WeekInMonthTokenE]' + } + }, + '42534891' => { + 'BaseType' => '42534706', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42534896' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '333', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken::~WeekInYearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken::~WeekInYearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl15WeekInYearTokenE]' + } + }, + '42535081' => { + 'BaseType' => '42534896', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42535086' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '314', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'names', + 'offset' => '8', + 'type' => '6007393' + } + }, + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '32', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken::~FullMonthNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken::~FullMonthNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl18FullMonthNameTokenE]' + } + }, + '42535298' => { + 'BaseType' => '42535086', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken const', + 'Size' => '32', + 'Type' => 'Const' + }, + '42535303' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '295', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'names', + 'offset' => '8', + 'type' => '6007393' + } + }, + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '32', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken::~AbbreviatedMonthNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken::~AbbreviatedMonthNameToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl25AbbreviatedMonthNameTokenE]' + } + }, + '42535515' => { + 'BaseType' => '42535303', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken const', + 'Size' => '32', + 'Type' => 'Const' + }, + '42535520' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '280', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MonthToken::~MonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MonthToken::~MonthToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::MonthToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl10MonthToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::MonthToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl10MonthTokenE]' + } + }, + '42535705' => { + 'BaseType' => '42535520', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42535710' => { + 'Base' => { + '42532463' => { + 'pos' => '0' + } + }, + 'Line' => '265', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::YearToken::~YearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::YearToken::~YearToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::NumericToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12NumericToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '48' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::YearToken::getField(apr_time_exp_t const&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl9YearToken8getFieldERK14apr_time_exp_t]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::YearToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl9YearTokenE]' + } + }, + '42535895' => { + 'BaseType' => '42535710', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42535900' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '221', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '8', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::EraToken::~EraToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::EraToken::~EraToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::EraToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl8EraToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::EraToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl8EraTokenE]' + } + }, + '42536094' => { + 'BaseType' => '42535900', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42536099' => { + 'Base' => { + '42531230' => { + 'pos' => '0' + } + }, + 'Line' => '202', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'ch', + 'offset' => '8', + 'type' => '209678' + }, + '1' => { + 'access' => 'private', + 'name' => 'count', + 'offset' => '18', + 'type' => '190263' + } + }, + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '16', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::LiteralToken::~LiteralToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::LiteralToken::~LiteralToken() [_ZN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::PatternToken::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers20SimpleDateFormatImpl12PatternToken11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '40' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormatImpl::LiteralToken::format(std::__cxx11::basic_string, std::allocator >&, apr_time_exp_t const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers20SimpleDateFormatImpl12LiteralToken6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERK14apr_time_exp_tRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormatImpl::LiteralToken) [_ZTIN7log4cxx7helpers20SimpleDateFormatImpl12LiteralTokenE]' + } + }, + '42536318' => { + 'BaseType' => '42536099', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken const', + 'Size' => '16', + 'Type' => 'Const' + }, + '42536323' => { + 'BaseType' => '42545740', + 'Line' => '62', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::incrementFunction', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormatImpl', + 'Size' => '8', + 'Source' => 'simpledateformat.cpp', + 'Type' => 'Typedef' + }, + '42536353' => { + 'BaseType' => '42462769', + 'Header' => 'simpledateformat.h', + 'Line' => '38', + 'Name' => 'log4cxx::helpers::PatternTokenList', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '42543391' => { + 'BaseType' => '1929655', + 'Name' => 'apr_time_exp_t const', + 'Size' => '44', + 'Type' => 'Const' + }, + '42544406' => { + 'BaseType' => '42544416', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::PatternToken**', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42544416' => { + 'BaseType' => '42531230', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::PatternToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42544421' => { + 'BaseType' => '42544416', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::PatternToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42544606' => { + 'BaseType' => '42462769', + 'Name' => 'std::vector&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '42544991' => { + 'BaseType' => '9350583', + 'Name' => 'log4cxx::helpers::SimpleDateFormat const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545001' => { + 'BaseType' => '42531605', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545006' => { + 'BaseType' => '42545001', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545021' => { + 'BaseType' => '42531798', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545026' => { + 'BaseType' => '42545021', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::RFC822TimeZoneToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545031' => { + 'BaseType' => '42543391', + 'Name' => 'apr_time_exp_t const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '42545036' => { + 'BaseType' => '42531803', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545041' => { + 'BaseType' => '42545036', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545056' => { + 'BaseType' => '42532051', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545061' => { + 'BaseType' => '42545056', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::GeneralTimeZoneToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545066' => { + 'BaseType' => '42532056', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545071' => { + 'BaseType' => '42545066', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545086' => { + 'BaseType' => '42532268', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545091' => { + 'BaseType' => '42545086', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AMPMToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545096' => { + 'BaseType' => '42532273', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545101' => { + 'BaseType' => '42545096', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545116' => { + 'BaseType' => '42532458', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545121' => { + 'BaseType' => '42545116', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MicrosecondToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545126' => { + 'BaseType' => '42532714', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545131' => { + 'BaseType' => '42545126', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545146' => { + 'BaseType' => '42532899', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545151' => { + 'BaseType' => '42545146', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MillisecondToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545156' => { + 'BaseType' => '42532904', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545161' => { + 'BaseType' => '42545156', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545176' => { + 'BaseType' => '42533089', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545181' => { + 'BaseType' => '42545176', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::SecondToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545186' => { + 'BaseType' => '42533094', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545191' => { + 'BaseType' => '42545186', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545206' => { + 'BaseType' => '42533279', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545211' => { + 'BaseType' => '42545206', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MinuteToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545216' => { + 'BaseType' => '42533284', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545221' => { + 'BaseType' => '42545216', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545236' => { + 'BaseType' => '42533488', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545241' => { + 'BaseType' => '42545236', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::HourToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545246' => { + 'BaseType' => '42533493', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545251' => { + 'BaseType' => '42545246', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545266' => { + 'BaseType' => '42533697', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545271' => { + 'BaseType' => '42545266', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MilitaryHourToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545276' => { + 'BaseType' => '42533702', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545281' => { + 'BaseType' => '42545276', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545296' => { + 'BaseType' => '42533914', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545301' => { + 'BaseType' => '42545296', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullDayNameToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545306' => { + 'BaseType' => '42533919', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545311' => { + 'BaseType' => '42545306', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545326' => { + 'BaseType' => '42534131', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545331' => { + 'BaseType' => '42545326', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedDayNameToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545336' => { + 'BaseType' => '42534136', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545341' => { + 'BaseType' => '42545336', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545356' => { + 'BaseType' => '42534321', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545361' => { + 'BaseType' => '42545356', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayOfWeekInMonthToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545366' => { + 'BaseType' => '42534326', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545371' => { + 'BaseType' => '42545366', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545386' => { + 'BaseType' => '42534511', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545391' => { + 'BaseType' => '42545386', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInYearToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545396' => { + 'BaseType' => '42534516', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545401' => { + 'BaseType' => '42545396', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545416' => { + 'BaseType' => '42534701', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545421' => { + 'BaseType' => '42545416', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::DayInMonthToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545426' => { + 'BaseType' => '42534706', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545431' => { + 'BaseType' => '42545426', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545446' => { + 'BaseType' => '42534891', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545451' => { + 'BaseType' => '42545446', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInMonthToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545456' => { + 'BaseType' => '42534896', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545461' => { + 'BaseType' => '42545456', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545476' => { + 'BaseType' => '42535081', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545481' => { + 'BaseType' => '42545476', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::WeekInYearToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545486' => { + 'BaseType' => '42535086', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545491' => { + 'BaseType' => '42545486', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545506' => { + 'BaseType' => '42535298', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545511' => { + 'BaseType' => '42545506', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::FullMonthNameToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545516' => { + 'BaseType' => '42535303', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545521' => { + 'BaseType' => '42545516', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545536' => { + 'BaseType' => '42535515', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545541' => { + 'BaseType' => '42545536', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::AbbreviatedMonthNameToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545546' => { + 'BaseType' => '42535520', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545551' => { + 'BaseType' => '42545546', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545566' => { + 'BaseType' => '42535705', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545571' => { + 'BaseType' => '42545566', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::MonthToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545576' => { + 'BaseType' => '42535710', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545581' => { + 'BaseType' => '42545576', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545596' => { + 'BaseType' => '42535895', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545601' => { + 'BaseType' => '42545596', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::YearToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545606' => { + 'BaseType' => '42532463', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545611' => { + 'BaseType' => '42545606', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545626' => { + 'BaseType' => '42532709', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545631' => { + 'BaseType' => '42545626', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::NumericToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545636' => { + 'BaseType' => '42535900', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545641' => { + 'BaseType' => '42545636', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545656' => { + 'BaseType' => '42536094', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545661' => { + 'BaseType' => '42545656', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::EraToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545666' => { + 'BaseType' => '42536099', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545671' => { + 'BaseType' => '42545666', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545686' => { + 'BaseType' => '42536318', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42545691' => { + 'BaseType' => '42545686', + 'Name' => 'log4cxx::helpers::SimpleDateFormatImpl::LiteralToken const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '42545730' => { + 'BaseType' => '192671', + 'Name' => 'struct tm&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '42545735' => { + 'BaseType' => '1929655', + 'Name' => 'apr_time_exp_t&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '42545740' => { + 'Name' => 'void(*)(struct tm&, apr_time_exp_t&)', + 'Param' => { '0' => { - 'key' => '_Tp', - 'type' => '2607150' + 'type' => '42545730' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '2584692' => { - 'BaseType' => '2584380', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '2585102' => { - 'Base' => { - '2584403' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2607150' - } - }, - 'Type' => 'Class' - }, - '2605520' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '2607184' + 'type' => '42545735' } }, - 'Type' => 'Class' - }, - '2607150' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'colorendpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern24ColorEndPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorEndPatternConverter) [_ZTIN7log4cxx7pattern24ColorEndPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::~ColorEndPatternConverter() [_ZN7log4cxx7pattern24ColorEndPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::~ColorEndPatternConverter() [_ZN7log4cxx7pattern24ColorEndPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::getClass() const [_ZNK7log4cxx7pattern24ColorEndPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern24ColorEndPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern24ColorEndPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } - }, - '2607184' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'colorendpatternconverter.h', - 'Line' => '39', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter', - 'NameSpace' => 'log4cxx::pattern::ColorEndPatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter::~ClazzColorEndPatternConverter() [_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter::~ClazzColorEndPatternConverter() [_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter) [_ZTIN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterE]' - } - }, - '260723' => { + 'Return' => '1', + 'Size' => '8', + 'Type' => 'FuncPtr' + }, + '42547776' => { + 'BaseType' => '1929655', + 'Name' => 'apr_time_exp_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '425665' => { 'Base' => { - '262822' => { - 'pos' => '0', - 'virtual' => 1 + '424701' => { + 'pos' => '0' } }, - 'Header' => 'appenderattachableimpl.h', - 'Line' => '39', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '229563' - } + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '572681' + } + }, + 'Type' => 'Class' + }, + '42685260' => { + 'BaseType' => '42531213', + 'Name' => 'log4cxx::helpers::TimeZone const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '42685265' => { + 'BaseType' => '42685260', + 'Name' => 'log4cxx::helpers::TimeZone const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '427107' => { + 'Base' => { + '423249' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::AppenderAttachableImpl) [_ZTIN7log4cxx7helpers22AppenderAttachableImplE]', - '120' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::~AppenderAttachableImpl() [_ZN7log4cxx7helpers22AppenderAttachableImplD1Ev]', - '128' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::~AppenderAttachableImpl() [_ZN7log4cxx7helpers22AppenderAttachableImplD0Ev]', - '136' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::getClass() const [_ZNK7log4cxx7helpers22AppenderAttachableImpl8getClassEv]', - '144' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers22AppenderAttachableImpl10instanceofERKNS0_5ClassE]', - '152' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers22AppenderAttachableImpl4castERKNS0_5ClassE]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::addAppender(std::shared_ptr) [_ZN7log4cxx7helpers22AppenderAttachableImpl11addAppenderESt10shared_ptrINS_8AppenderEE]', - '168' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::getAllAppenders() const [_ZNK7log4cxx7helpers22AppenderAttachableImpl15getAllAppendersEv]', - '176' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::getAppender(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx7helpers22AppenderAttachableImpl11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '184' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::isAttached(std::shared_ptr) const [_ZNK7log4cxx7helpers22AppenderAttachableImpl10isAttachedESt10shared_ptrINS_8AppenderEE]', - '192' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::removeAllAppenders() [_ZN7log4cxx7helpers22AppenderAttachableImpl18removeAllAppendersEv]', - '200' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::removeAppender(std::shared_ptr) [_ZN7log4cxx7helpers22AppenderAttachableImpl14removeAppenderESt10shared_ptrINS_8AppenderEE]', - '208' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::removeAppender(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7helpers22AppenderAttachableImpl14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558578' + }, + '1' => { + 'key' => '_Dp', + 'type' => '422275' + } + }, + 'Type' => 'Struct' }, - '2607342' => { - 'BaseType' => '2607184', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '260741' => { - 'Line' => '31', + '427309' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { - 'name' => 'appenderList', + 'access' => 'private', + 'name' => '_M_t', 'offset' => '0', - 'type' => '262971' - }, - '1' => { - 'name' => 'm_mutex', - 'offset' => '24', - 'type' => '41413' + 'type' => '427107' } }, - 'Name' => 'struct log4cxx::helpers::AppenderAttachableImpl::priv_data', - 'NameSpace' => 'log4cxx::helpers::AppenderAttachableImpl', - 'Private' => 1, - 'Size' => '64', - 'Source' => 'appenderattachableimpl.cpp', - 'Type' => 'Struct' - }, - '2607747' => { - 'BaseType' => '2607150', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '260830' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'appenderattachableimpl.h', - 'Line' => '54', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl', - 'NameSpace' => 'log4cxx::helpers::AppenderAttachableImpl', + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl::~ClazzAppenderAttachableImpl() [_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl::~ClazzAppenderAttachableImpl() [_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImpl7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl) [_ZTIN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplE]' - } + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558578' + }, + '1' => { + 'key' => '_Dp', + 'type' => '422275' + } + }, + 'Type' => 'Class' }, - '2609165' => { - 'BaseType' => '2605520', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2609171' => { - 'BaseType' => '2609165', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2609455' => { - 'BaseType' => '2584692', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2609473' => { - 'BaseType' => '2607150', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2609479' => { - 'BaseType' => '2609473', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2609501' => { - 'BaseType' => '2585102', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '2609572' => { - 'BaseType' => '2607747', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2609578' => { - 'BaseType' => '2609572', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '260988' => { - 'BaseType' => '260830', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl const', - 'Size' => '8', - 'Type' => 'Const' + '427992' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '563933' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '2609883' => { - 'BaseType' => '2607184', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2609889' => { - 'BaseType' => '2609883', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2609894' => { - 'BaseType' => '2607342', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2609900' => { - 'BaseType' => '2609894', - 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '261696' => { - 'BaseType' => '260723', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl const', - 'Size' => '16', - 'Type' => 'Const' + '428140' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '563933' + } + }, + 'Type' => 'Struct' }, - '261701' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '428154' => { + 'BaseType' => '563933', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '428177' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '578', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_pi', 'offset' => '0', - 'type' => '55091' + 'type' => '572946' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'std::__shared_count<2>', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '260830' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '262804' => { - 'BaseType' => '63706', - 'Name' => 'log4cxx::LogString const', - 'Size' => '32', - 'Type' => 'Const' - }, - '262822' => { + '428640' => { 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } + '105767' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'appenderattachable.h', - 'Line' => '33', - 'Name' => 'log4cxx::spi::AppenderAttachable', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) __cxa_pure_virtual', - '112' => '(int (*)(...)) __cxa_pure_virtual', - '120' => '(int (*)(...)) __cxa_pure_virtual', - '128' => '(int (*)(...)) __cxa_pure_virtual', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '144' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::AppenderAttachable) [_ZTIN7log4cxx3spi18AppenderAttachableE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::spi::AppenderAttachable::getClass() const [_ZNK7log4cxx3spi18AppenderAttachable8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' - } - }, - '262971' => { - 'BaseType' => '234162', - 'Header' => 'appender.h', - 'Line' => '133', - 'Name' => 'log4cxx::AppenderList', - 'NameSpace' => 'log4cxx', - 'Size' => '24', - 'Type' => 'Typedef' + 'Header' => 'shared_ptr_base.h', + 'Line' => '122', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_use_count', + 'offset' => '8', + 'type' => '200752' + }, + '2' => { + 'access' => 'private', + 'name' => '_M_weak_count', + 'offset' => '18', + 'type' => '200752' + } + }, + 'Name' => 'std::_Sp_counted_base<2>', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '262983' => { + '429145' => { 'Base' => { - '151305' => { - 'pos' => '0', - 'virtual' => 1 + '427992' => { + 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'appender.h', - 'Line' => '49', - 'Name' => 'log4cxx::Appender', - 'NameSpace' => 'log4cxx', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) __cxa_pure_virtual', - '112' => '(int (*)(...)) __cxa_pure_virtual', - '120' => '(int (*)(...)) __cxa_pure_virtual', - '128' => '(int (*)(...)) __cxa_pure_virtual', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '144' => '(int (*)(...)) __cxa_pure_virtual', - '152' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '160' => '(int (*)(...)) __cxa_pure_virtual', - '168' => '(int (*)(...)) __cxa_pure_virtual', - '176' => '(int (*)(...)) __cxa_pure_virtual', - '184' => '(int (*)(...)) __cxa_pure_virtual', - '192' => '(int (*)(...)) __cxa_pure_virtual', - '200' => '(int (*)(...)) __cxa_pure_virtual', - '208' => '(int (*)(...)) __cxa_pure_virtual', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::Appender) [_ZTIN7log4cxx8AppenderE]', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '(int (*)(...)) log4cxx::Appender::getClass() const [_ZNK7log4cxx8Appender8getClassEv]' - } - }, - '262988' => { - 'BaseType' => '232317', - 'Header' => 'appender.h', - 'Line' => '132', - 'Name' => 'log4cxx::AppenderPtr', - 'NameSpace' => 'log4cxx', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '572976' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '563933' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '429426' => { + 'BaseType' => '428154', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '263000' => { - 'BaseType' => '262988', - 'Name' => 'log4cxx::AppenderPtr const', + '429750' => { + 'Base' => { + '429145' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', 'Size' => '16', - 'Type' => 'Const' - }, - '263006' => { - 'BaseType' => '262804', - 'Name' => 'log4cxx::LogString const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '263881' => { - 'BaseType' => '260741', - 'Name' => 'struct log4cxx::helpers::AppenderAttachableImpl::priv_data*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '264417' => { - 'BaseType' => '261701', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '264423' => { - 'BaseType' => '264417', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '264542' => { - 'BaseType' => '232317', - 'Name' => 'std::shared_ptr*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '264581' => { - 'BaseType' => '232615', - 'Name' => 'std::shared_ptrconst&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '264761' => { - 'BaseType' => '237321', - 'Name' => 'std::vector >const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '264854' => { - 'BaseType' => '238093', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '264877' => { - 'BaseType' => '262983', - 'Name' => 'log4cxx::Appender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '265075' => { - 'BaseType' => '260723', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '265081' => { - 'BaseType' => '265075', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '265097' => { - 'BaseType' => '261696', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl const*', - 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '563933' + } + }, + 'Type' => 'Class' }, - '265103' => { - 'BaseType' => '265097', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl const*const', - 'Size' => '8', - 'Type' => 'Const' + '42999619' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5661177' + } + }, + 'Type' => 'Class' + }, + '43004008' => { + 'BaseType' => '5661168', + 'Name' => 'log4cxx::SimpleLayout const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43012095' => { + 'BaseType' => '42999619', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43012100' => { + 'BaseType' => '43012095', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43012556' => { + 'BaseType' => '5679768', + 'Name' => 'log4cxx::SimpleLayout*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43012581' => { + 'BaseType' => '43004008', + 'Name' => 'log4cxx::SimpleLayout const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43012586' => { + 'BaseType' => '43012581', + 'Name' => 'log4cxx::SimpleLayout const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43012601' => { + 'BaseType' => '5679758', + 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43012611' => { + 'BaseType' => '5679763', + 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '430145' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558708' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '265126' => { - 'BaseType' => '260830', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl*', - 'Size' => '8', - 'Type' => 'Pointer' + '430293' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558708' + } + }, + 'Type' => 'Struct' }, - '265132' => { - 'BaseType' => '265126', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl*const', - 'Size' => '8', - 'Type' => 'Const' + '430307' => { + 'BaseType' => '558708', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' }, - '265137' => { - 'BaseType' => '260988', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl const*', - 'Size' => '8', - 'Type' => 'Pointer' + '430330' => { + 'Base' => { + '430145' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '573071' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558708' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '265143' => { - 'BaseType' => '265137', - 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl const*const', - 'Size' => '8', - 'Type' => 'Const' + '430611' => { + 'BaseType' => '430307', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' }, - '2698550' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '2699656' - } - }, - 'Type' => 'Class' - }, - '2699607' => { - 'Header' => 'configurator.h', - 'Line' => '30', - 'Memb' => { - '0' => { - 'name' => 'Configured', - 'value' => '0' - }, - '1' => { - 'name' => 'NotConfigured', - 'value' => '1' - } - }, - 'Name' => 'enum log4cxx::spi::ConfigurationStatus', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '4', - 'Type' => 'Enum' - }, - '2699638' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Header' => 'configurator.h', - 'Line' => '38', - 'Name' => 'log4cxx::spi::Configurator', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Configurator) [_ZTIN7log4cxx3spi12ConfiguratorE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::spi::Configurator::getClass() const [_ZNK7log4cxx3spi12Configurator8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' - } - }, - '2699656' => { - 'Base' => { - '62698' => { + '430935' => { + 'Base' => { + '430330' => { 'pos' => '0' } - }, - 'Header' => 'configurator.h', - 'Line' => '41', - 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator', - 'NameSpace' => 'log4cxx::spi::Configurator', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::Configurator::ClazzConfigurator::~ClazzConfigurator() [_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD2Ev]', - '24' => '(int (*)(...)) log4cxx::spi::Configurator::ClazzConfigurator::~ClazzConfigurator() [_ZN7log4cxx3spi12Configurator17ClazzConfiguratorD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::Configurator::ClazzConfigurator::getName[abi:cxx11]() const [_ZNK7log4cxx3spi12Configurator17ClazzConfigurator7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Configurator::ClazzConfigurator) [_ZTIN7log4cxx3spi12Configurator17ClazzConfiguratorE]' - } - }, - '2699815' => { - 'BaseType' => '2699656', - 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2700108' => { - 'BaseType' => '2699638', - 'Name' => 'log4cxx::spi::Configurator const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2701123' => { - 'BaseType' => '2698550', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2701129' => { - 'BaseType' => '2701123', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2701279' => { - 'BaseType' => '2700108', - 'Name' => 'log4cxx::spi::Configurator const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2701285' => { - 'BaseType' => '2701279', - 'Name' => 'log4cxx::spi::Configurator const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2701290' => { - 'BaseType' => '2699638', - 'Name' => 'log4cxx::spi::Configurator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2701296' => { - 'BaseType' => '2701290', - 'Name' => 'log4cxx::spi::Configurator*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2701330' => { - 'BaseType' => '2699656', - 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2701336' => { - 'BaseType' => '2701330', - 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2701341' => { - 'BaseType' => '2699815', - 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2701347' => { - 'BaseType' => '2701341', - 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2806884' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2844868' - } - }, - 'Type' => 'Struct' - }, - '2807010' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '2808770' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2844868' - }, - '1' => { - 'key' => '_Dp', - 'type' => '2806884' - } - }, - 'Type' => 'Class' - }, - '2807379' => { - 'Base' => { - '2806884' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '2806884' - } - }, - 'Type' => 'Struct' - }, - '2807672' => { - 'Base' => { - '2807379' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '2806884' - } - }, - 'Type' => 'Struct' - }, - '2808008' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '2849464' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::WriterAppender::WriterAppenderPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '2849464' - } - }, - 'Type' => 'Struct' - }, - '2808308' => { - 'Base' => { - '2807672' => { - 'pos' => '0' - }, - '2808008' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::WriterAppender::WriterAppenderPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '2849464' - } - }, - 'Type' => 'Struct' - }, - '2808770' => { - 'Base' => { - '2808308' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '2849464' - } - }, - 'Type' => 'Class' - }, - '2809109' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '2807010' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2844868' - }, - '1' => { - 'key' => '_Dp', - 'type' => '2806884' - } - }, - 'Type' => 'Class' - }, - '281' => { - 'BaseType' => '48631', - 'Header' => 'basic_string.h', - 'Line' => '92', - 'Name' => 'std::__cxx11::basic_string::size_type', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '2841634' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '2843842' - } - }, - 'Type' => 'Class' - }, - '2842400' => { - 'Base' => { - '1248265' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'systemoutwriter.h', - 'Line' => '31', - 'Name' => 'log4cxx::helpers::SystemOutWriter', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::~SystemOutWriter() [_ZN7log4cxx7helpers15SystemOutWriterD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::~SystemOutWriter() [_ZN7log4cxx7helpers15SystemOutWriterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::getClass() const [_ZNK7log4cxx7helpers15SystemOutWriter8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15SystemOutWriter10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15SystemOutWriter4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemOutWriter5closeERNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemOutWriter5flushERNS0_4PoolE]', - '72' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::write(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemOutWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SystemOutWriter) [_ZTIN7log4cxx7helpers15SystemOutWriterE]' - } - }, - '2842405' => { - 'BaseType' => '2842400', - 'Name' => 'log4cxx::helpers::SystemOutWriter const', - 'Type' => 'Const' - }, - '2842816' => { - 'Base' => { - '1248265' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'systemerrwriter.h', - 'Line' => '31', - 'Name' => 'log4cxx::helpers::SystemErrWriter', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::~SystemErrWriter() [_ZN7log4cxx7helpers15SystemErrWriterD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::~SystemErrWriter() [_ZN7log4cxx7helpers15SystemErrWriterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::getClass() const [_ZNK7log4cxx7helpers15SystemErrWriter8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15SystemErrWriter10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15SystemErrWriter4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemErrWriter5closeERNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemErrWriter5flushERNS0_4PoolE]', - '72' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::write(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemErrWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SystemErrWriter) [_ZTIN7log4cxx7helpers15SystemErrWriterE]' - } - }, - '2842821' => { - 'BaseType' => '2842816', - 'Name' => 'log4cxx::helpers::SystemErrWriter const', - 'Type' => 'Const' - }, - '2843842' => { - 'Base' => { - '62698' => { + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558708' + } + }, + 'Type' => 'Class' + }, + '43339375' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5657766' + } + }, + 'Type' => 'Class' + }, + '43351755' => { + 'BaseType' => '43339375', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43351760' => { + 'BaseType' => '43351755', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43352161' => { + 'BaseType' => '40201582', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43352181' => { + 'BaseType' => '5679543', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43352191' => { + 'BaseType' => '5679548', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '434041' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558855' + } + }, + 'Type' => 'Struct' + }, + '435015' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '437431' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558855' + }, + '1' => { + 'key' => '_Dp', + 'type' => '434041' + } + }, + 'Type' => 'Class' + }, + '435645' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '434041' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '434041' + } + }, + 'Type' => 'Struct' + }, + '435903' => { + 'Base' => { + '435645' => { + 'access' => 'private', 'pos' => '0' } - }, - 'Header' => 'consoleappender.h', - 'Line' => '43', - 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender', - 'NameSpace' => 'log4cxx::ConsoleAppender', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::ConsoleAppender::ClazzConsoleAppender::~ClazzConsoleAppender() [_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD1Ev]', - '24' => '(int (*)(...)) log4cxx::ConsoleAppender::ClazzConsoleAppender::~ClazzConsoleAppender() [_ZN7log4cxx15ConsoleAppender20ClazzConsoleAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::ConsoleAppender::ClazzConsoleAppender::newInstance() const [_ZTch0_h0_NK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::ConsoleAppender::ClazzConsoleAppender::getName[abi:cxx11]() const [_ZNK7log4cxx15ConsoleAppender20ClazzConsoleAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::ConsoleAppender::ClazzConsoleAppender::newInstance() const [_ZNK7log4cxx15ConsoleAppender20ClazzConsoleAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::ConsoleAppender::ClazzConsoleAppender) [_ZTIN7log4cxx15ConsoleAppender20ClazzConsoleAppenderE]' - } - }, - '2844063' => { - 'BaseType' => '2843842', - 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2844068' => { - 'Base' => { - '2844868' => { - 'pos' => '0' - } - }, - 'Line' => '30', - 'Memb' => { - '0' => { - 'name' => 'target', - 'offset' => '240', - 'type' => '63706' - } - }, - 'Name' => 'struct log4cxx::ConsoleAppender::ConsoleAppenderPriv', - 'NameSpace' => 'log4cxx::ConsoleAppender', - 'Private' => 1, - 'Size' => '272', - 'Source' => 'consoleappender.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::ConsoleAppender::ConsoleAppenderPriv::~ConsoleAppenderPriv() [_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD1Ev]', - '24' => '(int (*)(...)) log4cxx::ConsoleAppender::ConsoleAppenderPriv::~ConsoleAppenderPriv() [_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::ConsoleAppender::ConsoleAppenderPriv) [_ZTIN7log4cxx15ConsoleAppender19ConsoleAppenderPrivE]' - } - }, - '2844858' => { - 'Base' => { - '407542' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'writerappender.h', - 'Line' => '36', - 'Name' => 'log4cxx::WriterAppender', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::WriterAppender) [_ZTIN7log4cxx14WriterAppenderE]', - '168' => '(int (*)(...)) log4cxx::WriterAppender::~WriterAppender() [_ZN7log4cxx14WriterAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::WriterAppender::~WriterAppender() [_ZN7log4cxx14WriterAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::WriterAppender::getClass() const [_ZNK7log4cxx14WriterAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::WriterAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx14WriterAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::WriterAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx14WriterAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::WriterAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::WriterAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx14WriterAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::WriterAppender::close() [_ZN7log4cxx14WriterAppender5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::WriterAppender::requiresLayout() const [_ZNK7log4cxx14WriterAppender14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::WriterAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '312' => '(int (*)(...)) log4cxx::WriterAppender::checkEntryConditions() const [_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv]', - '32' => '0u', - '320' => '(int (*)(...)) log4cxx::WriterAppender::createWriter(std::shared_ptr&) [_ZN7log4cxx14WriterAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE]', - '328' => '(int (*)(...)) log4cxx::WriterAppender::subAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '336' => '(int (*)(...)) log4cxx::WriterAppender::writeFooter(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE]', - '344' => '(int (*)(...)) log4cxx::WriterAppender::writeHeader(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE]', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '2844868' => { - 'Base' => { - '407560' => { - 'pos' => '0' - } - }, - 'Header' => 'writerappender_priv.h', - 'Line' => '34', - 'Memb' => { - '0' => { - 'name' => 'immediateFlush', - 'offset' => '184', - 'type' => '572884' - }, - '1' => { - 'name' => 'encoding', - 'offset' => '192', - 'type' => '63706' - }, - '2' => { - 'name' => 'writer', - 'offset' => '224', - 'type' => '1248337' - } - }, - 'Name' => 'struct log4cxx::WriterAppender::WriterAppenderPriv', - 'NameSpace' => 'log4cxx::WriterAppender', - 'Protected' => 1, - 'Size' => '240', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::WriterAppender::WriterAppenderPriv::~WriterAppenderPriv() [_ZN7log4cxx14WriterAppender18WriterAppenderPrivD1Ev]', - '24' => '(int (*)(...)) log4cxx::WriterAppender::WriterAppenderPriv::~WriterAppenderPriv() [_ZN7log4cxx14WriterAppender18WriterAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::WriterAppender::WriterAppenderPriv) [_ZTIN7log4cxx14WriterAppender18WriterAppenderPrivE]' - } - }, - '2845259' => { - 'BaseType' => '2844858', - 'Name' => 'log4cxx::WriterAppender const', - 'Type' => 'Const' - }, - '2849033' => { - 'BaseType' => '2841634', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2849039' => { - 'BaseType' => '2849033', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2849158' => { - 'BaseType' => '2844068', - 'Name' => 'struct log4cxx::ConsoleAppender::ConsoleAppenderPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2849164' => { - 'BaseType' => '2849158', - 'Name' => 'struct log4cxx::ConsoleAppender::ConsoleAppenderPriv*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2849464' => { - 'BaseType' => '2844868', - 'Name' => 'struct log4cxx::WriterAppender::WriterAppenderPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2849470' => { - 'BaseType' => '2849464', - 'Name' => 'struct log4cxx::WriterAppender::WriterAppenderPriv*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2849803' => { - 'BaseType' => '2842400', - 'Name' => 'log4cxx::helpers::SystemOutWriter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2849949' => { - 'BaseType' => '2842816', - 'Name' => 'log4cxx::helpers::SystemErrWriter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2850107' => { - 'BaseType' => '2842405', - 'Name' => 'log4cxx::helpers::SystemOutWriter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2850193' => { - 'BaseType' => '2842821', - 'Name' => 'log4cxx::helpers::SystemErrWriter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2850862' => { - 'BaseType' => '1153327', - 'Name' => 'log4cxx::ConsoleAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2850890' => { - 'BaseType' => '1153613', - 'Name' => 'log4cxx::ConsoleAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2850967' => { - 'BaseType' => '2843842', - 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2850973' => { - 'BaseType' => '2850967', - 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '2850978' => { - 'BaseType' => '2844063', - 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '2850984' => { - 'BaseType' => '2850978', - 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3029735' => { - 'BaseType' => '2845259', - 'Name' => 'log4cxx::WriterAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3029741' => { - 'BaseType' => '3029735', - 'Name' => 'log4cxx::WriterAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3076091' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3105939' - } - }, - 'Type' => 'Struct' - }, - '3076177' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '3077714' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3105939' - }, - '1' => { - 'key' => '_Dp', - 'type' => '3076091' - } - }, - 'Type' => 'Class' - }, - '3076500' => { - 'Base' => { - '3076091' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '3076091' - } - }, - 'Type' => 'Struct' - }, - '3076753' => { - 'Base' => { - '3076500' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '3076091' - } - }, - 'Type' => 'Struct' - }, - '3077051' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '3108306' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::CyclicBuffer::CyclicBufferPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '3108306' - } - }, - 'Type' => 'Struct' - }, - '3077311' => { - 'Base' => { - '3076753' => { - 'pos' => '0' + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '434041' + } + }, + 'Type' => 'Struct' + }, + '436209' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '573213' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::CharMessageBuffer::CharMessageBufferPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '573213' + } + }, + 'Type' => 'Struct' + }, + '436467' => { + 'Base' => { + '435903' => { + 'pos' => '0' + }, + '436209' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::CharMessageBuffer::CharMessageBufferPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '573213' + } + }, + 'Type' => 'Struct' + }, + '43665878' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5652409' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '43666026' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5652409' + } + }, + 'Type' => 'Struct' + }, + '43666040' => { + 'BaseType' => '5652409', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '43666063' => { + 'Base' => { + '43665878' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '43769117' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5652409' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '43666344' => { + 'BaseType' => '43666040', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '43667301' => { + 'Base' => { + '43666063' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5652409' + } + }, + 'Type' => 'Class' + }, + '437431' => { + 'Base' => { + '436467' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '573213' + } + }, + 'Type' => 'Class' + }, + '43744564' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '43750737' + } + }, + 'Type' => 'Class' + }, + '43745315' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5660038' + } + }, + 'Type' => 'Class' + }, + '43748027' => { + 'BaseType' => '43667301', + 'Header' => 'triggeringeventevaluator.h', + 'Line' => '46', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluatorPtr', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '43750718' => { + 'Base' => { + '209311' => { + 'pos' => '1', + 'virtual' => 1 }, - '3077051' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::CyclicBuffer::CyclicBufferPriv*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '3108306' - } - }, - 'Type' => 'Struct' - }, - '3077714' => { - 'Base' => { - '3077311' => { + '5652409' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Line' => '352', + 'Name' => 'log4cxx::net::DefaultEvaluator', + 'NameSpace' => 'log4cxx::net', + 'Size' => '8', + 'Source' => 'smtpappender.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net16DefaultEvaluator4castERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::isTriggeringEvent(std::shared_ptr const&) [_ZN7log4cxx3net16DefaultEvaluator17isTriggeringEventERKSt10shared_ptrINS_3spi12LoggingEventEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '(int (*)(...)) (& typeinfo for log4cxx::net::DefaultEvaluator) [_ZTIN7log4cxx3net16DefaultEvaluatorE]', + '72' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::~DefaultEvaluator() [_ZN7log4cxx3net16DefaultEvaluatorD1Ev]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::~DefaultEvaluator() [_ZN7log4cxx3net16DefaultEvaluatorD0Ev]', + '88' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::getClass() const [_ZNK7log4cxx3net16DefaultEvaluator8getClassEv]', + '96' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net16DefaultEvaluator10instanceofERKNS_7helpers5ClassE]' + } + }, + '43750737' => { + 'Base' => { + '208442' => { 'pos' => '0' } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '3108306' - } - }, - 'Type' => 'Class' - }, - '3078044' => { + }, + 'Line' => '357', + 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator', + 'NameSpace' => 'log4cxx::net::DefaultEvaluator', + 'Size' => '8', + 'Source' => 'smtpappender.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::~ClazzDefaultEvaluator() [_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD1Ev]', + '24' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::~ClazzDefaultEvaluator() [_ZN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::newInstance() const [_ZTch0_h0_NK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::getName[abi:cxx11]() const [_ZNK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator::newInstance() const [_ZNK7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluator11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator) [_ZTIN7log4cxx3net16DefaultEvaluator21ClazzDefaultEvaluatorE]' + } + }, + '43750956' => { + 'BaseType' => '43750737', + 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43751349' => { + 'BaseType' => '43750718', + 'Name' => 'log4cxx::net::DefaultEvaluator const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43751585' => { + 'Base' => { + '1379591' => { + 'pos' => '0' + } + }, + 'Line' => '383', + 'Memb' => { + '0' => { + 'name' => 'to', + 'offset' => '388', + 'type' => '209661' + }, + '1' => { + 'name' => 'cc', + 'offset' => '534', + 'type' => '209661' + }, + '10' => { + 'name' => 'locationInfo', + 'offset' => '1096', + 'type' => '174077' + }, + '11' => { + 'name' => 'cb', + 'offset' => '1110', + 'type' => '5647120' + }, + '12' => { + 'name' => 'evaluator', + 'offset' => '1124', + 'type' => '43748027' + }, + '2' => { + 'name' => 'bcc', + 'offset' => '584', + 'type' => '209661' + }, + '3' => { + 'name' => 'from', + 'offset' => '640', + 'type' => '209661' + }, + '4' => { + 'name' => 'subject', + 'offset' => '786', + 'type' => '209661' + }, + '5' => { + 'name' => 'smtpHost', + 'offset' => '836', + 'type' => '209661' + }, + '6' => { + 'name' => 'smtpUsername', + 'offset' => '886', + 'type' => '209661' + }, + '7' => { + 'name' => 'smtpPassword', + 'offset' => '1032', + 'type' => '209661' + }, + '8' => { + 'name' => 'smtpPort', + 'offset' => '1088', + 'type' => '190263' + }, + '9' => { + 'name' => 'bufferSize', + 'offset' => '1092', + 'type' => '190263' + } + }, + 'Name' => 'struct log4cxx::net::SMTPAppender::SMTPPriv', + 'NameSpace' => 'log4cxx::net::SMTPAppender', + 'Private' => 1, + 'Size' => '480', + 'Source' => 'smtpappender.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::SMTPAppender::SMTPPriv::~SMTPPriv() [_ZN7log4cxx3net12SMTPAppender8SMTPPrivD1Ev]', + '24' => '(int (*)(...)) log4cxx::net::SMTPAppender::SMTPPriv::~SMTPPriv() [_ZN7log4cxx3net12SMTPAppender8SMTPPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SMTPAppender::SMTPPriv) [_ZTIN7log4cxx3net12SMTPAppender8SMTPPrivE]' + } + }, + '43753506' => { + 'BaseType' => '5660032', + 'Name' => 'log4cxx::net::SMTPAppender const', + 'Size' => '16', + 'Type' => 'Const' + }, + '43768920' => { + 'BaseType' => '43744564', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43768925' => { + 'BaseType' => '43768920', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43769016' => { + 'BaseType' => '43745315', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43769021' => { + 'BaseType' => '43769016', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43769117' => { + 'BaseType' => '43666344', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43769167' => { + 'BaseType' => '43750718', + 'Name' => 'log4cxx::net::DefaultEvaluator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43769172' => { + 'BaseType' => '43769167', + 'Name' => 'log4cxx::net::DefaultEvaluator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43769182' => { + 'BaseType' => '24285351', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43769287' => { + 'BaseType' => '43751585', + 'Name' => 'struct log4cxx::net::SMTPAppender::SMTPPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43769292' => { + 'BaseType' => '43769287', + 'Name' => 'struct log4cxx::net::SMTPAppender::SMTPPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43770278' => { + 'BaseType' => '5680248', + 'Name' => 'log4cxx::net::SMTPAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43770303' => { + 'BaseType' => '43753506', + 'Name' => 'log4cxx::net::SMTPAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43770308' => { + 'BaseType' => '43770303', + 'Name' => 'log4cxx::net::SMTPAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43770313' => { + 'BaseType' => '43748027', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluatorPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '43770318' => { + 'BaseType' => '43751349', + 'Name' => 'log4cxx::net::DefaultEvaluator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43770323' => { + 'BaseType' => '43770318', + 'Name' => 'log4cxx::net::DefaultEvaluator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43770338' => { + 'BaseType' => '43750737', + 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43770343' => { + 'BaseType' => '43770338', + 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43770348' => { + 'BaseType' => '43750956', + 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '43770353' => { + 'BaseType' => '43770348', + 'Name' => 'log4cxx::net::DefaultEvaluator::ClazzDefaultEvaluator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43770417' => { + 'BaseType' => '5680238', + 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '43770427' => { + 'BaseType' => '5680243', + 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '438873' => { + 'Base' => { + '435015' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558855' + }, + '1' => { + 'key' => '_Dp', + 'type' => '434041' + } + }, + 'Type' => 'Struct' + }, + '439075' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '438873' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '558855' + }, + '1' => { + 'key' => '_Dp', + 'type' => '434041' + } + }, + 'Type' => 'Class' + }, + '439667' => { + 'BaseType' => '105297', + 'Header' => 'iosfwd', + 'Line' => '141', + 'Name' => 'std::ostream', + 'NameSpace' => 'std', + 'Type' => 'Typedef' + }, + '439709' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '559753' + } + }, + 'Type' => 'Struct' + }, + '440683' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '443099' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '559753' + }, + '1' => { + 'key' => '_Dp', + 'type' => '439709' + } + }, + 'Type' => 'Class' + }, + '44089650' => { + 'BaseType' => '9350728', + 'Name' => 'log4cxx::helpers::StrftimeDateFormat const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '441313' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '439709' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '439709' + } + }, + 'Type' => 'Struct' + }, + '441571' => { + 'Base' => { + '441313' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '439709' + } + }, + 'Type' => 'Struct' + }, + '441877' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '573489' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::WideMessageBuffer::WideMessageBufferPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '573489' + } + }, + 'Type' => 'Struct' + }, + '442135' => { + 'Base' => { + '441571' => { + 'pos' => '0' + }, + '441877' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::WideMessageBuffer::WideMessageBufferPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '573489' + } + }, + 'Type' => 'Struct' + }, + '443099' => { + 'Base' => { + '442135' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '573489' + } + }, + 'Type' => 'Class' + }, + '44355499' => { + 'Header' => 'string_conversions.h', + 'Line' => '62', + 'Memb' => { + '0' => { + 'name' => '_M_errno', + 'offset' => '0', + 'type' => '190263' + } + }, + 'Name' => 'struct _Save_errno', + 'Size' => '4', + 'Type' => 'Struct' + }, + '44355535' => { + 'BaseType' => '44355499', + 'Name' => 'struct _Save_errno*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '44355613' => { + 'BaseType' => '44355535', + 'Name' => 'struct _Save_errno*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '444541' => { + 'Base' => { + '440683' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '559753' + }, + '1' => { + 'key' => '_Dp', + 'type' => '439709' + } + }, + 'Type' => 'Struct' + }, + '444743' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '444541' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '559753' + }, + '1' => { + 'key' => '_Dp', + 'type' => '439709' + } + }, + 'Type' => 'Class' + }, + '4451368' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '3076177' - } - }, - 'Name' => 'std::unique_ptr >', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '3105939' - }, - '1' => { - 'key' => '_Dp', - 'type' => '3076091' - } - }, - 'Type' => 'Class' - }, - '3105926' => { - 'Header' => 'cyclicbuffer.h', - 'Line' => '35', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '3078044' - } - }, - 'Name' => 'log4cxx::helpers::CyclicBuffer', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'type' => '4539594' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, 'Type' => 'Class' }, - '3105939' => { - 'Line' => '28', - 'Memb' => { - '0' => { - 'name' => 'ea', - 'offset' => '0', - 'type' => '3107262' - }, - '1' => { - 'name' => 'first', - 'offset' => '24', - 'type' => '50231' - }, - '2' => { - 'name' => 'last', - 'offset' => '28', - 'type' => '50231' - }, - '3' => { - 'name' => 'numElems', - 'offset' => '32', - 'type' => '50231' - }, - '4' => { - 'name' => 'maxSize', - 'offset' => '36', - 'type' => '50231' - } - }, - 'Name' => 'struct log4cxx::helpers::CyclicBuffer::CyclicBufferPriv', - 'NameSpace' => 'log4cxx::helpers::CyclicBuffer', - 'Private' => 1, - 'Size' => '40', - 'Source' => 'cyclicbuffer.cpp', - 'Type' => 'Struct' - }, - '3106343' => { - 'BaseType' => '3105926', - 'Name' => 'log4cxx::helpers::CyclicBuffer const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3107262' => { - 'BaseType' => '767747', - 'Header' => 'loggingevent.h', - 'Line' => '212', - 'Name' => 'log4cxx::spi::LoggingEventList', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '24', - 'Type' => 'Typedef' - }, - '3108306' => { - 'BaseType' => '3105939', - 'Name' => 'struct log4cxx::helpers::CyclicBuffer::CyclicBufferPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3108590' => { - 'BaseType' => '3105926', - 'Name' => 'log4cxx::helpers::CyclicBuffer*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3108596' => { - 'BaseType' => '3108590', - 'Name' => 'log4cxx::helpers::CyclicBuffer*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3108607' => { - 'BaseType' => '3106343', - 'Name' => 'log4cxx::helpers::CyclicBuffer const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3108613' => { - 'BaseType' => '3108607', - 'Name' => 'log4cxx::helpers::CyclicBuffer const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3197765' => { - 'Header' => 'refwrap.h', - 'Line' => '53', - 'Name' => 'struct std::_Maybe_unary_or_binary_function', + '4451514' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Res', - 'type' => '50244' + 'key' => '_Tp', + 'type' => '4539594' } }, 'Type' => 'Struct' }, - '3197793' => { + '4451528' => { + 'BaseType' => '4539594', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '4453598' => { 'Base' => { - '3197765' => { + '4451368' => { 'pos' => '0' - }, - '557783' => { - 'pos' => '1' - } + } }, 'Copied' => 1, - 'Header' => 'std_function.h', - 'Line' => '369', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_invoker', - 'offset' => '24', - 'type' => '3198188' + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '4559931' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'std::function', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '32', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Signature', - 'type' => '3227179' + 'key' => '_Tp', + 'type' => '4539594' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '3198188' => { - 'BaseType' => '3217356', - 'Header' => 'std_function.h', - 'Line' => '610', - 'Name' => 'std::function::_Invoker_type', - 'NameSpace' => 'std::function', - 'Private' => 1, + '445365' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '560686' + } + }, + 'Type' => 'Struct' + }, + '4453876' => { + 'BaseType' => '4451528', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Size' => '8', 'Type' => 'Typedef' }, - '3214440' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '4454647' => { + 'Base' => { + '4453598' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '3214816' + 'key' => '_Tp', + 'type' => '4539594' } }, 'Type' => 'Class' }, - '3214798' => { - 'Base' => { - '63470' => { + '446339' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '448755' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '560686' + }, + '1' => { + 'key' => '_Dp', + 'type' => '445365' + } + }, + 'Type' => 'Class' + }, + '446969' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '445365' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '445365' + } + }, + 'Type' => 'Struct' + }, + '44711390' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5660427' + } + }, + 'Type' => 'Class' + }, + '44715936' => { + 'Base' => { + '564884' => { + 'pos' => '0' + } + }, + 'Line' => '32', + 'Memb' => { + '0' => { + 'name' => 'acceptOnMatch', + 'offset' => '36', + 'type' => '174077' + }, + '1' => { + 'name' => 'stringToMatch', + 'offset' => '50', + 'type' => '209661' + } + }, + 'Name' => 'struct log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate', + 'NameSpace' => 'log4cxx::filter::StringMatchFilter', + 'Private' => 1, + 'Size' => '64', + 'Source' => 'stringmatchfilter.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate::~StringMatchFilterPrivate() [_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate::~StringMatchFilterPrivate() [_ZN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate) [_ZTIN7log4cxx6filter17StringMatchFilter24StringMatchFilterPrivateE]' + } + }, + '44716602' => { + 'BaseType' => '5660418', + 'Name' => 'log4cxx::filter::StringMatchFilter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '447227' => { + 'Base' => { + '446969' => { + 'access' => 'private', 'pos' => '0' } - }, - 'Header' => 'date.h', - 'Line' => '35', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'time', - 'offset' => '8', - 'type' => '3216241' - } - }, - 'Name' => 'log4cxx::helpers::Date', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Date::~Date() [_ZN7log4cxx7helpers4DateD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Date::~Date() [_ZN7log4cxx7helpers4DateD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Date::getClass() const [_ZNK7log4cxx7helpers4Date8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Date::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers4Date10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::Date::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers4Date4castERKNS0_5ClassE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Date) [_ZTIN7log4cxx7helpers4DateE]' - } - }, - '3214816' => { - 'Base' => { - '62698' => { + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '445365' + } + }, + 'Type' => 'Struct' + }, + '44724636' => { + 'BaseType' => '44711390', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '44724641' => { + 'BaseType' => '44724636', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '44724747' => { + 'BaseType' => '44715936', + 'Name' => 'struct log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '44724752' => { + 'BaseType' => '44724747', + 'Name' => 'struct log4cxx::filter::StringMatchFilter::StringMatchFilterPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '44725372' => { + 'BaseType' => '5679708', + 'Name' => 'log4cxx::filter::StringMatchFilter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '44725392' => { + 'BaseType' => '44716602', + 'Name' => 'log4cxx::filter::StringMatchFilter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '44725397' => { + 'BaseType' => '44725392', + 'Name' => 'log4cxx::filter::StringMatchFilter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '44725456' => { + 'BaseType' => '5679698', + 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '44725466' => { + 'BaseType' => '5679703', + 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '447533' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '573739' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::MessageBuffer::MessageBufferPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '573739' + } + }, + 'Type' => 'Struct' + }, + '447791' => { + 'Base' => { + '447227' => { + 'pos' => '0' + }, + '447533' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::MessageBuffer::MessageBufferPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '573739' + } + }, + 'Type' => 'Struct' + }, + '448755' => { + 'Base' => { + '447791' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '573739' + } + }, + 'Type' => 'Class' + }, + '44914546' => { + 'BaseType' => '37476459', + 'Name' => 'log4cxx::helpers::StringTokenizer const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '450197' => { + 'Base' => { + '446339' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '560686' + }, + '1' => { + 'key' => '_Dp', + 'type' => '445365' + } + }, + 'Type' => 'Struct' + }, + '450399' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '450197' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '560686' + }, + '1' => { + 'key' => '_Dp', + 'type' => '445365' + } + }, + 'Type' => 'Class' + }, + '451021' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566435' + } + }, + 'Type' => 'Struct' + }, + '451995' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '454411' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566435' + }, + '1' => { + 'key' => '_Dp', + 'type' => '451021' + } + }, + 'Type' => 'Class' + }, + '452625' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '451021' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '451021' + } + }, + 'Type' => 'Struct' + }, + '45266023' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '7856753' + } + }, + 'Type' => 'Class' + }, + '45268426' => { + 'BaseType' => '45266023', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '45268431' => { + 'BaseType' => '45268426', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45268802' => { + 'BaseType' => '7875962', + 'Name' => 'log4cxx::helpers::SystemErrWriter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45268832' => { + 'BaseType' => '7876241', + 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45268842' => { + 'BaseType' => '7876246', + 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '452883' => { + 'Base' => { + '452625' => { + 'access' => 'private', 'pos' => '0' } - }, - 'Header' => 'date.h', - 'Line' => '40', - 'Name' => 'log4cxx::helpers::Date::ClazzDate', - 'NameSpace' => 'log4cxx::helpers::Date', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Date::ClazzDate::~ClazzDate() [_ZN7log4cxx7helpers4Date9ClazzDateD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Date::ClazzDate::~ClazzDate() [_ZN7log4cxx7helpers4Date9ClazzDateD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Date::ClazzDate::newInstance() const [_ZNK7log4cxx7helpers4Date9ClazzDate11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Date::ClazzDate::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers4Date9ClazzDate7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Date::ClazzDate) [_ZTIN7log4cxx7helpers4Date9ClazzDateE]' - } - }, - '3215013' => { - 'BaseType' => '3214816', - 'Name' => 'log4cxx::helpers::Date::ClazzDate const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3215018' => { - 'BaseType' => '3197793', - 'Header' => 'date.h', - 'Line' => '68', - 'Name' => 'log4cxx::helpers::Date::GetCurrentTimeFn', - 'NameSpace' => 'log4cxx::helpers::Date', - 'Size' => '32', - 'Type' => 'Typedef' - }, - '3215489' => { - 'BaseType' => '3214798', - 'Name' => 'log4cxx::helpers::Date const', - 'Size' => '16', - 'Type' => 'Const' - }, - '3216241' => { - 'BaseType' => '649587', - 'Name' => 'log4cxx::log4cxx_time_t const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3217180' => { - 'BaseType' => '3214440', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3217186' => { - 'BaseType' => '3217180', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3217356' => { - 'Name' => 'long(*)(union std::_Any_data const&)', - 'Param' => { + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { '0' => { - 'type' => '651007' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '451021' } }, - 'Return' => '50244', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '3217495' => { - 'BaseType' => '3214798', - 'Name' => 'log4cxx::helpers::Date*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3217501' => { - 'BaseType' => '3217495', - 'Name' => 'log4cxx::helpers::Date*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3217512' => { - 'BaseType' => '3215489', - 'Name' => 'log4cxx::helpers::Date const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3217518' => { - 'BaseType' => '3217512', - 'Name' => 'log4cxx::helpers::Date const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3217523' => { - 'BaseType' => '3214816', - 'Name' => 'log4cxx::helpers::Date::ClazzDate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3217529' => { - 'BaseType' => '3217523', - 'Name' => 'log4cxx::helpers::Date::ClazzDate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3217534' => { - 'BaseType' => '3215013', - 'Name' => 'log4cxx::helpers::Date::ClazzDate const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3217540' => { - 'BaseType' => '3217534', - 'Name' => 'log4cxx::helpers::Date::ClazzDate const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '322567' => { - 'BaseType' => '262822', - 'Name' => 'log4cxx::spi::AppenderAttachable*', + 'Type' => 'Struct' + }, + '453189' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '573989' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::Logger::LoggerPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '573989' + } + }, + 'Type' => 'Struct' }, - '322573' => { - 'BaseType' => '322567', - 'Name' => 'log4cxx::spi::AppenderAttachable*const', + '453447' => { + 'Base' => { + '452883' => { + 'pos' => '0' + }, + '453189' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::Logger::LoggerPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '573989' + } + }, + 'Type' => 'Struct' }, - '3227179' => { - 'Name' => 'long()', - 'Return' => '50244', - 'Type' => 'Func' - }, - '3280617' => { + '4539241' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -130192,483 +133162,77 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '3280993' + 'type' => '4539612' } }, 'Type' => 'Class' }, - '3280993' => { + '4539594' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '209311' => { + 'pos' => '0' + } }, - 'Header' => 'dateformat.h', + 'Header' => 'charsetdecoder.h', 'Line' => '36', - 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat', - 'NameSpace' => 'log4cxx::helpers::DateFormat', + 'Name' => 'log4cxx::helpers::CharsetDecoder', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::DateFormat::ClazzDateFormat::~ClazzDateFormat() [_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::DateFormat::ClazzDateFormat::~ClazzDateFormat() [_ZN7log4cxx7helpers10DateFormat15ClazzDateFormatD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::ClazzDateFormat::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers10DateFormat15ClazzDateFormat7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DateFormat::ClazzDateFormat) [_ZTIN7log4cxx7helpers10DateFormat15ClazzDateFormatE]' + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::CharsetDecoder) [_ZTIN7log4cxx7helpers14CharsetDecoderE]' } }, - '3281150' => { - 'BaseType' => '3280993', - 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3282511' => { - 'BaseType' => '3280617', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3282517' => { - 'BaseType' => '3282511', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3282678' => { - 'BaseType' => '1574388', - 'Name' => 'log4cxx::helpers::DateFormat*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3282684' => { - 'BaseType' => '3282678', - 'Name' => 'log4cxx::helpers::DateFormat*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3282707' => { - 'BaseType' => '3280993', - 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3282713' => { - 'BaseType' => '3282707', - 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3282718' => { - 'BaseType' => '3281150', - 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3282724' => { - 'BaseType' => '3282718', - 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3358595' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3413936' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '3358743' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3413936' - } - }, - 'Type' => 'Struct' - }, - '3358757' => { - 'BaseType' => '3413936', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '3358780' => { - 'Base' => { - '3358595' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '3419124' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3413936' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '3359066' => { - 'BaseType' => '3358757', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '3362125' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3414755' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '3362273' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3414755' - } - }, - 'Type' => 'Struct' - }, - '3362287' => { - 'BaseType' => '3414755', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '3362310' => { - 'Base' => { - '3362125' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '3419435' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3414755' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '3362596' => { - 'BaseType' => '3362287', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '3363489' => { - 'Base' => { - '3362310' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3414755' - } - }, - 'Type' => 'Class' - }, - '3365992' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3214798' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '3366140' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3214798' - } - }, - 'Type' => 'Struct' - }, - '3366154' => { - 'BaseType' => '3214798', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '3366177' => { - 'Base' => { - '3365992' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '3419667' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3214798' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '3366463' => { - 'BaseType' => '3366154', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '3367291' => { - 'Base' => { - '3366177' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3214798' - } - }, - 'Type' => 'Class' - }, - '3411716' => { + '4539612' => { 'Base' => { - '1574388' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'simpledateformat.h', - 'Line' => '69', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '16665754' - } + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::SimpleDateFormat', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', + 'Header' => 'charsetdecoder.h', + 'Line' => '39', + 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder', + 'NameSpace' => 'log4cxx::helpers::CharsetDecoder', + 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::~SimpleDateFormat() [_ZN7log4cxx7helpers16SimpleDateFormatD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::~SimpleDateFormat() [_ZN7log4cxx7helpers16SimpleDateFormatD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormat) [_ZTIN7log4cxx7helpers16SimpleDateFormatE]' + '16' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder::~ClazzCharsetDecoder() [_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder::~ClazzCharsetDecoder() [_ZN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoder7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder) [_ZTIN7log4cxx7helpers14CharsetDecoder19ClazzCharsetDecoderE]' } }, - '3411721' => { - 'BaseType' => '3411716', - 'Name' => 'log4cxx::helpers::SimpleDateFormat const', - 'Type' => 'Const' - }, - '3411726' => { - 'Base' => { - '1574388' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'strftimedateformat.h', - 'Line' => '33', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '17359862' - } - }, - 'Name' => 'log4cxx::helpers::StrftimeDateFormat', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::StrftimeDateFormat::~StrftimeDateFormat() [_ZN7log4cxx7helpers18StrftimeDateFormatD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::StrftimeDateFormat::~StrftimeDateFormat() [_ZN7log4cxx7helpers18StrftimeDateFormatD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::StrftimeDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers18StrftimeDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::StrftimeDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers18StrftimeDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::StrftimeDateFormat) [_ZTIN7log4cxx7helpers18StrftimeDateFormatE]' - } + '4539759' => { + 'BaseType' => '4539612', + 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder const', + 'Size' => '8', + 'Type' => 'Const' }, - '3411731' => { - 'BaseType' => '3411726', - 'Name' => 'log4cxx::helpers::StrftimeDateFormat const', + '4540233' => { + 'BaseType' => '4539594', + 'Name' => 'log4cxx::helpers::CharsetDecoder const', + 'Size' => '8', 'Type' => 'Const' }, - '3412693' => { + '4540636' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -130676,11899 +133240,12439 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '202654' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife >', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '3414773' + 'type' => '4454647' } }, 'Type' => 'Class' }, - '3413463' => { + '4541079' => { 'Base' => { - '3411716' => { + '4539594' => { 'pos' => '0' } }, - 'Header' => 'iso8601dateformat.h', - 'Line' => '36', - 'Name' => 'log4cxx::helpers::ISO8601DateFormat', + 'Line' => '233', + 'Name' => 'log4cxx::helpers::TrivialCharsetDecoder', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', + 'Size' => '8', + 'Source' => 'charsetdecoder.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ISO8601DateFormat::~ISO8601DateFormat() [_ZN7log4cxx7helpers17ISO8601DateFormatD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ISO8601DateFormat::~ISO8601DateFormat() [_ZN7log4cxx7helpers17ISO8601DateFormatD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ISO8601DateFormat) [_ZTIN7log4cxx7helpers17ISO8601DateFormatE]' + '16' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetDecoder::~TrivialCharsetDecoder() [_ZN7log4cxx7helpers21TrivialCharsetDecoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetDecoder::~TrivialCharsetDecoder() [_ZN7log4cxx7helpers21TrivialCharsetDecoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers21TrivialCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TrivialCharsetDecoder) [_ZTIN7log4cxx7helpers21TrivialCharsetDecoderE]' } }, - '3413610' => { + '4541283' => { 'Base' => { - '3411716' => { + '4539594' => { 'pos' => '0' } }, - 'Header' => 'absolutetimedateformat.h', - 'Line' => '31', - 'Name' => 'log4cxx::helpers::AbsoluteTimeDateFormat', + 'Line' => '327', + 'Name' => 'log4cxx::helpers::ISOLatinCharsetDecoder', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', + 'Size' => '8', + 'Source' => 'charsetdecoder.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::AbsoluteTimeDateFormat::~AbsoluteTimeDateFormat() [_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::AbsoluteTimeDateFormat::~AbsoluteTimeDateFormat() [_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::AbsoluteTimeDateFormat) [_ZTIN7log4cxx7helpers22AbsoluteTimeDateFormatE]' + '16' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetDecoder::~ISOLatinCharsetDecoder() [_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetDecoder::~ISOLatinCharsetDecoder() [_ZN7log4cxx7helpers22ISOLatinCharsetDecoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers22ISOLatinCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ISOLatinCharsetDecoder) [_ZTIN7log4cxx7helpers22ISOLatinCharsetDecoderE]' } }, - '3413757' => { + '4541493' => { 'Base' => { - '3411716' => { + '4539594' => { 'pos' => '0' } }, - 'Header' => 'datetimedateformat.h', - 'Line' => '31', - 'Name' => 'log4cxx::helpers::DateTimeDateFormat', + 'Line' => '372', + 'Name' => 'log4cxx::helpers::USASCIICharsetDecoder', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', + 'Size' => '8', + 'Source' => 'charsetdecoder.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::DateTimeDateFormat::~DateTimeDateFormat() [_ZN7log4cxx7helpers18DateTimeDateFormatD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::DateTimeDateFormat::~DateTimeDateFormat() [_ZN7log4cxx7helpers18DateTimeDateFormatD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', - '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DateTimeDateFormat) [_ZTIN7log4cxx7helpers18DateTimeDateFormatE]' + '16' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetDecoder::~USASCIICharsetDecoder() [_ZN7log4cxx7helpers21USASCIICharsetDecoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetDecoder::~USASCIICharsetDecoder() [_ZN7log4cxx7helpers21USASCIICharsetDecoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers21USASCIICharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::USASCIICharsetDecoder) [_ZTIN7log4cxx7helpers21USASCIICharsetDecoderE]' } }, - '3413936' => { + '4541703' => { 'Base' => { - '63470' => { - 'pos' => '0' - } + '4539594' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'timezone.h', - 'Line' => '33', + 'Line' => '428', 'Memb' => { '0' => { - 'access' => 'protected', - 'name' => 'id', + 'access' => 'private', + 'name' => 'state', 'offset' => '8', - 'type' => '63706' + 'type' => '191054' } }, - 'Name' => 'log4cxx::helpers::TimeZone', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '40', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::TimeZone::getClass() const [_ZNK7log4cxx7helpers8TimeZone8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::TimeZone::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZone) [_ZTIN7log4cxx7helpers8TimeZoneE]' - } - }, - '3414367' => { - 'BaseType' => '3367291', - 'Header' => 'date.h', - 'Line' => '81', - 'Name' => 'log4cxx::helpers::DatePtr', + 'Name' => 'log4cxx::helpers::LocaleCharsetDecoder', 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', - 'Type' => 'Typedef' - }, - '3414379' => { - 'BaseType' => '3414367', - 'Name' => 'log4cxx::helpers::DatePtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '3414755' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'datepatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::DatePatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::DatePatternConverter) [_ZTIN7log4cxx7pattern20DatePatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::~DatePatternConverter() [_ZN7log4cxx7pattern20DatePatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::~DatePatternConverter() [_ZN7log4cxx7pattern20DatePatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::getClass() const [_ZNK7log4cxx7pattern20DatePatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern20DatePatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern20DatePatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } - }, - '3414773' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'datepatternconverter.h', - 'Line' => '46', - 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter', - 'NameSpace' => 'log4cxx::pattern::DatePatternConverter', - 'Size' => '8', + 'Source' => 'charsetdecoder.cpp', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter::~ClazzDatePatternConverter() [_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter::~ClazzDatePatternConverter() [_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter) [_ZTIN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterE]' + '16' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetDecoder::~LocaleCharsetDecoder() [_ZN7log4cxx7helpers20LocaleCharsetDecoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetDecoder::~LocaleCharsetDecoder() [_ZN7log4cxx7helpers20LocaleCharsetDecoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers20LocaleCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::LocaleCharsetDecoder) [_ZTIN7log4cxx7helpers20LocaleCharsetDecoderE]' } }, - '3414930' => { - 'BaseType' => '3414773', - 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3414935' => { + '4541912' => { 'Base' => { - '2428623' => { + '4539594' => { 'pos' => '0' } }, - 'Line' => '37', + 'Line' => '52', 'Memb' => { '0' => { - 'name' => 'df', - 'offset' => '72', - 'type' => '1574504' + 'access' => 'private', + 'name' => 'pool', + 'offset' => '8', + 'type' => '207830' + }, + '1' => { + 'access' => 'private', + 'name' => 'mutex', + 'offset' => '36', + 'type' => '106135' + }, + '2' => { + 'access' => 'private', + 'name' => 'convset', + 'offset' => '100', + 'type' => '4561983' } }, - 'Name' => 'struct log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate', - 'NameSpace' => 'log4cxx::pattern::DatePatternConverter', - 'Private' => 1, - 'Size' => '88', - 'Source' => 'datepatternconverter.cpp', - 'Type' => 'Struct', + 'Name' => 'log4cxx::helpers::APRCharsetDecoder', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '72', + 'Source' => 'charsetdecoder.cpp', + 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate::~DatePatternConverterPrivate() [_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate::~DatePatternConverterPrivate() [_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate) [_ZTIN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateE]' + '16' => '(int (*)(...)) log4cxx::helpers::APRCharsetDecoder::~APRCharsetDecoder() [_ZN7log4cxx7helpers17APRCharsetDecoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::APRCharsetDecoder::~APRCharsetDecoder() [_ZN7log4cxx7helpers17APRCharsetDecoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::getClass() const [_ZNK7log4cxx7helpers14CharsetDecoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetDecoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetDecoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::APRCharsetDecoder::decode(log4cxx::helpers::ByteBuffer&, std::__cxx11::basic_string, std::allocator >&) [_ZN7log4cxx7helpers17APRCharsetDecoder6decodeERNS0_10ByteBufferERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRCharsetDecoder) [_ZTIN7log4cxx7helpers17APRCharsetDecoderE]' } }, - '3415595' => { - 'BaseType' => '3414755', - 'Name' => 'log4cxx::pattern::DatePatternConverter const', + '4542594' => { + 'BaseType' => '4454647', + 'Header' => 'charsetdecoder.h', + 'Line' => '28', + 'Name' => 'log4cxx::helpers::CharsetDecoderPtr', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', - 'Type' => 'Const' - }, - '3415755' => { - 'BaseType' => '2242385', - 'Header' => 'patternconverter.h', - 'Line' => '33', - 'Name' => 'log4cxx::pattern::OptionsList', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '24', 'Type' => 'Typedef' }, - '3415767' => { - 'BaseType' => '3415755', - 'Name' => 'log4cxx::pattern::OptionsList const', - 'Size' => '24', - 'Type' => 'Const' - }, - '3417926' => { - 'BaseType' => '3412693', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3417932' => { - 'BaseType' => '3417926', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3418051' => { - 'BaseType' => '3414935', - 'Name' => 'struct log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3418057' => { - 'BaseType' => '3418051', - 'Name' => 'struct log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3418597' => { - 'BaseType' => '3413463', - 'Name' => 'log4cxx::helpers::ISO8601DateFormat*', - 'Size' => '8', - 'Type' => 'Pointer' + '45437084' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '7856158' + } + }, + 'Type' => 'Class' + }, + '45439487' => { + 'BaseType' => '45437084', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '45439492' => { + 'BaseType' => '45439487', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45439863' => { + 'BaseType' => '7875817', + 'Name' => 'log4cxx::helpers::SystemOutWriter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45439893' => { + 'BaseType' => '7876251', + 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45439903' => { + 'BaseType' => '7876256', + 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '454411' => { + 'Base' => { + '453447' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '573989' + } + }, + 'Type' => 'Class' + }, + '4553571' => { + 'BaseType' => '4553583', + 'Header' => 'apr_xlate.h', + 'Line' => '39', + 'Name' => 'apr_xlate_t', + 'Type' => 'Typedef' }, - '3418603' => { - 'BaseType' => '3418597', - 'Name' => 'log4cxx::helpers::ISO8601DateFormat*const', - 'Size' => '8', - 'Type' => 'Const' + '4553583' => { + 'Name' => 'struct apr_xlate_t', + 'Type' => 'Struct' }, - '3418708' => { - 'BaseType' => '3413610', - 'Name' => 'log4cxx::helpers::AbsoluteTimeDateFormat*', - 'Size' => '8', - 'Type' => 'Pointer' + '4557447' => { + 'BaseType' => '4557459', + 'Header' => 'apr_network_io.h', + 'Line' => '219', + 'Name' => 'apr_socket_t', + 'Type' => 'Typedef' }, - '3418714' => { - 'BaseType' => '3418708', - 'Name' => 'log4cxx::helpers::AbsoluteTimeDateFormat*const', - 'Size' => '8', - 'Type' => 'Const' + '4557459' => { + 'Name' => 'struct apr_socket_t', + 'Type' => 'Struct' }, - '3418819' => { - 'BaseType' => '3413757', - 'Name' => 'log4cxx::helpers::DateTimeDateFormat*', + '455853' => { + 'Base' => { + '451995' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566435' + }, + '1' => { + 'key' => '_Dp', + 'type' => '451021' + } + }, + 'Type' => 'Struct' + }, + '4559689' => { + 'BaseType' => '4539241', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '3418825' => { - 'BaseType' => '3418819', - 'Name' => 'log4cxx::helpers::DateTimeDateFormat*const', + '4559694' => { + 'BaseType' => '4559689', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '3418930' => { - 'BaseType' => '3411716', - 'Name' => 'log4cxx::helpers::SimpleDateFormat*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3419036' => { - 'BaseType' => '3411726', - 'Name' => 'log4cxx::helpers::StrftimeDateFormat*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3419124' => { - 'BaseType' => '3359066', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3419435' => { - 'BaseType' => '3362596', - 'Name' => 'std::__shared_ptr::element_type*', + '4559931' => { + 'BaseType' => '4453876', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '3419453' => { - 'BaseType' => '3414755', - 'Name' => 'log4cxx::pattern::DatePatternConverter*', + '4559981' => { + 'BaseType' => '4540636', + 'Name' => 'log4cxx::helpers::WideLife >*', 'Size' => '8', 'Type' => 'Pointer' }, - '3419459' => { - 'BaseType' => '3419453', - 'Name' => 'log4cxx::pattern::DatePatternConverter*const', + '4559986' => { + 'BaseType' => '4559981', + 'Name' => 'log4cxx::helpers::WideLife >*const', 'Size' => '8', 'Type' => 'Const' }, - '3419667' => { - 'BaseType' => '3366463', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3420080' => { - 'BaseType' => '3411721', - 'Name' => 'log4cxx::helpers::SimpleDateFormat const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3420144' => { - 'BaseType' => '3411731', - 'Name' => 'log4cxx::helpers::StrftimeDateFormat const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3420272' => { - 'BaseType' => '3415595', - 'Name' => 'log4cxx::pattern::DatePatternConverter const*', + '4560011' => { + 'BaseType' => '4539594', + 'Name' => 'log4cxx::helpers::CharsetDecoder*', 'Size' => '8', 'Type' => 'Pointer' }, - '3420278' => { - 'BaseType' => '3420272', - 'Name' => 'log4cxx::pattern::DatePatternConverter const*const', + '4560016' => { + 'BaseType' => '4560011', + 'Name' => 'log4cxx::helpers::CharsetDecoder*const', 'Size' => '8', 'Type' => 'Const' }, - '3421940' => { - 'BaseType' => '3415767', - 'Name' => 'log4cxx::pattern::OptionsList const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '3421958' => { - 'BaseType' => '3414379', - 'Name' => 'log4cxx::helpers::DatePtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '3422030' => { - 'BaseType' => '3414773', - 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter*', + '4560106' => { + 'BaseType' => '4541079', + 'Name' => 'log4cxx::helpers::TrivialCharsetDecoder*', 'Size' => '8', 'Type' => 'Pointer' }, - '3422036' => { - 'BaseType' => '3422030', - 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter*const', + '4560111' => { + 'BaseType' => '4560106', + 'Name' => 'log4cxx::helpers::TrivialCharsetDecoder*const', 'Size' => '8', 'Type' => 'Const' }, - '3422041' => { - 'BaseType' => '3414930', - 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter const*', + '4560201' => { + 'BaseType' => '4541283', + 'Name' => 'log4cxx::helpers::ISOLatinCharsetDecoder*', 'Size' => '8', 'Type' => 'Pointer' }, - '3422047' => { - 'BaseType' => '3422041', - 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter const*const', + '4560206' => { + 'BaseType' => '4560201', + 'Name' => 'log4cxx::helpers::ISOLatinCharsetDecoder*const', 'Size' => '8', 'Type' => 'Const' }, - '3634874' => { - 'Copied' => 1, - 'Header' => 'stl_map.h', - 'Line' => '100', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '3634887' - } - }, - 'Name' => 'std::map, std::function(std::vector >const&)> >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Tp', - 'type' => '3656004' - } - }, - 'Type' => 'Class' - }, - '3634887' => { - 'BaseType' => '3650666', - 'Header' => 'stl_map.h', - 'Line' => '148', - 'Name' => 'std::map, std::function(std::vector >const&)> >::_Rep_type', - 'NameSpace' => 'std::map, std::function(std::vector >const&)> >', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' - }, - '36364' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '12111' - } - }, - 'Type' => 'Struct' - }, - '36378' => { - 'BaseType' => '51958', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits >::pointer', - 'NameSpace' => 'std::allocator_traits >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '36441' => { - 'BaseType' => '7956', - 'Header' => 'alloc_traits.h', - 'Line' => '414', - 'Name' => 'std::allocator_traits >::size_type', - 'NameSpace' => 'std::allocator_traits >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '3644262' => { - 'Base' => { - '3664127' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2271385' - } - }, - 'Type' => 'Class' - }, - '3644622' => { - 'Base' => { - '3686692' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '3644262' - } - }, - 'Type' => 'Class' - }, - '3644773' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '3644622' - } - }, - 'Type' => 'Struct' - }, - '3644787' => { - 'BaseType' => '3713014', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '3645187' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '3645386' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3644262' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '3644622' - } - }, - 'Type' => 'Struct' - }, - '3645200' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', - 'Memb' => { - '0' => { - 'name' => '_M_start', - 'offset' => '0', - 'type' => '3645374' - }, - '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '3645374' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '3645374' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' + '4560296' => { + 'BaseType' => '4541493', + 'Name' => 'log4cxx::helpers::USASCIICharsetDecoder*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '3645374' => { - 'BaseType' => '3687421', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', + '4560301' => { + 'BaseType' => '4560296', + 'Name' => 'log4cxx::helpers::USASCIICharsetDecoder*const', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Const' }, - '3645386' => { - 'Base' => { - '3644622' => { - 'pos' => '0' - }, - '3645200' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' + '45603519' => { + 'Header' => 'threadlocal.h', + 'Line' => '46', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'p', + 'offset' => '0', + 'type' => '207830' + }, + '1' => { + 'access' => 'private', + 'name' => 'key', + 'offset' => '22', + 'type' => '1924095' + } + }, + 'Name' => 'log4cxx::helpers::ThreadLocal', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '24', + 'Type' => 'Class' + }, + '4560391' => { + 'BaseType' => '4541703', + 'Name' => 'log4cxx::helpers::LocaleCharsetDecoder*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '3646164' => { - 'Base' => { - '3645187' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3644262' - } - }, - 'Type' => 'Class' + '4560396' => { + 'BaseType' => '4560391', + 'Name' => 'log4cxx::helpers::LocaleCharsetDecoder*const', + 'Size' => '8', + 'Type' => 'Const' }, - '3649341' => { - 'Base' => { - '3656811' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '208', - 'Memb' => { - '0' => { - 'name' => 'first', - 'offset' => '0', - 'type' => '7336' - }, - '1' => { - 'name' => 'second', - 'offset' => '32', - 'type' => '3656004' - } - }, - 'Name' => 'struct std::pairconst, std::function(std::vector >const&)> >', - 'NameSpace' => 'std', - 'Size' => '64', - 'TParam' => { - '0' => { - 'key' => '_T1', - 'type' => '7336' - }, - '1' => { - 'key' => '_T2', - 'type' => '3656004' - } - }, - 'Type' => 'Struct' + '4560486' => { + 'BaseType' => '4541912', + 'Name' => 'log4cxx::helpers::APRCharsetDecoder*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '3649689' => { - 'Base' => { - '3688082' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::pair, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> >' - } - }, - 'Type' => 'Class' + '45604906' => { + 'BaseType' => '45603519', + 'Name' => 'log4cxx::helpers::ThreadLocal*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4560491' => { + 'BaseType' => '4560486', + 'Name' => 'log4cxx::helpers::APRCharsetDecoder*const', + 'Size' => '8', + 'Type' => 'Const' }, - '3650090' => { - 'Base' => { - '3688676' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> > > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::_Rb_tree_node, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> > >' - } - }, - 'Type' => 'Class' + '45604911' => { + 'BaseType' => '45604906', + 'Name' => 'log4cxx::helpers::ThreadLocal*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '456055' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '455853' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566435' + }, + '1' => { + 'key' => '_Dp', + 'type' => '451021' + } + }, + 'Type' => 'Class' + }, + '4561983' => { + 'BaseType' => '4553571', + 'Name' => 'apr_xlate_t*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '3650277' => { - 'Base' => { - '556185' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '216', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '32', - 'type' => '3690883' - } - }, - 'Name' => 'struct std::_Rb_tree_nodeconst, std::function(std::vector >const&)> > >', - 'NameSpace' => 'std', - 'Size' => '96', - 'TParam' => { - '0' => { - 'key' => '_Val', - 'type' => '3649341' - } - }, - 'Type' => 'Struct' + '4561988' => { + 'BaseType' => '4540233', + 'Name' => 'log4cxx::helpers::CharsetDecoder const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '3650666' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '436', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '3650680' - } - }, - 'Name' => 'std::_Rb_tree, std::pairconst, std::function(std::vector >const&)> >, std::_Select1stconst, std::function(std::vector >const&)> > >, std::less >, std::allocator, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> > > >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Val', - 'type' => '3649341' - }, - '2' => { - 'key' => '_KeyOfValue', - 'type' => '3672826' - }, - '3' => { - 'key' => '_Compare', - 'type' => '772116' - }, - '4' => { - 'key' => '_Alloc', - 'type' => '3649689' - } - }, - 'Type' => 'Class' + '4561993' => { + 'BaseType' => '4561988', + 'Name' => 'log4cxx::helpers::CharsetDecoder const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '3650680' => { - 'Base' => { - '3650090' => { - 'pos' => '0' - }, - '556381' => { - 'pos' => '2' - }, - '772192' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '673', - 'Name' => 'struct std::_Rb_tree, std::pairconst, std::function(std::vector >const&)> >, std::_Select1stconst, std::function(std::vector >const&)> > >, std::less >, std::allocator, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> > > >::_Rb_tree_impl > >', - 'NameSpace' => 'std::_Rb_tree, std::pairconst, std::function(std::vector >const&)> >, std::_Select1stconst, std::function(std::vector >const&)> > >, std::less >, std::allocator, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> > > >', - 'Protected' => 1, - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key_compare', - 'type' => '772116' - } - }, - 'Type' => 'Struct' + '4562008' => { + 'BaseType' => '4539612', + 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '3656004' => { - 'Base' => { - '3657006' => { - 'pos' => '0' - }, - '557783' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'std_function.h', - 'Line' => '369', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_invoker', - 'offset' => '24', - 'type' => '3656403' - } - }, - 'Name' => 'std::function(std::vector >const&)>', - 'NameSpace' => 'std', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => '_Signature', - 'type' => '3713772' - } - }, - 'Type' => 'Class' + '4562013' => { + 'BaseType' => '4562008', + 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder*const', + 'Size' => '8', + 'Type' => 'Const' }, - '3656403' => { - 'BaseType' => '3713728', - 'Header' => 'std_function.h', - 'Line' => '610', - 'Name' => 'std::function(std::vector >const&)>::_Invoker_type', - 'NameSpace' => 'std::function(std::vector >const&)>', - 'Private' => 1, + '4562018' => { + 'BaseType' => '4539759', + 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4562023' => { + 'BaseType' => '4562018', + 'Name' => 'log4cxx::helpers::CharsetDecoder::ClazzCharsetDecoder const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '456738' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566426' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '456886' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566426' + } + }, + 'Type' => 'Struct' + }, + '456900' => { + 'BaseType' => '566426', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '456923' => { + 'Base' => { + '456738' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '574244' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566426' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '457204' => { + 'BaseType' => '456900', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '457528' => { + 'Base' => { + '456923' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566426' + } + }, + 'Type' => 'Class' + }, + '457832' => { + 'Header' => 'std_function.h', + 'Line' => '75', + 'Memb' => { + '0' => { + 'name' => '_M_object', + 'offset' => '0', + 'type' => '190924' + }, + '1' => { + 'name' => '_M_const_object', + 'offset' => '0', + 'type' => '195352' + }, + '2' => { + 'name' => '_M_function_pointer', + 'offset' => '0', + 'type' => '198453' + }, + '3' => { + 'name' => '_M_member_pointer', + 'offset' => '0', + 'type' => '574305' + } + }, + 'Name' => 'union std::_Nocopy_types', + 'NameSpace' => 'std', + 'Size' => '16', + 'Type' => 'Union' + }, + '457895' => { + 'Copied' => 1, + 'Name' => 'std::_Undefined_class', + 'NameSpace' => 'std', + 'Type' => 'Class' + }, + '457900' => { + 'Header' => 'std_function.h', + 'Line' => '83', + 'Memb' => { + '0' => { + 'name' => '_M_unused', + 'offset' => '0', + 'type' => '457832' + }, + '1' => { + 'name' => '_M_pod_data', + 'offset' => '0', + 'type' => '202654' + } + }, + 'Name' => 'union std::_Any_data', + 'NameSpace' => 'std', + 'Size' => '16', + 'Type' => 'Union' + }, + '457999' => { + 'BaseType' => '457900', + 'Name' => 'union std::_Any_data const', + 'Size' => '16', + 'Type' => 'Const' + }, + '458004' => { + 'Header' => 'std_function.h', + 'Line' => '102', + 'Memb' => { + '0' => { + 'name' => '__get_type_info', + 'value' => '0' + }, + '1' => { + 'name' => '__get_functor_ptr', + 'value' => '1' + }, + '2' => { + 'name' => '__clone_functor', + 'value' => '2' + }, + '3' => { + 'name' => '__destroy_functor', + 'value' => '3' + } + }, + 'Name' => 'enum std::_Manager_operation', + 'NameSpace' => 'std', + 'Size' => '4', + 'Type' => 'Enum' + }, + '458046' => { + 'Copied' => 1, + 'Header' => 'std_function.h', + 'Line' => '114', + 'Memb' => { + '0' => { + 'name' => '_M_functor', + 'offset' => '0', + 'type' => '457900' + }, + '1' => { + 'name' => '_M_manager', + 'offset' => '22', + 'type' => '458198' + } + }, + 'Name' => 'std::_Function_base', + 'NameSpace' => 'std', + 'Size' => '24', + 'Type' => 'Class' + }, + '458198' => { + 'BaseType' => '574335', + 'Header' => 'std_function.h', + 'Line' => '249', + 'Name' => 'std::_Function_base::_Manager_type', + 'NameSpace' => 'std::_Function_base', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '45882979' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9955591' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '45883127' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9955591' + } + }, + 'Type' => 'Struct' + }, + '45883141' => { + 'BaseType' => '9955591', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '45883164' => { + 'Base' => { + '45882979' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '45955826' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9955591' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '45883445' => { + 'BaseType' => '45883141', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '45883896' => { + 'Base' => { + '45883164' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9955591' + } + }, + 'Type' => 'Class' + }, + '45942353' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '9955616' + } + }, + 'Type' => 'Class' + }, + '45944893' => { + 'BaseType' => '9955591', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '45955575' => { + 'BaseType' => '45942353', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '45955580' => { + 'BaseType' => '45955575', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45955826' => { + 'BaseType' => '45883445', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '45955856' => { + 'BaseType' => '45883896', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '45956021' => { + 'BaseType' => '9955591', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '45956026' => { + 'BaseType' => '45956021', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45956362' => { + 'BaseType' => '45944893', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '45956367' => { + 'BaseType' => '45956362', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45956527' => { + 'BaseType' => '9977315', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '45956537' => { + 'BaseType' => '9977320', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4605672' => { + 'BaseType' => '4560106', + 'Name' => 'log4cxx::helpers::TrivialCharsetDecoder*&&', 'Size' => '8', - 'Type' => 'Typedef' - }, - '3656811' => { - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '190', - 'Name' => 'std::__pair_baseconst, std::function(std::vector >const&)> >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_U1', - 'type' => '7336' - }, - '1' => { - 'key' => '_U2', - 'type' => '3656004' - } - }, - 'Type' => 'Class' - }, - '3656974' => { - 'Header' => 'stl_function.h', - 'Line' => '105', - 'Name' => 'struct std::unary_function >const&, std::shared_ptr >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Arg', - 'type' => '2273842' - }, - '1' => { - 'key' => '_Result', - 'type' => '2240668' - } - }, - 'Type' => 'Struct' + 'Type' => 'RvalueRef' }, - '3657006' => { - 'Base' => { - '3656974' => { - 'pos' => '0' - } - }, - 'Header' => 'refwrap.h', - 'Line' => '57', - 'Name' => 'struct std::_Maybe_unary_or_binary_function, std::vector >const&>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Res', - 'type' => '2240668' - }, - '1' => { - 'key' => undef, - 'type' => '2273842' - } - }, - 'Type' => 'Struct' + '4606873' => { + 'BaseType' => '4560011', + 'Name' => 'log4cxx::helpers::CharsetDecoder*&&', + 'Size' => '8', + 'Type' => 'RvalueRef' }, - '3663942' => { + '46254689' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9955935' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '46254837' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9955935' + } + }, + 'Type' => 'Struct' + }, + '46254851' => { + 'BaseType' => '9955935', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '46254874' => { + 'Base' => { + '46254689' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '46327750' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9955935' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '46255155' => { + 'BaseType' => '46254851', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '46255606' => { + 'Base' => { + '46254874' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9955935' + } + }, + 'Type' => 'Class' + }, + '46314345' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '9955944' + } + }, + 'Type' => 'Class' + }, + '46316886' => { + 'BaseType' => '9955935', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '46327499' => { + 'BaseType' => '46314345', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '46327504' => { + 'BaseType' => '46327499', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '46327750' => { + 'BaseType' => '46255155', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '46327780' => { + 'BaseType' => '46255606', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '46327945' => { + 'BaseType' => '9955935', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '46327950' => { + 'BaseType' => '46327945', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '46328286' => { + 'BaseType' => '46316886', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '46328291' => { + 'BaseType' => '46328286', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '46328456' => { + 'BaseType' => '9977305', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '46328466' => { + 'BaseType' => '9977310', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '46699645' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '1909514' + } + }, + 'Type' => 'Class' + }, + '46716541' => { + 'BaseType' => '46699645', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '46716546' => { + 'BaseType' => '46716541', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '47244044' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '2500954' + } + }, + 'Type' => 'Class' + }, + '47248997' => { + 'BaseType' => '47244044', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '47249002' => { + 'BaseType' => '47248997', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '47582026' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '34965012' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '47582174' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '34965012' + } + }, + 'Type' => 'Struct' + }, + '47582188' => { + 'BaseType' => '34965012', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '47582211' => { + 'Base' => { + '47582026' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '47660882' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '34965012' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '47582492' => { + 'BaseType' => '47582188', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '47583423' => { + 'Base' => { + '47582211' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '34965012' + } + }, + 'Type' => 'Class' + }, + '47646539' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '34965037' + } + }, + 'Type' => 'Class' + }, + '47648875' => { + 'Base' => { + '3120371' => { + 'pos' => '0' + } + }, + 'Line' => '30', + 'Memb' => { + '0' => { + 'name' => 'shortReport', + 'offset' => '114', + 'type' => '174084' + } + }, + 'Name' => 'struct log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate', + 'NameSpace' => 'log4cxx::pattern::ThrowableInformationPatternConverter', + 'Private' => 1, + 'Size' => '80', + 'Source' => 'throwableinformationpatternconverter.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate::~ThrowableInformationPatternConverterPrivate() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate::~ThrowableInformationPatternConverterPrivate() [_ZN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate) [_ZTIN7log4cxx7pattern36ThrowableInformationPatternConverter43ThrowableInformationPatternConverterPrivateE]' + } + }, + '47649472' => { + 'BaseType' => '34965012', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '47660191' => { + 'BaseType' => '47646539', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '47660196' => { + 'BaseType' => '47660191', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '47660302' => { + 'BaseType' => '47648875', + 'Name' => 'struct log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '47660307' => { + 'BaseType' => '47660302', + 'Name' => 'struct log4cxx::pattern::ThrowableInformationPatternConverter::ThrowableInformationPatternConverterPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '47660882' => { + 'BaseType' => '47582492', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '47660912' => { + 'BaseType' => '47583423', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '47661008' => { + 'BaseType' => '34965012', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '47661013' => { + 'BaseType' => '47661008', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '47661394' => { + 'BaseType' => '47649472', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '47661399' => { + 'BaseType' => '47661394', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '47661598' => { + 'BaseType' => '34980171', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '47661608' => { + 'BaseType' => '34980176', + 'Name' => 'log4cxx::pattern::ThrowableInformationPatternConverter::ClazzThrowableInformationPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48266740' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5657578' + } + }, + 'Type' => 'Class' + }, + '48297015' => { + 'BaseType' => '48297029', + 'Header' => 'apr_mmap.h', + 'Line' => '51', + 'Name' => 'apr_mmap_t', + 'Size' => '40', + 'Type' => 'Typedef' + }, + '48297029' => { + 'Header' => 'apr_mmap.h', + 'Line' => '62', + 'Memb' => { + '0' => { + 'name' => 'cntxt', + 'offset' => '0', + 'type' => '1930256' + }, + '1' => { + 'name' => 'mm', + 'offset' => '8', + 'type' => '190924' + }, + '2' => { + 'name' => 'size', + 'offset' => '22', + 'type' => '1929244' + }, + '3' => { + 'name' => 'link', + 'offset' => '36', + 'type' => '48297043' + } + }, + 'Name' => 'struct apr_mmap_t', + 'Size' => '40', + 'Type' => 'Struct' + }, + '48297043' => { + 'Header' => 'apr_mmap.h', + 'Line' => '85', + 'Memb' => { + '0' => { + 'name' => 'next', + 'offset' => '0', + 'type' => '48297145' + }, + '1' => { + 'name' => 'prev', + 'offset' => '8', + 'type' => '48297145' + } + }, + 'Name' => 'apr_mmap_t::anon-struct-apr_mmap.h-85', + 'NameSpace' => 'apr_mmap_t', + 'Size' => '16', + 'Type' => 'Struct' + }, + '48297140' => { + 'BaseType' => '48297029', + 'Name' => 'struct apr_mmap_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48297145' => { + 'BaseType' => '48297140', + 'Name' => 'struct apr_mmap_t*volatile', + 'Size' => '8', + 'Type' => 'Volatile' + }, + '48297186' => { + 'BaseType' => '48266740', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48297191' => { + 'BaseType' => '48297186', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48297282' => { + 'BaseType' => '48297015', + 'Name' => 'apr_mmap_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48300444' => { + 'BaseType' => '40201743', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48300859' => { + 'BaseType' => '5679528', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48300869' => { + 'BaseType' => '5679533', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '485766' => { + 'Copied' => 1, + 'Name' => 'std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >', + 'NameSpace' => 'std', + 'TParam' => { + '0' => { + 'name' => 'std::__cxx11::basic_string, std::allocator >' + }, + '1' => { + 'name' => 'std::__cxx11::basic_string, std::allocator >' + }, + '2' => { + 'name' => 'std::less, std::allocator > >' + }, + '3' => { + 'type' => '26710953' + } + }, + 'Type' => 'Class' + }, + '485801' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '564708' + } + }, + 'Type' => 'Struct' + }, + '486775' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '489191' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '564708' + }, + '1' => { + 'key' => '_Dp', + 'type' => '485801' + } + }, + 'Type' => 'Class' + }, + '4867900' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2271385' + 'type' => '3116225' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '3664090' => { + '4868048' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2271385' + 'type' => '3116225' } }, 'Type' => 'Struct' }, - '3664104' => { - 'BaseType' => '2271385', + '4868062' => { + 'BaseType' => '3116225', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '8', 'Type' => 'Typedef' }, - '3664127' => { + '4870227' => { 'Base' => { - '3663942' => { + '4867900' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '3714618' + 'type' => '4993246' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '2271385' + 'type' => '3116225' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '3664413' => { - 'BaseType' => '3664104', + '4870508' => { + 'BaseType' => '4868062', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '8', 'Type' => 'Typedef' }, - '3672794' => { - 'Header' => 'stl_function.h', - 'Line' => '105', - 'Name' => 'struct std::unary_functionconst, std::function(std::vector >const&)> >, std::__cxx11::basic_stringconst>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Arg', - 'type' => '3649341' - }, - '1' => { - 'key' => '_Result', - 'type' => '7336' - } - }, - 'Type' => 'Struct' - }, - '3672826' => { - 'Base' => { - '3672794' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '1147', - 'Name' => 'struct std::_Select1stconst, std::function(std::vector >const&)> > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Pair', - 'type' => '3649341' - } - }, - 'Type' => 'Struct' - }, - '368014' => { - 'Copied' => 1, - 'Header' => 'mutex', - 'Line' => '65', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_mutex', - 'offset' => '0', - 'type' => '368097' - } - }, - 'Name' => 'std::__recursive_mutex_base', - 'NameSpace' => 'std', - 'Size' => '40', - 'Type' => 'Class' - }, - '368097' => { - 'BaseType' => '402834', - 'Header' => 'mutex', - 'Line' => '68', - 'Name' => 'std::__recursive_mutex_base::__native_type', - 'NameSpace' => 'std::__recursive_mutex_base', - 'Protected' => 1, - 'Size' => '40', - 'Type' => 'Typedef' - }, - '368156' => { - 'Base' => { - '368014' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'mutex', - 'Line' => '92', - 'Name' => 'std::recursive_mutex', - 'NameSpace' => 'std', - 'Size' => '40', - 'Type' => 'Class' - }, - '368474' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + '48711198' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '48787337' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '48711346' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '48787337' + } + }, + 'Type' => 'Struct' + }, + '48711360' => { + 'BaseType' => '48787337', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '40', + 'Type' => 'Typedef' + }, + '48711383' => { + 'Base' => { + '48711198' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '407323' + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '48803652' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Type' => 'Class' - }, - '368622' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '407323' - } + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '48787337' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '48711664' => { + 'BaseType' => '48711360', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '40', + 'Type' => 'Typedef' + }, + '48712115' => { + 'Base' => { + '48711383' => { + 'pos' => '0' + } }, - 'Type' => 'Struct' - }, - '368636' => { - 'BaseType' => '407323', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '3686692' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3644262' - } - }, - 'Type' => 'Class' - }, - '3687220' => { + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '48787337' + } + }, + 'Type' => 'Class' + }, + '4871246' => { 'Base' => { - '3644773' => { + '4870227' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '3644622' - } - }, - 'Type' => 'Struct' - }, - '3687421' => { - 'BaseType' => '3644787', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '3688082' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::function(std::vector >const&)> > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3649341' - } - }, - 'Type' => 'Class' - }, - '3688676' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::function(std::vector >const&)> > > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '3650277' + 'type' => '3116225' } }, 'Type' => 'Class' }, - '36898' => { - 'BaseType' => '68', - 'Header' => 'stringfwd.h', - 'Line' => '79', - 'Name' => 'std::string', - 'NameSpace' => 'std', - 'Size' => '32', - 'Type' => 'Typedef' - }, - '3690883' => { - 'Copied' => 1, - 'Header' => 'aligned_buffer.h', - 'Line' => '47', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '0', - 'type' => '3715227' - } - }, - 'Name' => 'struct __gnu_cxx::__aligned_membufconst, std::function(std::vector >const&)> > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '64', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '3649341' - } - }, - 'Type' => 'Struct' - }, - '36910' => { - 'BaseType' => '36898', - 'Name' => 'std::string const', - 'Size' => '32', - 'Type' => 'Const' - }, - '369177' => { + '48712585' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '48787542' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '48712733' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '48787542' + } + }, + 'Type' => 'Struct' + }, + '48712747' => { + 'BaseType' => '48787542', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '40', + 'Type' => 'Typedef' + }, + '48712770' => { + 'Base' => { + '48712585' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '48803737' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '48787542' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '48713051' => { + 'BaseType' => '48712747', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '40', + 'Type' => 'Typedef' + }, + '48713502' => { + 'Base' => { + '48712770' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '48787542' + } + }, + 'Type' => 'Class' + }, + '487405' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '796', + 'Header' => 'tuple', + 'Line' => '78', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_pi', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '153109' + 'type' => '485801' } }, - 'Name' => 'std::__weak_count<2>', + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '485801' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '370154' => { + '487663' => { 'Base' => { - '368474' => { + '487405' => { + 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '410172' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '407323' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => undef, + 'type' => '485801' } }, - 'Type' => 'Class' - }, - '370440' => { - 'BaseType' => '368636', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + 'Type' => 'Struct' }, - '3706549' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '3708514' - } - }, - 'Type' => 'Class' - }, - '370752' => { - 'Base' => { - '370154' => { - 'pos' => '0' - } - }, + '48785538' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '4208209' + } + }, + 'Type' => 'Class' + }, + '48786878' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '202654' + } + }, + 'Name' => 'log4cxx::helpers::WideLife >', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '4169230' + } + }, + 'Type' => 'Class' + }, + '48787337' => { + 'Base' => { + '4208199' => { + 'pos' => '0' + } + }, + 'Line' => '43', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone', + 'NameSpace' => 'log4cxx::helpers::TimeZoneImpl', + 'Size' => '40', + 'Source' => 'timezone.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::GMTTimeZone::~GMTTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::GMTTimeZone::~GMTTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::TimeZone::getClass() const [_ZNK7log4cxx7helpers8TimeZone8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::TimeZone::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::GMTTimeZone::explode(apr_time_exp_t*, long) const [_ZNK7log4cxx7helpers12TimeZoneImpl11GMTTimeZone7explodeEP14apr_time_exp_tl]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZoneImpl::GMTTimeZone) [_ZTIN7log4cxx7helpers12TimeZoneImpl11GMTTimeZoneE]' + } + }, + '48787537' => { + 'BaseType' => '48787337', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone const', + 'Size' => '40', + 'Type' => 'Const' + }, + '48787542' => { + 'Base' => { + '4208199' => { + 'pos' => '0' + } + }, + 'Line' => '82', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone', + 'NameSpace' => 'log4cxx::helpers::TimeZoneImpl', + 'Size' => '40', + 'Source' => 'timezone.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::LocalTimeZone::~LocalTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::LocalTimeZone::~LocalTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::TimeZone::getClass() const [_ZNK7log4cxx7helpers8TimeZone8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::TimeZone::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::LocalTimeZone::explode(apr_time_exp_t*, long) const [_ZNK7log4cxx7helpers12TimeZoneImpl13LocalTimeZone7explodeEP14apr_time_exp_tl]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZoneImpl::LocalTimeZone) [_ZTIN7log4cxx7helpers12TimeZoneImpl13LocalTimeZoneE]' + } + }, + '48787758' => { + 'BaseType' => '48787542', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone const', + 'Size' => '40', + 'Type' => 'Const' + }, + '48787763' => { + 'Base' => { + '4208199' => { + 'pos' => '0' + } + }, + 'Line' => '144', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'offset', + 'offset' => '64', + 'type' => '48795717' + } + }, + 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone', + 'NameSpace' => 'log4cxx::helpers::TimeZoneImpl', + 'Size' => '48', + 'Source' => 'timezone.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::FixedTimeZone::~FixedTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::FixedTimeZone::~FixedTimeZone() [_ZN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::TimeZone::getClass() const [_ZNK7log4cxx7helpers8TimeZone8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::TimeZone::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::TimeZone::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers8TimeZone4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::TimeZoneImpl::FixedTimeZone::explode(apr_time_exp_t*, long) const [_ZNK7log4cxx7helpers12TimeZoneImpl13FixedTimeZone7explodeEP14apr_time_exp_tl]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TimeZoneImpl::FixedTimeZone) [_ZTIN7log4cxx7helpers12TimeZoneImpl13FixedTimeZoneE]' + } + }, + '48787970' => { + 'BaseType' => '48787763', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone const', + 'Size' => '48', + 'Type' => 'Const' + }, + '48795717' => { + 'BaseType' => '1929192', + 'Name' => 'apr_int32_t const', + 'Size' => '4', + 'Type' => 'Const' + }, + '487969' => { 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '575282' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::spi::LoggingEvent::LoggingEventPrivate*>', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '407323' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '575282' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '3708324' => { - 'BaseType' => '3634874', - 'Header' => 'patternparser.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::PatternMap', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '48', - 'Type' => 'Typedef' - }, - '3708466' => { - 'BaseType' => '3644262', - 'Header' => 'loggingeventpatternconverter.h', - 'Line' => '84', - 'Name' => 'log4cxx::pattern::LoggingEventPatternConverterPtr', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '3708496' => { - 'Base' => { - '407542' => { - 'pos' => '0' - } - }, - 'Header' => 'dbappender.h', - 'Line' => '113', - 'Name' => 'log4cxx::db::DBAppender', - 'NameSpace' => 'log4cxx::db', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::db::DBAppender) [_ZTIN7log4cxx2db10DBAppenderE]', - '168' => '(int (*)(...)) log4cxx::db::DBAppender::~DBAppender() [_ZN7log4cxx2db10DBAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::db::DBAppender::~DBAppender() [_ZN7log4cxx2db10DBAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::db::DBAppender::getClass() const [_ZNK7log4cxx2db10DBAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::db::DBAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx2db10DBAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::db::DBAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx2db10DBAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::db::DBAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx2db10DBAppender15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::db::DBAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx2db10DBAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::db::DBAppender::close() [_ZN7log4cxx2db10DBAppender5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::db::DBAppender::requiresLayout() const [_ZNK7log4cxx2db10DBAppender14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::db::DBAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx2db10DBAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '3708514' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'dbappender.h', - 'Line' => '116', - 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender', - 'NameSpace' => 'log4cxx::db::DBAppender', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::db::DBAppender::ClazzDBAppender::~ClazzDBAppender() [_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD2Ev]', - '24' => '(int (*)(...)) log4cxx::db::DBAppender::ClazzDBAppender::~ClazzDBAppender() [_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::db::DBAppender::ClazzDBAppender::newInstance() const [_ZTch0_h0_NK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::db::DBAppender::ClazzDBAppender::getName[abi:cxx11]() const [_ZNK7log4cxx2db10DBAppender15ClazzDBAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::db::DBAppender::ClazzDBAppender::newInstance() const [_ZNK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::DBAppender::ClazzDBAppender) [_ZTIN7log4cxx2db10DBAppender15ClazzDBAppenderE]' - } - }, - '3708735' => { - 'BaseType' => '3708514', - 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3708740' => { - 'Base' => { - '407560' => { - 'pos' => '0' - } - }, - 'Line' => '51', - 'Memb' => { - '0' => { - 'name' => 'm_driver', - 'offset' => '184', - 'type' => '3715725' - }, - '1' => { - 'name' => 'm_databaseHandle', - 'offset' => '192', - 'type' => '3715731' - }, - '2' => { - 'name' => 'preparedStmt', - 'offset' => '200', - 'type' => '3715737' - }, - '3' => { - 'name' => 'mappedName', - 'offset' => '208', - 'type' => '2242385' - }, - '4' => { - 'name' => 'driverName', - 'offset' => '232', - 'type' => '36898' - }, - '5' => { - 'name' => 'driverParams', - 'offset' => '264', - 'type' => '36898' - }, - '6' => { - 'name' => 'databaseName', - 'offset' => '296', - 'type' => '36898' - }, - '7' => { - 'name' => 'sqlStatement', - 'offset' => '328', - 'type' => '36898' - }, - '8' => { - 'name' => 'm_pool', - 'offset' => '360', - 'type' => '62082' - }, - '9' => { - 'name' => 'converters', - 'offset' => '376', - 'type' => '3646164' - } - }, - 'Name' => 'struct log4cxx::db::DBAppender::DBAppenderPriv', - 'NameSpace' => 'log4cxx::db::DBAppender', - 'Protected' => 1, - 'Size' => '400', - 'Source' => 'dbappender.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::db::DBAppender::DBAppenderPriv::~DBAppenderPriv() [_ZN7log4cxx2db10DBAppender14DBAppenderPrivD2Ev]', - '24' => '(int (*)(...)) log4cxx::db::DBAppender::DBAppenderPriv::~DBAppenderPriv() [_ZN7log4cxx2db10DBAppender14DBAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::DBAppender::DBAppenderPriv) [_ZTIN7log4cxx2db10DBAppender14DBAppenderPrivE]' - } - }, - '3709619' => { - 'BaseType' => '3708496', - 'Name' => 'log4cxx::db::DBAppender const', - 'Size' => '16', - 'Type' => 'Const' - }, - '3712562' => { - 'BaseType' => '3712574', - 'Header' => 'apr_dbd.h', - 'Line' => '82', - 'Name' => 'apr_dbd_driver_t', - 'Type' => 'Typedef' - }, - '3712574' => { - 'Name' => 'struct apr_dbd_driver_t', - 'Type' => 'Struct' - }, - '3712579' => { - 'BaseType' => '3712591', - 'Header' => 'apr_dbd.h', - 'Line' => '83', - 'Name' => 'apr_dbd_t', - 'Type' => 'Typedef' - }, - '3712591' => { - 'Name' => 'struct apr_dbd_t', - 'Type' => 'Struct' - }, - '3712596' => { - 'BaseType' => '3712608', - 'Header' => 'apr_dbd.h', - 'Line' => '87', - 'Name' => 'apr_dbd_prepared_t', - 'Type' => 'Typedef' - }, - '3712608' => { - 'Name' => 'struct apr_dbd_prepared_t', - 'Type' => 'Struct' - }, - '3712658' => { - 'BaseType' => '3706549', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3712664' => { - 'BaseType' => '3712658', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3713014' => { - 'BaseType' => '3644262', - 'Name' => 'std::shared_ptr*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3713728' => { - 'Name' => 'std::shared_ptr(*)(union std::_Any_data const&, std::vector >const&)', - 'Param' => { + '48803391' => { + 'BaseType' => '48785538', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48803396' => { + 'BaseType' => '48803391', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48803582' => { + 'BaseType' => '48786878', + 'Name' => 'log4cxx::helpers::WideLife >*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48803587' => { + 'BaseType' => '48803582', + 'Name' => 'log4cxx::helpers::WideLife >*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48803652' => { + 'BaseType' => '48711664', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48803682' => { + 'BaseType' => '48712115', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '48803737' => { + 'BaseType' => '48713051', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48803767' => { + 'BaseType' => '48713502', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '48803893' => { + 'BaseType' => '48787763', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48803898' => { + 'BaseType' => '48803893', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48803958' => { + 'BaseType' => '48787337', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48803963' => { + 'BaseType' => '48803958', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48804008' => { + 'BaseType' => '48787542', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48804013' => { + 'BaseType' => '48804008', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48804389' => { + 'BaseType' => '48787537', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48804394' => { + 'BaseType' => '48804389', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::GMTTimeZone const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48804539' => { + 'BaseType' => '48787758', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48804544' => { + 'BaseType' => '48804539', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::LocalTimeZone const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48804705' => { + 'BaseType' => '48787970', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48804710' => { + 'BaseType' => '48804705', + 'Name' => 'log4cxx::helpers::TimeZoneImpl::FixedTimeZone const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48804920' => { + 'BaseType' => '4208199', + 'Name' => 'log4cxx::helpers::TimeZone*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48804925' => { + 'BaseType' => '48804920', + 'Name' => 'log4cxx::helpers::TimeZone*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48804945' => { + 'BaseType' => '1929667', + 'Name' => 'struct apr_time_exp_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '48805065' => { + 'BaseType' => '4213142', + 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '48805075' => { + 'BaseType' => '4213147', + 'Name' => 'log4cxx::helpers::TimeZone::ClazzTimeZone const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '488227' => { + 'Base' => { + '487663' => { + 'pos' => '0' + }, + '487969' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::spi::LoggingEvent::LoggingEventPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { '0' => { - 'type' => '651007' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' }, '1' => { - 'type' => '2273842' + 'key' => undef, + 'type' => '575282' } }, - 'Return' => '2240668', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '3713772' => { - 'Name' => 'std::shared_ptr(std::vector >const&)', - 'Param' => { + 'Type' => 'Struct' + }, + '489191' => { + 'Base' => { + '488227' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { '0' => { - 'type' => '2273842' + 'key' => undef, + 'type' => '575282' } }, - 'Return' => '2240668', - 'Type' => 'Func' - }, - '3714248' => { - 'BaseType' => '3708740', - 'Name' => 'struct log4cxx::db::DBAppender::DBAppenderPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3714254' => { - 'BaseType' => '3714248', - 'Name' => 'struct log4cxx::db::DBAppender::DBAppenderPriv*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3714618' => { - 'BaseType' => '3664413', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3715227' => { - 'BaseType' => '50179', - 'Name' => 'unsigned char[64]', - 'Size' => '64', - 'Type' => 'Array' - }, - '3715725' => { - 'BaseType' => '3712562', - 'Name' => 'apr_dbd_driver_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3715731' => { - 'BaseType' => '3712579', - 'Name' => 'apr_dbd_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3715737' => { - 'BaseType' => '3712596', - 'Name' => 'apr_dbd_prepared_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3715743' => { - 'BaseType' => '3709619', - 'Name' => 'log4cxx::db::DBAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3715749' => { - 'BaseType' => '3715743', - 'Name' => 'log4cxx::db::DBAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3715754' => { - 'BaseType' => '3708496', - 'Name' => 'log4cxx::db::DBAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3715760' => { - 'BaseType' => '3715754', - 'Name' => 'log4cxx::db::DBAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3715824' => { - 'BaseType' => '3708514', - 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3715830' => { - 'BaseType' => '3715824', - 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '3715835' => { - 'BaseType' => '3708735', - 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '3715841' => { - 'BaseType' => '3715835', - 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '372201' => { + 'Type' => 'Class' + }, + '490633' => { + 'Base' => { + '486775' => { + 'pos' => '0' + } + }, 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '407560' + 'type' => '564708' + }, + '1' => { + 'key' => '_Dp', + 'type' => '485801' } }, 'Type' => 'Struct' }, - '372324' => { + '490835' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '374088' + 'type' => '490633' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '407560' + 'type' => '564708' }, '1' => { 'key' => '_Dp', - 'type' => '372201' + 'type' => '485801' } }, 'Type' => 'Class' }, - '372693' => { - 'Base' => { - '372201' => { - 'pos' => '0' - } + '491457' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '564884' + } + }, + 'Type' => 'Struct' + }, + '492471' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '495114' + } }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '564884' + }, + '1' => { + 'key' => '_Dp', + 'type' => '491457' + } + }, + 'Type' => 'Class' + }, + '493146' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '491457' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '372201' + 'type' => '491457' } }, 'Type' => 'Struct' }, - '372986' => { + '493444' => { 'Base' => { - '372693' => { + '493146' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '372201' + 'type' => '491457' } }, 'Type' => 'Struct' }, - '373327' => { + '493791' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '410420' + 'type' => '575522' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::AppenderSkeleton::AppenderSkeletonPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::spi::Filter::FilterPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '410420' + 'type' => '575522' } }, 'Type' => 'Struct' }, - '373627' => { + '494089' => { 'Base' => { - '372986' => { + '493444' => { 'pos' => '0' }, - '373327' => { + '493791' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::AppenderSkeleton::AppenderSkeletonPrivate*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::spi::Filter::FilterPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '410420' + 'type' => '575522' } }, 'Type' => 'Struct' }, - '374088' => { + '495114' => { 'Base' => { - '373627' => { + '494089' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '410420' + 'type' => '575522' } }, 'Type' => 'Class' }, - '374474' => { + '49645189' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5658461' + } + }, + 'Type' => 'Class' + }, + '49656733' => { + 'BaseType' => '49645189', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '49656738' => { + 'BaseType' => '49656733', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '49657149' => { + 'BaseType' => '5679673', + 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '49657159' => { + 'BaseType' => '5679678', + 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '496612' => { + 'Base' => { + '492471' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '564884' + }, + '1' => { + 'key' => '_Dp', + 'type' => '491457' + } + }, + 'Type' => 'Struct' + }, + '496857' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '372324' + 'type' => '496612' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '407560' + 'type' => '564884' }, '1' => { 'key' => '_Dp', - 'type' => '372201' + 'type' => '491457' } }, 'Type' => 'Class' }, - '375099' => { + '4970671' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3116234' + } + }, + 'Type' => 'Class' + }, + '4971799' => { + 'BaseType' => '3116225', + 'Name' => 'log4cxx::helpers::CharsetEncoder const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4972202' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '202654' + } + }, + 'Name' => 'log4cxx::helpers::WideLife >', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '4871246' + } + }, + 'Type' => 'Class' + }, + '4972600' => { + 'Base' => { + '3116225' => { + 'pos' => '0' + } + }, + 'Line' => '306', + 'Name' => 'log4cxx::helpers::TrivialCharsetEncoder', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Source' => 'charsetencoder.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetEncoder::~TrivialCharsetEncoder() [_ZN7log4cxx7helpers21TrivialCharsetEncoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetEncoder::~TrivialCharsetEncoder() [_ZN7log4cxx7helpers21TrivialCharsetEncoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::TrivialCharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers21TrivialCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', + '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TrivialCharsetEncoder) [_ZTIN7log4cxx7helpers21TrivialCharsetEncoderE]' + } + }, + '4972810' => { + 'Base' => { + '3116225' => { + 'pos' => '0' + } + }, + 'Line' => '218', + 'Name' => 'log4cxx::helpers::USASCIICharsetEncoder', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Source' => 'charsetencoder.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetEncoder::~USASCIICharsetEncoder() [_ZN7log4cxx7helpers21USASCIICharsetEncoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetEncoder::~USASCIICharsetEncoder() [_ZN7log4cxx7helpers21USASCIICharsetEncoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::USASCIICharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers21USASCIICharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', + '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::USASCIICharsetEncoder) [_ZTIN7log4cxx7helpers21USASCIICharsetEncoderE]' + } + }, + '4973015' => { + 'Base' => { + '3116225' => { + 'pos' => '0' + } + }, + 'Line' => '262', + 'Name' => 'log4cxx::helpers::ISOLatinCharsetEncoder', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Source' => 'charsetencoder.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetEncoder::~ISOLatinCharsetEncoder() [_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetEncoder::~ISOLatinCharsetEncoder() [_ZN7log4cxx7helpers22ISOLatinCharsetEncoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::ISOLatinCharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers22ISOLatinCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', + '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ISOLatinCharsetEncoder) [_ZTIN7log4cxx7helpers22ISOLatinCharsetEncoderE]' + } + }, + '4973225' => { + 'Base' => { + '3116225' => { + 'pos' => '0' + } + }, + 'Line' => '383', + 'Name' => 'log4cxx::helpers::UTF16BECharsetEncoder', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Source' => 'charsetencoder.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::UTF16BECharsetEncoder::~UTF16BECharsetEncoder() [_ZN7log4cxx7helpers21UTF16BECharsetEncoderD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::UTF16BECharsetEncoder::~UTF16BECharsetEncoder() [_ZN7log4cxx7helpers21UTF16BECharsetEncoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::UTF16BECharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers21UTF16BECharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', + '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::UTF16BECharsetEncoder) [_ZTIN7log4cxx7helpers21UTF16BECharsetEncoderE]' + } + }, + '4973435' => { + 'Base' => { + '3116225' => { + 'pos' => '0' + } + }, + 'Line' => '417', + 'Name' => 'log4cxx::helpers::UTF16LECharsetEncoder', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Source' => 'charsetencoder.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::UTF16LECharsetEncoder::~UTF16LECharsetEncoder() [_ZN7log4cxx7helpers21UTF16LECharsetEncoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::UTF16LECharsetEncoder::~UTF16LECharsetEncoder() [_ZN7log4cxx7helpers21UTF16LECharsetEncoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::UTF16LECharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers21UTF16LECharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', + '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::UTF16LECharsetEncoder) [_ZTIN7log4cxx7helpers21UTF16LECharsetEncoderE]' + } + }, + '4973645' => { + 'Base' => { + '3116225' => { + 'pos' => '0' + } + }, + 'Line' => '451', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'state', + 'offset' => '8', + 'type' => '191054' + } + }, + 'Name' => 'log4cxx::helpers::LocaleCharsetEncoder', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Source' => 'charsetencoder.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetEncoder::~LocaleCharsetEncoder() [_ZN7log4cxx7helpers20LocaleCharsetEncoderD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetEncoder::~LocaleCharsetEncoder() [_ZN7log4cxx7helpers20LocaleCharsetEncoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::LocaleCharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers20LocaleCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', + '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::LocaleCharsetEncoder) [_ZTIN7log4cxx7helpers20LocaleCharsetEncoderE]' + } + }, + '4973859' => { + 'Base' => { + '3116225' => { + 'pos' => '0' + } + }, + 'Line' => '53', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'pool', + 'offset' => '8', + 'type' => '207830' + }, + '1' => { + 'access' => 'private', + 'name' => 'mutex', + 'offset' => '36', + 'type' => '106135' + }, + '2' => { + 'access' => 'private', + 'name' => 'convset', + 'offset' => '100', + 'type' => '4561983' + } + }, + 'Name' => 'log4cxx::helpers::APRCharsetEncoder', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '72', + 'Source' => 'charsetencoder.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::APRCharsetEncoder::~APRCharsetEncoder() [_ZN7log4cxx7helpers17APRCharsetEncoderD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::APRCharsetEncoder::~APRCharsetEncoder() [_ZN7log4cxx7helpers17APRCharsetEncoderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::getClass() const [_ZNK7log4cxx7helpers14CharsetEncoder8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14CharsetEncoder4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::APRCharsetEncoder::encode(std::__cxx11::basic_string, std::allocator > const&, __gnu_cxx::__normal_iterator, std::allocator > >&, log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers17APRCharsetEncoder6encodeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN9__gnu_cxx17__normal_iteratorIPKcS7_EERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::reset() [_ZN7log4cxx7helpers14CharsetEncoder5resetEv]', + '72' => '(int (*)(...)) log4cxx::helpers::CharsetEncoder::flush(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers14CharsetEncoder5flushERNS0_10ByteBufferE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRCharsetEncoder) [_ZTIN7log4cxx7helpers17APRCharsetEncoderE]' + } + }, + '4974550' => { + 'BaseType' => '4871246', + 'Header' => 'charsetencoder.h', + 'Line' => '31', + 'Name' => 'log4cxx::helpers::CharsetEncoderPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '4974562' => { + 'BaseType' => '4974550', + 'Name' => 'log4cxx::helpers::CharsetEncoderPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '497500' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Name' => 'std::vector, std::allocator >, std::allocator, std::allocator > > >', 'NameSpace' => 'std', - 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '405368' + 'name' => 'std::__cxx11::basic_string, std::allocator >' + }, + '1' => { + 'type' => '6005763' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '375185' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '376721' - } + '497505' => { + 'BaseType' => '497500', + 'Name' => 'std::vector, std::allocator >, std::allocator, std::allocator > > >const', + 'Type' => 'Const' + }, + '497510' => { + 'Base' => { + '1834147' => { + 'pos' => '0' + } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '405368' - }, - '1' => { - 'key' => '_Dp', - 'type' => '375099' + 'type' => '209311' } }, 'Type' => 'Class' }, - '375508' => { + '497515' => { 'Base' => { - '375099' => { - 'pos' => '0' - } + '3044845' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '375099' + 'type' => '565598' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '375761' => { - 'Base' => { - '375508' => { - 'access' => 'private', - 'pos' => '0' - } - }, + '497611' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' + 'key' => '_Tp', + 'type' => '564875' }, '1' => { - 'key' => undef, - 'type' => '375099' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '376060' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '410716' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::LogLog::LogLogPrivate*>', + '497759' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '410716' + 'key' => '_Tp', + 'type' => '564875' } }, 'Type' => 'Struct' }, - '376320' => { + '497773' => { + 'BaseType' => '564875', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '497796' => { 'Base' => { - '375761' => { + '497611' => { 'pos' => '0' - }, - '376060' => { - 'access' => 'private', - 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::LogLog::LogLogPrivate*>', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '575872' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Tp', + 'type' => '564875' }, '1' => { - 'key' => undef, - 'type' => '410716' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' + }, + '498077' => { + 'BaseType' => '497773', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' }, - '376721' => { + '498401' => { 'Base' => { - '376320' => { + '497796' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => undef, - 'type' => '410716' + 'key' => '_Tp', + 'type' => '564875' } }, 'Type' => 'Class' }, - '377005' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '375185' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { + '49871657' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '405368' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3116367' + } + }, + 'Type' => 'Class' + }, + '49878238' => { + 'BaseType' => '49871657', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '49878243' => { + 'BaseType' => '49878238', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '49878644' => { + 'BaseType' => '3134017', + 'Name' => 'log4cxx::helpers::Writer::ClazzWriter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '49878654' => { + 'BaseType' => '3134022', + 'Name' => 'log4cxx::helpers::Writer::ClazzWriter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4992995' => { + 'BaseType' => '4970671', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993000' => { + 'BaseType' => '4992995', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4993246' => { + 'BaseType' => '4870508', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993296' => { + 'BaseType' => '4972202', + 'Name' => 'log4cxx::helpers::WideLife >*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993301' => { + 'BaseType' => '4993296', + 'Name' => 'log4cxx::helpers::WideLife >*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4993326' => { + 'BaseType' => '3116225', + 'Name' => 'log4cxx::helpers::CharsetEncoder*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993331' => { + 'BaseType' => '4993326', + 'Name' => 'log4cxx::helpers::CharsetEncoder*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4993421' => { + 'BaseType' => '4972600', + 'Name' => 'log4cxx::helpers::TrivialCharsetEncoder*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993426' => { + 'BaseType' => '4993421', + 'Name' => 'log4cxx::helpers::TrivialCharsetEncoder*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4993516' => { + 'BaseType' => '4972810', + 'Name' => 'log4cxx::helpers::USASCIICharsetEncoder*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993521' => { + 'BaseType' => '4993516', + 'Name' => 'log4cxx::helpers::USASCIICharsetEncoder*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4993611' => { + 'BaseType' => '4973015', + 'Name' => 'log4cxx::helpers::ISOLatinCharsetEncoder*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993616' => { + 'BaseType' => '4993611', + 'Name' => 'log4cxx::helpers::ISOLatinCharsetEncoder*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4993706' => { + 'BaseType' => '4973225', + 'Name' => 'log4cxx::helpers::UTF16BECharsetEncoder*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993711' => { + 'BaseType' => '4993706', + 'Name' => 'log4cxx::helpers::UTF16BECharsetEncoder*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4993801' => { + 'BaseType' => '4973435', + 'Name' => 'log4cxx::helpers::UTF16LECharsetEncoder*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993806' => { + 'BaseType' => '4993801', + 'Name' => 'log4cxx::helpers::UTF16LECharsetEncoder*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4993896' => { + 'BaseType' => '4973645', + 'Name' => 'log4cxx::helpers::LocaleCharsetEncoder*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993901' => { + 'BaseType' => '4993896', + 'Name' => 'log4cxx::helpers::LocaleCharsetEncoder*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4993991' => { + 'BaseType' => '4973859', + 'Name' => 'log4cxx::helpers::APRCharsetEncoder*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4993996' => { + 'BaseType' => '4993991', + 'Name' => 'log4cxx::helpers::APRCharsetEncoder*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4995918' => { + 'BaseType' => '4971799', + 'Name' => 'log4cxx::helpers::CharsetEncoder const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '4995923' => { + 'BaseType' => '4995918', + 'Name' => 'log4cxx::helpers::CharsetEncoder const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4995928' => { + 'BaseType' => '4974550', + 'Name' => 'log4cxx::helpers::CharsetEncoderPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '4995933' => { + 'BaseType' => '4974562', + 'Name' => 'log4cxx::helpers::CharsetEncoderPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '4995953' => { + 'BaseType' => '3134007', + 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '4995963' => { + 'BaseType' => '3134012', + 'Name' => 'log4cxx::helpers::CharsetEncoder::ClazzCharsetEncoder const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '50309642' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3122369' + } + }, + 'Type' => 'Class' + }, + '50327528' => { + 'BaseType' => '50309642', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '50327533' => { + 'BaseType' => '50327528', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '50328807' => { + 'BaseType' => '3133987', + 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '50328817' => { + 'BaseType' => '3133992', + 'Name' => 'log4cxx::WriterAppender::ClazzWriterAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5048002' => { + 'BaseType' => '4993326', + 'Name' => 'log4cxx::helpers::CharsetEncoder*&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '50822309' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5656324' + } + }, + 'Type' => 'Class' + }, + '50827685' => { + 'BaseType' => '5656310', + 'Name' => 'log4cxx::xml::XMLLayout const', + 'Size' => '16', + 'Type' => 'Const' + }, + '50837061' => { + 'BaseType' => '50822309', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '50837066' => { + 'BaseType' => '50837061', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '50837732' => { + 'BaseType' => '5679753', + 'Name' => 'log4cxx::xml::XMLLayout*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '50837752' => { + 'BaseType' => '50827685', + 'Name' => 'log4cxx::xml::XMLLayout const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '50837757' => { + 'BaseType' => '50837752', + 'Name' => 'log4cxx::xml::XMLLayout const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '50838077' => { + 'BaseType' => '5679743', + 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '50838087' => { + 'BaseType' => '5679748', + 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51229374' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '16772035' + } + }, + 'Type' => 'Class' + }, + '51231544' => { + 'Base' => { + '209720' => { + 'pos' => '0' + } + }, + 'Line' => '32', + 'Memb' => { + '0' => { + 'name' => 'source', + 'offset' => '114', + 'type' => '567066' }, '1' => { - 'key' => '_Dp', - 'type' => '375099' + 'name' => 'destination', + 'offset' => '128', + 'type' => '567066' + }, + '2' => { + 'name' => 'deleteSource', + 'offset' => '136', + 'type' => '174077' + }, + '3' => { + 'name' => 'throwIOExceptionOnForkFailure', + 'offset' => '137', + 'type' => '174077' } }, - 'Type' => 'Class' - }, - '377598' => { - 'Copied' => 1, - 'Name' => 'std::vector, std::allocator >, std::allocator, std::allocator > > >', - 'NameSpace' => 'std', - 'TParam' => { + 'Name' => 'struct log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate', + 'NameSpace' => 'log4cxx::rolling::ZipCompressAction', + 'Private' => 1, + 'Size' => '96', + 'Source' => 'zipcompressaction.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate::~ZipCompressActionPrivate() [_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD2Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate::~ZipCompressActionPrivate() [_ZN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate) [_ZTIN7log4cxx7rolling17ZipCompressAction24ZipCompressActionPrivateE]' + } + }, + '51250666' => { + 'BaseType' => '51229374', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '51250671' => { + 'BaseType' => '51250666', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51250777' => { + 'BaseType' => '51231544', + 'Name' => 'struct log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '51250782' => { + 'BaseType' => '51250777', + 'Name' => 'struct log4cxx::rolling::ZipCompressAction::ZipCompressActionPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51251317' => { + 'BaseType' => '16790780', + 'Name' => 'log4cxx::rolling::ZipCompressAction const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51251401' => { + 'BaseType' => '16791329', + 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51251411' => { + 'BaseType' => '16791334', + 'Name' => 'log4cxx::rolling::ZipCompressAction::ClazzZipCompressAction const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51319' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '30290' + } + }, + 'Type' => 'Struct' + }, + '51333' => { + 'BaseType' => '192483', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits >::pointer', + 'NameSpace' => 'std::allocator_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '51396' => { + 'BaseType' => '3463', + 'Header' => 'alloc_traits.h', + 'Line' => '435', + 'Name' => 'std::allocator_traits >::size_type', + 'NameSpace' => 'std::allocator_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '51474450' => { + 'BaseType' => '5647545', + 'Name' => 'log4cxx::helpers::DatagramPacket const', + 'Size' => '16', + 'Type' => 'Const' + }, + '51474467' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5647559' + } + }, + 'Type' => 'Class' + }, + '51476707' => { + 'BaseType' => '51474467', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '51476712' => { + 'BaseType' => '51476707', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51477078' => { + 'BaseType' => '51474450', + 'Name' => 'log4cxx::helpers::DatagramPacket const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '51477083' => { + 'BaseType' => '51477078', + 'Name' => 'log4cxx::helpers::DatagramPacket const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51477088' => { + 'BaseType' => '5647545', + 'Name' => 'log4cxx::helpers::DatagramPacket*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '51477093' => { + 'BaseType' => '51477088', + 'Name' => 'log4cxx::helpers::DatagramPacket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51477113' => { + 'BaseType' => '5680218', + 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51477123' => { + 'BaseType' => '5680223', + 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51677' => { + 'Copied' => 1, + 'Header' => 'basic_string.h', + 'Line' => '85', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_dataplus', + 'offset' => '0', + 'type' => '51690' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_string_length', + 'offset' => '8', + 'type' => '51887' + }, + '2' => { + 'access' => 'private', + 'name' => 'unnamed0', + 'offset' => '22', + 'type' => '51852' + } + }, + 'Name' => 'std::__cxx11::basic_string', + 'NameSpace' => 'std::__cxx11', + 'Size' => '32', + 'TParam' => { + '0' => { + 'key' => '_CharT', + 'type' => '191030' + } + }, + 'Type' => 'Class' + }, + '51690' => { + 'Base' => { + '30290' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'basic_string.h', + 'Line' => '158', + 'Memb' => { + '0' => { + 'name' => '_M_p', + 'offset' => '0', + 'type' => '51819' + } + }, + 'Name' => 'struct std::__cxx11::basic_string::_Alloc_hider', + 'NameSpace' => 'std::__cxx11::basic_string', + 'Private' => 1, + 'Size' => '8', + 'Type' => 'Struct' + }, + '51706611' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647684' + } + }, + 'Type' => 'Struct' + }, + '51707600' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { '0' => { - 'name' => 'std::__cxx11::basic_string, std::allocator >' - }, - '1' => { - 'type' => '2241022' + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '51710232' } }, - 'Type' => 'Class' - }, - '377603' => { - 'BaseType' => '377598', - 'Name' => 'std::vector, std::allocator >, std::allocator, std::allocator > > >const', - 'Type' => 'Const' - }, - '377608' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647684' + }, + '1' => { + 'key' => '_Dp', + 'type' => '51706611' + } + }, + 'Type' => 'Class' + }, + '51708276' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '409118' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '51706611' } }, - 'Type' => 'Class' - }, - '377756' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '409118' - } + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '51706611' + } + }, + 'Type' => 'Struct' + }, + '51708574' => { + 'Base' => { + '51708276' => { + 'access' => 'private', + 'pos' => '0' + } }, - 'Type' => 'Struct' - }, - '377770' => { - 'BaseType' => '409118', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '377793' => { - 'Base' => { - '377608' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '411038' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '51706611' + } + }, + 'Type' => 'Struct' + }, + '51708921' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '409118' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '51778561' } }, - 'Type' => 'Class' - }, - '378079' => { - 'BaseType' => '377770', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '378391' => { - 'Base' => { - '377793' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '409118' - } + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::DatagramSocket*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '51778561' + } + }, + 'Type' => 'Struct' + }, + '51709219' => { + 'Base' => { + '51708574' => { + 'pos' => '0' + }, + '51708921' => { + 'access' => 'private', + 'pos' => '1' + } }, - 'Type' => 'Class' - }, - '378702' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '407466' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::DatagramSocket*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '51778561' + } + }, + 'Type' => 'Struct' + }, + '51710232' => { + 'Base' => { + '51709219' => { + 'pos' => '0' + } }, - 'Type' => 'Class' - }, - '378850' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '407466' - } + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '51778561' + } + }, + 'Type' => 'Class' + }, + '51711695' => { + 'Base' => { + '51707600' => { + 'pos' => '0' + } }, - 'Type' => 'Struct' - }, - '378864' => { - 'BaseType' => '407466', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '378887' => { - 'Base' => { - '378702' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '411138' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647684' + }, + '1' => { + 'key' => '_Dp', + 'type' => '51706611' + } + }, + 'Type' => 'Struct' + }, + '51711934' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '407466' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '51711695' } }, - 'Type' => 'Class' - }, - '379173' => { - 'BaseType' => '378864', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '379527' => { - 'Base' => { - '378887' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '407466' - } + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647684' + }, + '1' => { + 'key' => '_Dp', + 'type' => '51706611' + } + }, + 'Type' => 'Class' + }, + '51729751' => { + 'Base' => { + '51968529' => { + 'pos' => '0' + } }, - 'Type' => 'Class' - }, - '38087' => { - 'Copied' => 1, - 'Header' => 'chrono', - 'Line' => '828', - 'Name' => 'struct std::chrono::_V2::system_clock', - 'NameSpace' => 'std::chrono::_V2', - 'Size' => '1', - 'Type' => 'Struct' - }, - '382511' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'type' => '5647545' + } + }, + 'Type' => 'Class' + }, + '51770946' => { + 'BaseType' => '5647684', + 'Name' => 'log4cxx::helpers::DatagramSocket const', + 'Size' => '16', + 'Type' => 'Const' + }, + '51771364' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '407370' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Type' => 'Class' - }, - '382659' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '407370' - } + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5647698' + } + }, + 'Type' => 'Class' + }, + '51772120' => { + 'Base' => { + '5647684' => { + 'pos' => '0' + } }, - 'Type' => 'Struct' - }, - '382673' => { - 'BaseType' => '407370', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '382696' => { + 'Header' => 'aprdatagramsocket.h', + 'Line' => '27', + 'Name' => 'log4cxx::helpers::APRDatagramSocket', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::~APRDatagramSocket() [_ZN7log4cxx7helpers17APRDatagramSocketD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::~APRDatagramSocket() [_ZN7log4cxx7helpers17APRDatagramSocketD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::getClass() const [_ZNK7log4cxx7helpers14DatagramSocket8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramSocket10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramSocket4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::bind(int, std::shared_ptr) [_ZN7log4cxx7helpers17APRDatagramSocket4bindEiSt10shared_ptrINS0_11InetAddressEE]', + '64' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::close() [_ZN7log4cxx7helpers17APRDatagramSocket5closeEv]', + '72' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::connect(std::shared_ptr, int) [_ZN7log4cxx7helpers17APRDatagramSocket7connectESt10shared_ptrINS0_11InetAddressEEi]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRDatagramSocket) [_ZTIN7log4cxx7helpers17APRDatagramSocketE]', + '80' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::isClosed() const [_ZNK7log4cxx7helpers17APRDatagramSocket8isClosedEv]', + '88' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::receive(std::shared_ptr&) [_ZN7log4cxx7helpers17APRDatagramSocket7receiveERSt10shared_ptrINS0_14DatagramPacketEE]', + '96' => '(int (*)(...)) log4cxx::helpers::APRDatagramSocket::send(std::shared_ptr&) [_ZN7log4cxx7helpers17APRDatagramSocket4sendERSt10shared_ptrINS0_14DatagramPacketEE]' + } + }, + '517723' => { 'Base' => { - '382511' => { - 'pos' => '0' - } + '1312678' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '411629' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '407370' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'type' => '564699' } }, 'Type' => 'Class' }, - '38270' => { - 'Copied' => 1, - 'Header' => 'chrono', - 'Line' => '300', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '__r', - 'offset' => '0', - 'type' => '38416' - } - }, - 'Name' => 'struct std::chrono::duration >', - 'NameSpace' => 'std::chrono', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Rep', - 'type' => '50244' - }, - '1' => { - 'key' => '_Period', - 'type' => '39431' - } - }, - 'Type' => 'Struct' - }, - '382982' => { - 'BaseType' => '382673', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '38416' => { - 'BaseType' => '50244', - 'Header' => 'chrono', - 'Line' => '313', - 'Name' => 'std::chrono::duration >::rep', - 'NameSpace' => 'std::chrono::duration >', + '51772656' => { + 'BaseType' => '51729751', + 'Header' => 'datagrampacket.h', + 'Line' => '107', + 'Name' => 'log4cxx::helpers::DatagramPacketPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Type' => 'Typedef' + }, + '51772668' => { + 'BaseType' => '51711934', + 'Header' => 'datagramsocket.h', + 'Line' => '33', + 'Name' => 'log4cxx::helpers::DatagramSocketUniquePtr', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '51778450' => { + 'BaseType' => '51771364', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '51778455' => { + 'BaseType' => '51778450', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51778561' => { + 'BaseType' => '5647684', + 'Name' => 'log4cxx::helpers::DatagramSocket*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '51778566' => { + 'BaseType' => '51778561', + 'Name' => 'log4cxx::helpers::DatagramSocket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51778836' => { + 'BaseType' => '51772120', + 'Name' => 'log4cxx::helpers::APRDatagramSocket*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '51778841' => { + 'BaseType' => '51778836', + 'Name' => 'log4cxx::helpers::APRDatagramSocket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51779381' => { + 'BaseType' => '51770946', + 'Name' => 'log4cxx::helpers::DatagramSocket const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '51779386' => { + 'BaseType' => '51779381', + 'Name' => 'log4cxx::helpers::DatagramSocket const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51779391' => { + 'BaseType' => '51772656', + 'Name' => 'log4cxx::helpers::DatagramPacketPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '51779406' => { + 'BaseType' => '5680208', + 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51779416' => { + 'BaseType' => '5680213', + 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '51819' => { + 'BaseType' => '179416', + 'Header' => 'basic_string.h', + 'Line' => '100', + 'Name' => 'std::__cxx11::basic_string::pointer', + 'NameSpace' => 'std::__cxx11::basic_string', 'Size' => '8', 'Type' => 'Typedef' }, - '38897' => { - 'Copied' => 1, - 'Header' => 'chrono', - 'Line' => '626', + '51852' => { + 'Header' => 'basic_string.h', + 'Line' => '180', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '__d', + 'name' => '_M_local_buf', + 'offset' => '0', + 'type' => '202654' + }, + '1' => { + 'name' => '_M_allocated_capacity', 'offset' => '0', - 'type' => '38971' + 'type' => '51887' } }, - 'Name' => 'struct std::chrono::time_point > >', - 'NameSpace' => 'std::chrono', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Clock', - 'type' => '38087' - }, - '1' => { - 'key' => '_Dur', - 'type' => '38270' - } - }, - 'Type' => 'Struct' + 'Name' => 'std::__cxx11::basic_string::anon-union-basic_string.h-180', + 'NameSpace' => 'std::__cxx11::basic_string', + 'Private' => 1, + 'Size' => '16', + 'Type' => 'Union' }, - '38971' => { - 'BaseType' => '38270', - 'Header' => 'chrono', - 'Line' => '629', - 'Name' => 'std::chrono::time_point > >::duration', - 'NameSpace' => 'std::chrono::time_point > >', + '51887' => { + 'BaseType' => '179440', + 'Header' => 'basic_string.h', + 'Line' => '96', + 'Name' => 'std::__cxx11::basic_string::size_type', + 'NameSpace' => 'std::__cxx11::basic_string', 'Size' => '8', 'Type' => 'Typedef' }, - '39431' => { - 'Header' => 'ratio', - 'Line' => '261', - 'Name' => 'struct std::ratio<1l, 1000000000l>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Num', - 'type' => '50244', - 'val' => '1' - }, - '1' => { - 'key' => '_Den', - 'type' => '50244', - 'val' => '1000000000' - } - }, - 'Type' => 'Struct' - }, - '4008782' => { - 'Base' => { - '4020128' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '40', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '2699607' - } - }, - 'Type' => 'Class' - }, - '4012218' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4045791' - } - }, - 'Type' => 'Struct' - }, - '4012304' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '4013836' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4045791' - }, - '1' => { - 'key' => '_Dp', - 'type' => '4012218' - } - }, - 'Type' => 'Class' - }, - '4012627' => { - 'Base' => { - '4012218' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '4012218' - } - }, - 'Type' => 'Struct' - }, - '4012880' => { - 'Base' => { - '4012627' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '4012218' - } - }, - 'Type' => 'Struct' - }, - '4013176' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '4047845' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::File::FilePrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '4047845' - } - }, - 'Type' => 'Struct' - }, - '4013436' => { - 'Base' => { - '4012880' => { - 'pos' => '0' - }, - '4013176' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::File::FilePrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '4047845' - } - }, - 'Type' => 'Struct' - }, - '4013836' => { - 'Base' => { - '4013436' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '4047845' - } - }, - 'Type' => 'Class' - }, - '4014119' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '4012304' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4045791' - }, - '1' => { - 'key' => '_Dp', - 'type' => '4012218' - } - }, - 'Type' => 'Class' - }, - '4017477' => { - 'Base' => { - '7767591' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'type' => '1340484' - } - }, - 'Type' => 'Class' - }, - '4019070' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '68' - } - }, - 'Name' => 'struct std::_Head_base<1ul, std::__cxx11::basic_string >', - 'NameSpace' => 'std', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '68' - } - }, - 'Type' => 'Struct' - }, - '4019410' => { - 'Base' => { - '4019070' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::__cxx11::basic_string >', - 'NameSpace' => 'std', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '68' - } - }, - 'Type' => 'Struct' - }, - '4019788' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '2699607' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::spi::ConfigurationStatus>', - 'NameSpace' => 'std', - 'Size' => '4', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '2699607' - } - }, - 'Type' => 'Struct' - }, - '4020128' => { - 'Base' => { - '4019410' => { - 'pos' => '0' - }, - '4019788' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::spi::ConfigurationStatus>', - 'NameSpace' => 'std', - 'Size' => '40', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '2699607' - } - }, - 'Type' => 'Struct' - }, - '402834' => { - 'BaseType' => '55079', - 'Header' => 'gthr-default.h', - 'Line' => '51', - 'Name' => '__gthread_recursive_mutex_t', - 'Size' => '40', - 'Type' => 'Typedef' - }, - '4043818' => { - 'BaseType' => '566575', - 'Header' => 'properties.h', - 'Line' => '35', - 'Name' => 'log4cxx::helpers::Properties::PropertyMap', - 'NameSpace' => 'log4cxx::helpers::Properties', - 'Private' => 1, - 'Type' => 'Typedef' - }, - '4044183' => { - 'BaseType' => '832974', - 'Name' => 'log4cxx::helpers::Properties const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4044621' => { - 'BaseType' => '4017477', - 'Header' => 'inputstream.h', - 'Line' => '68', - 'Name' => 'log4cxx::helpers::InputStreamPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Type' => 'Typedef' - }, - '4045566' => { - 'Header' => 'defaultconfigurator.h', - 'Line' => '32', - 'Name' => 'log4cxx::DefaultConfigurator', - 'NameSpace' => 'log4cxx', - 'Size' => '1', - 'Type' => 'Class' - }, - '4045791' => { - 'Line' => '30', - 'Memb' => { - '0' => { - 'name' => 'path', - 'offset' => '0', - 'type' => '63706' - }, - '1' => { - 'name' => 'autoDelete', - 'offset' => '32', - 'type' => '50284' - } - }, - 'Name' => 'struct log4cxx::File::FilePrivate', - 'NameSpace' => 'log4cxx::File', - 'Private' => 1, - 'Size' => '40', - 'Source' => 'file.cpp', - 'Type' => 'Struct' - }, - '4047845' => { - 'BaseType' => '4045791', - 'Name' => 'struct log4cxx::File::FilePrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4048084' => { - 'BaseType' => '836407', - 'Name' => 'log4cxx::File*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4048096' => { - 'BaseType' => '836407', - 'Name' => 'log4cxx::File&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4048102' => { - 'BaseType' => '836412', - 'Name' => 'log4cxx::File const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4048120' => { - 'Name' => 'struct apr_file_t', - 'Type' => 'Struct' - }, - '4048430' => { - 'BaseType' => '4043818', - 'Name' => 'log4cxx::helpers::Properties::PropertyMap*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4048436' => { - 'BaseType' => '832974', - 'Name' => 'log4cxx::helpers::Properties*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4048448' => { - 'BaseType' => '4044183', - 'Name' => 'log4cxx::helpers::Properties const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4049258' => { - 'BaseType' => '50678', - 'Name' => 'char const[22]', - 'Size' => '22', - 'Type' => 'Array' - }, - '4049274' => { - 'BaseType' => '4049258', - 'Name' => 'char const[22]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4049280' => { - 'BaseType' => '50678', - 'Name' => 'char const[20]', - 'Size' => '20', - 'Type' => 'Array' - }, - '4049296' => { - 'BaseType' => '4049280', - 'Name' => 'char const[20]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4049302' => { - 'BaseType' => '50678', - 'Name' => 'char const[36]', - 'Size' => '36', - 'Type' => 'Array' - }, - '4049318' => { - 'BaseType' => '4049302', - 'Name' => 'char const[36]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '405355' => { - 'Header' => 'loglog.h', - 'Line' => '41', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '377005' - } - }, - 'Name' => 'log4cxx::helpers::LogLog', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '405368' => { - 'Line' => '34', - 'Memb' => { - '0' => { - 'name' => 'debugEnabled', - 'offset' => '0', - 'type' => '50284' - }, - '1' => { - 'name' => 'quietMode', - 'offset' => '1', - 'type' => '50284' - }, - '2' => { - 'name' => 'mutex', - 'offset' => '8', - 'type' => '41413' - } - }, - 'Name' => 'struct log4cxx::helpers::LogLog::LogLogPrivate', - 'NameSpace' => 'log4cxx::helpers::LogLog', - 'Private' => 1, - 'Size' => '48', - 'Source' => 'loglog.cpp', - 'Type' => 'Struct' - }, - '405774' => { - 'Base' => { - '407466' => { - 'pos' => '0', - 'virtual' => 1 - }, - '63470' => { - 'pos' => '1', - 'virtual' => 1 + '51968346' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647545' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '51968492' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647545' + } + }, + 'Type' => 'Struct' + }, + '51968506' => { + 'BaseType' => '5647545', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '51968529' => { + 'Base' => { + '51968346' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '52031337' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647545' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '51968808' => { + 'BaseType' => '51968506', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '52020262' => { + 'BaseType' => '51772120', + 'Name' => 'log4cxx::helpers::APRDatagramSocket const', + 'Size' => '16', + 'Type' => 'Const' + }, + '52031027' => { + 'BaseType' => '4557447', + 'Name' => 'apr_socket_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52031337' => { + 'BaseType' => '51968808', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52031677' => { + 'BaseType' => '52020262', + 'Name' => 'log4cxx::helpers::APRDatagramSocket const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52031682' => { + 'BaseType' => '52031677', + 'Name' => 'log4cxx::helpers::APRDatagramSocket const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52283728' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5648095' } - }, - 'Copied' => 1, - 'Header' => 'onlyonceerrorhandler.h', - 'Line' => '38', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '12632831' - } - }, - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::OnlyOnceErrorHandler) [_ZTIN7log4cxx7helpers20OnlyOnceErrorHandlerE]', - '136' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::~OnlyOnceErrorHandler() [_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD1Ev]', - '144' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::~OnlyOnceErrorHandler() [_ZN7log4cxx7helpers20OnlyOnceErrorHandlerD0Ev]', - '152' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::getClass() const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler8getClassEv]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler10instanceofERKNS0_5ClassE]', - '168' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler4castERKNS0_5ClassE]', - '176' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler15activateOptionsERNS0_4PoolE]', - '184' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '192' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::setLogger(std::shared_ptr const&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE]', - '200' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&, std::exception const&, int) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni]', - '208' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '216' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&, std::exception const&, int, std::shared_ptr const&) const [_ZNK7log4cxx7helpers20OnlyOnceErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS_3spi12LoggingEventEE]', - '224' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::setAppender(std::shared_ptr const&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE]', - '232' => '(int (*)(...)) log4cxx::helpers::OnlyOnceErrorHandler::setBackupAppender(std::shared_ptr const&) [_ZN7log4cxx7helpers20OnlyOnceErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '405779' => { - 'BaseType' => '405774', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler const', - 'Type' => 'Const' - }, - '405784' => { - 'Copied' => 1, - 'Header' => 'stringhelper.h', - 'Line' => '33', - 'Name' => 'log4cxx::helpers::StringHelper', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '1', - 'Type' => 'Class' - }, - '406200' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { + }, + 'Type' => 'Struct' + }, + '52284717' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { '0' => { - 'key' => 'T', - 'type' => '407836' + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '52287349' } }, - 'Type' => 'Class' - }, - '407306' => { - 'BaseType' => '50671', - 'Header' => 'logstring.h', - 'Line' => '47', - 'Name' => 'log4cxx::logchar', - 'NameSpace' => 'log4cxx', - 'Size' => '1', - 'Type' => 'Typedef' - }, - '407318' => { - 'BaseType' => '407306', - 'Name' => 'log4cxx::logchar const', - 'Size' => '1', - 'Type' => 'Const' - }, - '407323' => { - 'Base' => { - '63470' => { - 'pos' => '0' + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5648095' + }, + '1' => { + 'key' => '_Dp', + 'type' => '52283728' } - }, - 'Copied' => 1, - 'Header' => 'level.h', - 'Line' => '48', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'name', - 'offset' => '8', - 'type' => '63706' - }, - '1' => { - 'access' => 'private', - 'name' => 'level', - 'offset' => '40', - 'type' => '50231' - }, - '2' => { - 'access' => 'private', - 'name' => 'syslogEquivalent', - 'offset' => '44', - 'type' => '50231' - } - }, - 'Name' => 'log4cxx::Level', - 'NameSpace' => 'log4cxx', - 'Size' => '48', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::Level::~Level() [_ZN7log4cxx5LevelD1Ev]', - '24' => '(int (*)(...)) log4cxx::Level::~Level() [_ZN7log4cxx5LevelD0Ev]', - '32' => '(int (*)(...)) log4cxx::Level::getClass() const [_ZNK7log4cxx5Level8getClassEv]', - '40' => '(int (*)(...)) log4cxx::Level::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx5Level10instanceofERKNS_7helpers5ClassE]', - '48' => '(int (*)(...)) log4cxx::Level::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx5Level4castERKNS_7helpers5ClassE]', - '56' => '(int (*)(...)) log4cxx::Level::equals(std::shared_ptr const&) const [_ZNK7log4cxx5Level6equalsERKSt10shared_ptrIS0_E]', - '64' => '(int (*)(...)) log4cxx::Level::isGreaterOrEqual(std::shared_ptr const&) const [_ZNK7log4cxx5Level16isGreaterOrEqualERKSt10shared_ptrIS0_E]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::Level) [_ZTIN7log4cxx5LevelE]' - } - }, - '407370' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 + }, + 'Type' => 'Class' + }, + '52285393' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '52283728' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '52283728' } - }, - 'Copied' => 1, - 'Header' => 'loggingevent.h', - 'Line' => '49', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '10158608' - } - }, - 'Name' => 'log4cxx::spi::LoggingEvent', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggingEvent) [_ZTIN7log4cxx3spi12LoggingEventE]', - '56' => '(int (*)(...)) log4cxx::spi::LoggingEvent::~LoggingEvent() [_ZN7log4cxx3spi12LoggingEventD1Ev]', - '64' => '(int (*)(...)) log4cxx::spi::LoggingEvent::~LoggingEvent() [_ZN7log4cxx3spi12LoggingEventD0Ev]', - '72' => '(int (*)(...)) log4cxx::spi::LoggingEvent::getClass() const [_ZNK7log4cxx3spi12LoggingEvent8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::spi::LoggingEvent::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi12LoggingEvent10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::spi::LoggingEvent::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi12LoggingEvent4castERKNS_7helpers5ClassE]' - } - }, - '407466' => { - 'Base' => { - '151305' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Copied' => 1, - 'Header' => 'errorhandler.h', - 'Line' => '58', - 'Name' => 'log4cxx::spi::ErrorHandler', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::spi::ErrorHandler::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi12ErrorHandler10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::spi::ErrorHandler::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi12ErrorHandler4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) __cxa_pure_virtual', - '128' => '(int (*)(...)) __cxa_pure_virtual', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '144' => '(int (*)(...)) __cxa_pure_virtual', - '152' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '160' => '(int (*)(...)) __cxa_pure_virtual', - '168' => '(int (*)(...)) __cxa_pure_virtual', - '176' => '(int (*)(...)) __cxa_pure_virtual', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::spi::ErrorHandler) [_ZTIN7log4cxx3spi12ErrorHandlerE]', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '(int (*)(...)) log4cxx::spi::ErrorHandler::getClass() const [_ZNK7log4cxx3spi12ErrorHandler8getClassEv]' - } - }, - '407505' => { - 'BaseType' => '379527', - 'Header' => 'errorhandler.h', - 'Line' => '118', - 'Name' => 'log4cxx::spi::ErrorHandlerPtr', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '407517' => { - 'BaseType' => '407505', - 'Name' => 'log4cxx::spi::ErrorHandlerPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '407542' => { - 'Base' => { - '262983' => { - 'pos' => '0', - 'virtual' => 1 - }, - '63470' => { - 'pos' => '1', - 'virtual' => 1 + }, + 'Type' => 'Struct' + }, + '52285691' => { + 'Base' => { + '52285393' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '52283728' + } + }, + 'Type' => 'Struct' + }, + '52286038' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '52351582' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ServerSocket*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '52351582' + } + }, + 'Type' => 'Struct' + }, + '52286336' => { + 'Base' => { + '52285691' => { + 'pos' => '0' + }, + '52286038' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ServerSocket*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '52351582' + } + }, + 'Type' => 'Struct' + }, + '52287349' => { + 'Base' => { + '52286336' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '52351582' + } + }, + 'Type' => 'Class' + }, + '52288812' => { + 'Base' => { + '52284717' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5648095' + }, + '1' => { + 'key' => '_Dp', + 'type' => '52283728' + } + }, + 'Type' => 'Struct' + }, + '52289051' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '52288812' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5648095' + }, + '1' => { + 'key' => '_Dp', + 'type' => '52283728' + } + }, + 'Type' => 'Class' + }, + '52306789' => { + 'Base' => { + '52566113' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'type' => '5647956' + } + }, + 'Type' => 'Class' + }, + '52345762' => { + 'BaseType' => '5648095', + 'Name' => 'log4cxx::helpers::ServerSocket const', + 'Size' => '16', + 'Type' => 'Const' + }, + '52345767' => { + 'Base' => { + '5648095' => { + 'pos' => '0' + } + }, + 'Header' => 'aprserversocket.h', + 'Line' => '31', + 'Name' => 'log4cxx::helpers::APRServerSocket', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::~APRServerSocket() [_ZN7log4cxx7helpers15APRServerSocketD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::~APRServerSocket() [_ZN7log4cxx7helpers15APRServerSocketD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::accept() [_ZN7log4cxx7helpers15APRServerSocket6acceptEv]', + '40' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::close() [_ZN7log4cxx7helpers15APRServerSocket5closeEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRServerSocket) [_ZTIN7log4cxx7helpers15APRServerSocketE]' + } + }, + '52345808' => { + 'BaseType' => '52306789', + 'Header' => 'socket.h', + 'Line' => '32', + 'Name' => 'log4cxx::helpers::SocketPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Type' => 'Typedef' + }, + '52345820' => { + 'BaseType' => '52289051', + 'Header' => 'serversocket.h', + 'Line' => '31', + 'Name' => 'log4cxx::helpers::ServerSocketUniquePtr', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '52351582' => { + 'BaseType' => '5648095', + 'Name' => 'log4cxx::helpers::ServerSocket*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52351587' => { + 'BaseType' => '52351582', + 'Name' => 'log4cxx::helpers::ServerSocket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52351857' => { + 'BaseType' => '52345767', + 'Name' => 'log4cxx::helpers::APRServerSocket*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52351862' => { + 'BaseType' => '52351857', + 'Name' => 'log4cxx::helpers::APRServerSocket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52352426' => { + 'BaseType' => '52345762', + 'Name' => 'log4cxx::helpers::ServerSocket const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52352431' => { + 'BaseType' => '52352426', + 'Name' => 'log4cxx::helpers::ServerSocket const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52564882' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647956' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '52565028' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647956' + } + }, + 'Type' => 'Struct' + }, + '52565042' => { + 'BaseType' => '5647956', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '52566113' => { + 'Base' => { + '52564882' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '52640525' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647956' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '52566392' => { + 'BaseType' => '52565042', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '52624015' => { + 'Base' => { + '5648104' => { + 'pos' => '0' + } + }, + 'Line' => '32', + 'Memb' => { + '0' => { + 'name' => 'pool', + 'offset' => '22', + 'type' => '207830' + }, + '1' => { + 'name' => 'mutex', + 'offset' => '50', + 'type' => '106135' + }, + '2' => { + 'name' => 'socket', + 'offset' => '114', + 'type' => '52031027' + } + }, + 'Name' => 'struct log4cxx::helpers::APRServerSocket::APRServerSocketPriv', + 'NameSpace' => 'log4cxx::helpers::APRServerSocket', + 'Private' => 1, + 'Size' => '80', + 'Source' => 'aprserversocket.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::APRServerSocketPriv::~APRServerSocketPriv() [_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::APRServerSocket::APRServerSocketPriv::~APRServerSocketPriv() [_ZN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRServerSocket::APRServerSocketPriv) [_ZTIN7log4cxx7helpers15APRServerSocket19APRServerSocketPrivE]' + } + }, + '52624395' => { + 'Base' => { + '5647956' => { + 'pos' => '0' + } + }, + 'Header' => 'aprsocket.h', + 'Line' => '30', + 'Name' => 'log4cxx::helpers::APRSocket', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::APRSocket::~APRSocket() [_ZN7log4cxx7helpers9APRSocketD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::APRSocket::~APRSocket() [_ZN7log4cxx7helpers9APRSocketD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Socket::getClass() const [_ZNK7log4cxx7helpers6Socket8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Socket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Socket10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::Socket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Socket4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::APRSocket::write(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers9APRSocket5writeERNS0_10ByteBufferE]', + '64' => '(int (*)(...)) log4cxx::helpers::APRSocket::close() [_ZN7log4cxx7helpers9APRSocket5closeEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRSocket) [_ZTIN7log4cxx7helpers9APRSocketE]' + } + }, + '52640145' => { + 'BaseType' => '52624015', + 'Name' => 'struct log4cxx::helpers::APRServerSocket::APRServerSocketPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52640150' => { + 'BaseType' => '52640145', + 'Name' => 'struct log4cxx::helpers::APRServerSocket::APRServerSocketPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52640525' => { + 'BaseType' => '52566392', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52640540' => { + 'BaseType' => '52306789', + 'Name' => 'std::shared_ptr*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52640655' => { + 'BaseType' => '52624395', + 'Name' => 'log4cxx::helpers::APRSocket*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52640660' => { + 'BaseType' => '52640655', + 'Name' => 'log4cxx::helpers::APRSocket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52640745' => { + 'BaseType' => '4557459', + 'Name' => 'struct apr_socket_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52668798' => { + 'BaseType' => '5647956', + 'Name' => 'log4cxx::helpers::Socket*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52822389' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647956' } - }, - 'Header' => 'appenderskeleton.h', - 'Line' => '38', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '374474' - } - }, - 'Name' => 'log4cxx::AppenderSkeleton', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::AppenderSkeleton) [_ZTIN7log4cxx16AppenderSkeletonE]', - '168' => '0u', - '176' => '0u', - '184' => '(int (*)(...)) log4cxx::AppenderSkeleton::getClass() const [_ZNK7log4cxx16AppenderSkeleton8getClassEv]', - '192' => '(int (*)(...)) log4cxx::AppenderSkeleton::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx16AppenderSkeleton10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::AppenderSkeleton::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx16AppenderSkeleton4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::AppenderSkeleton::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::AppenderSkeleton::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) __cxa_pure_virtual', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) __cxa_pure_virtual', - '304' => '(int (*)(...)) __cxa_pure_virtual', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '407560' => { - 'Header' => 'appenderskeleton_priv.h', - 'Line' => '28', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - }, - '1' => { - 'name' => 'layout', - 'offset' => '8', - 'type' => '409175' - }, - '2' => { - 'name' => 'name', - 'offset' => '24', - 'type' => '63706' - }, - '3' => { - 'name' => 'threshold', - 'offset' => '56', - 'type' => '409192' - }, - '4' => { - 'name' => 'errorHandler', - 'offset' => '72', - 'type' => '407505' - }, - '5' => { - 'name' => 'headFilter', - 'offset' => '88', - 'type' => '151271' - }, - '6' => { - 'name' => 'tailFilter', - 'offset' => '104', - 'type' => '151271' - }, - '7' => { - 'name' => 'closed', - 'offset' => '120', - 'type' => '50284' - }, - '8' => { - 'name' => 'pool', - 'offset' => '128', - 'type' => '62082' - }, - '9' => { - 'name' => 'mutex', - 'offset' => '144', - 'type' => '368156' - } - }, - 'Name' => 'struct log4cxx::AppenderSkeleton::AppenderSkeletonPrivate', - 'NameSpace' => 'log4cxx::AppenderSkeleton', - 'Protected' => 1, - 'Size' => '184', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::AppenderSkeleton::AppenderSkeletonPrivate::~AppenderSkeletonPrivate() [_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::AppenderSkeleton::AppenderSkeletonPrivate::~AppenderSkeletonPrivate() [_ZN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::AppenderSkeleton::AppenderSkeletonPrivate) [_ZTIN7log4cxx16AppenderSkeleton23AppenderSkeletonPrivateE]' - } - }, - '407836' => { - 'Base' => { - '62698' => { - 'pos' => '0' + }, + 'Type' => 'Struct' + }, + '52823378' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '52826006' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647956' + }, + '1' => { + 'key' => '_Dp', + 'type' => '52822389' } - }, - 'Header' => 'appenderskeleton.h', - 'Line' => '56', - 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton', - 'NameSpace' => 'log4cxx::AppenderSkeleton', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::AppenderSkeleton::ClazzAppenderSkeleton::~ClazzAppenderSkeleton() [_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD1Ev]', - '24' => '(int (*)(...)) log4cxx::AppenderSkeleton::ClazzAppenderSkeleton::~ClazzAppenderSkeleton() [_ZN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::AppenderSkeleton::ClazzAppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton21ClazzAppenderSkeleton7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::AppenderSkeleton::ClazzAppenderSkeleton) [_ZTIN7log4cxx16AppenderSkeleton21ClazzAppenderSkeletonE]' - } - }, - '407994' => { - 'BaseType' => '407836', - 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton const', - 'Size' => '8', - 'Type' => 'Const' - }, - '409113' => { - 'BaseType' => '407542', - 'Name' => 'log4cxx::AppenderSkeleton const', - 'Size' => '16', - 'Type' => 'Const' - }, - '409118' => { - 'Base' => { - '151305' => { - 'pos' => '0', - 'virtual' => 1 - }, - '63470' => { - 'pos' => '1', - 'virtual' => 1 + }, + 'Type' => 'Class' + }, + '52824054' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '52822389' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '52822389' } - }, - 'Copied' => 1, - 'Header' => 'layout.h', - 'Line' => '31', - 'Name' => 'log4cxx::Layout', - 'NameSpace' => 'log4cxx', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::Layout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Layout10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::Layout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Layout4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) __cxa_pure_virtual', - '128' => '(int (*)(...)) __cxa_pure_virtual', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '144' => '(int (*)(...)) log4cxx::Layout::getContentType[abi:cxx11]() const [_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev]', - '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '168' => '(int (*)(...)) __cxa_pure_virtual', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::Layout) [_ZTIN7log4cxx6LayoutE]', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '(int (*)(...)) log4cxx::Layout::getClass() const [_ZNK7log4cxx6Layout8getClassEv]' - } - }, - '409175' => { - 'BaseType' => '378391', - 'Header' => 'layout.h', - 'Line' => '85', - 'Name' => 'log4cxx::LayoutPtr', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '409187' => { - 'BaseType' => '409175', - 'Name' => 'log4cxx::LayoutPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '409192' => { - 'BaseType' => '370752', - 'Header' => 'level.h', - 'Line' => '38', - 'Name' => 'log4cxx::LevelPtr', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '409204' => { - 'BaseType' => '409192', - 'Name' => 'log4cxx::LevelPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '409210' => { - 'BaseType' => '63706', - 'Name' => 'log4cxx::LogString&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '410172' => { - 'BaseType' => '370440', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '410212' => { - 'BaseType' => '370752', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '410420' => { - 'BaseType' => '407560', - 'Name' => 'struct log4cxx::AppenderSkeleton::AppenderSkeletonPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '410426' => { - 'BaseType' => '410420', - 'Name' => 'struct log4cxx::AppenderSkeleton::AppenderSkeletonPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '410716' => { - 'BaseType' => '405368', - 'Name' => 'struct log4cxx::helpers::LogLog::LogLogPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '410955' => { - 'BaseType' => '405355', - 'Name' => 'log4cxx::helpers::LogLog*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '410967' => { - 'BaseType' => '405355', - 'Name' => 'log4cxx::helpers::LogLog&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '410979' => { - 'BaseType' => '407318', - 'Name' => 'log4cxx::logchar const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '410985' => { - 'BaseType' => '377603', - 'Name' => 'std::vector, std::allocator >, std::allocator, std::allocator > > >const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '411038' => { - 'BaseType' => '378079', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '411138' => { - 'BaseType' => '379173', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '411377' => { - 'BaseType' => '405774', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '411445' => { - 'BaseType' => '406200', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '411451' => { - 'BaseType' => '411445', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '411629' => { - 'BaseType' => '382982', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '411652' => { - 'BaseType' => '132916', - 'Name' => 'std::shared_ptr*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '411735' => { - 'BaseType' => '405779', - 'Name' => 'log4cxx::helpers::OnlyOnceErrorHandler const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '412030' => { - 'BaseType' => '407542', - 'Name' => 'log4cxx::AppenderSkeleton*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '412036' => { - 'BaseType' => '412030', - 'Name' => 'log4cxx::AppenderSkeleton*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '412064' => { - 'BaseType' => '409113', - 'Name' => 'log4cxx::AppenderSkeleton const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '412070' => { - 'BaseType' => '412064', - 'Name' => 'log4cxx::AppenderSkeleton const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '412075' => { - 'BaseType' => '409187', - 'Name' => 'log4cxx::LayoutPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '412081' => { - 'BaseType' => '409204', - 'Name' => 'log4cxx::LevelPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '412122' => { - 'BaseType' => '407836', - 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '412128' => { - 'BaseType' => '412122', - 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '412133' => { - 'BaseType' => '407994', - 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '412139' => { - 'BaseType' => '412133', - 'Name' => 'log4cxx::AppenderSkeleton::ClazzAppenderSkeleton const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '41273' => { - 'Copied' => 1, - 'Header' => 'std_mutex.h', - 'Line' => '57', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_mutex', - 'offset' => '0', - 'type' => '41286' - } - }, - 'Name' => 'std::__mutex_base', - 'NameSpace' => 'std', - 'Size' => '40', - 'Type' => 'Class' - }, - '41286' => { - 'BaseType' => '60235', - 'Header' => 'std_mutex.h', - 'Line' => '60', - 'Name' => 'std::__mutex_base::__native_type', - 'NameSpace' => 'std::__mutex_base', - 'Protected' => 1, - 'Size' => '40', - 'Type' => 'Typedef' - }, - '41413' => { - 'Base' => { - '41273' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'std_mutex.h', - 'Line' => '83', - 'Name' => 'std::mutex', - 'NameSpace' => 'std', - 'Size' => '40', - 'Type' => 'Class' - }, - '41914' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63748' - } - }, - 'Type' => 'Struct' - }, - '4198594' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '4199746' - } - }, - 'Type' => 'Class' - }, - '4199656' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Copied' => 1, - 'Header' => 'loggerfactory.h', - 'Line' => '32', - 'Name' => 'log4cxx::spi::LoggerFactory', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggerFactory) [_ZTIN7log4cxx3spi13LoggerFactoryE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::spi::LoggerFactory::getClass() const [_ZNK7log4cxx3spi13LoggerFactory8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' - } - }, - '4199723' => { - 'BaseType' => '1149757', - 'Name' => 'log4cxx::Logger const', - 'Type' => 'Const' - }, - '4199728' => { - 'Base' => { - '4199656' => { - 'pos' => '0', - 'virtual' => 1 - }, - '63470' => { - 'pos' => '1', - 'virtual' => 1 - } - }, - 'Copied' => 1, - 'Header' => 'defaultloggerfactory.h', - 'Line' => '29', - 'Name' => 'log4cxx::DefaultLoggerFactory', - 'NameSpace' => 'log4cxx', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx20DefaultLoggerFactory4castERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::makeNewLoggerInstance(log4cxx::helpers::Pool&, std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx20DefaultLoggerFactory21makeNewLoggerInstanceERNS_7helpers4PoolERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '(int (*)(...)) (& typeinfo for log4cxx::DefaultLoggerFactory) [_ZTIN7log4cxx20DefaultLoggerFactoryE]', - '72' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::~DefaultLoggerFactory() [_ZN7log4cxx20DefaultLoggerFactoryD1Ev]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::~DefaultLoggerFactory() [_ZN7log4cxx20DefaultLoggerFactoryD0Ev]', - '88' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::getClass() const [_ZNK7log4cxx20DefaultLoggerFactory8getClassEv]', - '96' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx20DefaultLoggerFactory10instanceofERKNS_7helpers5ClassE]' - } - }, - '4199746' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'defaultloggerfactory.h', - 'Line' => '34', - 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory', - 'NameSpace' => 'log4cxx::DefaultLoggerFactory', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory::~ClazzDefaultLoggerFactory() [_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD2Ev]', - '24' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory::~ClazzDefaultLoggerFactory() [_ZN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory::getName[abi:cxx11]() const [_ZNK7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactory7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory) [_ZTIN7log4cxx20DefaultLoggerFactory25ClazzDefaultLoggerFactoryE]' - } - }, - '4199903' => { - 'BaseType' => '4199746', - 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4200187' => { - 'BaseType' => '4199728', - 'Name' => 'log4cxx::DefaultLoggerFactory const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4201308' => { - 'BaseType' => '1149757', - 'Name' => 'log4cxx::Logger*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4201373' => { - 'BaseType' => '4198594', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4201379' => { - 'BaseType' => '4201373', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4201534' => { - 'BaseType' => '4199723', - 'Name' => 'log4cxx::Logger const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4201793' => { - 'BaseType' => '4200187', - 'Name' => 'log4cxx::DefaultLoggerFactory const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4201799' => { - 'BaseType' => '4201793', - 'Name' => 'log4cxx::DefaultLoggerFactory const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4201804' => { - 'BaseType' => '4199728', - 'Name' => 'log4cxx::DefaultLoggerFactory*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4201810' => { - 'BaseType' => '4201804', - 'Name' => 'log4cxx::DefaultLoggerFactory*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4201826' => { - 'BaseType' => '4199746', - 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4201832' => { - 'BaseType' => '4201826', - 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4201837' => { - 'BaseType' => '4199903', - 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4201843' => { - 'BaseType' => '4201837', - 'Name' => 'log4cxx::DefaultLoggerFactory::ClazzDefaultLoggerFactory const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '42037' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '43800' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + }, + 'Type' => 'Struct' + }, + '52824352' => { + 'Base' => { + '52824054' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '52822389' + } + }, + 'Type' => 'Struct' + }, + '52824697' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '52668798' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::Socket*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '52668798' + } + }, + 'Type' => 'Struct' + }, + '52824995' => { + 'Base' => { + '52824352' => { + 'pos' => '0' + }, + '52824697' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::Socket*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '52668798' + } + }, + 'Type' => 'Struct' + }, + '52826006' => { + 'Base' => { + '52824995' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '52668798' + } + }, + 'Type' => 'Class' + }, + '52827469' => { + 'Base' => { + '52823378' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647956' + }, + '1' => { + 'key' => '_Dp', + 'type' => '52822389' + } + }, + 'Type' => 'Struct' + }, + '52827708' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '52827469' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647956' + }, + '1' => { + 'key' => '_Dp', + 'type' => '52822389' + } + }, + 'Type' => 'Class' + }, + '52886084' => { + 'BaseType' => '5647956', + 'Name' => 'log4cxx::helpers::Socket const', + 'Size' => '16', + 'Type' => 'Const' + }, + '52886089' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5647970' + } + }, + 'Type' => 'Class' + }, + '52887324' => { + 'BaseType' => '19570996', + 'Name' => 'log4cxx::helpers::InetAddressPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '52887329' => { + 'BaseType' => '52827708', + 'Header' => 'socket.h', + 'Line' => '33', + 'Name' => 'log4cxx::helpers::SocketUniquePtr', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '52888667' => { + 'BaseType' => '52886089', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52888672' => { + 'BaseType' => '52888667', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52888788' => { + 'BaseType' => '52668798', + 'Name' => 'log4cxx::helpers::Socket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52889593' => { + 'BaseType' => '52886084', + 'Name' => 'log4cxx::helpers::Socket const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '52889598' => { + 'BaseType' => '52889593', + 'Name' => 'log4cxx::helpers::Socket const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52889603' => { + 'BaseType' => '19570996', + 'Name' => 'log4cxx::helpers::InetAddressPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '52889641' => { + 'BaseType' => '52887324', + 'Name' => 'log4cxx::helpers::InetAddressPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '52889651' => { + 'BaseType' => '5680183', + 'Name' => 'log4cxx::helpers::Socket::ClazzSocket*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52889661' => { + 'BaseType' => '5680188', + 'Name' => 'log4cxx::helpers::Socket::ClazzSocket const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '52939' => { + 'BaseType' => '180164', + 'Header' => 'basic_string.h', + 'Line' => '104', + 'Name' => 'std::__cxx11::basic_string::const_iterator', + 'NameSpace' => 'std::__cxx11::basic_string', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63748' - }, - '1' => { - 'key' => '_Dp', - 'type' => '41914' - } - }, - 'Type' => 'Class' - }, - '4216180' => { - 'BaseType' => '4199656', - 'Name' => 'log4cxx::spi::LoggerFactory*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4216186' => { - 'BaseType' => '4216180', - 'Name' => 'log4cxx::spi::LoggerFactory*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '42406' => { - 'Base' => { - '41914' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '41914' - } - }, - 'Type' => 'Struct' + 'Type' => 'Typedef' }, - '4259847' => { + '53122522' => { + 'Base' => { + '5647965' => { + 'pos' => '0' + } + }, + 'Line' => '31', + 'Memb' => { + '0' => { + 'name' => 'pool', + 'offset' => '50', + 'type' => '207830' + }, + '1' => { + 'name' => 'socket', + 'offset' => '72', + 'type' => '52031027' + } + }, + 'Name' => 'struct log4cxx::helpers::APRSocket::APRSocketPriv', + 'NameSpace' => 'log4cxx::helpers::APRSocket', + 'Private' => 1, + 'Size' => '56', + 'Source' => 'aprsocket.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::APRSocket::APRSocketPriv::~APRSocketPriv() [_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::APRSocket::APRSocketPriv::~APRSocketPriv() [_ZN7log4cxx7helpers9APRSocket13APRSocketPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::APRSocket::APRSocketPriv) [_ZTIN7log4cxx7helpers9APRSocket13APRSocketPrivE]' + } + }, + '53133832' => { + 'BaseType' => '53122522', + 'Name' => 'struct log4cxx::helpers::APRSocket::APRSocketPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '53133837' => { + 'BaseType' => '53133832', + 'Name' => 'struct log4cxx::helpers::APRSocket::APRSocketPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '53565867' => { + 'Base' => { + '53646662' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '52306789' + } + }, + 'Type' => 'Class' + }, + '53566154' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '53565867' + } + }, + 'Type' => 'Struct' + }, + '53566168' => { + 'BaseType' => '52640540', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '53566499' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '84', + 'Memb' => { + '0' => { + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '53566698' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '52306789' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '53565867' + } + }, + 'Type' => 'Struct' + }, + '53566512' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', + 'Memb' => { + '0' => { + 'name' => '_M_start', + 'offset' => '0', + 'type' => '53566686' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '53566686' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '53566686' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '53566686' => { + 'BaseType' => '53647131', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '53566698' => { + 'Base' => { + '53565867' => { + 'pos' => '0' + }, + '53566512' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '53567523' => { + 'Base' => { + '53566499' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '52306789' + } + }, + 'Type' => 'Class' + }, + '53646662' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '52306789' + } + }, + 'Type' => 'Class' + }, + '53646906' => { + 'Base' => { + '53566154' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '53565867' + } + }, + 'Type' => 'Struct' + }, + '53647131' => { + 'BaseType' => '53566168', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '53674354' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5659665' + } + }, + 'Type' => 'Class' + }, + '53675342' => { + 'BaseType' => '52345808', + 'Name' => 'log4cxx::helpers::SocketPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '53680136' => { + 'Base' => { + '1379591' => { + 'pos' => '0' + } + }, + 'Line' => '34', + 'Memb' => { + '0' => { + 'name' => 'port', + 'offset' => '388', + 'type' => '190263' + }, + '1' => { + 'name' => 'connections', + 'offset' => '402', + 'type' => '53681171' + }, + '2' => { + 'name' => 'encoding', + 'offset' => '534', + 'type' => '209661' + }, + '3' => { + 'name' => 'encoder', + 'offset' => '584', + 'type' => '4974550' + }, + '4' => { + 'name' => 'serverSocket', + 'offset' => '612', + 'type' => '52289051' + }, + '5' => { + 'name' => 'sh', + 'offset' => '626', + 'type' => '1797924' + }, + '6' => { + 'name' => 'activeConnections', + 'offset' => '640', + 'type' => '190816' + } + }, + 'Name' => 'struct log4cxx::net::TelnetAppender::TelnetAppenderPriv', + 'NameSpace' => 'log4cxx::net::TelnetAppender', + 'Private' => 1, + 'Size' => '288', + 'Source' => 'telnetappender.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::TelnetAppender::TelnetAppenderPriv::~TelnetAppenderPriv() [_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD2Ev]', + '24' => '(int (*)(...)) log4cxx::net::TelnetAppender::TelnetAppenderPriv::~TelnetAppenderPriv() [_ZN7log4cxx3net14TelnetAppender18TelnetAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::TelnetAppender::TelnetAppenderPriv) [_ZTIN7log4cxx3net14TelnetAppender18TelnetAppenderPrivE]' + } + }, + '53681166' => { + 'BaseType' => '5659656', + 'Name' => 'log4cxx::net::TelnetAppender const', + 'Size' => '16', + 'Type' => 'Const' + }, + '53681171' => { + 'BaseType' => '53567523', + 'Header' => 'telnetappender.h', + 'Line' => '37', + 'Name' => 'log4cxx::net::ConnectionList', + 'NameSpace' => 'log4cxx::net', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '53693611' => { + 'BaseType' => '53674354', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '53693616' => { + 'BaseType' => '53693611', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '53694373' => { + 'BaseType' => '53680136', + 'Name' => 'struct log4cxx::net::TelnetAppender::TelnetAppenderPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '53694378' => { + 'BaseType' => '53694373', + 'Name' => 'struct log4cxx::net::TelnetAppender::TelnetAppenderPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '53694975' => { + 'BaseType' => '5680178', + 'Name' => 'log4cxx::net::TelnetAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '53694980' => { + 'Class' => '5659656', + 'Name' => 'void()(log4cxx::net::TelnetAppender::*)', + 'Return' => '198458', + 'Size' => '8', + 'Type' => 'FieldPtr' + }, + '53695891' => { + 'BaseType' => '53681166', + 'Name' => 'log4cxx::net::TelnetAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '53695896' => { + 'BaseType' => '53695891', + 'Name' => 'log4cxx::net::TelnetAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '53695926' => { + 'BaseType' => '53675342', + 'Name' => 'log4cxx::helpers::SocketPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '53695980' => { + 'BaseType' => '5680168', + 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '53695990' => { + 'BaseType' => '5680173', + 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '53697966' => { + 'BaseType' => '53694980', + 'Name' => 'void()(log4cxx::net::TelnetAppender::*)&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '53697971' => { + 'BaseType' => '5680178', + 'Name' => 'log4cxx::net::TelnetAppender*&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '54203137' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '54208677' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '54320723' + }, + '1' => { + 'key' => '_Dp', + 'type' => '54203800' + } + }, + 'Type' => 'Class' + }, + '54203800' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '54320723' + } + }, + 'Type' => 'Struct' + }, + '54204774' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '54207196' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '54320723' + }, + '1' => { + 'key' => '_Dp', + 'type' => '54203800' + } + }, + 'Type' => 'Class' + }, + '54205408' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '54203800' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '54203800' + } + }, + 'Type' => 'Struct' + }, + '54205666' => { + 'Base' => { + '54205408' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '54203800' + } + }, + 'Type' => 'Struct' + }, + '54205973' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '54334458' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '54334458' + } + }, + 'Type' => 'Struct' + }, + '54206231' => { + 'Base' => { + '54205666' => { + 'pos' => '0' + }, + '54205973' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '54334458' + } + }, + 'Type' => 'Struct' + }, + '54207196' => { + 'Base' => { + '54206231' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '54334458' + } + }, + 'Type' => 'Class' + }, + '54208677' => { + 'Base' => { + '54204774' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '54320723' + }, + '1' => { + 'key' => '_Dp', + 'type' => '54203800' + } + }, + 'Type' => 'Struct' + }, + '5421703' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4279458' + 'type' => '5647133' } }, 'Type' => 'Struct' }, - '4259933' => { + '5422677' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '4261469' + 'type' => '5425097' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4279458' + 'type' => '5647133' }, '1' => { 'key' => '_Dp', - 'type' => '4259847' + 'type' => '5421703' } }, 'Type' => 'Class' }, - '4260256' => { - 'Base' => { - '4259847' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '4259847' - } - }, - 'Type' => 'Struct' - }, - '4260509' => { - 'Base' => { - '4260256' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '4259847' - } - }, - 'Type' => 'Struct' - }, - '4260807' => { + '5423311' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '78', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '4280857' + 'type' => '5421703' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::spi::DefaultRepositorySelector::DefaultRepositorySelectorPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '4280857' - } - }, - 'Type' => 'Struct' - }, - '4261067' => { - 'Base' => { - '4260509' => { - 'pos' => '0' - }, - '4260807' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::spi::DefaultRepositorySelector::DefaultRepositorySelectorPrivate*>', + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '4280857' - } - }, - 'Type' => 'Struct' - }, - '4261469' => { - 'Base' => { - '4261067' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '4280857' - } - }, - 'Type' => 'Class' - }, - '4261799' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '4259933' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4279458' - }, - '1' => { - 'key' => '_Dp', - 'type' => '4259847' - } - }, - 'Type' => 'Class' - }, - '42699' => { - 'Base' => { - '42406' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '41914' - } - }, - 'Type' => 'Struct' - }, - '4279448' => { - 'Base' => { - '4279770' => { - 'pos' => '0', - 'virtual' => 1 - }, - '63470' => { - 'pos' => '1', - 'virtual' => 1 - } - }, - 'Header' => 'defaultrepositoryselector.h', - 'Line' => '30', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '4261799' - } - }, - 'Name' => 'log4cxx::spi::DefaultRepositorySelector', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi25DefaultRepositorySelector4castERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::getLoggerRepository() [_ZN7log4cxx3spi25DefaultRepositorySelector19getLoggerRepositoryEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '(int (*)(...)) (& typeinfo for log4cxx::spi::DefaultRepositorySelector) [_ZTIN7log4cxx3spi25DefaultRepositorySelectorE]', - '72' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::~DefaultRepositorySelector() [_ZN7log4cxx3spi25DefaultRepositorySelectorD1Ev]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::~DefaultRepositorySelector() [_ZN7log4cxx3spi25DefaultRepositorySelectorD0Ev]', - '88' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::getClass() const [_ZNK7log4cxx3spi25DefaultRepositorySelector8getClassEv]', - '96' => '(int (*)(...)) log4cxx::spi::DefaultRepositorySelector::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi25DefaultRepositorySelector10instanceofERKNS_7helpers5ClassE]' - } - }, - '4279458' => { - 'Line' => '24', - 'Memb' => { - '0' => { - 'name' => 'repository', - 'offset' => '0', - 'type' => '835664' - } - }, - 'Name' => 'struct log4cxx::spi::DefaultRepositorySelector::DefaultRepositorySelectorPrivate', - 'NameSpace' => 'log4cxx::spi::DefaultRepositorySelector', - 'Private' => 1, - 'Size' => '16', - 'Source' => 'defaultrepositoryselector.cpp', - 'Type' => 'Struct' - }, - '4279743' => { - 'BaseType' => '4279448', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector const', - 'Type' => 'Const' - }, - '4279765' => { - 'BaseType' => '835664', - 'Name' => 'log4cxx::spi::LoggerRepositoryPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '4279770' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Copied' => 1, - 'Header' => 'repositoryselector.h', - 'Line' => '42', - 'Name' => 'log4cxx::spi::RepositorySelector', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::RepositorySelector) [_ZTIN7log4cxx3spi18RepositorySelectorE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::spi::RepositorySelector::getClass() const [_ZNK7log4cxx3spi18RepositorySelector8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' - } - }, - '4280857' => { - 'BaseType' => '4279458', - 'Name' => 'struct log4cxx::spi::DefaultRepositorySelector::DefaultRepositorySelectorPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4283460' => { - 'BaseType' => '4279448', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4283466' => { - 'BaseType' => '4283460', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4290264' => { - 'BaseType' => '4279770', - 'Name' => 'log4cxx::spi::RepositorySelector*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4290270' => { - 'BaseType' => '4290264', - 'Name' => 'log4cxx::spi::RepositorySelector*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4290398' => { - 'BaseType' => '4279743', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4290404' => { - 'BaseType' => '4290398', - 'Name' => 'log4cxx::spi::DefaultRepositorySelector const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '43039' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '65511' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::Action::ActionPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '65511' - } - }, - 'Type' => 'Struct' - }, - '43339' => { - 'Base' => { - '42699' => { - 'pos' => '0' + 'type' => '190225', + 'val' => '1' }, - '43039' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::Action::ActionPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '65511' - } - }, - 'Type' => 'Struct' - }, - '4355278' => { - 'BaseType' => '832107', - 'Name' => 'log4cxx::helpers::Exception const', - 'Size' => '144', - 'Type' => 'Const' - }, - '4355699' => { - 'Base' => { - '4355859' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '274', - 'Name' => 'log4cxx::helpers::SocketTimeoutException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SocketTimeoutException::~SocketTimeoutException() [_ZN7log4cxx7helpers22SocketTimeoutExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SocketTimeoutException::~SocketTimeoutException() [_ZN7log4cxx7helpers22SocketTimeoutExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SocketTimeoutException) [_ZTIN7log4cxx7helpers22SocketTimeoutExceptionE]' - } - }, - '4355854' => { - 'BaseType' => '4355699', - 'Name' => 'log4cxx::helpers::SocketTimeoutException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '4355859' => { - 'Base' => { - '4356024' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '259', - 'Name' => 'log4cxx::helpers::InterruptedIOException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::InterruptedIOException::~InterruptedIOException() [_ZN7log4cxx7helpers22InterruptedIOExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::InterruptedIOException::~InterruptedIOException() [_ZN7log4cxx7helpers22InterruptedIOExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InterruptedIOException) [_ZTIN7log4cxx7helpers22InterruptedIOExceptionE]' - } - }, - '4356019' => { - 'BaseType' => '4355859', - 'Name' => 'log4cxx::helpers::InterruptedIOException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '4356024' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '89', - 'Name' => 'log4cxx::helpers::IOException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::IOException::~IOException() [_ZN7log4cxx7helpers11IOExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::IOException::~IOException() [_ZN7log4cxx7helpers11IOExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::IOException) [_ZTIN7log4cxx7helpers11IOExceptionE]' - } - }, - '4356264' => { - 'BaseType' => '4356024', - 'Name' => 'log4cxx::helpers::IOException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '4356269' => { - 'Base' => { - '4356432' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '245', - 'Name' => 'log4cxx::helpers::BindException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::BindException::~BindException() [_ZN7log4cxx7helpers13BindExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::BindException::~BindException() [_ZN7log4cxx7helpers13BindExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::BindException) [_ZTIN7log4cxx7helpers13BindExceptionE]' - } - }, - '4356427' => { - 'BaseType' => '4356269', - 'Name' => 'log4cxx::helpers::BindException const', - 'Size' => '144', - 'Type' => 'Const' + '1' => { + 'key' => '_Head', + 'type' => '5421703' + } + }, + 'Type' => 'Struct' }, - '4356432' => { + '5423569' => { 'Base' => { - '4356024' => { + '5423311' => { + 'access' => 'private', 'pos' => '0' } }, - 'Header' => 'exception.h', - 'Line' => '212', - 'Name' => 'log4cxx::helpers::SocketException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::SocketException::~SocketException() [_ZN7log4cxx7helpers15SocketExceptionD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::SocketException::~SocketException() [_ZN7log4cxx7helpers15SocketExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SocketException) [_ZTIN7log4cxx7helpers15SocketExceptionE]' - } + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5421703' + } + }, + 'Type' => 'Struct' }, - '4356623' => { - 'BaseType' => '4356432', - 'Name' => 'log4cxx::helpers::SocketException const', - 'Size' => '144', - 'Type' => 'Const' + '5423875' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5672223' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::CyclicBuffer::CyclicBufferPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5672223' + } + }, + 'Type' => 'Struct' }, - '4356628' => { + '5424133' => { 'Base' => { - '4356432' => { + '5423569' => { 'pos' => '0' + }, + '5423875' => { + 'access' => 'private', + 'pos' => '1' } }, - 'Header' => 'exception.h', - 'Line' => '233', - 'Name' => 'log4cxx::helpers::ClosedChannelException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ClosedChannelException::~ClosedChannelException() [_ZN7log4cxx7helpers22ClosedChannelExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ClosedChannelException::~ClosedChannelException() [_ZN7log4cxx7helpers22ClosedChannelExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ClosedChannelException) [_ZTIN7log4cxx7helpers22ClosedChannelExceptionE]' - } - }, - '4356781' => { - 'BaseType' => '4356628', - 'Name' => 'log4cxx::helpers::ClosedChannelException const', - 'Size' => '144', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::CyclicBuffer::CyclicBufferPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5672223' + } + }, + 'Type' => 'Struct' }, - '4356786' => { + '5425097' => { 'Base' => { - '4356432' => { + '5424133' => { 'pos' => '0' } }, - 'Header' => 'exception.h', - 'Line' => '225', - 'Name' => 'log4cxx::helpers::ConnectException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ConnectException::~ConnectException() [_ZN7log4cxx7helpers16ConnectExceptionD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ConnectException::~ConnectException() [_ZN7log4cxx7helpers16ConnectExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ConnectException) [_ZTIN7log4cxx7helpers16ConnectExceptionE]' - } - }, - '4356944' => { - 'BaseType' => '4356786', - 'Name' => 'log4cxx::helpers::ConnectException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '4356949' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '201', - 'Name' => 'log4cxx::helpers::IllegalStateException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::IllegalStateException::~IllegalStateException() [_ZN7log4cxx7helpers21IllegalStateExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::IllegalStateException::~IllegalStateException() [_ZN7log4cxx7helpers21IllegalStateExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::IllegalStateException) [_ZTIN7log4cxx7helpers21IllegalStateExceptionE]' - } - }, - '4357102' => { - 'BaseType' => '4356949', - 'Name' => 'log4cxx::helpers::IllegalStateException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '4357107' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '193', - 'Name' => 'log4cxx::helpers::NoSuchElementException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::NoSuchElementException::~NoSuchElementException() [_ZN7log4cxx7helpers22NoSuchElementExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::NoSuchElementException::~NoSuchElementException() [_ZN7log4cxx7helpers22NoSuchElementExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::NoSuchElementException) [_ZTIN7log4cxx7helpers22NoSuchElementExceptionE]' - } - }, - '4357260' => { - 'BaseType' => '4357107', - 'Name' => 'log4cxx::helpers::NoSuchElementException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '4357618' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '155', - 'Name' => 'log4cxx::helpers::IllegalMonitorStateException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::IllegalMonitorStateException::~IllegalMonitorStateException() [_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::IllegalMonitorStateException::~IllegalMonitorStateException() [_ZN7log4cxx7helpers28IllegalMonitorStateExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::IllegalMonitorStateException) [_ZTIN7log4cxx7helpers28IllegalMonitorStateExceptionE]' - } - }, - '4357776' => { - 'BaseType' => '4357618', - 'Name' => 'log4cxx::helpers::IllegalMonitorStateException const', - 'Size' => '144', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5672223' + } + }, + 'Type' => 'Class' }, - '4357781' => { + '5426539' => { 'Base' => { - '832107' => { - 'pos' => '0' - } + '5422677' => { + 'pos' => '0' + } }, - 'Header' => 'exception.h', - 'Line' => '145', - 'Name' => 'log4cxx::helpers::TranscoderException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::TranscoderException::~TranscoderException() [_ZN7log4cxx7helpers19TranscoderExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::TranscoderException::~TranscoderException() [_ZN7log4cxx7helpers19TranscoderExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::TranscoderException) [_ZTIN7log4cxx7helpers19TranscoderExceptionE]' - } - }, - '4357962' => { - 'BaseType' => '4357781', - 'Name' => 'log4cxx::helpers::TranscoderException const', - 'Size' => '144', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647133' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5421703' + } + }, + 'Type' => 'Struct' }, - '4357967' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } + '5426740' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5426539' + } }, - 'Header' => 'exception.h', - 'Line' => '133', - 'Name' => 'log4cxx::helpers::ThreadException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::ThreadException::~ThreadException() [_ZN7log4cxx7helpers15ThreadExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::ThreadException::~ThreadException() [_ZN7log4cxx7helpers15ThreadExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ThreadException) [_ZTIN7log4cxx7helpers15ThreadExceptionE]' - } + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647133' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5421703' + } + }, + 'Type' => 'Class' }, - '4358185' => { - 'BaseType' => '4357967', - 'Name' => 'log4cxx::helpers::ThreadException const', - 'Size' => '144', - 'Type' => 'Const' + '5427364' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647415' + } + }, + 'Type' => 'Struct' }, - '4358190' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } + '5428338' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5430758' + } }, - 'Header' => 'exception.h', - 'Line' => '122', - 'Name' => 'log4cxx::helpers::InterruptedException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::InterruptedException::~InterruptedException() [_ZN7log4cxx7helpers20InterruptedExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::InterruptedException::~InterruptedException() [_ZN7log4cxx7helpers20InterruptedExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InterruptedException) [_ZTIN7log4cxx7helpers20InterruptedExceptionE]' - } - }, - '4358403' => { - 'BaseType' => '4358190', - 'Name' => 'log4cxx::helpers::InterruptedException const', - 'Size' => '144', - 'Type' => 'Const' + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647415' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5427364' + } + }, + 'Type' => 'Class' }, - '4358408' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } + '5428972' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5427364' + } }, - 'Header' => 'exception.h', - 'Line' => '111', - 'Name' => 'log4cxx::helpers::PoolException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::PoolException::~PoolException() [_ZN7log4cxx7helpers13PoolExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::PoolException::~PoolException() [_ZN7log4cxx7helpers13PoolExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::PoolException) [_ZTIN7log4cxx7helpers13PoolExceptionE]' - } - }, - '4358589' => { - 'BaseType' => '4358408', - 'Name' => 'log4cxx::helpers::PoolException const', - 'Size' => '144', - 'Type' => 'Const' + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5427364' + } + }, + 'Type' => 'Struct' }, - '4358594' => { + '5429230' => { 'Base' => { - '832107' => { - 'pos' => '0' - } + '5428972' => { + 'access' => 'private', + 'pos' => '0' + } }, - 'Header' => 'exception.h', - 'Line' => '101', - 'Name' => 'log4cxx::helpers::MissingResourceException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::MissingResourceException::~MissingResourceException() [_ZN7log4cxx7helpers24MissingResourceExceptionD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::MissingResourceException::~MissingResourceException() [_ZN7log4cxx7helpers24MissingResourceExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::MissingResourceException) [_ZTIN7log4cxx7helpers24MissingResourceExceptionE]' - } - }, - '4358775' => { - 'BaseType' => '4358594', - 'Name' => 'log4cxx::helpers::MissingResourceException const', - 'Size' => '144', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5427364' + } + }, + 'Type' => 'Struct' }, - '4359158' => { - 'Base' => { - '834777' => { - 'pos' => '0' - } + '5429536' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5672468' + } }, - 'Header' => 'exception.h', - 'Line' => '67', - 'Name' => 'log4cxx::helpers::NullPointerException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::NullPointerException::~NullPointerException() [_ZN7log4cxx7helpers20NullPointerExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::NullPointerException::~NullPointerException() [_ZN7log4cxx7helpers20NullPointerExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::NullPointerException) [_ZTIN7log4cxx7helpers20NullPointerExceptionE]' - } - }, - '4359313' => { - 'BaseType' => '4359158', - 'Name' => 'log4cxx::helpers::NullPointerException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '4359639' => { - 'BaseType' => '4355278', - 'Name' => 'log4cxx::helpers::Exception const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359645' => { - 'BaseType' => '832107', - 'Name' => 'log4cxx::helpers::Exception&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359651' => { - 'BaseType' => '4355278', - 'Name' => 'log4cxx::helpers::Exception const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359657' => { - 'BaseType' => '4359651', - 'Name' => 'log4cxx::helpers::Exception const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359662' => { - 'BaseType' => '50671', - 'Name' => 'char[129]', - 'Size' => '129', - 'Type' => 'Array' - }, - '4359678' => { - 'BaseType' => '4355699', - 'Name' => 'log4cxx::helpers::SocketTimeoutException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359684' => { - 'BaseType' => '4359678', - 'Name' => 'log4cxx::helpers::SocketTimeoutException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359689' => { - 'BaseType' => '4355854', - 'Name' => 'log4cxx::helpers::SocketTimeoutException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359695' => { - 'BaseType' => '4355699', - 'Name' => 'log4cxx::helpers::SocketTimeoutException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359701' => { - 'BaseType' => '4355859', - 'Name' => 'log4cxx::helpers::InterruptedIOException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359707' => { - 'BaseType' => '4359701', - 'Name' => 'log4cxx::helpers::InterruptedIOException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359712' => { - 'BaseType' => '4356019', - 'Name' => 'log4cxx::helpers::InterruptedIOException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359718' => { - 'BaseType' => '4355859', - 'Name' => 'log4cxx::helpers::InterruptedIOException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359724' => { - 'BaseType' => '4356269', - 'Name' => 'log4cxx::helpers::BindException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359730' => { - 'BaseType' => '4359724', - 'Name' => 'log4cxx::helpers::BindException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359735' => { - 'BaseType' => '4356427', - 'Name' => 'log4cxx::helpers::BindException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359741' => { - 'BaseType' => '4356269', - 'Name' => 'log4cxx::helpers::BindException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359747' => { - 'BaseType' => '4356628', - 'Name' => 'log4cxx::helpers::ClosedChannelException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359753' => { - 'BaseType' => '4359747', - 'Name' => 'log4cxx::helpers::ClosedChannelException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359758' => { - 'BaseType' => '4356781', - 'Name' => 'log4cxx::helpers::ClosedChannelException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359764' => { - 'BaseType' => '4356628', - 'Name' => 'log4cxx::helpers::ClosedChannelException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359770' => { - 'BaseType' => '4356786', - 'Name' => 'log4cxx::helpers::ConnectException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359776' => { - 'BaseType' => '4359770', - 'Name' => 'log4cxx::helpers::ConnectException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359781' => { - 'BaseType' => '4356944', - 'Name' => 'log4cxx::helpers::ConnectException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359787' => { - 'BaseType' => '4356786', - 'Name' => 'log4cxx::helpers::ConnectException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359793' => { - 'BaseType' => '4356432', - 'Name' => 'log4cxx::helpers::SocketException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359799' => { - 'BaseType' => '4359793', - 'Name' => 'log4cxx::helpers::SocketException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359804' => { - 'BaseType' => '4356623', - 'Name' => 'log4cxx::helpers::SocketException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359810' => { - 'BaseType' => '4356432', - 'Name' => 'log4cxx::helpers::SocketException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359816' => { - 'BaseType' => '4356949', - 'Name' => 'log4cxx::helpers::IllegalStateException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359822' => { - 'BaseType' => '4359816', - 'Name' => 'log4cxx::helpers::IllegalStateException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359827' => { - 'BaseType' => '4357102', - 'Name' => 'log4cxx::helpers::IllegalStateException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359833' => { - 'BaseType' => '4356949', - 'Name' => 'log4cxx::helpers::IllegalStateException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359839' => { - 'BaseType' => '4357107', - 'Name' => 'log4cxx::helpers::NoSuchElementException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359845' => { - 'BaseType' => '4359839', - 'Name' => 'log4cxx::helpers::NoSuchElementException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359850' => { - 'BaseType' => '4357260', - 'Name' => 'log4cxx::helpers::NoSuchElementException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359856' => { - 'BaseType' => '4357107', - 'Name' => 'log4cxx::helpers::NoSuchElementException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359908' => { - 'BaseType' => '4357618', - 'Name' => 'log4cxx::helpers::IllegalMonitorStateException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359914' => { - 'BaseType' => '4359908', - 'Name' => 'log4cxx::helpers::IllegalMonitorStateException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359919' => { - 'BaseType' => '4357776', - 'Name' => 'log4cxx::helpers::IllegalMonitorStateException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359925' => { - 'BaseType' => '4357618', - 'Name' => 'log4cxx::helpers::IllegalMonitorStateException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359931' => { - 'BaseType' => '4357781', - 'Name' => 'log4cxx::helpers::TranscoderException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359937' => { - 'BaseType' => '4359931', - 'Name' => 'log4cxx::helpers::TranscoderException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359942' => { - 'BaseType' => '4357962', - 'Name' => 'log4cxx::helpers::TranscoderException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359948' => { - 'BaseType' => '4357781', - 'Name' => 'log4cxx::helpers::TranscoderException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4359954' => { - 'BaseType' => '4357967', - 'Name' => 'log4cxx::helpers::ThreadException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4359960' => { - 'BaseType' => '4359954', - 'Name' => 'log4cxx::helpers::ThreadException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4359965' => { - 'BaseType' => '4358185', - 'Name' => 'log4cxx::helpers::ThreadException const&', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::InetAddress::InetAddressPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Ref' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5672468' + } + }, + 'Type' => 'Struct' }, - '4359971' => { - 'BaseType' => '4357967', - 'Name' => 'log4cxx::helpers::ThreadException&', + '5429794' => { + 'Base' => { + '5429230' => { + 'pos' => '0' + }, + '5429536' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::InetAddress::InetAddressPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Ref' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5672468' + } + }, + 'Type' => 'Struct' }, - '4359977' => { - 'BaseType' => '4358190', - 'Name' => 'log4cxx::helpers::InterruptedException*', + '5430758' => { + 'Base' => { + '5429794' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5672468' + } + }, + 'Type' => 'Class' }, - '4359983' => { - 'BaseType' => '4359977', - 'Name' => 'log4cxx::helpers::InterruptedException*const', + '54320705' => { + 'Base' => { + '1379573' => { + 'pos' => '0' + } + }, + 'Header' => 'socketappenderskeleton.h', + 'Line' => '35', + 'Name' => 'log4cxx::net::SocketAppenderSkeleton', + 'NameSpace' => 'log4cxx::net', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::SocketAppenderSkeleton) [_ZTIN7log4cxx3net22SocketAppenderSkeletonE]', + '168' => '0u', + '176' => '0u', + '184' => '(int (*)(...)) log4cxx::AppenderSkeleton::getClass() const [_ZNK7log4cxx16AppenderSkeleton8getClassEv]', + '192' => '(int (*)(...)) log4cxx::AppenderSkeleton::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx16AppenderSkeleton10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::AppenderSkeleton::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx16AppenderSkeleton4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net22SocketAppenderSkeleton15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net22SocketAppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::close() [_ZN7log4cxx3net22SocketAppenderSkeleton5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::requiresLayout() const [_ZNK7log4cxx3net22SocketAppenderSkeleton14requiresLayoutEv]', + '304' => '(int (*)(...)) __cxa_pure_virtual', + '312' => '(int (*)(...)) __cxa_pure_virtual', + '32' => '0u', + '320' => '(int (*)(...)) __cxa_pure_virtual', + '328' => '(int (*)(...)) __cxa_pure_virtual', + '336' => '(int (*)(...)) __cxa_pure_virtual', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '54320723' => { + 'Base' => { + '1379591' => { + 'pos' => '0' + } + }, + 'Header' => 'socketappenderskeleton_priv.h', + 'Line' => '29', + 'Memb' => { + '0' => { + 'name' => 'remoteHost', + 'offset' => '388', + 'type' => '209661' + }, + '1' => { + 'name' => 'address', + 'offset' => '534', + 'type' => '19570996' + }, + '2' => { + 'name' => 'port', + 'offset' => '562', + 'type' => '190263' + }, + '3' => { + 'name' => 'reconnectionDelay', + 'offset' => '566', + 'type' => '190263' + }, + '4' => { + 'name' => 'locationInfo', + 'offset' => '576', + 'type' => '174077' + }, + '5' => { + 'name' => 'thread', + 'offset' => '584', + 'type' => '1797924' + }, + '6' => { + 'name' => 'interrupt', + 'offset' => '598', + 'type' => '1810993' + }, + '7' => { + 'name' => 'interrupt_mutex', + 'offset' => '772', + 'type' => '106135' + } + }, + 'Name' => 'struct log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv', + 'NameSpace' => 'log4cxx::net::SocketAppenderSkeleton', + 'Protected' => 1, + 'Size' => '344', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv::~SocketAppenderSkeletonPriv() [_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD1Ev]', + '24' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv::~SocketAppenderSkeletonPriv() [_ZN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv) [_ZTIN7log4cxx3net22SocketAppenderSkeleton26SocketAppenderSkeletonPrivE]' + } + }, + '5432200' => { + 'Base' => { + '5428338' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647415' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5427364' + } + }, + 'Type' => 'Struct' }, - '4359988' => { - 'BaseType' => '4358403', - 'Name' => 'log4cxx::helpers::InterruptedException const&', + '54322062' => { + 'BaseType' => '54320705', + 'Name' => 'log4cxx::net::SocketAppenderSkeleton const', + 'Size' => '16', + 'Type' => 'Const' + }, + '5432401' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5432200' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Ref' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647415' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5427364' + } + }, + 'Type' => 'Class' }, - '4359994' => { - 'BaseType' => '4358190', - 'Name' => 'log4cxx::helpers::InterruptedException&', - 'Size' => '8', - 'Type' => 'Ref' + '5433020' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647554' + } + }, + 'Type' => 'Struct' }, - '4360000' => { - 'BaseType' => '4358408', - 'Name' => 'log4cxx::helpers::PoolException*', + '54334458' => { + 'BaseType' => '54320723', + 'Name' => 'struct log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '54334463' => { + 'BaseType' => '54334458', + 'Name' => 'struct log4cxx::net::SocketAppenderSkeleton::SocketAppenderSkeletonPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '54335155' => { + 'BaseType' => '54320705', + 'Name' => 'log4cxx::net::SocketAppenderSkeleton*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '54335160' => { + 'BaseType' => '54335155', + 'Name' => 'log4cxx::net::SocketAppenderSkeleton*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '54335476' => { + 'Class' => '54320705', + 'Name' => 'void()(log4cxx::net::SocketAppenderSkeleton::*)', + 'Return' => '198458', + 'Size' => '8', + 'Type' => 'FieldPtr' + }, + '54336713' => { + 'BaseType' => '54322062', + 'Name' => 'log4cxx::net::SocketAppenderSkeleton const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '54336718' => { + 'BaseType' => '54336713', + 'Name' => 'log4cxx::net::SocketAppenderSkeleton const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '54336723' => { + 'BaseType' => '52345808', + 'Name' => 'log4cxx::helpers::SocketPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '54338655' => { + 'BaseType' => '54335476', + 'Name' => 'void()(log4cxx::net::SocketAppenderSkeleton::*)&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '54338660' => { + 'BaseType' => '54335155', + 'Name' => 'log4cxx::net::SocketAppenderSkeleton*&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '5433994' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5436414' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647554' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5433020' + } + }, + 'Type' => 'Class' }, - '4360006' => { - 'BaseType' => '4360000', - 'Name' => 'log4cxx::helpers::PoolException*const', - 'Size' => '8', - 'Type' => 'Const' + '5434628' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5433020' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5433020' + } + }, + 'Type' => 'Struct' }, - '4360011' => { - 'BaseType' => '4358589', - 'Name' => 'log4cxx::helpers::PoolException const&', - 'Size' => '8', - 'Type' => 'Ref' + '5434886' => { + 'Base' => { + '5434628' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5433020' + } + }, + 'Type' => 'Struct' }, - '4360017' => { - 'BaseType' => '4358408', - 'Name' => 'log4cxx::helpers::PoolException&', + '5435192' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5672698' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::DatagramPacket::DatagramPacketPriv*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Ref' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5672698' + } + }, + 'Type' => 'Struct' }, - '4360023' => { - 'BaseType' => '4358594', - 'Name' => 'log4cxx::helpers::MissingResourceException*', + '5435450' => { + 'Base' => { + '5434886' => { + 'pos' => '0' + }, + '5435192' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::DatagramPacket::DatagramPacketPriv*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5672698' + } + }, + 'Type' => 'Struct' }, - '4360029' => { - 'BaseType' => '4360023', - 'Name' => 'log4cxx::helpers::MissingResourceException*const', + '5436414' => { + 'Base' => { + '5435450' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5672698' + } + }, + 'Type' => 'Class' }, - '4360034' => { - 'BaseType' => '4358775', - 'Name' => 'log4cxx::helpers::MissingResourceException const&', + '5437856' => { + 'Base' => { + '5433994' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Ref' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647554' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5433020' + } + }, + 'Type' => 'Struct' }, - '4360040' => { - 'BaseType' => '4358594', - 'Name' => 'log4cxx::helpers::MissingResourceException&', + '5438057' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5437856' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Ref' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647554' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5433020' + } + }, + 'Type' => 'Class' }, - '4360046' => { - 'BaseType' => '4356024', - 'Name' => 'log4cxx::helpers::IOException*', - 'Size' => '8', - 'Type' => 'Pointer' + '5438676' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647693' + } + }, + 'Type' => 'Struct' }, - '4360052' => { - 'BaseType' => '4360046', - 'Name' => 'log4cxx::helpers::IOException*const', + '5439650' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5442070' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647693' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5438676' + } + }, + 'Type' => 'Class' }, - '4360057' => { - 'BaseType' => '4356264', - 'Name' => 'log4cxx::helpers::IOException const&', - 'Size' => '8', - 'Type' => 'Ref' + '5440284' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5438676' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5438676' + } + }, + 'Type' => 'Struct' }, - '4360063' => { - 'BaseType' => '4356024', - 'Name' => 'log4cxx::helpers::IOException&', - 'Size' => '8', - 'Type' => 'Ref' + '5440542' => { + 'Base' => { + '5440284' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5438676' + } + }, + 'Type' => 'Struct' }, - '4360092' => { - 'BaseType' => '4359158', - 'Name' => 'log4cxx::helpers::NullPointerException*', + '5440848' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5672928' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::DatagramSocket::DatagramSocketPriv*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5672928' + } + }, + 'Type' => 'Struct' }, - '4360098' => { - 'BaseType' => '4360092', - 'Name' => 'log4cxx::helpers::NullPointerException*const', + '5441106' => { + 'Base' => { + '5440542' => { + 'pos' => '0' + }, + '5440848' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::DatagramSocket::DatagramSocketPriv*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5672928' + } + }, + 'Type' => 'Struct' }, - '4360103' => { - 'BaseType' => '4359313', - 'Name' => 'log4cxx::helpers::NullPointerException const&', + '5442070' => { + 'Base' => { + '5441106' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Ref' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5672928' + } + }, + 'Type' => 'Class' }, - '4360109' => { - 'BaseType' => '4359158', - 'Name' => 'log4cxx::helpers::NullPointerException&', + '5443512' => { + 'Base' => { + '5439650' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Ref' - }, - '43800' => { - 'Base' => { - '43339' => { - 'pos' => '0' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647693' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5438676' } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '65511' - } - }, - 'Type' => 'Class' - }, - '44188' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '42037' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { + }, + 'Type' => 'Struct' + }, + '5443713' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { '0' => { - 'key' => '_Tp', - 'type' => '63748' - }, - '1' => { - 'key' => '_Dp', - 'type' => '41914' + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5443512' } }, - 'Type' => 'Class' - }, - '4468343' => { + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647693' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5438676' + } + }, + 'Type' => 'Class' + }, + '5444332' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4505394' + 'type' => '5647836' } }, 'Type' => 'Struct' }, - '4468429' => { + '5445306' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '4469964' + 'type' => '5447726' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4505394' + 'type' => '5647836' }, '1' => { 'key' => '_Dp', - 'type' => '4468343' + 'type' => '5444332' } }, 'Type' => 'Class' }, - '4468752' => { - 'Base' => { - '4468343' => { - 'pos' => '0' - } - }, + '5445940' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5444332' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '4468343' + 'type' => '5444332' } }, 'Type' => 'Struct' }, - '4469005' => { + '5446198' => { 'Base' => { - '4468752' => { + '5445940' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '4468343' + 'type' => '5444332' } }, 'Type' => 'Struct' }, - '4469303' => { + '5446504' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '4508102' + 'type' => '5673158' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::varia::FallbackErrorHandler::FallbackErrorHandlerPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::SyslogWriter::SyslogWriterPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '4508102' + 'type' => '5673158' } }, 'Type' => 'Struct' }, - '4469563' => { + '5446762' => { 'Base' => { - '4469005' => { + '5446198' => { 'pos' => '0' }, - '4469303' => { + '5446504' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::varia::FallbackErrorHandler::FallbackErrorHandlerPrivate*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::SyslogWriter::SyslogWriterPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '4508102' + 'type' => '5673158' } }, 'Type' => 'Struct' }, - '4469964' => { + '5447726' => { 'Base' => { - '4469563' => { + '5446762' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '4508102' + 'type' => '5673158' } }, 'Type' => 'Class' }, - '4470294' => { + '5449168' => { + 'Base' => { + '5445306' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647836' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5444332' + } + }, + 'Type' => 'Struct' + }, + '5449369' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '4468429' + 'type' => '5449168' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4505394' + 'type' => '5647836' }, '1' => { 'key' => '_Dp', - 'type' => '4468343' + 'type' => '5444332' } }, 'Type' => 'Class' }, - '4473434' => { - 'Base' => { - '4479007' => { - 'access' => 'protected', - 'pos' => '0' - } - }, + '5449988' => { 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', - 'Size' => '24', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1075444' + 'type' => '5647965' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '4476635' => { + '5450962' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1577', + 'Header' => 'unique_ptr.h', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => '_M_t', 'offset' => '0', - 'type' => '4508881' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '369177' + 'type' => '5453382' } }, - 'Name' => 'std::__weak_ptr', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '262983' + 'type' => '5647965' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Dp', + 'type' => '5449988' } }, 'Type' => 'Class' }, - '4477047' => { - 'BaseType' => '237783', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1588', - 'Name' => 'std::__weak_ptr::element_type', - 'NameSpace' => 'std::__weak_ptr', - 'Type' => 'Typedef' - }, - '4478442' => { - 'Base' => { - '4489300' => { - 'pos' => '0' - } - }, + '5451596' => { 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5449988' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'type' => '1075444' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5449988' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '4478593' => { + '5451854' => { + 'Base' => { + '5451596' => { + 'access' => 'private', + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Alloc', - 'type' => '4478442' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5449988' } }, 'Type' => 'Struct' }, - '4478607' => { - 'BaseType' => '1151446', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '4479007' => { + '5452160' => { 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', + 'Header' => 'tuple', + 'Line' => '187', 'Memb' => { '0' => { - 'name' => '_M_impl', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '4479206' + 'type' => '5673393' } }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::Socket::SocketPrivate*>', 'NameSpace' => 'std', - 'Size' => '24', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '1075444' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' }, '1' => { - 'key' => '_Alloc', - 'type' => '4478442' + 'key' => '_Head', + 'type' => '5673393' } }, 'Type' => 'Struct' }, - '4479020' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', - 'Memb' => { - '0' => { - 'name' => '_M_start', - 'offset' => '0', - 'type' => '4479194' - }, - '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '4479194' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '4479194' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '4479194' => { - 'BaseType' => '4490029', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '4479206' => { + '5452418' => { 'Base' => { - '4478442' => { + '5451854' => { 'pos' => '0' }, - '4479020' => { + '5452160' => { + 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '4489300' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::Socket::SocketPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '1075444' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5673393' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '4489828' => { + '5453382' => { 'Base' => { - '4478593' => { + '5452418' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '4478442' - } - }, - 'Type' => 'Struct' - }, - '4490029' => { - 'BaseType' => '4478607', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '4503848' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '4505496' + 'key' => undef, + 'type' => '5673393' } }, 'Type' => 'Class' }, - '4505201' => { - 'BaseType' => '407466', - 'Name' => 'log4cxx::spi::ErrorHandler const', - 'Type' => 'Const' - }, - '4505376' => { - 'Base' => { - '407466' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Header' => 'fallbackerrorhandler.h', - 'Line' => '40', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '4470294' - } - }, - 'Name' => 'log4cxx::varia::FallbackErrorHandler', - 'NameSpace' => 'log4cxx::varia', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '(int (*)(...)) (& typeinfo for log4cxx::varia::FallbackErrorHandler) [_ZTIN7log4cxx5varia20FallbackErrorHandlerE]', - '136' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::~FallbackErrorHandler() [_ZN7log4cxx5varia20FallbackErrorHandlerD1Ev]', - '144' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::~FallbackErrorHandler() [_ZN7log4cxx5varia20FallbackErrorHandlerD0Ev]', - '152' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::getClass() const [_ZNK7log4cxx5varia20FallbackErrorHandler8getClassEv]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx5varia20FallbackErrorHandler10instanceofERKNS_7helpers5ClassE]', - '168' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx5varia20FallbackErrorHandler4castERKNS_7helpers5ClassE]', - '176' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx5varia20FallbackErrorHandler15activateOptionsERNS_7helpers4PoolE]', - '184' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx5varia20FallbackErrorHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '192' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::setLogger(std::shared_ptr const&) [_ZN7log4cxx5varia20FallbackErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE]', - '200' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&, std::exception const&, int) const [_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni]', - '208' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '216' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&, std::exception const&, int, std::shared_ptr const&) const [_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS_3spi12LoggingEventEE]', - '224' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::setAppender(std::shared_ptr const&) [_ZN7log4cxx5varia20FallbackErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE]', - '232' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::setBackupAppender(std::shared_ptr const&) [_ZN7log4cxx5varia20FallbackErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '4505394' => { - 'Line' => '35', - 'Memb' => { - '0' => { - 'name' => 'backup', - 'offset' => '0', - 'type' => '4506909' - }, - '1' => { - 'name' => 'primary', - 'offset' => '16', - 'type' => '4506909' - }, - '2' => { - 'name' => 'loggers', - 'offset' => '32', - 'type' => '4473434' - } - }, - 'Name' => 'struct log4cxx::varia::FallbackErrorHandler::FallbackErrorHandlerPrivate', - 'NameSpace' => 'log4cxx::varia::FallbackErrorHandler', - 'Private' => 1, - 'Size' => '56', - 'Source' => 'fallbackerrorhandler.cpp', - 'Type' => 'Struct' - }, - '4505496' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'fallbackerrorhandler.h', - 'Line' => '47', - 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler', - 'NameSpace' => 'log4cxx::varia::FallbackErrorHandler', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::~ClazzFallbackErrorHandler() [_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD1Ev]', - '24' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::~ClazzFallbackErrorHandler() [_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::newInstance() const [_ZTch0_h0_NK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::getName[abi:cxx11]() const [_ZNK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::newInstance() const [_ZNK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler) [_ZTIN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerE]' - } - }, - '4505717' => { - 'BaseType' => '4505496', - 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4506380' => { - 'BaseType' => '4505376', - 'Name' => 'log4cxx::varia::FallbackErrorHandler const', - 'Size' => '16', - 'Type' => 'Const' - }, - '4506386' => { + '5454824' => { 'Base' => { - '1149751' => { + '5450962' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'hierarchy.h', - 'Line' => '55', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '6967952' - } - }, - 'Name' => 'log4cxx::Hierarchy', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::Hierarchy::ensureIsConfigured(std::function) [_ZN7log4cxx9Hierarchy18ensureIsConfiguredESt8functionIFvvEE]', - '112' => '(int (*)(...)) log4cxx::Hierarchy::isDisabled(int) const [_ZNK7log4cxx9Hierarchy10isDisabledEi]', - '120' => '(int (*)(...)) log4cxx::Hierarchy::setThreshold(std::shared_ptr const&) [_ZN7log4cxx9Hierarchy12setThresholdERKSt10shared_ptrINS_5LevelEE]', - '128' => '(int (*)(...)) log4cxx::Hierarchy::setThreshold(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx9Hierarchy12setThresholdERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '136' => '(int (*)(...)) log4cxx::Hierarchy::emitNoAppenderWarning(log4cxx::Logger const*) [_ZN7log4cxx9Hierarchy21emitNoAppenderWarningEPKNS_6LoggerE]', - '144' => '(int (*)(...)) log4cxx::Hierarchy::getThreshold() const [_ZNK7log4cxx9Hierarchy12getThresholdEv]', - '152' => '(int (*)(...)) log4cxx::Hierarchy::getLogger(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx9Hierarchy9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::Hierarchy::getLogger(std::__cxx11::basic_string, std::allocator > const&, std::shared_ptr const&) [_ZN7log4cxx9Hierarchy9getLoggerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi13LoggerFactoryEE]', - '168' => '(int (*)(...)) log4cxx::Hierarchy::getRootLogger() const [_ZNK7log4cxx9Hierarchy13getRootLoggerEv]', - '176' => '(int (*)(...)) log4cxx::Hierarchy::exists(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx9Hierarchy6existsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '184' => '(int (*)(...)) log4cxx::Hierarchy::shutdown() [_ZN7log4cxx9Hierarchy8shutdownEv]', - '192' => '(int (*)(...)) log4cxx::Hierarchy::getCurrentLoggers() const [_ZNK7log4cxx9Hierarchy17getCurrentLoggersEv]', - '200' => '(int (*)(...)) log4cxx::Hierarchy::fireAddAppenderEvent(log4cxx::Logger const*, log4cxx::Appender const*) [_ZN7log4cxx9Hierarchy20fireAddAppenderEventEPKNS_6LoggerEPKNS_8AppenderE]', - '208' => '(int (*)(...)) log4cxx::Hierarchy::fireRemoveAppenderEvent(log4cxx::Logger const*, log4cxx::Appender const*) [_ZN7log4cxx9Hierarchy23fireRemoveAppenderEventEPKNS_6LoggerEPKNS_8AppenderE]', - '216' => '(int (*)(...)) log4cxx::Hierarchy::resetConfiguration() [_ZN7log4cxx9Hierarchy18resetConfigurationEv]', - '224' => '(int (*)(...)) log4cxx::Hierarchy::isConfigured() [_ZN7log4cxx9Hierarchy12isConfiguredEv]', - '232' => '(int (*)(...)) log4cxx::Hierarchy::setConfigured(bool) [_ZN7log4cxx9Hierarchy13setConfiguredEb]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::Hierarchy) [_ZTIN7log4cxx9HierarchyE]', - '56' => '(int (*)(...)) log4cxx::Hierarchy::~Hierarchy() [_ZN7log4cxx9HierarchyD1Ev]', - '64' => '(int (*)(...)) log4cxx::Hierarchy::~Hierarchy() [_ZN7log4cxx9HierarchyD0Ev]', - '72' => '(int (*)(...)) log4cxx::Hierarchy::getClass() const [_ZNK7log4cxx9Hierarchy8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::Hierarchy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx9Hierarchy10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::Hierarchy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx9Hierarchy4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::Hierarchy::addHierarchyEventListener(std::shared_ptr const&) [_ZN7log4cxx9Hierarchy25addHierarchyEventListenerERKSt10shared_ptrINS_3spi22HierarchyEventListenerEE]' - } - }, - '4506857' => { - 'BaseType' => '1150380', - 'Name' => 'log4cxx::LoggerPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '4506909' => { - 'BaseType' => '238406', - 'Header' => 'appender.h', - 'Line' => '132', - 'Name' => 'log4cxx::AppenderWeakPtr', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '4508102' => { - 'BaseType' => '4505394', - 'Name' => 'struct log4cxx::varia::FallbackErrorHandler::FallbackErrorHandlerPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4508703' => { - 'BaseType' => '4503848', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4508709' => { - 'BaseType' => '4508703', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4508881' => { - 'BaseType' => '4477047', - 'Name' => 'std::__weak_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4509515' => { - 'BaseType' => '4505376', - 'Name' => 'log4cxx::varia::FallbackErrorHandler*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4509521' => { - 'BaseType' => '4509515', - 'Name' => 'log4cxx::varia::FallbackErrorHandler*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4509543' => { - 'BaseType' => '4506380', - 'Name' => 'log4cxx::varia::FallbackErrorHandler const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4509549' => { - 'BaseType' => '4509543', - 'Name' => 'log4cxx::varia::FallbackErrorHandler const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4509554' => { - 'BaseType' => '4506857', - 'Name' => 'log4cxx::LoggerPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '4509572' => { - 'BaseType' => '4505496', - 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4509578' => { - 'BaseType' => '4509572', - 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4509583' => { - 'BaseType' => '4505717', - 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4509589' => { - 'BaseType' => '4509583', - 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4544193' => { - 'BaseType' => '1149751', - 'Name' => 'log4cxx::spi::LoggerRepository*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4544199' => { - 'BaseType' => '4506386', - 'Name' => 'log4cxx::Hierarchy*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '45925' => { - 'Copied' => 1, - 'Name' => 'std::exception', - 'NameSpace' => 'std', - 'Type' => 'Class' - }, - '45930' => { - 'BaseType' => '45925', - 'Name' => 'std::exception const', - 'Type' => 'Const' - }, - '4641326' => { - 'BaseType' => '407466', - 'Name' => 'log4cxx::spi::ErrorHandler*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4641332' => { - 'BaseType' => '4641326', - 'Name' => 'log4cxx::spi::ErrorHandler*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4643919' => { - 'BaseType' => '4505201', - 'Name' => 'log4cxx::spi::ErrorHandler const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4643925' => { - 'BaseType' => '4643919', - 'Name' => 'log4cxx::spi::ErrorHandler const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4730186' => { - 'BaseType' => '4048084', - 'Name' => 'log4cxx::File*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4730209' => { - 'BaseType' => '4048102', - 'Name' => 'log4cxx::File const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4730280' => { - 'BaseType' => '50231', - 'Header' => 'apr.h', - 'Line' => '315', - 'Name' => 'apr_int32_t', - 'Size' => '4', - 'Type' => 'Typedef' - }, - '4730850' => { - 'BaseType' => '4048120', - 'Header' => 'apr_file_io.h', - 'Line' => '188', - 'Name' => 'apr_file_t', - 'Type' => 'Typedef' - }, - '47810' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '50671' - } - }, - 'Type' => 'Class' - }, - '4781406' => { - 'BaseType' => '4781412', - 'Name' => 'apr_file_t**', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4781412' => { - 'BaseType' => '4730850', - 'Name' => 'apr_file_t*', + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' - }, - '48405' => { - 'Base' => { - '36364' => { - 'pos' => '0' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647965' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5449988' } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '12111' - } - }, - 'Type' => 'Struct' - }, - '48607' => { - 'BaseType' => '36378', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '48631' => { - 'BaseType' => '36441', - 'Header' => 'alloc_traits.h', - 'Line' => '61', - 'Name' => '__gnu_cxx::__alloc_traits >::size_type', - 'NameSpace' => '__gnu_cxx::__alloc_traits >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '4926802' => { + }, + 'Type' => 'Struct' + }, + '5455025' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '4927550' + 'type' => '5454824' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4970452' + 'type' => '5647965' }, '1' => { 'key' => '_Dp', - 'type' => '4927427' + 'type' => '5449988' } }, 'Type' => 'Class' }, - '4927427' => { + '5455644' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4970452' + 'type' => '5648104' } }, 'Type' => 'Struct' }, - '4927550' => { + '5456618' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '4929081' + 'type' => '5459038' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '4970452' + 'type' => '5648104' }, '1' => { 'key' => '_Dp', - 'type' => '4927427' + 'type' => '5455644' } }, 'Type' => 'Class' }, - '4927873' => { - 'Base' => { - '4927427' => { - 'pos' => '0' - } - }, + '5457252' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5455644' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '4927427' + 'type' => '5455644' } }, 'Type' => 'Struct' }, - '4928126' => { + '5457510' => { 'Base' => { - '4927873' => { + '5457252' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '4927427' + 'type' => '5455644' } }, 'Type' => 'Struct' }, - '4928421' => { + '5457816' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '4976668' + 'type' => '5673623' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::FileAppender::FileAppenderPriv*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ServerSocket::ServerSocketPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '4976668' + 'type' => '5673623' } }, 'Type' => 'Struct' }, - '4928681' => { + '5458074' => { 'Base' => { - '4928126' => { + '5457510' => { 'pos' => '0' }, - '4928421' => { + '5457816' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::FileAppender::FileAppenderPriv*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ServerSocket::ServerSocketPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '4976668' + 'type' => '5673623' } }, 'Type' => 'Struct' }, - '49288' => { - 'Copied' => 1, - 'Header' => 'stl_iterator.h', - 'Line' => '784', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_current', - 'offset' => '0', - 'type' => '51127' - } - }, - 'Name' => '__gnu_cxx::__normal_iterator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Iterator', - 'type' => '51127' - }, - '1' => { - 'key' => '_Container', - 'type' => '68' - } - }, - 'Type' => 'Class' - }, - '4929081' => { + '5459038' => { 'Base' => { - '4928681' => { + '5458074' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '4976668' + 'type' => '5673623' } }, 'Type' => 'Class' }, - '4932589' => { + '5460480' => { + 'Base' => { + '5456618' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5648104' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5455644' + } + }, + 'Type' => 'Struct' + }, + '5460681' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5460480' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5648104' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5455644' + } + }, + 'Type' => 'Class' + }, + '54646065' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '54716219' + } + }, + 'Type' => 'Struct' + }, + '54647014' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '54649418' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '54716219' + }, + '1' => { + 'key' => '_Dp', + 'type' => '54646065' + } + }, + 'Type' => 'Class' + }, + '54647646' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '54646065' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '54646065' + } + }, + 'Type' => 'Struct' + }, + '54647904' => { + 'Base' => { + '54647646' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '54646065' + } + }, + 'Type' => 'Struct' + }, + '54648209' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '54719209' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::SocketOutputStream::SocketOutputStreamPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '54719209' + } + }, + 'Type' => 'Struct' + }, + '54648467' => { + 'Base' => { + '54647904' => { + 'pos' => '0' + }, + '54648209' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::SocketOutputStream::SocketOutputStreamPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '54719209' + } + }, + 'Type' => 'Struct' + }, + '54649418' => { + 'Base' => { + '54648467' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '54719209' + } + }, + 'Type' => 'Class' + }, + '54650865' => { + 'Base' => { + '54647014' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '54716219' + }, + '1' => { + 'key' => '_Dp', + 'type' => '54646065' + } + }, + 'Type' => 'Struct' + }, + '54651090' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '54650865' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '54716219' + }, + '1' => { + 'key' => '_Dp', + 'type' => '54646065' + } + }, + 'Type' => 'Class' + }, + '54716201' => { + 'Base' => { + '3116491' => { + 'pos' => '0' + } + }, + 'Header' => 'socketoutputstream.h', + 'Line' => '31', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '54651090' + } + }, + 'Name' => 'log4cxx::helpers::SocketOutputStream', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::~SocketOutputStream() [_ZN7log4cxx7helpers18SocketOutputStreamD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::~SocketOutputStream() [_ZN7log4cxx7helpers18SocketOutputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::getClass() const [_ZNK7log4cxx7helpers18SocketOutputStream8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers18SocketOutputStream10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers18SocketOutputStream4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18SocketOutputStream5closeERNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18SocketOutputStream5flushERNS0_4PoolE]', + '72' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::write(log4cxx::helpers::ByteBuffer&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers18SocketOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SocketOutputStream) [_ZTIN7log4cxx7helpers18SocketOutputStreamE]' + } + }, + '54716219' => { + 'Line' => '29', + 'Memb' => { + '0' => { + 'name' => 'array', + 'offset' => '0', + 'type' => '3604708' + }, + '1' => { + 'name' => 'socket', + 'offset' => '36', + 'type' => '52345808' + } + }, + 'Name' => 'struct log4cxx::helpers::SocketOutputStream::SocketOutputStreamPrivate', + 'NameSpace' => 'log4cxx::helpers::SocketOutputStream', + 'Private' => 1, + 'Size' => '40', + 'Source' => 'socketoutputstream.cpp', + 'Type' => 'Struct' + }, + '54716308' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'socketoutputstream.h', + 'Line' => '34', + 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream', + 'NameSpace' => 'log4cxx::helpers::SocketOutputStream', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream::~ClazzSocketOutputStream() [_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream::~ClazzSocketOutputStream() [_ZN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStream7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream) [_ZTIN7log4cxx7helpers18SocketOutputStream23ClazzSocketOutputStreamE]' + } + }, + '54716455' => { + 'BaseType' => '54716308', + 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream const', + 'Size' => '8', + 'Type' => 'Const' + }, + '54716884' => { + 'BaseType' => '54716201', + 'Name' => 'log4cxx::helpers::SocketOutputStream const', + 'Size' => '16', + 'Type' => 'Const' + }, + '54716918' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '54716308' + } + }, + 'Type' => 'Class' + }, + '54719209' => { + 'BaseType' => '54716219', + 'Name' => 'struct log4cxx::helpers::SocketOutputStream::SocketOutputStreamPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '54720538' => { + 'BaseType' => '54716918', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '54720543' => { + 'BaseType' => '54720538', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '54720914' => { + 'BaseType' => '54716884', + 'Name' => 'log4cxx::helpers::SocketOutputStream const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '54720919' => { + 'BaseType' => '54720914', + 'Name' => 'log4cxx::helpers::SocketOutputStream const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '54720924' => { + 'BaseType' => '54716201', + 'Name' => 'log4cxx::helpers::SocketOutputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '54720929' => { + 'BaseType' => '54720924', + 'Name' => 'log4cxx::helpers::SocketOutputStream*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '54720949' => { + 'BaseType' => '54716308', + 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '54720954' => { + 'BaseType' => '54720949', + 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '54720959' => { + 'BaseType' => '54716455', + 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '54720964' => { + 'BaseType' => '54720959', + 'Name' => 'log4cxx::helpers::SocketOutputStream::ClazzSocketOutputStream const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5494667' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1425696' + 'type' => '5648119' + } + }, + 'Type' => 'Struct' + }, + '5495641' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5498061' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5648119' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Dp', + 'type' => '5494667' + } + }, + 'Type' => 'Class' + }, + '5496275' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5494667' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5494667' + } + }, + 'Type' => 'Struct' + }, + '5496533' => { + 'Base' => { + '5496275' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5494667' + } + }, + 'Type' => 'Struct' + }, + '5496839' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5675464' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::SimpleDateFormat::SimpleDateFormatPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5675464' + } + }, + 'Type' => 'Struct' + }, + '5497097' => { + 'Base' => { + '5496533' => { + 'pos' => '0' + }, + '5496839' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::SimpleDateFormat::SimpleDateFormatPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5675464' + } + }, + 'Type' => 'Struct' + }, + '5498061' => { + 'Base' => { + '5497097' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5675464' } }, 'Type' => 'Class' }, - '4932737' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + '5499503' => { + 'Base' => { + '5495641' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1425696' + 'type' => '5648119' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5494667' } }, 'Type' => 'Struct' }, - '4932751' => { - 'BaseType' => '1425696', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '4932774' => { - 'Base' => { - '4932589' => { - 'pos' => '0' - } - }, + '5499704' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => '_M_t', 'offset' => '0', - 'type' => '4977347' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '5499503' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1425696' + 'type' => '5648119' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Dp', + 'type' => '5494667' } }, 'Type' => 'Class' }, - '4933060' => { - 'BaseType' => '4932751', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '4933615' => { - 'Base' => { - '4932774' => { - 'pos' => '0' - } - }, + '5500323' => { 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1425696' + 'type' => '5655921' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '4967496' => { - 'Base' => { - '1425696' => { - 'pos' => '0' - } - }, + '5501297' => { 'Copied' => 1, - 'Header' => 'fileoutputstream.h', - 'Line' => '35', + 'Header' => 'unique_ptr.h', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '5553159' + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5503717' } }, - 'Name' => 'log4cxx::helpers::FileOutputStream', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::~FileOutputStream() [_ZN7log4cxx7helpers16FileOutputStreamD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::~FileOutputStream() [_ZN7log4cxx7helpers16FileOutputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::getClass() const [_ZNK7log4cxx7helpers16FileOutputStream8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers16FileOutputStream10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers16FileOutputStream4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers16FileOutputStream5closeERNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers16FileOutputStream5flushERNS0_4PoolE]', - '72' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::write(log4cxx::helpers::ByteBuffer&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers16FileOutputStream5writeERNS0_10ByteBufferERNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileOutputStream) [_ZTIN7log4cxx7helpers16FileOutputStreamE]' - } + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5655921' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5500323' + } + }, + 'Type' => 'Class' }, - '4967526' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '5501931' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '55091' + 'type' => '5500323' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '4970226' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5500323' } }, - 'Type' => 'Class' - }, - '4968631' => { - 'BaseType' => '4933615', - 'Header' => 'outputstream.h', - 'Line' => '55', - 'Name' => 'log4cxx::helpers::OutputStreamPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Typedef' + 'Type' => 'Struct' }, - '4970208' => { + '5502189' => { 'Base' => { - '2844858' => { + '5501931' => { + 'access' => 'private', 'pos' => '0' } }, - 'Header' => 'fileappender.h', - 'Line' => '41', - 'Name' => 'log4cxx::FileAppender', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '0u', - '144' => '0u', - '152' => '0u', - '16' => '0u', - '160' => '(int (*)(...)) (& typeinfo for log4cxx::FileAppender) [_ZTIN7log4cxx12FileAppenderE]', - '168' => '(int (*)(...)) log4cxx::FileAppender::~FileAppender() [_ZN7log4cxx12FileAppenderD1Ev]', - '176' => '(int (*)(...)) log4cxx::FileAppender::~FileAppender() [_ZN7log4cxx12FileAppenderD0Ev]', - '184' => '(int (*)(...)) log4cxx::FileAppender::getClass() const [_ZNK7log4cxx12FileAppender8getClassEv]', - '192' => '(int (*)(...)) log4cxx::FileAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx12FileAppender10instanceofERKNS_7helpers5ClassE]', - '200' => '(int (*)(...)) log4cxx::FileAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx12FileAppender4castERKNS_7helpers5ClassE]', - '208' => '(int (*)(...)) log4cxx::FileAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx12FileAppender15activateOptionsERNS_7helpers4PoolE]', - '216' => '(int (*)(...)) log4cxx::FileAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx12FileAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '248' => '(int (*)(...)) log4cxx::WriterAppender::close() [_ZN7log4cxx14WriterAppender5closeEv]', - '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '296' => '(int (*)(...)) log4cxx::WriterAppender::requiresLayout() const [_ZNK7log4cxx14WriterAppender14requiresLayoutEv]', - '304' => '(int (*)(...)) log4cxx::WriterAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '312' => '(int (*)(...)) log4cxx::WriterAppender::checkEntryConditions() const [_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv]', - '32' => '0u', - '320' => '(int (*)(...)) log4cxx::WriterAppender::createWriter(std::shared_ptr&) [_ZN7log4cxx14WriterAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE]', - '328' => '(int (*)(...)) log4cxx::WriterAppender::subAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '336' => '(int (*)(...)) log4cxx::WriterAppender::writeFooter(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE]', - '344' => '(int (*)(...)) log4cxx::WriterAppender::writeHeader(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE]', - '352' => '(int (*)(...)) log4cxx::FileAppender::setFile(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx12FileAppender7setFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '4970226' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'fileappender.h', - 'Line' => '47', - 'Name' => 'log4cxx::FileAppender::ClazzFileAppender', - 'NameSpace' => 'log4cxx::FileAppender', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::FileAppender::ClazzFileAppender::~ClazzFileAppender() [_ZN7log4cxx12FileAppender17ClazzFileAppenderD2Ev]', - '24' => '(int (*)(...)) log4cxx::FileAppender::ClazzFileAppender::~ClazzFileAppender() [_ZN7log4cxx12FileAppender17ClazzFileAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::FileAppender::ClazzFileAppender::newInstance() const [_ZTch0_h0_NK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::FileAppender::ClazzFileAppender::getName[abi:cxx11]() const [_ZNK7log4cxx12FileAppender17ClazzFileAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::FileAppender::ClazzFileAppender::newInstance() const [_ZNK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::FileAppender::ClazzFileAppender) [_ZTIN7log4cxx12FileAppender17ClazzFileAppenderE]' - } - }, - '4970447' => { - 'BaseType' => '4970226', - 'Name' => 'log4cxx::FileAppender::ClazzFileAppender const', - 'Size' => '8', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5500323' + } + }, + 'Type' => 'Struct' }, - '4970452' => { - 'Base' => { - '2844868' => { - 'pos' => '0' - } - }, - 'Header' => 'fileappender_priv.h', - 'Line' => '27', + '5502495' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', 'Memb' => { '0' => { - 'name' => 'fileAppend', - 'offset' => '240', - 'type' => '50284' - }, - '1' => { - 'name' => 'fileName', - 'offset' => '248', - 'type' => '63706' - }, - '2' => { - 'name' => 'bufferedIO', - 'offset' => '280', - 'type' => '50284' - }, - '3' => { - 'name' => 'bufferSize', - 'offset' => '284', - 'type' => '50231' + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5675694' } }, - 'Name' => 'struct log4cxx::FileAppender::FileAppenderPriv', - 'NameSpace' => 'log4cxx::FileAppender', - 'Protected' => 1, - 'Size' => '288', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::FileAppender::FileAppenderPriv::~FileAppenderPriv() [_ZN7log4cxx12FileAppender16FileAppenderPrivD2Ev]', - '24' => '(int (*)(...)) log4cxx::FileAppender::FileAppenderPriv::~FileAppenderPriv() [_ZN7log4cxx12FileAppender16FileAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::FileAppender::FileAppenderPriv) [_ZTIN7log4cxx12FileAppender16FileAppenderPrivE]' - } - }, - '4971702' => { - 'BaseType' => '4970208', - 'Name' => 'log4cxx::FileAppender const', - 'Size' => '16', - 'Type' => 'Const' - }, - '4976475' => { - 'BaseType' => '1248265', - 'Name' => 'log4cxx::helpers::Writer*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4976543' => { - 'BaseType' => '4967526', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4976549' => { - 'BaseType' => '4976543', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4976668' => { - 'BaseType' => '4970452', - 'Name' => 'struct log4cxx::FileAppender::FileAppenderPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4976674' => { - 'BaseType' => '4976668', - 'Name' => 'struct log4cxx::FileAppender::FileAppenderPriv*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4977347' => { - 'BaseType' => '4933060', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4977370' => { - 'BaseType' => '1425696', - 'Name' => 'log4cxx::helpers::OutputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4977476' => { - 'BaseType' => '4967496', - 'Name' => 'log4cxx::helpers::FileOutputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4978267' => { - 'BaseType' => '4971702', - 'Name' => 'log4cxx::FileAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4978273' => { - 'BaseType' => '4978267', - 'Name' => 'log4cxx::FileAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4978278' => { - 'BaseType' => '4970208', - 'Name' => 'log4cxx::FileAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4978284' => { - 'BaseType' => '4978278', - 'Name' => 'log4cxx::FileAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4978384' => { - 'BaseType' => '4970226', - 'Name' => 'log4cxx::FileAppender::ClazzFileAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4978390' => { - 'BaseType' => '4978384', - 'Name' => 'log4cxx::FileAppender::ClazzFileAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '4978395' => { - 'BaseType' => '4970447', - 'Name' => 'log4cxx::FileAppender::ClazzFileAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '4978401' => { - 'BaseType' => '4978395', - 'Name' => 'log4cxx::FileAppender::ClazzFileAppender const*const', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::JSONLayout::JSONLayoutPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' - }, - '50077' => { - 'Header' => 'concurrence.h', - 'Line' => '49', - 'Memb' => { - '0' => { - 'name' => '_S_single', - 'value' => '0' - }, - '1' => { - 'name' => '_S_mutex', - 'value' => '1' - }, - '2' => { - 'name' => '_S_atomic', - 'value' => '2' - } - }, - 'Name' => 'enum __gnu_cxx::_Lock_policy', - 'NameSpace' => '__gnu_cxx', - 'Size' => '4', - 'Type' => 'Enum' - }, - '50167' => { - 'Name' => 'unsigned int', - 'Size' => '4', - 'Type' => 'Intrinsic' - }, - '50179' => { - 'Name' => 'unsigned char', - 'Size' => '1', - 'Type' => 'Intrinsic' - }, - '50186' => { - 'Name' => 'unsigned short', - 'Size' => '2', - 'Type' => 'Intrinsic' - }, - '50193' => { - 'Name' => 'unsigned long', - 'Size' => '8', - 'Type' => 'Intrinsic' - }, - '50200' => { - 'BaseType' => '50193', - 'Name' => 'unsigned long const', - 'Size' => '8', - 'Type' => 'Const' - }, - '50205' => { - 'Name' => 'unsigned long long', - 'Size' => '8', - 'Type' => 'Intrinsic' - }, - '50224' => { - 'Name' => 'short', - 'Size' => '2', - 'Type' => 'Intrinsic' - }, - '50231' => { - 'Name' => 'int', - 'Size' => '4', - 'Type' => 'Intrinsic' - }, - '50239' => { - 'BaseType' => '50231', - 'Name' => 'int const', - 'Size' => '4', - 'Type' => 'Const' - }, - '50244' => { - 'Name' => 'long', - 'Size' => '8', - 'Type' => 'Intrinsic' - }, - '50256' => { - 'Name' => 'long long', - 'Size' => '8', - 'Type' => 'Intrinsic' - }, - '50263' => { - 'Name' => 'long double', - 'Size' => '16', - 'Type' => 'Intrinsic' - }, - '50270' => { - 'Name' => 'double', - 'Size' => '8', - 'Type' => 'Intrinsic' - }, - '50277' => { - 'Name' => 'float', - 'Size' => '4', - 'Type' => 'Intrinsic' - }, - '50284' => { - 'Name' => 'bool', - 'Size' => '1', - 'Type' => 'Intrinsic' - }, - '50291' => { - 'BaseType' => '50284', - 'Name' => 'bool const', - 'Size' => '1', - 'Type' => 'Const' - }, - '50392' => { - 'Name' => 'wchar_t', - 'Size' => '4', - 'Type' => 'Intrinsic' - }, - '50399' => { - 'BaseType' => '50392', - 'Name' => 'wchar_t const', - 'Size' => '4', - 'Type' => 'Const' - }, - '50486' => { - 'BaseType' => '50193', - 'Header' => 'stddef.h', - 'Line' => '209', - 'Name' => 'size_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '505063' => { - 'BaseType' => '50678', - 'Name' => 'char const[16]', - 'Size' => '16', - 'Type' => 'Array' - }, - '50560' => { - 'BaseType' => '1', - 'Name' => 'void*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '50580' => { - 'Header' => '__mbstate_t.h', - 'Line' => '14', - 'Memb' => { - '0' => { - 'name' => '__count', - 'offset' => '0', - 'type' => '50231' - }, - '1' => { - 'name' => '__value', - 'offset' => '4', - 'type' => '50593' - } - }, - 'Name' => 'struct __mbstate_t', - 'Size' => '8', - 'Type' => 'Struct' - }, - '50593' => { - 'Header' => '__mbstate_t.h', - 'Line' => '17', - 'Memb' => { - '0' => { - 'name' => '__wch', - 'offset' => '0', - 'type' => '50167' - }, - '1' => { - 'name' => '__wchb', - 'offset' => '0', - 'type' => '50655' - } - }, - 'Name' => '__mbstate_t::anon-union-__mbstate_t.h-17', - 'NameSpace' => '__mbstate_t', - 'Size' => '4', - 'Type' => 'Union' - }, - '50655' => { - 'BaseType' => '50671', - 'Name' => 'char[4]', - 'Size' => '4', - 'Type' => 'Array' - }, - '50671' => { - 'Name' => 'char', - 'Size' => '1', - 'Type' => 'Intrinsic' - }, - '50678' => { - 'BaseType' => '50671', - 'Name' => 'char const', - 'Size' => '1', - 'Type' => 'Const' - }, - '50683' => { - 'BaseType' => '50580', - 'Header' => '__mbstate_t.h', - 'Line' => '21', - 'Name' => '__mbstate_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '50695' => { - 'BaseType' => '50683', - 'Header' => 'mbstate_t.h', - 'Line' => '6', - 'Name' => 'mbstate_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '51127' => { - 'BaseType' => '50678', - 'Name' => 'char const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '51133' => { - 'BaseType' => '51127', - 'Name' => 'char const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '51223' => { - 'BaseType' => '50392', - 'Name' => 'wchar_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '51285' => { - 'BaseType' => '50399', - 'Name' => 'wchar_t const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '513815' => { - 'Copied' => 1, - 'Header' => 'basic_string.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_dataplus', - 'offset' => '0', - 'type' => '513828' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_string_length', - 'offset' => '8', - 'type' => '513981' - }, - '2' => { - 'access' => 'private', - 'name' => 'unnamed0', - 'offset' => '16', - 'type' => '513946' - } - }, - 'Name' => 'std::__cxx11::basic_string', - 'NameSpace' => 'std::__cxx11', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => '_CharT', - 'type' => '50392' - } - }, - 'Type' => 'Class' - }, - '513828' => { - 'Base' => { - '529953' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'basic_string.h', - 'Line' => '154', - 'Memb' => { - '0' => { - 'name' => '_M_p', - 'offset' => '0', - 'type' => '513933' - } - }, - 'Name' => 'struct std::__cxx11::basic_string::_Alloc_hider', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Private' => 1, - 'Size' => '8', - 'Type' => 'Struct' - }, - '513933' => { - 'BaseType' => '630807', - 'Header' => 'basic_string.h', - 'Line' => '96', - 'Name' => 'std::__cxx11::basic_string::pointer', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '513946' => { - 'Header' => 'basic_string.h', - 'Line' => '176', - 'Memb' => { - '0' => { - 'name' => '_M_local_buf', - 'offset' => '0', - 'type' => '646874' - }, - '1' => { - 'name' => '_M_allocated_capacity', - 'offset' => '0', - 'type' => '513981' - } - }, - 'Name' => 'std::__cxx11::basic_string::anon-union-basic_string.h-176', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Private' => 1, - 'Size' => '16', - 'Type' => 'Union' - }, - '513981' => { - 'BaseType' => '630831', - 'Header' => 'basic_string.h', - 'Line' => '92', - 'Name' => 'std::__cxx11::basic_string::size_type', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '515036' => { - 'BaseType' => '631487', - 'Header' => 'basic_string.h', - 'Line' => '100', - 'Name' => 'std::__cxx11::basic_string::const_iterator', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '51958' => { - 'BaseType' => '50671', - 'Name' => 'char*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '520852' => { - 'BaseType' => '513815', - 'Name' => 'std::__cxx11::basic_stringconst', - 'Size' => '32', - 'Type' => 'Const' - }, - '520857' => { - 'Copied' => 1, - 'Header' => 'stl_list.h', - 'Line' => '345', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '520871' - } - }, - 'Name' => 'std::__cxx11::_List_base >', - 'NameSpace' => 'std::__cxx11', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '652179' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '611383' - } - }, - 'Type' => 'Class' - }, - '520871' => { - 'Base' => { - '611797' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_list.h', - 'Line' => '370', - 'Memb' => { - '0' => { - 'name' => '_M_node', - 'offset' => '0', - 'type' => '557394' - } - }, - 'Name' => 'struct std::__cxx11::_List_base >::_List_impl', - 'NameSpace' => 'std::__cxx11::_List_base >', - 'Protected' => 1, - 'Size' => '24', - 'Type' => 'Struct' - }, - '52148' => { - 'Header' => 'struct_tm.h', - 'Line' => '7', - 'Memb' => { - '0' => { - 'name' => 'tm_sec', - 'offset' => '0', - 'type' => '50231' - }, - '1' => { - 'name' => 'tm_min', - 'offset' => '4', - 'type' => '50231' - }, - '10' => { - 'name' => 'tm_zone', - 'offset' => '48', - 'type' => '51127' - }, - '2' => { - 'name' => 'tm_hour', - 'offset' => '8', - 'type' => '50231' - }, - '3' => { - 'name' => 'tm_mday', - 'offset' => '12', - 'type' => '50231' - }, - '4' => { - 'name' => 'tm_mon', - 'offset' => '16', - 'type' => '50231' - }, - '5' => { - 'name' => 'tm_year', - 'offset' => '20', - 'type' => '50231' - }, - '6' => { - 'name' => 'tm_wday', - 'offset' => '24', - 'type' => '50231' - }, - '7' => { - 'name' => 'tm_yday', - 'offset' => '28', - 'type' => '50231' - }, - '8' => { - 'name' => 'tm_isdst', - 'offset' => '32', - 'type' => '50231' - }, - '9' => { - 'name' => 'tm_gmtoff', - 'offset' => '40', - 'type' => '50244' - } - }, - 'Name' => 'struct tm', - 'Size' => '56', - 'Type' => 'Struct' - }, - '521844' => { - 'Base' => { - '520857' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_list.h', - 'Line' => '552', - 'Name' => 'std::__cxx11::list', - 'NameSpace' => 'std::__cxx11', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '652179' - } - }, - 'Type' => 'Class' - }, - '52528' => { - 'BaseType' => '51223', - 'Name' => 'wchar_t**', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5276064' => { - 'Header' => 'filedatepatternconverter.h', - 'Line' => '37', - 'Name' => 'log4cxx::pattern::FileDatePatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5675694' + } + }, + 'Type' => 'Struct' + }, + '5502753' => { + 'Base' => { + '5502189' => { + 'pos' => '0' + }, + '5502495' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::JSONLayout::JSONLayoutPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5675694' + } + }, + 'Type' => 'Struct' + }, + '5503717' => { + 'Base' => { + '5502753' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5675694' + } + }, 'Type' => 'Class' }, - '529953' => { - 'Base' => { - '628340' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'wchar_t' - } - }, - 'Type' => 'Class' - }, - '53490' => { - 'BaseType' => '50167', - 'Header' => 'types.h', - 'Line' => '42', - 'Name' => '__uint32_t', - 'Size' => '4', - 'Type' => 'Typedef' - }, - '5349994' => { + '5505159' => { + 'Base' => { + '5501297' => { + 'pos' => '0' + } + }, 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5374856' + 'type' => '5655921' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5500323' } }, 'Type' => 'Struct' }, - '5350080' => { + '5505360' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '5351612' + 'type' => '5505159' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5374856' + 'type' => '5655921' }, '1' => { 'key' => '_Dp', - 'type' => '5349994' + 'type' => '5500323' } }, 'Type' => 'Class' }, - '53502' => { - 'BaseType' => '50244', - 'Header' => 'types.h', - 'Line' => '44', - 'Name' => '__int64_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '5350403' => { - 'Base' => { - '5349994' => { - 'pos' => '0' - } + '5505979' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656114' + } + }, + 'Type' => 'Struct' + }, + '5506953' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5509373' + } }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656114' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5505979' + } + }, + 'Type' => 'Class' + }, + '5507587' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5505979' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '5349994' + 'type' => '5505979' } }, 'Type' => 'Struct' }, - '5350656' => { + '5507845' => { 'Base' => { - '5350403' => { + '5507587' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '5349994' + 'type' => '5505979' } }, 'Type' => 'Struct' }, - '5350952' => { + '5508151' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '5379299' + 'type' => '5675924' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::FileInputStream::FileInputStreamPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::HTMLLayout::HTMLLayoutPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '5379299' + 'type' => '5675924' } }, 'Type' => 'Struct' }, - '5351212' => { + '5508409' => { 'Base' => { - '5350656' => { + '5507845' => { 'pos' => '0' }, - '5350952' => { + '5508151' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::FileInputStream::FileInputStreamPrivate*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::HTMLLayout::HTMLLayoutPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '5379299' + 'type' => '5675924' } }, 'Type' => 'Struct' }, - '53514' => { - 'BaseType' => '50193', - 'Header' => 'types.h', - 'Line' => '45', - 'Name' => '__uint64_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '5351612' => { + '5509373' => { 'Base' => { - '5351212' => { + '5508409' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '5379299' + 'type' => '5675924' } }, 'Type' => 'Class' }, - '5351941' => { + '5510815' => { + 'Base' => { + '5506953' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656114' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5505979' + } + }, + 'Type' => 'Struct' + }, + '5511016' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '5350080' + 'type' => '5510815' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5374856' + 'type' => '5656114' }, '1' => { 'key' => '_Dp', - 'type' => '5349994' + 'type' => '5505979' } }, 'Type' => 'Class' }, - '53742' => { - 'BaseType' => '53502', - 'Header' => 'stdint-intn.h', - 'Line' => '27', - 'Name' => 'int64_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '5374838' => { - 'Base' => { - '1340484' => { - 'pos' => '0' - } - }, - 'Header' => 'fileinputstream.h', - 'Line' => '36', + '5511635' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656319' + } + }, + 'Type' => 'Struct' + }, + '5512609' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '5351941' + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5515029' } }, - 'Name' => 'log4cxx::helpers::FileInputStream', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::FileInputStream::~FileInputStream() [_ZN7log4cxx7helpers15FileInputStreamD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::FileInputStream::~FileInputStream() [_ZN7log4cxx7helpers15FileInputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::FileInputStream::getClass() const [_ZNK7log4cxx7helpers15FileInputStream8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::FileInputStream::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15FileInputStream10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::FileInputStream::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15FileInputStream4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::FileInputStream::read(log4cxx::helpers::ByteBuffer&) [_ZN7log4cxx7helpers15FileInputStream4readERNS0_10ByteBufferE]', - '64' => '(int (*)(...)) log4cxx::helpers::FileInputStream::close() [_ZN7log4cxx7helpers15FileInputStream5closeEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileInputStream) [_ZTIN7log4cxx7helpers15FileInputStreamE]' - } + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656319' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5511635' + } + }, + 'Type' => 'Class' }, - '5374856' => { - 'Line' => '32', + '5513243' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', 'Memb' => { '0' => { - 'name' => 'pool', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '62082' - }, - '1' => { - 'name' => 'fileptr', - 'offset' => '16', - 'type' => '4781412' + 'type' => '5511635' } }, - 'Name' => 'struct log4cxx::helpers::FileInputStream::FileInputStreamPrivate', - 'NameSpace' => 'log4cxx::helpers::FileInputStream', - 'Private' => 1, - 'Size' => '24', - 'Source' => 'fileinputstream.cpp', + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5511635' + } + }, 'Type' => 'Struct' }, - '5374947' => { + '5513501' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '5513243' => { + 'access' => 'private', + 'pos' => '0' + } }, - 'Header' => 'fileinputstream.h', - 'Line' => '42', - 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream', - 'NameSpace' => 'log4cxx::helpers::FileInputStream', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::FileInputStream::ClazzFileInputStream::~ClazzFileInputStream() [_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::FileInputStream::ClazzFileInputStream::~ClazzFileInputStream() [_ZN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::FileInputStream::ClazzFileInputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers15FileInputStream20ClazzFileInputStream7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileInputStream::ClazzFileInputStream) [_ZTIN7log4cxx7helpers15FileInputStream20ClazzFileInputStreamE]' - } - }, - '5375105' => { - 'BaseType' => '5374947', - 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5375600' => { - 'BaseType' => '5374838', - 'Name' => 'log4cxx::helpers::FileInputStream const', - 'Size' => '16', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5511635' + } + }, + 'Type' => 'Struct' }, - '5375646' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '5513807' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '55091' + 'type' => '5676154' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::xml::XMLLayout::XMLLayoutPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '5374947' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5676154' } }, - 'Type' => 'Class' - }, - '53778' => { - 'BaseType' => '53490', - 'Header' => 'stdint-uintn.h', - 'Line' => '26', - 'Name' => 'uint32_t', - 'Size' => '4', - 'Type' => 'Typedef' - }, - '53790' => { - 'BaseType' => '53514', - 'Header' => 'stdint-uintn.h', - 'Line' => '27', - 'Name' => 'uint64_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '5379299' => { - 'BaseType' => '5374856', - 'Name' => 'struct log4cxx::helpers::FileInputStream::FileInputStreamPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5380065' => { - 'BaseType' => '5375646', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5380071' => { - 'BaseType' => '5380065', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5380269' => { - 'BaseType' => '5375600', - 'Name' => 'log4cxx::helpers::FileInputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5380275' => { - 'BaseType' => '5380269', - 'Name' => 'log4cxx::helpers::FileInputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5380280' => { - 'BaseType' => '5374838', - 'Name' => 'log4cxx::helpers::FileInputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5380286' => { - 'BaseType' => '5380280', - 'Name' => 'log4cxx::helpers::FileInputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5380309' => { - 'BaseType' => '5374947', - 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5380315' => { - 'BaseType' => '5380309', - 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5380320' => { - 'BaseType' => '5375105', - 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5380326' => { - 'BaseType' => '5380320', - 'Name' => 'log4cxx::helpers::FileInputStream::ClazzFileInputStream const*const', - 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Struct' }, - '54166' => { - 'BaseType' => '54172', - 'Name' => 'void const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '54172' => { - 'BaseType' => '1', - 'Name' => 'void const', - 'Type' => 'Const' - }, - '5441801' => { + '5514065' => { + 'Base' => { + '5513501' => { + 'pos' => '0' + }, + '5513807' => { + 'access' => 'private', + 'pos' => '1' + } + }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::xml::XMLLayout::XMLLayoutPrivate*>', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '5465545' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => undef, + 'type' => '5676154' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '5441949' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + '5515029' => { + 'Base' => { + '5514065' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '5465545' + 'key' => undef, + 'type' => '5676154' } }, - 'Type' => 'Struct' - }, - '5441963' => { - 'BaseType' => '5465545', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' + 'Type' => 'Class' }, - '5441986' => { + '5516471' => { 'Base' => { - '5441801' => { + '5512609' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656319' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5511635' + } + }, + 'Type' => 'Struct' + }, + '5516672' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => '_M_t', 'offset' => '0', - 'type' => '5468357' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '5516471' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5465545' + 'type' => '5656319' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Dp', + 'type' => '5511635' } }, 'Type' => 'Class' }, - '5442272' => { - 'BaseType' => '5441963', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '5442682' => { - 'Base' => { - '5441986' => { - 'pos' => '0' - } - }, + '5517291' => { 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5465545' + 'type' => '5656715' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '5463903' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '5518265' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_t', 'offset' => '0', - 'type' => '55091' + 'type' => '5520685' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '5465579' + 'key' => '_Tp', + 'type' => '5656715' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5517291' } }, 'Type' => 'Class' }, - '5465545' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } + '5518899' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5517291' + } }, - 'Header' => 'filelocationpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28FileLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FileLocationPatternConverter) [_ZTIN7log4cxx7pattern28FileLocationPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::~FileLocationPatternConverter() [_ZN7log4cxx7pattern28FileLocationPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::~FileLocationPatternConverter() [_ZN7log4cxx7pattern28FileLocationPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern28FileLocationPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28FileLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28FileLocationPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5517291' + } + }, + 'Type' => 'Struct' }, - '5465579' => { + '5519157' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '5518899' => { + 'access' => 'private', + 'pos' => '0' + } }, - 'Header' => 'filelocationpatternconverter.h', - 'Line' => '39', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern::FileLocationPatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter::~ClazzFileLocationPatternConverter() [_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter::~ClazzFileLocationPatternConverter() [_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter) [_ZTIN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterE]' - } - }, - '5465737' => { - 'BaseType' => '5465579', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5466142' => { - 'BaseType' => '5465545', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '5468067' => { - 'BaseType' => '5463903', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5468073' => { - 'BaseType' => '5468067', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5468357' => { - 'BaseType' => '5442272', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5468375' => { - 'BaseType' => '5465545', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5468381' => { - 'BaseType' => '5468375', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5468403' => { - 'BaseType' => '5442682', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '5468574' => { - 'BaseType' => '5466142', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5517291' + } + }, + 'Type' => 'Struct' }, - '5468580' => { - 'BaseType' => '5468574', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter const*const', + '5519463' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5676384' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::FilterBasedTriggeringPolicy::FilterBasedTriggeringPolicyPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5676384' + } + }, + 'Type' => 'Struct' }, - '5468891' => { - 'BaseType' => '5465579', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter*', + '5519721' => { + 'Base' => { + '5519157' => { + 'pos' => '0' + }, + '5519463' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::FilterBasedTriggeringPolicy::FilterBasedTriggeringPolicyPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5676384' + } + }, + 'Type' => 'Struct' }, - '5468897' => { - 'BaseType' => '5468891', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter*const', + '5520685' => { + 'Base' => { + '5519721' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5676384' + } + }, + 'Type' => 'Class' }, - '5468902' => { - 'BaseType' => '5465737', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter const*', + '5522127' => { + 'Base' => { + '5518265' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656715' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5517291' + } + }, + 'Type' => 'Struct' }, - '5468908' => { - 'BaseType' => '5468902', - 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter const*const', + '5522328' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5522127' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656715' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5517291' + } + }, + 'Type' => 'Class' }, - '54836' => { - 'Header' => 'thread-shared-types.h', - 'Line' => '49', - 'Memb' => { - '0' => { - 'name' => '__prev', - 'offset' => '0', - 'type' => '54876' - }, - '1' => { - 'name' => '__next', - 'offset' => '8', - 'type' => '54876' - } - }, - 'Name' => 'struct __pthread_internal_list', - 'Size' => '16', - 'Type' => 'Struct' - }, - '54876' => { - 'BaseType' => '54836', - 'Name' => 'struct __pthread_internal_list*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '54882' => { - 'BaseType' => '54836', - 'Header' => 'thread-shared-types.h', - 'Line' => '53', - 'Name' => '__pthread_list_t', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '54894' => { - 'Header' => 'struct_mutex.h', - 'Line' => '22', - 'Memb' => { - '0' => { - 'name' => '__lock', - 'offset' => '0', - 'type' => '50231' - }, - '1' => { - 'name' => '__count', - 'offset' => '4', - 'type' => '50167' - }, - '2' => { - 'name' => '__owner', - 'offset' => '8', - 'type' => '50231' - }, - '3' => { - 'name' => '__nusers', - 'offset' => '12', - 'type' => '50167' - }, - '4' => { - 'name' => '__kind', - 'offset' => '16', - 'type' => '50231' - }, - '5' => { - 'name' => '__spins', - 'offset' => '20', - 'type' => '50224' - }, - '6' => { - 'name' => '__elision', - 'offset' => '22', - 'type' => '50224' - }, - '7' => { - 'name' => '__list', - 'offset' => '24', - 'type' => '54882' - } - }, - 'Name' => 'struct __pthread_mutex_s', - 'Size' => '40', - 'Type' => 'Struct' - }, - '55012' => { - 'Header' => 'pthreadtypes.h', - 'Line' => '68', - 'Memb' => { - '0' => { - 'name' => '__data', - 'offset' => '0', - 'type' => '54894' - }, - '1' => { - 'name' => '__size', - 'offset' => '0', - 'type' => '55063' - }, - '2' => { - 'name' => '__align', - 'offset' => '0', - 'type' => '50244' - } - }, - 'Name' => 'union pthread_mutex_t', - 'Size' => '40', - 'Type' => 'Union' - }, - '55063' => { - 'BaseType' => '50671', - 'Name' => 'char[40]', - 'Size' => '40', - 'Type' => 'Array' - }, - '55079' => { - 'BaseType' => '55012', - 'Header' => 'pthreadtypes.h', - 'Line' => '72', - 'Name' => 'pthread_mutex_t', - 'Size' => '40', - 'Type' => 'Typedef' - }, - '55091' => { - 'BaseType' => '50671', - 'Name' => 'char[8]', - 'Size' => '8', - 'Type' => 'Array' - }, - '55170' => { - 'Name' => 'void(*)()', - 'Return' => '1', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '55176' => { - 'Name' => 'void()', - 'Return' => '1', - 'Type' => 'Func' - }, - '554758' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { + '55242029' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { '0' => { - 'key' => '_Alloc', - 'type' => '529953' + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Type' => 'Struct' - }, - '554772' => { - 'BaseType' => '51223', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits >::pointer', - 'NameSpace' => 'std::allocator_traits >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '554835' => { - 'BaseType' => '7956', - 'Header' => 'alloc_traits.h', - 'Line' => '414', - 'Name' => 'std::allocator_traits >::size_type', - 'NameSpace' => 'std::allocator_traits >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '5551212' => { + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5659477' + } + }, + 'Type' => 'Class' + }, + '55248031' => { + 'Base' => { + '54320723' => { + 'pos' => '0' + } + }, + 'Line' => '37', + 'Memb' => { + '0' => { + 'name' => 'writer', + 'offset' => '836', + 'type' => '3335202' + } + }, + 'Name' => 'struct log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv', + 'NameSpace' => 'log4cxx::net::XMLSocketAppender', + 'Private' => 1, + 'Size' => '360', + 'Source' => 'xmlsocketappender.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv::~XMLSocketAppenderPriv() [_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD2Ev]', + '24' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv::~XMLSocketAppenderPriv() [_ZN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv) [_ZTIN7log4cxx3net17XMLSocketAppender21XMLSocketAppenderPrivE]' + } + }, + '55248946' => { + 'BaseType' => '5659468', + 'Name' => 'log4cxx::net::XMLSocketAppender const', + 'Size' => '16', + 'Type' => 'Const' + }, + '55262169' => { + 'BaseType' => '55242029', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '55262174' => { + 'BaseType' => '55262169', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '55262317' => { + 'BaseType' => '55248031', + 'Name' => 'struct log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '55262322' => { + 'BaseType' => '55262317', + 'Name' => 'struct log4cxx::net::XMLSocketAppender::XMLSocketAppenderPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '55264804' => { + 'BaseType' => '55248946', + 'Name' => 'log4cxx::net::XMLSocketAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '55264809' => { + 'BaseType' => '55264804', + 'Name' => 'log4cxx::net::XMLSocketAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '55264819' => { + 'BaseType' => '5680163', + 'Name' => 'log4cxx::net::XMLSocketAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '55264963' => { + 'BaseType' => '5680153', + 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '55264973' => { + 'BaseType' => '5680158', + 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5528913' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5576068' + 'type' => '5657047' } }, 'Type' => 'Struct' }, - '5551298' => { + '5529887' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '5552830' + 'type' => '5532307' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5576068' + 'type' => '5657047' }, '1' => { 'key' => '_Dp', - 'type' => '5551212' + 'type' => '5528913' } }, 'Type' => 'Class' }, - '5551621' => { - 'Base' => { - '5551212' => { - 'pos' => '0' - } - }, + '5530521' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5528913' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '5551212' + 'type' => '5528913' } }, 'Type' => 'Struct' }, - '5551874' => { + '5530779' => { 'Base' => { - '5551621' => { + '5530521' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '5551212' + 'type' => '5528913' } }, 'Type' => 'Struct' }, - '5552170' => { + '5531085' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '5580573' + 'type' => '5676849' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::FileOutputStream::FileOutputStreamPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::RolloverDescription::RolloverDescriptionPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '5580573' + 'type' => '5676849' } }, 'Type' => 'Struct' }, - '5552430' => { + '5531343' => { 'Base' => { - '5551874' => { + '5530779' => { 'pos' => '0' }, - '5552170' => { + '5531085' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::FileOutputStream::FileOutputStreamPrivate*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::RolloverDescription::RolloverDescriptionPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '5580573' + 'type' => '5676849' } }, 'Type' => 'Struct' }, - '5552830' => { + '5532307' => { 'Base' => { - '5552430' => { + '5531343' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '5580573' + 'type' => '5676849' } }, 'Type' => 'Class' }, - '555309' => { - 'BaseType' => '513815', - 'Header' => 'stringfwd.h', - 'Line' => '83', - 'Name' => 'std::wstring', - 'NameSpace' => 'std', - 'Size' => '32', - 'Type' => 'Typedef' - }, - '5553159' => { + '5533749' => { + 'Base' => { + '5529887' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657047' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5528913' + } + }, + 'Type' => 'Struct' + }, + '5533950' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '5551298' + 'type' => '5533749' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5576068' + 'type' => '5657047' }, '1' => { 'key' => '_Dp', - 'type' => '5551212' + 'type' => '5528913' } }, 'Type' => 'Class' }, - '555321' => { - 'BaseType' => '555309', - 'Name' => 'std::wstring const', - 'Size' => '32', - 'Type' => 'Const' - }, - '55602' => { - 'BaseType' => '51958', - 'Name' => 'char**', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '556153' => { - 'Header' => 'stl_tree.h', - 'Line' => '99', - 'Memb' => { - '0' => { - 'name' => '_S_red', - 'value' => '0' - }, - '1' => { - 'name' => '_S_black', - 'value' => '1' - } - }, - 'Name' => 'enum std::_Rb_tree_color', - 'NameSpace' => 'std', - 'Size' => '4', - 'Type' => 'Enum' - }, - '556185' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '101', - 'Memb' => { - '0' => { - 'name' => '_M_color', - 'offset' => '0', - 'type' => '556153' - }, - '1' => { - 'name' => '_M_parent', - 'offset' => '8', - 'type' => '556211' - }, - '2' => { - 'name' => '_M_left', - 'offset' => '16', - 'type' => '556211' - }, - '3' => { - 'name' => '_M_right', - 'offset' => '24', - 'type' => '556211' - } - }, - 'Name' => 'struct std::_Rb_tree_node_base', - 'NameSpace' => 'std', - 'Size' => '32', - 'Type' => 'Struct' - }, - '556211' => { - 'BaseType' => '650756', - 'Header' => 'stl_tree.h', - 'Line' => '103', - 'Name' => 'std::_Rb_tree_node_base::_Base_ptr', - 'NameSpace' => 'std::_Rb_tree_node_base', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '556381' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '168', - 'Memb' => { - '0' => { - 'name' => '_M_header', - 'offset' => '0', - 'type' => '556185' - }, - '1' => { - 'name' => '_M_node_count', - 'offset' => '32', - 'type' => '7956' - } - }, - 'Name' => 'struct std::_Rb_tree_header', - 'NameSpace' => 'std', - 'Size' => '40', - 'Type' => 'Struct' - }, - '557205' => { - 'Copied' => 1, - 'Header' => 'stl_list.h', - 'Line' => '80', - 'Memb' => { - '0' => { - 'name' => '_M_next', - 'offset' => '0', - 'type' => '650879' - }, - '1' => { - 'name' => '_M_prev', - 'offset' => '8', - 'type' => '650879' - } - }, - 'Name' => 'struct std::__detail::_List_node_base', - 'NameSpace' => 'std::__detail', - 'Size' => '16', - 'Type' => 'Struct' - }, - '557394' => { - 'Base' => { - '557205' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_list.h', - 'Line' => '103', - 'Memb' => { - '0' => { - 'name' => '_M_size', - 'offset' => '16', - 'type' => '7956' - } - }, - 'Name' => 'struct std::__detail::_List_node_header', - 'NameSpace' => 'std::__detail', - 'Size' => '24', - 'Type' => 'Struct' - }, - '557567' => { - 'Header' => 'std_function.h', - 'Line' => '77', - 'Memb' => { - '0' => { - 'name' => '_M_object', - 'offset' => '0', - 'type' => '50560' - }, - '1' => { - 'name' => '_M_const_object', - 'offset' => '0', - 'type' => '54166' - }, - '2' => { - 'name' => '_M_function_pointer', - 'offset' => '0', - 'type' => '55170' - }, - '3' => { - 'name' => '_M_member_pointer', - 'offset' => '0', - 'type' => '650930' - } - }, - 'Name' => 'union std::_Nocopy_types', - 'NameSpace' => 'std', - 'Size' => '16', - 'Type' => 'Union' - }, - '5576068' => { - 'Line' => '32', + '5534569' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657224' + } + }, + 'Type' => 'Struct' + }, + '5535543' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', 'Memb' => { '0' => { - 'name' => 'pool', + 'access' => 'private', + 'name' => '_M_t', 'offset' => '0', - 'type' => '62082' - }, - '1' => { - 'name' => 'fileptr', - 'offset' => '16', - 'type' => '4781412' + 'type' => '5537963' } }, - 'Name' => 'struct log4cxx::helpers::FileOutputStream::FileOutputStreamPrivate', - 'NameSpace' => 'log4cxx::helpers::FileOutputStream', - 'Private' => 1, - 'Size' => '24', - 'Source' => 'fileoutputstream.cpp', + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657224' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5534569' + } + }, + 'Type' => 'Class' + }, + '5536177' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5534569' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5534569' + } + }, 'Type' => 'Struct' }, - '5576159' => { + '5536435' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '5536177' => { + 'access' => 'private', + 'pos' => '0' + } }, - 'Header' => 'fileoutputstream.h', - 'Line' => '41', - 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream', - 'NameSpace' => 'log4cxx::helpers::FileOutputStream', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::ClazzFileOutputStream::~ClazzFileOutputStream() [_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::ClazzFileOutputStream::~ClazzFileOutputStream() [_ZN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::FileOutputStream::ClazzFileOutputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers16FileOutputStream21ClazzFileOutputStream7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileOutputStream::ClazzFileOutputStream) [_ZTIN7log4cxx7helpers16FileOutputStream21ClazzFileOutputStreamE]' - } - }, - '557630' => { - 'Copied' => 1, - 'Name' => 'std::_Undefined_class', - 'NameSpace' => 'std', - 'Type' => 'Class' - }, - '5576317' => { - 'BaseType' => '5576159', - 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream const', - 'Size' => '8', - 'Type' => 'Const' - }, - '557635' => { - 'Header' => 'std_function.h', - 'Line' => '85', - 'Memb' => { - '0' => { - 'name' => '_M_unused', - 'offset' => '0', - 'type' => '557567' - }, - '1' => { - 'name' => '_M_pod_data', - 'offset' => '0', - 'type' => '61461' - } - }, - 'Name' => 'union std::_Any_data', - 'NameSpace' => 'std', - 'Size' => '16', - 'Type' => 'Union' - }, - '5576874' => { - 'BaseType' => '4967496', - 'Name' => 'log4cxx::helpers::FileOutputStream const', - 'Size' => '16', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5534569' + } + }, + 'Type' => 'Struct' }, - '5576920' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '5536741' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '55091' + 'type' => '5677079' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate*>', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '5576159' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5677079' } }, - 'Type' => 'Class' - }, - '557734' => { - 'BaseType' => '557635', - 'Name' => 'union std::_Any_data const', - 'Size' => '16', - 'Type' => 'Const' - }, - '557739' => { - 'Header' => 'std_function.h', - 'Line' => '104', - 'Memb' => { - '0' => { - 'name' => '__get_type_info', - 'value' => '0' - }, - '1' => { - 'name' => '__get_functor_ptr', - 'value' => '1' - }, - '2' => { - 'name' => '__clone_functor', - 'value' => '2' - }, - '3' => { - 'name' => '__destroy_functor', - 'value' => '3' - } - }, - 'Name' => 'enum std::_Manager_operation', - 'NameSpace' => 'std', - 'Size' => '4', - 'Type' => 'Enum' - }, - '557783' => { - 'Copied' => 1, - 'Header' => 'std_function.h', - 'Line' => '131', - 'Memb' => { - '0' => { - 'name' => '_M_functor', - 'offset' => '0', - 'type' => '557635' - }, - '1' => { - 'name' => '_M_manager', - 'offset' => '16', - 'type' => '557933' - } - }, - 'Name' => 'std::_Function_base', - 'NameSpace' => 'std', - 'Size' => '24', - 'Type' => 'Class' - }, - '557933' => { - 'BaseType' => '650969', - 'Header' => 'std_function.h', - 'Line' => '265', - 'Name' => 'std::_Function_base::_Manager_type', - 'NameSpace' => 'std::_Function_base', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '5580573' => { - 'BaseType' => '5576068', - 'Name' => 'struct log4cxx::helpers::FileOutputStream::FileOutputStreamPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5581324' => { - 'BaseType' => '5576920', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5581330' => { - 'BaseType' => '5581324', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5581528' => { - 'BaseType' => '5576874', - 'Name' => 'log4cxx::helpers::FileOutputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5581534' => { - 'BaseType' => '5581528', - 'Name' => 'log4cxx::helpers::FileOutputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '5581545' => { - 'BaseType' => '4977476', - 'Name' => 'log4cxx::helpers::FileOutputStream*const', - 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Struct' }, - '5581568' => { - 'BaseType' => '5576159', - 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream*', + '5536999' => { + 'Base' => { + '5536435' => { + 'pos' => '0' + }, + '5536741' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5677079' + } + }, + 'Type' => 'Struct' }, - '5581574' => { - 'BaseType' => '5581568', - 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream*const', + '5537963' => { + 'Base' => { + '5536999' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5677079' + } + }, + 'Type' => 'Class' }, - '5581579' => { - 'BaseType' => '5576317', - 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream const*', + '5539405' => { + 'Base' => { + '5535543' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657224' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5534569' + } + }, + 'Type' => 'Struct' }, - '5581585' => { - 'BaseType' => '5581579', - 'Name' => 'log4cxx::helpers::FileOutputStream::ClazzFileOutputStream const*const', + '5539606' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5539405' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' - }, - '563225' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '647684' - } - }, - 'Type' => 'Struct' - }, - '563311' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '564842' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '647684' - }, - '1' => { - 'key' => '_Dp', - 'type' => '563225' - } - }, - 'Type' => 'Class' - }, - '563634' => { - 'Base' => { - '563225' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '563225' - } - }, - 'Type' => 'Struct' - }, - '563887' => { - 'Base' => { - '563634' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '563225' - } - }, - 'Type' => 'Struct' - }, - '564182' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '651873' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::APRInitializer::APRInitializerPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '651873' - } - }, - 'Type' => 'Struct' - }, - '564442' => { - 'Base' => { - '563887' => { - 'pos' => '0' - }, - '564182' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::APRInitializer::APRInitializerPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '651873' - } - }, - 'Type' => 'Struct' - }, - '564842' => { - 'Base' => { - '564442' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '651873' - } - }, - 'Type' => 'Class' - }, - '565171' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '563311' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '647684' - }, - '1' => { - 'key' => '_Dp', - 'type' => '563225' - } - }, - 'Type' => 'Class' - }, - '565797' => { - 'Base' => { - '622766' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63470' - } - }, - 'Type' => 'Class' - }, - '566095' => { - 'BaseType' => '565797', - 'Name' => 'std::shared_ptrconst', - 'Size' => '16', - 'Type' => 'Const' - }, - '566100' => { - 'Base' => { - '557783' => { - 'pos' => '1' - }, - '566537' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'std_function.h', - 'Line' => '369', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_invoker', - 'offset' => '24', - 'type' => '566495' - } - }, - 'Name' => 'std::function()>', - 'NameSpace' => 'std', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => '_Signature', - 'type' => '696697' - } - }, - 'Type' => 'Class' - }, - '566495' => { - 'BaseType' => '652254', - 'Header' => 'std_function.h', - 'Line' => '610', - 'Name' => 'std::function()>::_Invoker_type', - 'NameSpace' => 'std::function()>', - 'Private' => 1, - 'Size' => '8', - 'Type' => 'Typedef' - }, - '566537' => { - 'Header' => 'refwrap.h', - 'Line' => '53', - 'Name' => 'struct std::_Maybe_unary_or_binary_function >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Res', - 'type' => '565797' - } - }, - 'Type' => 'Struct' - }, - '566565' => { - 'Copied' => 1, - 'Name' => 'std::stack, std::allocator >, std::__cxx11::basic_string, std::allocator > >, std::deque, std::allocator >, std::__cxx11::basic_string, std::allocator > >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > > >', - 'NameSpace' => 'std', - 'TParam' => { - '0' => { - 'type' => '566570' - }, - '1' => { - 'name' => 'std::deque, std::allocator >, std::__cxx11::basic_string, std::allocator > >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >' - } - }, - 'Type' => 'Class' - }, - '566570' => { - 'Name' => 'struct std::pair, std::allocator >, std::__cxx11::basic_string, std::allocator > >', - 'NameSpace' => 'std', - 'TParam' => { - '0' => { - 'name' => 'std::__cxx11::basic_string, std::allocator >' - }, - '1' => { - 'name' => 'std::__cxx11::basic_string, std::allocator >' - } - }, - 'Type' => 'Struct' - }, - '566575' => { - 'Copied' => 1, - 'Name' => 'std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator >, std::__cxx11::basic_string, std::allocator > > > >', - 'NameSpace' => 'std', - 'TParam' => { - '0' => { - 'name' => 'std::__cxx11::basic_string, std::allocator >' - }, - '1' => { - 'name' => 'std::__cxx11::basic_string, std::allocator >' - }, - '2' => { - 'name' => 'std::less, std::allocator > >' - }, - '3' => { - 'type' => '10171036' - } - }, - 'Type' => 'Class' - }, - '566580' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '648263' - } - }, - 'Type' => 'Struct' - }, - '566666' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '568197' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '648263' - }, - '1' => { - 'key' => '_Dp', - 'type' => '566580' - } - }, - 'Type' => 'Class' - }, - '566989' => { - 'Base' => { - '566580' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '566580' - } - }, - 'Type' => 'Struct' - }, - '567242' => { - 'Base' => { - '566989' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '566580' - } - }, - 'Type' => 'Struct' - }, - '567537' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '652409' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ThreadSpecificData::ThreadSpecificDataPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '652409' - } - }, - 'Type' => 'Struct' - }, - '5676229' => { - 'Header' => 'widelife.h', - 'Line' => '36', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657224' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5534569' + } + }, + 'Type' => 'Class' + }, + '5540225' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657573' + } + }, + 'Type' => 'Struct' + }, + '5541199' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_t', 'offset' => '0', - 'type' => '55091' + 'type' => '5543619' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '5677663' + 'key' => '_Tp', + 'type' => '5657573' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5540225' } }, 'Type' => 'Class' }, - '5677645' => { + '5541833' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5540225' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5540225' + } + }, + 'Type' => 'Struct' + }, + '5542091' => { 'Base' => { - '63730' => { - 'pos' => '0' - } + '5541833' => { + 'access' => 'private', + 'pos' => '0' + } }, - 'Header' => 'filerenameaction.h', - 'Line' => '30', - 'Name' => 'log4cxx::rolling::FileRenameAction', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FileRenameAction) [_ZTIN7log4cxx7rolling16FileRenameActionE]', - '56' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::~FileRenameAction() [_ZN7log4cxx7rolling16FileRenameActionD1Ev]', - '64' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::~FileRenameAction() [_ZN7log4cxx7rolling16FileRenameActionD0Ev]', - '72' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::getClass() const [_ZNK7log4cxx7rolling16FileRenameAction8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16FileRenameAction10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16FileRenameAction4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::execute(log4cxx::helpers::Pool&) const [_ZNK7log4cxx7rolling16FileRenameAction7executeERNS_7helpers4PoolE]' - } + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5540225' + } + }, + 'Type' => 'Struct' + }, + '5542397' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5677309' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::TimeBasedRollingPolicy::TimeBasedRollingPolicyPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5677309' + } + }, + 'Type' => 'Struct' }, - '5677663' => { + '5542655' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '5542091' => { + 'pos' => '0' + }, + '5542397' => { + 'access' => 'private', + 'pos' => '1' + } }, - 'Header' => 'filerenameaction.h', - 'Line' => '34', - 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction', - 'NameSpace' => 'log4cxx::rolling::FileRenameAction', + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::TimeBasedRollingPolicy::TimeBasedRollingPolicyPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::ClazzFileRenameAction::~ClazzFileRenameAction() [_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::ClazzFileRenameAction::~ClazzFileRenameAction() [_ZN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::ClazzFileRenameAction::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling16FileRenameAction21ClazzFileRenameAction7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FileRenameAction::ClazzFileRenameAction) [_ZTIN7log4cxx7rolling16FileRenameAction21ClazzFileRenameActionE]' - } + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5677309' + } + }, + 'Type' => 'Struct' }, - '5677821' => { - 'BaseType' => '5677663', - 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction const', + '5543619' => { + 'Base' => { + '5542655' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5677309' + } + }, + 'Type' => 'Class' }, - '5677826' => { + '5545061' => { 'Base' => { - '63748' => { - 'pos' => '0' - } + '5541199' => { + 'pos' => '0' + } }, - 'Line' => '28', + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657573' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5540225' + } + }, + 'Type' => 'Struct' + }, + '5545262' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { - 'name' => 'source', - 'offset' => '72', - 'type' => '836412' - }, - '1' => { - 'name' => 'destination', - 'offset' => '80', - 'type' => '836412' - }, - '2' => { - 'name' => 'renameEmptyFile', - 'offset' => '88', - 'type' => '50284' + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5545061' } }, - 'Name' => 'struct log4cxx::rolling::FileRenameAction::FileRenameActionPrivate', - 'NameSpace' => 'log4cxx::rolling::FileRenameAction', - 'Private' => 1, - 'Size' => '96', - 'Source' => 'filerenameaction.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::FileRenameActionPrivate::~FileRenameActionPrivate() [_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD2Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::FileRenameAction::FileRenameActionPrivate::~FileRenameActionPrivate() [_ZN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FileRenameAction::FileRenameActionPrivate) [_ZTIN7log4cxx7rolling16FileRenameAction23FileRenameActionPrivateE]' - } + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5657573' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5540225' + } + }, + 'Type' => 'Class' }, - '567797' => { - 'Base' => { - '567242' => { - 'pos' => '0' - }, - '567537' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ThreadSpecificData::ThreadSpecificDataPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '652409' - } - }, - 'Type' => 'Struct' - }, - '5678405' => { - 'BaseType' => '5677645', - 'Name' => 'log4cxx::rolling::FileRenameAction const', + '5545851' => { + 'Base' => { + '19933885' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', 'Size' => '16', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'type' => '3605480' + } + }, + 'Type' => 'Class' }, - '5680985' => { - 'BaseType' => '5676229', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' + '5547072' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656509' + } + }, + 'Type' => 'Struct' }, - '5680991' => { - 'BaseType' => '5680985', - 'Name' => 'log4cxx::helpers::WideLife*const', + '5548046' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5550466' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656509' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5547072' + } + }, + 'Type' => 'Class' }, - '5681110' => { - 'BaseType' => '5677826', - 'Name' => 'struct log4cxx::rolling::FileRenameAction::FileRenameActionPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' + '5548680' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5547072' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '5547072' + } + }, + 'Type' => 'Struct' }, - '5681116' => { - 'BaseType' => '5681110', - 'Name' => 'struct log4cxx::rolling::FileRenameAction::FileRenameActionPrivate*const', - 'Size' => '8', - 'Type' => 'Const' + '5548938' => { + 'Base' => { + '5548680' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '5547072' + } + }, + 'Type' => 'Struct' }, - '5681490' => { - 'BaseType' => '5677645', - 'Name' => 'log4cxx::rolling::FileRenameAction*', + '5549244' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5677649' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::xml::DOMConfigurator::DOMConfiguratorPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5677649' + } + }, + 'Type' => 'Struct' }, - '5681496' => { - 'BaseType' => '5681490', - 'Name' => 'log4cxx::rolling::FileRenameAction*const', + '5549502' => { + 'Base' => { + '5548938' => { + 'pos' => '0' + }, + '5549244' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::xml::DOMConfigurator::DOMConfiguratorPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5677649' + } + }, + 'Type' => 'Struct' }, - '5681524' => { - 'BaseType' => '5678405', - 'Name' => 'log4cxx::rolling::FileRenameAction const*', + '5550466' => { + 'Base' => { + '5549502' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5677649' + } + }, + 'Type' => 'Class' }, - '5681530' => { - 'BaseType' => '5681524', - 'Name' => 'log4cxx::rolling::FileRenameAction const*const', + '5551908' => { + 'Base' => { + '5548046' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656509' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5547072' + } + }, + 'Type' => 'Struct' }, - '5681582' => { - 'BaseType' => '5677663', - 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction*', + '5552109' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '5551908' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656509' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5547072' + } + }, + 'Type' => 'Class' }, - '5681588' => { - 'BaseType' => '5681582', - 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction*const', - 'Size' => '8', - 'Type' => 'Const' + '5552789' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '565893' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '5681593' => { - 'BaseType' => '5677821', - 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction const*', - 'Size' => '8', - 'Type' => 'Pointer' + '5552937' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '565893' + } + }, + 'Type' => 'Struct' }, - '5681599' => { - 'BaseType' => '5681593', - 'Name' => 'log4cxx::rolling::FileRenameAction::ClazzFileRenameAction const*const', - 'Size' => '8', - 'Type' => 'Const' + '5552951' => { + 'BaseType' => '565893', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' }, - '568197' => { - 'Base' => { - '567797' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '652409' - } - }, - 'Type' => 'Class' - }, - '568480' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '566666' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '648263' - }, - '1' => { - 'key' => '_Dp', - 'type' => '566580' - } - }, - 'Type' => 'Class' - }, - '570751' => { - 'Copied' => 1, - 'Header' => 'atomic_base.h', - 'Line' => '258', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_i', - 'offset' => '0', - 'type' => '570782' - } - }, - 'Name' => 'struct std::__atomic_base', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_IntTp', - 'type' => '50284' - } - }, - 'Type' => 'Struct' - }, - '570782' => { - 'BaseType' => '50284', - 'Header' => 'atomic_base.h', - 'Line' => '264', - 'Name' => 'std::__atomic_base::__int_type', - 'NameSpace' => 'std::__atomic_base', - 'Private' => 1, - 'Size' => '1', - 'Type' => 'Typedef' - }, - '572884' => { - 'Copied' => 1, - 'Header' => 'atomic', - 'Line' => '63', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_base', - 'offset' => '0', - 'type' => '570751' - } - }, - 'Name' => 'struct std::atomic', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '50284' - } - }, - 'Type' => 'Struct' - }, - '5802453' => { + '5552974' => { + 'Base' => { + '5552789' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '5677904' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '565893' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '5553255' => { + 'BaseType' => '5552951', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '5553619' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5837567' + 'type' => '5659271' } }, 'Type' => 'Struct' }, - '5802539' => { + '5554593' => { 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Line' => '128', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '5804070' + 'type' => '5557013' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5837567' + 'type' => '5659271' }, '1' => { 'key' => '_Dp', - 'type' => '5802453' + 'type' => '5553619' } }, 'Type' => 'Class' }, - '5802862' => { - 'Base' => { - '5802453' => { - 'pos' => '0' - } - }, + '5555227' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5553619' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => '_Head', - 'type' => '5802453' + 'type' => '5553619' } }, 'Type' => 'Struct' }, - '5803115' => { + '5555485' => { 'Base' => { - '5802862' => { + '5555227' => { 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '1' }, '1' => { 'key' => undef, - 'type' => '5802453' + 'type' => '5553619' } }, 'Type' => 'Struct' }, - '5803410' => { + '5555791' => { 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '120', + 'Line' => '187', 'Memb' => { '0' => { 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '5843808' + 'type' => '5677954' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::FileWatchdog::FileWatchdogPrivate*>', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::varia::FallbackErrorHandler::FallbackErrorHandlerPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => '_Head', - 'type' => '5843808' + 'type' => '5677954' } }, 'Type' => 'Struct' }, - '5803670' => { + '5556049' => { 'Base' => { - '5803115' => { + '5555485' => { 'pos' => '0' }, - '5803410' => { + '5555791' => { 'access' => 'private', 'pos' => '1' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::FileWatchdog::FileWatchdogPrivate*>', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::varia::FallbackErrorHandler::FallbackErrorHandlerPrivate*>', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Idx', - 'type' => '50193', + 'type' => '190225', 'val' => '0' }, '1' => { 'key' => undef, - 'type' => '5843808' + 'type' => '5677954' } }, 'Type' => 'Struct' }, - '5804070' => { + '5557013' => { 'Base' => { - '5803670' => { + '5556049' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', + 'Line' => '981', + 'Name' => 'std::tuple', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => undef, - 'type' => '5843808' + 'type' => '5677954' } }, 'Type' => 'Class' }, - '5804399' => { + '5558455' => { + 'Base' => { + '5554593' => { + 'pos' => '0' + } + }, 'Copied' => 1, 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '5802539' - } - }, - 'Name' => 'std::unique_ptr >', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '5837567' + 'type' => '5659271' }, '1' => { 'key' => '_Dp', - 'type' => '5802453' + 'type' => '5553619' } }, - 'Type' => 'Class' - }, - '5824670' => { - 'BaseType' => '50231', - 'Name' => 'int volatile', - 'Size' => '4', - 'Type' => 'Volatile' + 'Type' => 'Struct' }, - '5837567' => { - 'Line' => '33', + '5558656' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { - 'name' => 'file', + 'access' => 'private', + 'name' => '_M_t', 'offset' => '0', - 'type' => '836407' - }, - '1' => { - 'name' => 'delay', - 'offset' => '8', - 'type' => '50244' - }, - '2' => { - 'name' => 'lastModif', - 'offset' => '16', - 'type' => '649587' - }, - '3' => { - 'name' => 'warnedAlready', - 'offset' => '24', - 'type' => '50284' - }, - '4' => { - 'name' => 'interrupted', - 'offset' => '28', - 'type' => '5824670' - }, - '5' => { - 'name' => 'pool', - 'offset' => '32', - 'type' => '62082' - }, - '6' => { - 'name' => 'thread', - 'offset' => '48', - 'type' => '749238' - }, - '7' => { - 'name' => 'interrupt', - 'offset' => '56', - 'type' => '761051' - }, - '8' => { - 'name' => 'interrupt_mutex', - 'offset' => '104', - 'type' => '41413' + 'type' => '5558455' } }, - 'Name' => 'struct log4cxx::helpers::FileWatchdog::FileWatchdogPrivate', - 'NameSpace' => 'log4cxx::helpers::FileWatchdog', - 'Private' => 1, - 'Size' => '144', - 'Source' => 'filewatchdog.cpp', - 'Type' => 'Struct' - }, - '5843808' => { - 'BaseType' => '5837567', - 'Name' => 'struct log4cxx::helpers::FileWatchdog::FileWatchdogPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '5980620' => { - 'BaseType' => '153674', - 'Name' => 'log4cxx::spi::Filter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '60235' => { - 'BaseType' => '55079', - 'Header' => 'gthr-default.h', - 'Line' => '50', - 'Name' => '__gthread_mutex_t', - 'Size' => '40', - 'Type' => 'Typedef' - }, - '6035650' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + 'Name' => 'std::unique_ptr >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '6058148' + 'type' => '5659271' + }, + '1' => { + 'key' => '_Dp', + 'type' => '5553619' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '6035736' => { + '5559245' => { + 'Base' => { + '5576436' => { + 'access' => 'private', + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Header' => 'stl_pair.h', + 'Line' => '211', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_t', + 'name' => 'first', 'offset' => '0', - 'type' => '6037273' + 'type' => '58800' + }, + '1' => { + 'name' => 'second', + 'offset' => '50', + 'type' => '216673' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'struct std::pairconst, log4cxx::helpers::Class const*>', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '40', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '6058148' + 'key' => '_T1', + 'type' => '58800' }, '1' => { - 'key' => '_Dp', - 'type' => '6035650' + 'key' => '_T2', + 'type' => '216673' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '6036059' => { + '5559862' => { 'Base' => { - '6035650' => { + '5621516' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, log4cxx::helpers::Class const*> >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '6035650' + 'name' => 'std::pair, std::allocator >, log4cxx::helpers::Class const*>' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '6036312' => { + '5560530' => { 'Base' => { - '6036059' => { - 'access' => 'private', + '5622140' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, log4cxx::helpers::Class const*> > >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '6035650' + 'name' => 'std::_Rb_tree_node, std::allocator >, log4cxx::helpers::Class const*> >' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '6036611' => { + '5560819' => { + 'Base' => { + '108124' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'stl_tree.h', + 'Line' => '216', 'Memb' => { '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '6060233' + 'name' => '_M_storage', + 'offset' => '50', + 'type' => '5622973' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::FilterBasedTriggeringPolicy::FilterBasedTriggeringPolicyPrivate*>', + 'Name' => 'struct std::_Rb_tree_nodeconst, log4cxx::helpers::Class const*> >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '72', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '6060233' + 'key' => '_Val', + 'type' => '5559245' } }, 'Type' => 'Struct' }, - '6036871' => { - 'Base' => { - '6036312' => { - 'pos' => '0' - }, - '6036611' => { - 'access' => 'private', - 'pos' => '1' - } - }, + '5561255' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::FilterBasedTriggeringPolicy::FilterBasedTriggeringPolicyPrivate*>', + 'Header' => 'stl_tree.h', + 'Line' => '425', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '5561269' + } + }, + 'Name' => 'std::_Rb_tree, std::pairconst, log4cxx::helpers::Class const*>, std::_Select1stconst, log4cxx::helpers::Class const*> >, std::less >, std::allocator, std::allocator >, log4cxx::helpers::Class const*> > >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '48', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Key', + 'type' => '51677' }, '1' => { - 'key' => undef, - 'type' => '6060233' + 'key' => '_Val', + 'type' => '5559245' + }, + '2' => { + 'key' => '_KeyOfValue', + 'type' => '5586622' + }, + '3' => { + 'key' => '_Compare', + 'type' => '2359512' + }, + '4' => { + 'key' => '_Alloc', + 'type' => '5559862' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '6037273' => { + '5561269' => { 'Base' => { - '6036871' => { + '108320' => { + 'pos' => '2' + }, + '2359588' => { + 'pos' => '1' + }, + '5560530' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', + 'Header' => 'stl_tree.h', + 'Line' => '660', + 'Name' => 'struct std::_Rb_tree, std::pairconst, log4cxx::helpers::Class const*>, std::_Select1stconst, log4cxx::helpers::Class const*> >, std::less >, std::allocator, std::allocator >, log4cxx::helpers::Class const*> > >::_Rb_tree_impl > >', + 'NameSpace' => 'std::_Rb_tree, std::pairconst, log4cxx::helpers::Class const*>, std::_Select1stconst, log4cxx::helpers::Class const*> >, std::less >, std::allocator, std::allocator >, log4cxx::helpers::Class const*> > >', + 'Protected' => 1, + 'Size' => '48', 'TParam' => { '0' => { - 'key' => undef, - 'type' => '6060233' + 'key' => '_Key_compare', + 'type' => '2359512' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '6037605' => { + '55623636' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647684' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '55623782' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647684' + } + }, + 'Type' => 'Struct' + }, + '55623796' => { + 'BaseType' => '5647684', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '55623819' => { + 'Base' => { + '55623636' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '55702336' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647684' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '55624097' => { + 'BaseType' => '55623796', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '55624628' => { + 'Base' => { + '55623819' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647684' + } + }, + 'Type' => 'Class' + }, + '5566635' => { 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Header' => 'stl_map.h', + 'Line' => '100', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_t', 'offset' => '0', - 'type' => '6035736' + 'type' => '5566648' } }, - 'Name' => 'std::unique_ptr >', + 'Name' => 'std::map, log4cxx::helpers::Class const*>', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '48', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '6058148' + 'key' => '_Key', + 'type' => '51677' }, '1' => { - 'key' => '_Dp', - 'type' => '6035650' + 'key' => '_Tp', + 'type' => '216673' } }, 'Type' => 'Class' }, - '6056799' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + '5566648' => { + 'BaseType' => '5561255', + 'Header' => 'stl_map.h', + 'Line' => '150', + 'Name' => 'std::map, log4cxx::helpers::Class const*>::_Rep_type', + 'NameSpace' => 'std::map, log4cxx::helpers::Class const*>', + 'Private' => 1, + 'Size' => '48', + 'Type' => 'Typedef' + }, + '55695880' => { + 'BaseType' => '55624628', + 'Header' => 'datagramsocket.h', + 'Line' => '32', + 'Name' => 'log4cxx::helpers::DatagramSocketPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '55697680' => { + 'BaseType' => '5673378', + 'Name' => 'log4cxx::helpers::SyslogWriter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '55702336' => { + 'BaseType' => '55624097', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '5576436' => { + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '189', + 'Name' => 'std::__pair_baseconst, log4cxx::helpers::Class const*>', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '6058239' + 'key' => '_U1', + 'type' => '58800' + }, + '1' => { + 'key' => '_U2', + 'type' => '216673' } }, 'Type' => 'Class' }, - '6058130' => { - 'Base' => { - '6059004' => { - 'pos' => '0' - } - }, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'Line' => '50', - 'Memb' => { - '0' => { - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '6037605' - } - }, - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::isTriggeringEvent(log4cxx::Appender*, std::shared_ptr const&, std::__cxx11::basic_string, std::allocator > const&, unsigned long) [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FilterBasedTriggeringPolicy) [_ZTIN7log4cxx7rolling27FilterBasedTriggeringPolicyE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::~FilterBasedTriggeringPolicy() [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD1Ev]', - '88' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::~FilterBasedTriggeringPolicy() [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD0Ev]', - '96' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::getClass() const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy8getClassEv]' - } - }, - '6058148' => { - 'Line' => '28', - 'Memb' => { - '0' => { - 'name' => 'headFilter', - 'offset' => '0', - 'type' => '151271' - }, - '1' => { - 'name' => 'tailFilter', - 'offset' => '16', - 'type' => '151271' - } - }, - 'Name' => 'struct log4cxx::rolling::FilterBasedTriggeringPolicy::FilterBasedTriggeringPolicyPrivate', - 'NameSpace' => 'log4cxx::rolling::FilterBasedTriggeringPolicy', - 'Size' => '32', - 'Source' => 'filterbasedtriggeringpolicy.cpp', - 'Type' => 'Struct' - }, - '6058239' => { - 'Base' => { - '62698' => { + '558569' => { + 'Base' => { + '566027' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'appenderattachableimpl.h', + 'Line' => '39', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '427309' + } + }, + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::AppenderAttachableImpl) [_ZTIN7log4cxx7helpers22AppenderAttachableImplE]', + '120' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::~AppenderAttachableImpl() [_ZN7log4cxx7helpers22AppenderAttachableImplD1Ev]', + '128' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::~AppenderAttachableImpl() [_ZN7log4cxx7helpers22AppenderAttachableImplD0Ev]', + '136' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::getClass() const [_ZNK7log4cxx7helpers22AppenderAttachableImpl8getClassEv]', + '144' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers22AppenderAttachableImpl10instanceofERKNS0_5ClassE]', + '152' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers22AppenderAttachableImpl4castERKNS0_5ClassE]', + '16' => '0u', + '160' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::addAppender(std::shared_ptr) [_ZN7log4cxx7helpers22AppenderAttachableImpl11addAppenderESt10shared_ptrINS_8AppenderEE]', + '168' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::getAllAppenders() const [_ZNK7log4cxx7helpers22AppenderAttachableImpl15getAllAppendersEv]', + '176' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::getAppender(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx7helpers22AppenderAttachableImpl11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '184' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::isAttached(std::shared_ptr) const [_ZNK7log4cxx7helpers22AppenderAttachableImpl10isAttachedESt10shared_ptrINS_8AppenderEE]', + '192' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::removeAllAppenders() [_ZN7log4cxx7helpers22AppenderAttachableImpl18removeAllAppendersEv]', + '200' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::removeAppender(std::shared_ptr) [_ZN7log4cxx7helpers22AppenderAttachableImpl14removeAppenderESt10shared_ptrINS_8AppenderEE]', + '208' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::removeAppender(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7helpers22AppenderAttachableImpl14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '558578' => { + 'Line' => '31', + 'Memb' => { + '0' => { + 'name' => 'appenderList', + 'offset' => '0', + 'type' => '946544' + }, + '1' => { + 'name' => 'm_mutex', + 'offset' => '36', + 'type' => '106135' + } + }, + 'Name' => 'struct log4cxx::helpers::AppenderAttachableImpl::priv_data', + 'NameSpace' => 'log4cxx::helpers::AppenderAttachableImpl', + 'Private' => 1, + 'Size' => '64', + 'Source' => 'appenderattachableimpl.cpp', + 'Type' => 'Struct' + }, + '558583' => { + 'Base' => { + '208442' => { 'pos' => '0' } - }, - 'Header' => 'filterbasedtriggeringpolicy.h', - 'Line' => '53', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy', - 'NameSpace' => 'log4cxx::rolling::FilterBasedTriggeringPolicy', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::~ClazzFilterBasedTriggeringPolicy() [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::~ClazzFilterBasedTriggeringPolicy() [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::newInstance() const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy) [_ZTIN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyE]' - } - }, - '6058459' => { - 'BaseType' => '6058239', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy const', - 'Size' => '8', - 'Type' => 'Const' - }, - '60586' => { - 'BaseType' => '50671', - 'Name' => 'char[1]', - 'Size' => '1', - 'Type' => 'Array' - }, - '6058999' => { - 'BaseType' => '6058130', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy const', - 'Size' => '16', - 'Type' => 'Const' + }, + 'Header' => 'appenderattachableimpl.h', + 'Line' => '54', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl', + 'NameSpace' => 'log4cxx::helpers::AppenderAttachableImpl', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl::~ClazzAppenderAttachableImpl() [_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl::~ClazzAppenderAttachableImpl() [_ZN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImpl7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl) [_ZTIN7log4cxx7helpers22AppenderAttachableImpl27ClazzAppenderAttachableImplE]' + } + }, + '5586566' => { + 'Header' => 'stl_function.h', + 'Line' => '117', + 'Name' => 'struct std::unary_functionconst, log4cxx::helpers::Class const*>, std::__cxx11::basic_stringconst>', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Arg', + 'type' => '5559245' + }, + '1' => { + 'key' => '_Result', + 'type' => '58800' + } + }, + 'Type' => 'Struct' }, - '6059004' => { + '5586622' => { 'Base' => { - '151305' => { - 'pos' => '0', - 'virtual' => 1 - }, - '63470' => { - 'pos' => '1', - 'virtual' => 1 - } + '5586566' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'triggeringpolicy.h', - 'Line' => '44', - 'Name' => 'log4cxx::rolling::TriggeringPolicy', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16TriggeringPolicy10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16TriggeringPolicy4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) __cxa_pure_virtual', - '128' => '(int (*)(...)) __cxa_pure_virtual', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TriggeringPolicy) [_ZTIN7log4cxx7rolling16TriggeringPolicyE]', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::getClass() const [_ZNK7log4cxx7rolling16TriggeringPolicy8getClassEv]' - } - }, - '6059149' => { - 'BaseType' => '6059004', - 'Name' => 'log4cxx::rolling::TriggeringPolicy const', - 'Type' => 'Const' - }, - '6060233' => { - 'BaseType' => '6058148', - 'Name' => 'struct log4cxx::rolling::FilterBasedTriggeringPolicy::FilterBasedTriggeringPolicyPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6060541' => { - 'BaseType' => '6056799', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6060547' => { - 'BaseType' => '6060541', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6060813' => { - 'BaseType' => '6058130', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6060819' => { - 'BaseType' => '6060813', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6060841' => { - 'BaseType' => '6058999', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6060847' => { - 'BaseType' => '6060841', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6060870' => { - 'BaseType' => '151271', - 'Name' => 'log4cxx::spi::FilterPtr&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '6060876' => { - 'BaseType' => '6058239', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6060882' => { - 'BaseType' => '6060876', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6060887' => { - 'BaseType' => '6058459', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6060893' => { - 'BaseType' => '6060887', - 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6087607' => { - 'BaseType' => '6059004', - 'Name' => 'log4cxx::rolling::TriggeringPolicy*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6087613' => { - 'BaseType' => '6087607', - 'Name' => 'log4cxx::rolling::TriggeringPolicy*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6090100' => { - 'BaseType' => '6059149', - 'Name' => 'log4cxx::rolling::TriggeringPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6090106' => { - 'BaseType' => '6090100', - 'Name' => 'log4cxx::rolling::TriggeringPolicy const*const', - 'Size' => '8', - 'Type' => 'Const' + 'Header' => 'stl_function.h', + 'Line' => '1166', + 'Name' => 'struct std::_Select1stconst, log4cxx::helpers::Class const*> >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Pair', + 'type' => '5559245' + } + }, + 'Type' => 'Struct' }, - '611383' => { + '558702' => { + 'BaseType' => '558583', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl const', + 'Size' => '8', + 'Type' => 'Const' + }, + '558708' => { + 'Base' => { + '209311' => { + 'pos' => '0' + } + }, + 'Header' => 'resourcebundle.h', + 'Line' => '35', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => 'parent', + 'offset' => '8', + 'type' => '18600155' + } + }, + 'Name' => 'log4cxx::helpers::ResourceBundle', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '24', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::getClass() const [_ZNK7log4cxx7helpers14ResourceBundle8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14ResourceBundle10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14ResourceBundle4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ResourceBundle) [_ZTIN7log4cxx7helpers14ResourceBundleE]' + } + }, + '558717' => { 'Base' => { - '632332' => { + '208442' => { 'pos' => '0' } }, + 'Header' => 'resourcebundle.h', + 'Line' => '38', + 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle', + 'NameSpace' => 'log4cxx::helpers::ResourceBundle', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::ClazzResourceBundle::~ClazzResourceBundle() [_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::ClazzResourceBundle::~ClazzResourceBundle() [_ZN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::ClazzResourceBundle::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14ResourceBundle19ClazzResourceBundle7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ResourceBundle::ClazzResourceBundle) [_ZTIN7log4cxx7helpers14ResourceBundle19ClazzResourceBundleE]' + } + }, + '558836' => { + 'BaseType' => '558717', + 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle const', + 'Size' => '8', + 'Type' => 'Const' + }, + '558842' => { + 'Header' => 'messagebuffer.h', + 'Line' => '39', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '439075' + } + }, + 'Name' => 'log4cxx::helpers::CharMessageBuffer', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class' + }, + '558855' => { + 'Base' => { + '29685746' => { + 'pos' => '0' + } + }, + 'Line' => '91', + 'Name' => 'struct log4cxx::helpers::CharMessageBuffer::CharMessageBufferPrivate', + 'NameSpace' => 'log4cxx::helpers::CharMessageBuffer', + 'Private' => 1, + 'Size' => '40', + 'Source' => 'messagebuffer.cpp', + 'Type' => 'Struct' + }, + '559722' => { + 'BaseType' => '558842', + 'Name' => 'log4cxx::helpers::CharMessageBuffer const', + 'Size' => '8', + 'Type' => 'Const' + }, + '559727' => { + 'BaseType' => '573448', + 'Header' => 'messagebuffer.h', + 'Line' => '32', + 'Name' => 'log4cxx::helpers::ios_base_manip', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '559739' => { + 'Header' => 'messagebuffer.h', + 'Line' => '404', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '444743' + } + }, + 'Name' => 'log4cxx::helpers::WideMessageBuffer', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class' + }, + '559753' => { + 'Base' => { + '29685893' => { + 'pos' => '0' + } + }, + 'Line' => '234', + 'Name' => 'struct log4cxx::helpers::WideMessageBuffer::WideMessageBufferPrivate', + 'NameSpace' => 'log4cxx::helpers::WideMessageBuffer', + 'Private' => 1, + 'Size' => '40', + 'Source' => 'messagebuffer.cpp', + 'Type' => 'Struct' + }, + '560667' => { + 'BaseType' => '559739', + 'Name' => 'log4cxx::helpers::WideMessageBuffer const', + 'Size' => '8', + 'Type' => 'Const' + }, + '560672' => { + 'Header' => 'messagebuffer.h', + 'Line' => '575', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '450399' + } + }, + 'Name' => 'log4cxx::helpers::MessageBuffer', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class' + }, + '560686' => { + 'Line' => '378', + 'Memb' => { + '0' => { + 'name' => 'cbuf', + 'offset' => '0', + 'type' => '558842' + }, + '1' => { + 'name' => 'wbuf', + 'offset' => '8', + 'type' => '29627731' + } + }, + 'Name' => 'struct log4cxx::helpers::MessageBuffer::MessageBufferPrivate', + 'NameSpace' => 'log4cxx::helpers::MessageBuffer', + 'Private' => 1, + 'Size' => '16', + 'Source' => 'messagebuffer.cpp', + 'Type' => 'Struct' + }, + '56072878' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647823' + } + }, + 'Type' => 'Struct' + }, + '56073852' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '56076283' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647823' + }, + '1' => { + 'key' => '_Dp', + 'type' => '56072878' + } + }, + 'Type' => 'Class' + }, + '56074497' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '56072878' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '56072878' + } + }, + 'Type' => 'Struct' + }, + '56074755' => { + 'Base' => { + '56074497' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '56072878' + } + }, + 'Type' => 'Struct' + }, + '56075061' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '5673378' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::SyslogWriter*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '5673378' + } + }, + 'Type' => 'Struct' + }, + '56075319' => { + 'Base' => { + '56074755' => { + 'pos' => '0' + }, + '56075061' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::SyslogWriter*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '5673378' + } + }, + 'Type' => 'Struct' + }, + '56076283' => { + 'Base' => { + '56075319' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '5673378' + } + }, + 'Type' => 'Class' + }, + '56077763' => { + 'Base' => { + '56073852' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647823' + }, + '1' => { + 'key' => '_Dp', + 'type' => '56072878' + } + }, + 'Type' => 'Struct' + }, + '56078018' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '56077763' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5647823' + }, + '1' => { + 'key' => '_Dp', + 'type' => '56072878' + } + }, + 'Type' => 'Class' + }, + '56161727' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5659853' + } + }, + 'Type' => 'Class' + }, + '56167354' => { + 'Base' => { + '1379591' => { + 'pos' => '0' + } + }, + 'Header' => 'syslogappender_priv.h', + 'Line' => '57', + 'Memb' => { + '0' => { + 'name' => 'syslogFacility', + 'offset' => '388', + 'type' => '190263' + }, + '1' => { + 'name' => 'facilityStr', + 'offset' => '402', + 'type' => '209661' + }, + '2' => { + 'name' => 'facilityPrinting', + 'offset' => '548', + 'type' => '174077' + }, + '3' => { + 'name' => 'sw', + 'offset' => '562', + 'type' => '56078018' + }, + '4' => { + 'name' => 'syslogHost', + 'offset' => '576', + 'type' => '209661' + }, + '5' => { + 'name' => 'syslogHostPort', + 'offset' => '626', + 'type' => '190263' + }, + '6' => { + 'name' => 'maxMessageLength', + 'offset' => '630', + 'type' => '190263' + } + }, + 'Name' => 'struct log4cxx::net::SyslogAppender::SyslogAppenderPriv', + 'NameSpace' => 'log4cxx::net::SyslogAppender', + 'Private' => 1, + 'Size' => '280', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::SyslogAppender::SyslogAppenderPriv::~SyslogAppenderPriv() [_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD1Ev]', + '24' => '(int (*)(...)) log4cxx::net::SyslogAppender::SyslogAppenderPriv::~SyslogAppenderPriv() [_ZN7log4cxx3net14SyslogAppender18SyslogAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SyslogAppender::SyslogAppenderPriv) [_ZTIN7log4cxx3net14SyslogAppender18SyslogAppenderPrivE]' + } + }, + '56168619' => { + 'BaseType' => '5659844', + 'Name' => 'log4cxx::net::SyslogAppender const', + 'Size' => '16', + 'Type' => 'Const' + }, + '56184680' => { + 'BaseType' => '56161727', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56184685' => { + 'BaseType' => '56184680', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56184791' => { + 'BaseType' => '56167354', + 'Name' => 'struct log4cxx::net::SyslogAppender::SyslogAppenderPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56184796' => { + 'BaseType' => '56184791', + 'Name' => 'struct log4cxx::net::SyslogAppender::SyslogAppenderPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56185943' => { + 'BaseType' => '56168619', + 'Name' => 'log4cxx::net::SyslogAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56185948' => { + 'BaseType' => '56185943', + 'Name' => 'log4cxx::net::SyslogAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56185958' => { + 'BaseType' => '5680203', + 'Name' => 'log4cxx::net::SyslogAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56186052' => { + 'BaseType' => '5680193', + 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56186062' => { + 'BaseType' => '5680198', + 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '561894' => { + 'BaseType' => '560672', + 'Name' => 'log4cxx::helpers::MessageBuffer const', + 'Size' => '8', + 'Type' => 'Const' + }, + '561899' => { 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator', - 'NameSpace' => 'std', + 'Header' => 'stringhelper.h', + 'Line' => '33', + 'Name' => 'log4cxx::helpers::StringHelper', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '652179' - } - }, 'Type' => 'Class' }, - '611797' => { - 'Base' => { - '632968' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', - 'NameSpace' => 'std', + '5621516' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, log4cxx::helpers::Class const*> >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5559245' + } + }, + 'Type' => 'Class' + }, + '5622140' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, log4cxx::helpers::Class const*> > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5560819' + } + }, + 'Type' => 'Class' + }, + '5622973' => { + 'Copied' => 1, + 'Header' => 'aligned_buffer.h', + 'Line' => '47', + 'Memb' => { + '0' => { + 'name' => '_M_storage', + 'offset' => '0', + 'type' => '1938128' + } + }, + 'Name' => 'struct __gnu_cxx::__aligned_membufconst, log4cxx::helpers::Class const*> >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '40', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5559245' + } + }, + 'Type' => 'Struct' + }, + '562299' => { + 'Header' => 'optionconverter.h', + 'Line' => '43', + 'Name' => 'log4cxx::helpers::OptionConverter', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '611948' - } - }, 'Type' => 'Class' }, - '611948' => { - 'Base' => { - '557205' => { - 'pos' => '0' - } - }, + '562694' => { 'Copied' => 1, - 'Header' => 'stl_list.h', - 'Line' => '166', + 'Header' => 'properties.h', + 'Line' => '32', 'Memb' => { '0' => { - 'name' => '_M_storage', - 'offset' => '16', - 'type' => '634795' + 'access' => 'private', + 'name' => 'properties', + 'offset' => '0', + 'type' => '5677529' } }, - 'Name' => 'struct std::_List_node', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '652179' - } - }, - 'Type' => 'Struct' + 'Name' => 'log4cxx::helpers::Properties', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class' }, - '613189' => { - 'Base' => { - '623376' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '208', + '562699' => { + 'BaseType' => '497510', + 'Header' => 'object.h', + 'Line' => '114', + 'Name' => 'log4cxx::helpers::ObjectPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Type' => 'Typedef' + }, + '562711' => { + 'BaseType' => '562699', + 'Name' => 'log4cxx::helpers::ObjectPtr const', + 'Type' => 'Const' + }, + '562716' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { - 'name' => 'first', + 'access' => 'private', + 'name' => 'storage', 'offset' => '0', - 'type' => '50200' - }, - '1' => { - 'name' => 'second', - 'offset' => '8', - 'type' => '565797' + 'type' => '197961' } }, - 'Name' => 'struct std::pair >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_T1', - 'type' => '50200' - }, - '1' => { - 'key' => '_T2', - 'type' => '565797' - } - }, - 'Type' => 'Struct' - }, - '613687' => { - 'Base' => { - '633642' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '1', + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'TParam' => { '0' => { - 'type' => '613189' + 'key' => 'T', + 'type' => '567101' } }, 'Type' => 'Class' }, - '614088' => { - 'Base' => { - '634237' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator > > >', - 'NameSpace' => 'std', + '563928' => { + 'BaseType' => '209678', + 'Name' => 'log4cxx::logchar const', 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '614239' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '614239' => { + '563933' => { 'Base' => { - '556185' => { + '209311' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '216', + 'Header' => 'level.h', + 'Line' => '48', 'Memb' => { '0' => { - 'name' => '_M_storage', - 'offset' => '32', - 'type' => '635018' + 'access' => 'private', + 'name' => 'name', + 'offset' => '8', + 'type' => '209661' + }, + '1' => { + 'access' => 'private', + 'name' => 'level', + 'offset' => '64', + 'type' => '190263' + }, + '2' => { + 'access' => 'private', + 'name' => 'syslogEquivalent', + 'offset' => '68', + 'type' => '190263' } }, - 'Name' => 'struct std::_Rb_tree_node > >', - 'NameSpace' => 'std', - 'Size' => '56', - 'TParam' => { - '0' => { - 'key' => '_Val', - 'type' => '613189' - } - }, - 'Type' => 'Struct' - }, - '614350' => { - 'Header' => 'stl_function.h', - 'Line' => '118', - 'Name' => 'struct std::binary_function', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Arg1', - 'type' => '50193' - }, - '1' => { - 'key' => '_Arg2', - 'type' => '50193' - }, - '2' => { - 'key' => '_Result', - 'type' => '50284' - } - }, - 'Type' => 'Struct' + 'Name' => 'log4cxx::Level', + 'NameSpace' => 'log4cxx', + 'Size' => '48', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::Level::~Level() [_ZN7log4cxx5LevelD1Ev]', + '24' => '(int (*)(...)) log4cxx::Level::~Level() [_ZN7log4cxx5LevelD0Ev]', + '32' => '(int (*)(...)) log4cxx::Level::getClass() const [_ZNK7log4cxx5Level8getClassEv]', + '40' => '(int (*)(...)) log4cxx::Level::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx5Level10instanceofERKNS_7helpers5ClassE]', + '48' => '(int (*)(...)) log4cxx::Level::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx5Level4castERKNS_7helpers5ClassE]', + '56' => '(int (*)(...)) log4cxx::Level::equals(std::shared_ptr const&) const [_ZNK7log4cxx5Level6equalsERKSt10shared_ptrIS0_E]', + '64' => '(int (*)(...)) log4cxx::Level::isGreaterOrEqual(std::shared_ptr const&) const [_ZNK7log4cxx5Level16isGreaterOrEqualERKSt10shared_ptrIS0_E]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::Level) [_ZTIN7log4cxx5LevelE]' + } }, - '614391' => { + '564020' => { 'Base' => { - '614350' => { + '208442' => { 'pos' => '0' } }, - 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '381', - 'Name' => 'struct std::less', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '50193' - } - }, - 'Type' => 'Struct' + 'Header' => 'level.h', + 'Line' => '51', + 'Name' => 'log4cxx::Level::LevelClass', + 'NameSpace' => 'log4cxx::Level', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::Level::LevelClass::~LevelClass() [_ZN7log4cxx5Level10LevelClassD2Ev]', + '24' => '(int (*)(...)) log4cxx::Level::LevelClass::~LevelClass() [_ZN7log4cxx5Level10LevelClassD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::Level::LevelClass::getName[abi:cxx11]() const [_ZNK7log4cxx5Level10LevelClass7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::Level::LevelClass::toLevel(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx5Level10LevelClass7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '56' => '(int (*)(...)) log4cxx::Level::LevelClass::toLevel(int) const [_ZNK7log4cxx5Level10LevelClass7toLevelEi]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::Level::LevelClass) [_ZTIN7log4cxx5Level10LevelClassE]' + } }, - '614467' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '142', - 'Memb' => { - '0' => { - 'name' => '_M_key_compare', - 'offset' => '0', - 'type' => '614391' - } - }, - 'Name' => 'struct std::_Rb_tree_key_compare >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Key_compare', - 'type' => '614391' - } - }, - 'Type' => 'Struct' + '564220' => { + 'BaseType' => '564020', + 'Name' => 'log4cxx::Level::LevelClass const', + 'Size' => '8', + 'Type' => 'Const' }, - '61461' => { - 'BaseType' => '50671', - 'Name' => 'char[16]', - 'Size' => '16', - 'Type' => 'Array' - }, - '614628' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '436', + '564239' => { + 'Header' => 'locationinfo.h', + 'Line' => '45', 'Memb' => { '0' => { - 'access' => 'protected', - 'name' => '_M_impl', + 'access' => 'private', + 'name' => 'lineNumber', 'offset' => '0', - 'type' => '614642' + 'type' => '190263' + }, + '1' => { + 'access' => 'private', + 'name' => 'fileName', + 'offset' => '8', + 'type' => '191618' + }, + '2' => { + 'access' => 'private', + 'name' => 'shortFileName', + 'offset' => '22', + 'type' => '191618' + }, + '3' => { + 'access' => 'private', + 'name' => 'methodName', + 'offset' => '36', + 'type' => '191618' } }, - 'Name' => 'std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '50193' - }, - '1' => { - 'key' => '_Val', - 'type' => '613189' - }, - '2' => { - 'key' => '_KeyOfValue', - 'type' => '625578' - }, - '3' => { - 'key' => '_Compare', - 'type' => '614391' - }, - '4' => { - 'key' => '_Alloc', - 'type' => '613687' - } - }, + 'Name' => 'log4cxx::spi::LocationInfo', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '32', 'Type' => 'Class' }, - '614642' => { + '5643199' => { + 'BaseType' => '5566635', + 'Header' => 'class.h', + 'Line' => '47', + 'Name' => 'log4cxx::helpers::Class::ClassMap', + 'NameSpace' => 'log4cxx::helpers::Class', + 'Private' => 1, + 'Size' => '48', + 'Type' => 'Typedef' + }, + '564694' => { + 'BaseType' => '564239', + 'Name' => 'log4cxx::spi::LocationInfo const', + 'Size' => '32', + 'Type' => 'Const' + }, + '564699' => { 'Base' => { - '556381' => { - 'pos' => '2' - }, - '614088' => { - 'pos' => '0' - }, - '614467' => { - 'pos' => '1' + '209311' => { + 'pos' => '0', + 'virtual' => 1 } }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '673', - 'Name' => 'struct std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_Rb_tree_impl >', - 'NameSpace' => 'std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >', - 'Protected' => 1, - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key_compare', - 'type' => '614391' - } - }, - 'Type' => 'Struct' + 'Header' => 'loggingevent.h', + 'Line' => '49', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '490835' + } + }, + 'Name' => 'log4cxx::spi::LoggingEvent', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggingEvent) [_ZTIN7log4cxx3spi12LoggingEventE]', + '56' => '(int (*)(...)) log4cxx::spi::LoggingEvent::~LoggingEvent() [_ZN7log4cxx3spi12LoggingEventD1Ev]', + '64' => '(int (*)(...)) log4cxx::spi::LoggingEvent::~LoggingEvent() [_ZN7log4cxx3spi12LoggingEventD0Ev]', + '72' => '(int (*)(...)) log4cxx::spi::LoggingEvent::getClass() const [_ZNK7log4cxx3spi12LoggingEvent8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::spi::LoggingEvent::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi12LoggingEvent10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::spi::LoggingEvent::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi12LoggingEvent4castERKNS_7helpers5ClassE]' + } }, - '61477' => { - 'BaseType' => '68', - 'Name' => 'std::__cxx11::basic_string*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '61517' => { - 'BaseType' => '7336', - 'Name' => 'std::__cxx11::basic_stringconst&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '61523' => { - 'BaseType' => '68', - 'Name' => 'std::__cxx11::basic_string&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '61535' => { - 'BaseType' => '36910', - 'Name' => 'std::string const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '6153592' => { - 'Base' => { - '6208943' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2240668' - } - }, - 'Type' => 'Class' - }, - '6156696' => { - 'Base' => { - '6210349' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6162484' - } - }, - 'Type' => 'Class' - }, - '6162484' => { - 'Base' => { - '6241842' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6295418' - } - }, - 'Type' => 'Class' - }, - '6162785' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292750' - } - }, - 'Type' => 'Struct' - }, - '6162911' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '6164673' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292750' - }, - '1' => { - 'key' => '_Dp', - 'type' => '6162785' - } - }, - 'Type' => 'Class' - }, - '6163280' => { - 'Base' => { - '6162785' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '6162785' - } - }, - 'Type' => 'Struct' - }, - '6163573' => { - 'Base' => { - '6163280' => { - 'access' => 'private', - 'pos' => '0' - } + '564708' => { + 'Line' => '45', + 'Memb' => { + '0' => { + 'name' => 'logger', + 'offset' => '0', + 'type' => '209661' + }, + '1' => { + 'name' => 'level', + 'offset' => '50', + 'type' => '567044' + }, + '10' => { + 'name' => 'threadName', + 'offset' => '338', + 'type' => '210597' + }, + '11' => { + 'name' => 'threadUserName', + 'offset' => '352', + 'type' => '210597' + }, + '12' => { + 'name' => 'chronoTimeStamp', + 'offset' => '360', + 'type' => '125430' + }, + '2' => { + 'name' => 'ndc', + 'offset' => '72', + 'type' => '6626896' + }, + '3' => { + 'name' => 'mdcCopy', + 'offset' => '86', + 'type' => '26821444' + }, + '4' => { + 'name' => 'properties', + 'offset' => '100', + 'type' => '26821449' + }, + '5' => { + 'name' => 'ndcLookupRequired', + 'offset' => '114', + 'type' => '174077' + }, + '6' => { + 'name' => 'mdcCopyLookupRequired', + 'offset' => '115', + 'type' => '174077' + }, + '7' => { + 'name' => 'message', + 'offset' => '128', + 'type' => '209661' + }, + '8' => { + 'name' => 'timeStamp', + 'offset' => '274', + 'type' => '1914488' + }, + '9' => { + 'name' => 'locationInfo', + 'offset' => '288', + 'type' => '564694' + } + }, + 'Name' => 'struct log4cxx::spi::LoggingEvent::LoggingEventPrivate', + 'NameSpace' => 'log4cxx::spi::LoggingEvent', + 'Private' => 1, + 'Size' => '176', + 'Source' => 'loggingevent.cpp', + 'Type' => 'Struct' + }, + '5647120' => { + 'Header' => 'cyclicbuffer.h', + 'Line' => '35', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '5426740' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '6162785' - } - }, - 'Type' => 'Struct' + 'Name' => 'log4cxx::helpers::CyclicBuffer', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class' }, - '6163910' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + '564713' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'loggingevent.h', + 'Line' => '53', + 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent', + 'NameSpace' => 'log4cxx::spi::LoggingEvent', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::LoggingEvent::ClazzLoggingEvent::~ClazzLoggingEvent() [_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::LoggingEvent::ClazzLoggingEvent::~ClazzLoggingEvent() [_ZN7log4cxx3spi12LoggingEvent17ClazzLoggingEventD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::spi::LoggingEvent::ClazzLoggingEvent::newInstance() const [_ZTch0_h0_NK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::LoggingEvent::ClazzLoggingEvent::getName[abi:cxx11]() const [_ZNK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::spi::LoggingEvent::ClazzLoggingEvent::newInstance() const [_ZNK7log4cxx3spi12LoggingEvent17ClazzLoggingEvent11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggingEvent::ClazzLoggingEvent) [_ZTIN7log4cxx3spi12LoggingEvent17ClazzLoggingEventE]' + } + }, + '5647133' => { + 'Line' => '28', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'name' => 'ea', 'offset' => '0', - 'type' => '6297190' + 'type' => '8364523' + }, + '1' => { + 'name' => 'first', + 'offset' => '36', + 'type' => '190263' + }, + '2' => { + 'name' => 'last', + 'offset' => '40', + 'type' => '190263' + }, + '3' => { + 'name' => 'numElems', + 'offset' => '50', + 'type' => '190263' + }, + '4' => { + 'name' => 'maxSize', + 'offset' => '54', + 'type' => '190263' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '6297190' - } - }, + 'Name' => 'struct log4cxx::helpers::CyclicBuffer::CyclicBufferPriv', + 'NameSpace' => 'log4cxx::helpers::CyclicBuffer', + 'Private' => 1, + 'Size' => '40', + 'Source' => 'cyclicbuffer.cpp', 'Type' => 'Struct' }, - '6164210' => { - 'Base' => { - '6163573' => { - 'pos' => '0' - }, - '6163910' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate*>', - 'NameSpace' => 'std', + '5647401' => { + 'BaseType' => '5647120', + 'Name' => 'log4cxx::helpers::CyclicBuffer const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '6297190' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '6164673' => { + '5647406' => { 'Base' => { - '6164210' => { - 'pos' => '0' - } + '209311' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '6297190' - } - }, - 'Type' => 'Class' - }, - '6165013' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', + 'Header' => 'inetaddress.h', + 'Line' => '43', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5432401' + } + }, + 'Name' => 'log4cxx::helpers::InetAddress', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::InetAddress::~InetAddress() [_ZN7log4cxx7helpers11InetAddressD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::InetAddress::~InetAddress() [_ZN7log4cxx7helpers11InetAddressD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::InetAddress::getClass() const [_ZNK7log4cxx7helpers11InetAddress8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::InetAddress::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers11InetAddress10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::InetAddress::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers11InetAddress4castERKNS0_5ClassE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InetAddress) [_ZTIN7log4cxx7helpers11InetAddressE]' + } + }, + '5647415' => { + 'Line' => '31', + 'Memb' => { + '0' => { + 'name' => 'ipAddrString', 'offset' => '0', - 'type' => '6162911' + 'type' => '209661' + }, + '1' => { + 'name' => 'hostNameString', + 'offset' => '50', + 'type' => '209661' } }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292750' - }, - '1' => { - 'key' => '_Dp', - 'type' => '6162785' - } - }, - 'Type' => 'Class' + 'Name' => 'struct log4cxx::helpers::InetAddress::InetAddressPrivate', + 'NameSpace' => 'log4cxx::helpers::InetAddress', + 'Private' => 1, + 'Size' => '64', + 'Source' => 'inetaddress.cpp', + 'Type' => 'Struct' }, - '619801' => { - 'Copied' => 1, - 'Header' => 'stl_map.h', - 'Line' => '100', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '619814' - } - }, - 'Name' => 'std::map >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '50193' - }, - '1' => { - 'key' => '_Tp', - 'type' => '565797' - } - }, - 'Type' => 'Class' - }, - '619814' => { - 'BaseType' => '614628', - 'Header' => 'stl_map.h', - 'Line' => '148', - 'Name' => 'std::map >::_Rep_type', - 'NameSpace' => 'std::map >', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' - }, - '62082' => { - 'Header' => 'pool.h', - 'Line' => '32', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => 'pool', - 'offset' => '0', - 'type' => '64702' - }, - '1' => { - 'access' => 'protected', - 'name' => 'release', - 'offset' => '8', - 'type' => '50291' - } - }, - 'Name' => 'log4cxx::helpers::Pool', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class' - }, - '6208529' => { + '5647420' => { 'Base' => { - '6266871' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '2240668' - } - }, - 'Type' => 'Class' - }, - '6208680' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '6208529' - } - }, - 'Type' => 'Struct' + 'Header' => 'inetaddress.h', + 'Line' => '46', + 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress', + 'NameSpace' => 'log4cxx::helpers::InetAddress', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::InetAddress::ClazzInetAddress::~ClazzInetAddress() [_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::InetAddress::ClazzInetAddress::~ClazzInetAddress() [_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::InetAddress::ClazzInetAddress::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers11InetAddress16ClazzInetAddress7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InetAddress::ClazzInetAddress) [_ZTIN7log4cxx7helpers11InetAddress16ClazzInetAddressE]' + } }, - '6208694' => { - 'BaseType' => '2273645', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', + '5647539' => { + 'BaseType' => '5647420', + 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress const', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Const' }, - '6208943' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', + '5647545' => { + 'Base' => { + '209311' => { + 'pos' => '0' + } + }, + 'Header' => 'datagrampacket.h', + 'Line' => '36', 'Memb' => { '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '6209142' + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5438057' } }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2240668' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '6208529' - } - }, - 'Type' => 'Struct' + 'Name' => 'log4cxx::helpers::DatagramPacket', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::~DatagramPacket() [_ZN7log4cxx7helpers14DatagramPacketD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::~DatagramPacket() [_ZN7log4cxx7helpers14DatagramPacketD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::getClass() const [_ZNK7log4cxx7helpers14DatagramPacket8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramPacket10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramPacket4castERKNS0_5ClassE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DatagramPacket) [_ZTIN7log4cxx7helpers14DatagramPacketE]' + } }, - '6208956' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', + '5647554' => { + 'Line' => '23', 'Memb' => { '0' => { - 'name' => '_M_start', + 'name' => 'buf', 'offset' => '0', - 'type' => '6209130' + 'type' => '190924' }, '1' => { - 'name' => '_M_finish', + 'name' => 'offset', 'offset' => '8', - 'type' => '6209130' + 'type' => '190263' }, '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '6209130' + 'name' => 'length', + 'offset' => '18', + 'type' => '190263' + }, + '3' => { + 'name' => 'address', + 'offset' => '22', + 'type' => '19570996' + }, + '4' => { + 'name' => 'port', + 'offset' => '50', + 'type' => '190263' } }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '6209130' => { - 'BaseType' => '6267437', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '6209142' => { - 'Base' => { - '6208529' => { - 'pos' => '0' - }, - '6208956' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', + 'Name' => 'struct log4cxx::helpers::DatagramPacket::DatagramPacketPriv', + 'NameSpace' => 'log4cxx::helpers::DatagramPacket', + 'Private' => 1, + 'Size' => '40', + 'Source' => 'datagrampacket.cpp', 'Type' => 'Struct' }, - '6209935' => { + '5647559' => { 'Base' => { - '6267528' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '6162484' - } - }, - 'Type' => 'Class' - }, - '6210086' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '6209935' - } - }, - 'Type' => 'Struct' + 'Header' => 'datagrampacket.h', + 'Line' => '42', + 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket', + 'NameSpace' => 'log4cxx::helpers::DatagramPacket', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::ClazzDatagramPacket::~ClazzDatagramPacket() [_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::ClazzDatagramPacket::~ClazzDatagramPacket() [_ZN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DatagramPacket::ClazzDatagramPacket::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14DatagramPacket19ClazzDatagramPacket7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DatagramPacket::ClazzDatagramPacket) [_ZTIN7log4cxx7helpers14DatagramPacket19ClazzDatagramPacketE]' + } }, - '6210100' => { - 'BaseType' => '6299409', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', + '5647678' => { + 'BaseType' => '5647559', + 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket const', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Const' }, - '6210349' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', + '5647684' => { + 'Base' => { + '209311' => { + 'pos' => '0' + } + }, + 'Header' => 'datagramsocket.h', + 'Line' => '37', 'Memb' => { '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '6210548' + 'access' => 'protected', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5443713' } }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6162484' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '6209935' - } - }, - 'Type' => 'Struct' + 'Name' => 'log4cxx::helpers::DatagramSocket', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::getClass() const [_ZNK7log4cxx7helpers14DatagramSocket8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramSocket10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14DatagramSocket4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '64' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::close() [_ZN7log4cxx7helpers14DatagramSocket5closeEv]', + '72' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DatagramSocket) [_ZTIN7log4cxx7helpers14DatagramSocketE]', + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } }, - '6210362' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', + '5647693' => { + 'Header' => 'datagramsocket_priv.h', + 'Line' => '28', 'Memb' => { '0' => { - 'name' => '_M_start', + 'name' => 'address', 'offset' => '0', - 'type' => '6210536' + 'type' => '19570996' }, '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '6210536' + 'name' => 'localAddress', + 'offset' => '22', + 'type' => '19570996' }, '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '6210536' + 'name' => 'port', + 'offset' => '50', + 'type' => '190263' + }, + '3' => { + 'name' => 'localPort', + 'offset' => '54', + 'type' => '190263' } }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', + 'Name' => 'struct log4cxx::helpers::DatagramSocket::DatagramSocketPriv', + 'NameSpace' => 'log4cxx::helpers::DatagramSocket', + 'Private' => 1, + 'Protected' => 1, + 'Size' => '40', 'Type' => 'Struct' }, - '6210536' => { - 'BaseType' => '6268094', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '6210548' => { + '5647698' => { 'Base' => { - '6209935' => { - 'pos' => '0' - }, - '6210362' => { - 'pos' => '1' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '6214785' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292730' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6214933' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292730' - } - }, - 'Type' => 'Struct' + 'Header' => 'datagramsocket.h', + 'Line' => '44', + 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket', + 'NameSpace' => 'log4cxx::helpers::DatagramSocket', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::ClazzDatagramSocket::~ClazzDatagramSocket() [_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::ClazzDatagramSocket::~ClazzDatagramSocket() [_ZN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DatagramSocket::ClazzDatagramSocket::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14DatagramSocket19ClazzDatagramSocket7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DatagramSocket::ClazzDatagramSocket) [_ZTIN7log4cxx7helpers14DatagramSocket19ClazzDatagramSocketE]' + } }, - '6214947' => { - 'BaseType' => '6292730', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + '5647817' => { + 'BaseType' => '5647698', + 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket const', + 'Size' => '8', + 'Type' => 'Const' }, - '6214970' => { - 'Base' => { - '6214785' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + '5647823' => { + 'Header' => 'syslogwriter.h', + 'Line' => '33', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', + 'name' => 'm_priv', 'offset' => '0', - 'type' => '6300217' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '5449369' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292730' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6215256' => { - 'BaseType' => '6214947', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '6215802' => { - 'Base' => { - '6214970' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292730' - } - }, - 'Type' => 'Class' - }, - '6217239' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292383' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, + 'Name' => 'log4cxx::helpers::SyslogWriter', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', 'Type' => 'Class' }, - '6217387' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292383' - } - }, + '5647836' => { + 'Line' => '29', + 'Memb' => { + '0' => { + 'name' => 'syslogHost', + 'offset' => '0', + 'type' => '209661' + }, + '1' => { + 'name' => 'syslogHostPort', + 'offset' => '50', + 'type' => '190263' + }, + '2' => { + 'name' => 'address', + 'offset' => '64', + 'type' => '19570996' + }, + '3' => { + 'name' => 'ds', + 'offset' => '86', + 'type' => '55695880' + } + }, + 'Name' => 'struct log4cxx::helpers::SyslogWriter::SyslogWriterPrivate', + 'NameSpace' => 'log4cxx::helpers::SyslogWriter', + 'Private' => 1, + 'Size' => '72', + 'Source' => 'syslogwriter.cpp', 'Type' => 'Struct' }, - '6217401' => { - 'BaseType' => '6292383', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '6217424' => { + '5647956' => { 'Base' => { - '6217239' => { - 'pos' => '0' - } + '209311' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Header' => 'socket.h', + 'Line' => '43', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_ptr', + 'access' => 'protected', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5455025' + } + }, + 'Name' => 'log4cxx::helpers::Socket', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) log4cxx::helpers::Socket::getClass() const [_ZNK7log4cxx7helpers6Socket8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Socket::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Socket10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::Socket::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Socket4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) __cxa_pure_virtual', + '64' => '(int (*)(...)) __cxa_pure_virtual', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Socket) [_ZTIN7log4cxx7helpers6SocketE]' + } + }, + '5647965' => { + 'Header' => 'socket_priv.h', + 'Line' => '28', + 'Memb' => { + '0' => { + 'name' => '_vptr', 'offset' => '0', - 'type' => '6300434' + 'type' => '215758' }, '1' => { - 'access' => 'private', - 'name' => '_M_refcount', + 'name' => 'address', 'offset' => '8', - 'type' => '123552' + 'type' => '19570996' + }, + '2' => { + 'name' => 'port', + 'offset' => '36', + 'type' => '190263' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292383' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6217710' => { - 'BaseType' => '6217401', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + 'Name' => 'struct log4cxx::helpers::Socket::SocketPrivate', + 'NameSpace' => 'log4cxx::helpers::Socket', + 'Private' => 1, + 'Protected' => 1, + 'Size' => '32', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::Socket::SocketPrivate::~SocketPrivate() [_ZN7log4cxx7helpers6Socket13SocketPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Socket::SocketPrivate::~SocketPrivate() [_ZN7log4cxx7helpers6Socket13SocketPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Socket::SocketPrivate) [_ZTIN7log4cxx7helpers6Socket13SocketPrivateE]' + } }, - '6218665' => { + '5647970' => { 'Base' => { - '6217424' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6292383' - } - }, - 'Type' => 'Class' - }, - '6219329' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63730' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6219477' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63730' - } - }, - 'Type' => 'Struct' + 'Header' => 'socket.h', + 'Line' => '50', + 'Name' => 'log4cxx::helpers::Socket::ClazzSocket', + 'NameSpace' => 'log4cxx::helpers::Socket', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::Socket::ClazzSocket::~ClazzSocket() [_ZN7log4cxx7helpers6Socket11ClazzSocketD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::Socket::ClazzSocket::~ClazzSocket() [_ZN7log4cxx7helpers6Socket11ClazzSocketD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::Socket::ClazzSocket::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers6Socket11ClazzSocket7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Socket::ClazzSocket) [_ZTIN7log4cxx7helpers6Socket11ClazzSocketE]' + } }, - '6219491' => { - 'BaseType' => '63730', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + '5648089' => { + 'BaseType' => '5647970', + 'Name' => 'log4cxx::helpers::Socket::ClazzSocket const', + 'Size' => '8', + 'Type' => 'Const' }, - '6219514' => { - 'Base' => { - '6219329' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + '5648095' => { + 'Header' => 'serversocket.h', + 'Line' => '33', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_ptr', + 'name' => '_vptr', 'offset' => '0', - 'type' => '6300540' + 'type' => '215758' }, '1' => { - 'access' => 'private', - 'name' => '_M_refcount', + 'access' => 'protected', + 'name' => 'm_priv', 'offset' => '8', - 'type' => '123552' + 'type' => '5460681' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::ServerSocket', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63730' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6219800' => { - 'BaseType' => '6219491', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '(int (*)(...)) __cxa_pure_virtual', + '40' => '(int (*)(...)) log4cxx::helpers::ServerSocket::close() [_ZN7log4cxx7helpers12ServerSocket5closeEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ServerSocket) [_ZTIN7log4cxx7helpers12ServerSocketE]' + } }, - '6220335' => { - 'Base' => { - '6219514' => { - 'pos' => '0' - } + '5648104' => { + 'Header' => 'serversocket_priv.h', + 'Line' => '28', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + }, + '1' => { + 'name' => 'timeout', + 'offset' => '8', + 'type' => '190263' + } }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', + 'Name' => 'struct log4cxx::helpers::ServerSocket::ServerSocketPrivate', + 'NameSpace' => 'log4cxx::helpers::ServerSocket', + 'Private' => 1, + 'Protected' => 1, 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63730' - } - }, - 'Type' => 'Class' - }, - '622581' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63470' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '622729' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63470' - } - }, - 'Type' => 'Struct' - }, - '622743' => { - 'BaseType' => '63470', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '622766' => { - 'Base' => { - '622581' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '655442' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '63470' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '623053' => { - 'BaseType' => '622743', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '623376' => { - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '190', - 'Name' => 'std::__pair_base >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_U1', - 'type' => '50200' - }, - '1' => { - 'key' => '_U2', - 'type' => '565797' - } - }, - 'Type' => 'Class' - }, - '6241657' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6295418' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6241805' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6295418' - } - }, - 'Type' => 'Struct' - }, - '6241819' => { - 'BaseType' => '6295418', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::ServerSocket::ServerSocketPrivate::~ServerSocketPrivate() [_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ServerSocket::ServerSocketPrivate::~ServerSocketPrivate() [_ZN7log4cxx7helpers12ServerSocket19ServerSocketPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ServerSocket::ServerSocketPrivate) [_ZTIN7log4cxx7helpers12ServerSocket19ServerSocketPrivateE]' + } }, - '6241842' => { + '5648110' => { 'Base' => { - '6241657' => { + '4207448' => { 'pos' => '0' } }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Header' => 'simpledateformat.h', + 'Line' => '69', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '6302199' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', + 'name' => 'm_priv', 'offset' => '8', - 'type' => '123552' + 'type' => '5499704' } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::helpers::SimpleDateFormat', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6295418' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6242128' => { - 'BaseType' => '6241819', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '625546' => { - 'Header' => 'stl_function.h', - 'Line' => '105', - 'Name' => 'struct std::unary_function >, unsigned long const>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Arg', - 'type' => '613189' - }, - '1' => { - 'key' => '_Result', - 'type' => '50200' - } - }, - 'Type' => 'Struct' - }, - '625578' => { - 'Base' => { - '625546' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '1147', - 'Name' => 'struct std::_Select1st > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Pair', - 'type' => '613189' - } - }, - 'Type' => 'Struct' - }, - '62571' => { - 'Header' => 'classregistration.h', - 'Line' => '28', - 'Name' => 'log4cxx::helpers::ClassRegistration', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '1', - 'Type' => 'Class' - }, - '62616' => { - 'BaseType' => '64666', - 'Header' => 'classregistration.h', - 'Line' => '31', - 'Name' => 'log4cxx::helpers::ClassRegistration::ClassAccessor', - 'NameSpace' => 'log4cxx::helpers::ClassRegistration', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '6266871' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '2240668' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::~SimpleDateFormat() [_ZN7log4cxx7helpers16SimpleDateFormatD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::~SimpleDateFormat() [_ZN7log4cxx7helpers16SimpleDateFormatD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SimpleDateFormat) [_ZTIN7log4cxx7helpers16SimpleDateFormatE]' + } }, - '6267236' => { - 'Base' => { - '6208680' => { - 'pos' => '0' - } + '5648119' => { + 'Line' => '799', + 'Memb' => { + '0' => { + 'name' => 'timeZone', + 'offset' => '0', + 'type' => '4207803' + }, + '1' => { + 'name' => 'pattern', + 'offset' => '22', + 'type' => '42536353' + } }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '6208529' - } - }, + 'Name' => 'struct log4cxx::helpers::SimpleDateFormat::SimpleDateFormatPrivate', + 'NameSpace' => 'log4cxx::helpers::SimpleDateFormat', + 'Private' => 1, + 'Size' => '40', + 'Source' => 'simpledateformat.cpp', 'Type' => 'Struct' }, - '6267437' => { - 'BaseType' => '6208694', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', - 'Size' => '8', + '5648138' => { + 'BaseType' => '485766', + 'Header' => 'properties.h', + 'Line' => '35', + 'Name' => 'log4cxx::helpers::Properties::PropertyMap', + 'NameSpace' => 'log4cxx::helpers::Properties', + 'Private' => 1, 'Type' => 'Typedef' }, - '6267528' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6162484' - } - }, - 'Type' => 'Class' - }, - '6267893' => { - 'Base' => { - '6210086' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '6209935' - } - }, - 'Type' => 'Struct' - }, - '6268094' => { - 'BaseType' => '6210100', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', + '5648499' => { + 'BaseType' => '562694', + 'Name' => 'log4cxx::helpers::Properties const', 'Size' => '8', + 'Type' => 'Const' + }, + '5648504' => { + 'BaseType' => '5545851', + 'Header' => 'inputstream.h', + 'Line' => '68', + 'Name' => 'log4cxx::helpers::InputStreamPtr', + 'NameSpace' => 'log4cxx::helpers', 'Type' => 'Typedef' }, - '62693' => { - 'BaseType' => '62571', - 'Name' => 'log4cxx::helpers::ClassRegistration const', - 'Size' => '1', - 'Type' => 'Const' - }, - '62698' => { - 'Copied' => 1, - 'Header' => 'class.h', - 'Line' => '31', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - } - }, - 'Name' => 'log4cxx::helpers::Class', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Class) [_ZTIN7log4cxx7helpers5ClassE]' - } - }, - '62703' => { - 'BaseType' => '62698', - 'Name' => 'log4cxx::helpers::Class const', - 'Type' => 'Const' - }, - '62708' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '63928' - } - }, - 'Type' => 'Class' - }, - '628340' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '50392' - } - }, - 'Type' => 'Class' + '564869' => { + 'BaseType' => '564713', + 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent const', + 'Size' => '8', + 'Type' => 'Const' + }, + '564875' => { + 'Base' => { + '566161' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'filter.h', + 'Line' => '67', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '496857' + } + }, + 'Name' => 'log4cxx::spi::Filter', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::spi::Filter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi6Filter10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::spi::Filter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3spi6Filter4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::spi::Filter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3spi6Filter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Filter) [_ZTIN7log4cxx3spi6FilterE]', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '(int (*)(...)) log4cxx::spi::Filter::getClass() const [_ZNK7log4cxx3spi6Filter8getClassEv]' + } + }, + '564884' => { + 'Header' => 'filter_priv.h', + 'Line' => '27', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + }, + '1' => { + 'name' => 'next', + 'offset' => '8', + 'type' => '565564' + } + }, + 'Name' => 'struct log4cxx::spi::Filter::FilterPrivate', + 'NameSpace' => 'log4cxx::spi::Filter', + 'Protected' => 1, + 'Size' => '24', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::Filter::FilterPrivate::~FilterPrivate() [_ZN7log4cxx3spi6Filter13FilterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::Filter::FilterPrivate::~FilterPrivate() [_ZN7log4cxx3spi6Filter13FilterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Filter::FilterPrivate) [_ZTIN7log4cxx3spi6Filter13FilterPrivateE]' + } }, - '6291291' => { + '5648970' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -142576,7697 +145680,6672 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197835' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife, log4cxx::helpers::Class const*> >', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Size' => '48', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '6293126' + 'type' => '5566635' } }, 'Type' => 'Class' }, - '6292383' => { + '5649596' => { 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'integer.h', - 'Line' => '28', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'val', - 'offset' => '8', - 'type' => '50239' - } + '5648110' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::Integer', + 'Header' => 'iso8601dateformat.h', + 'Line' => '36', + 'Name' => 'log4cxx::helpers::ISO8601DateFormat', 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Integer::~Integer() [_ZN7log4cxx7helpers7IntegerD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Integer::~Integer() [_ZN7log4cxx7helpers7IntegerD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Integer::getClass() const [_ZNK7log4cxx7helpers7Integer8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Integer::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers7Integer10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::Integer::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers7Integer4castERKNS0_5ClassE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Integer) [_ZTIN7log4cxx7helpers7IntegerE]' + '16' => '(int (*)(...)) log4cxx::helpers::ISO8601DateFormat::~ISO8601DateFormat() [_ZN7log4cxx7helpers17ISO8601DateFormatD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ISO8601DateFormat::~ISO8601DateFormat() [_ZN7log4cxx7helpers17ISO8601DateFormatD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ISO8601DateFormat) [_ZTIN7log4cxx7helpers17ISO8601DateFormatE]' + } + }, + '565023' => { + 'Header' => 'filter.h', + 'Line' => '86', + 'Memb' => { + '0' => { + 'name' => 'DENY', + 'value' => '18446744073709551615 (-1)' + }, + '1' => { + 'name' => 'NEUTRAL', + 'value' => '0' + }, + '2' => { + 'name' => 'ACCEPT', + 'value' => '1' + } + }, + 'Name' => 'enum log4cxx::spi::Filter::FilterDecision', + 'NameSpace' => 'log4cxx::spi::Filter', + 'Size' => '4', + 'Type' => 'Enum' + }, + '5650347' => { + 'Base' => { + '1374417' => { + 'pos' => '0' + } + }, + 'Header' => 'exception.h', + 'Line' => '182', + 'Name' => 'log4cxx::helpers::ClassNotFoundException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::ClassNotFoundException::~ClassNotFoundException() [_ZN7log4cxx7helpers22ClassNotFoundExceptionD2Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::ClassNotFoundException::~ClassNotFoundException() [_ZN7log4cxx7helpers22ClassNotFoundExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ClassNotFoundException) [_ZTIN7log4cxx7helpers22ClassNotFoundExceptionE]' } }, - '6292388' => { - 'BaseType' => '6292383', - 'Name' => 'log4cxx::helpers::Integer const', + '5650524' => { + 'BaseType' => '5650347', + 'Name' => 'log4cxx::helpers::ClassNotFoundException const', + 'Size' => '144', 'Type' => 'Const' }, - '6292730' => { + '5650529' => { 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'rolloverdescription.h', - 'Line' => '29', - 'Memb' => { - '0' => { - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '16398444' - } + '1374417' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::rolling::RolloverDescription', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', + 'Header' => 'exception.h', + 'Line' => '169', + 'Name' => 'log4cxx::helpers::InstantiationException', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '144', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::~RolloverDescription() [_ZN7log4cxx7rolling19RolloverDescriptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::~RolloverDescription() [_ZN7log4cxx7rolling19RolloverDescriptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::getClass() const [_ZNK7log4cxx7rolling19RolloverDescription8getClassEv]', - '40' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling19RolloverDescription10instanceofERKNS_7helpers5ClassE]', - '48' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling19RolloverDescription4castERKNS_7helpers5ClassE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RolloverDescription) [_ZTIN7log4cxx7rolling19RolloverDescriptionE]' + '16' => '(int (*)(...)) log4cxx::helpers::InstantiationException::~InstantiationException() [_ZN7log4cxx7helpers22InstantiationExceptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::InstantiationException::~InstantiationException() [_ZN7log4cxx7helpers22InstantiationExceptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InstantiationException) [_ZTIN7log4cxx7helpers22InstantiationExceptionE]' } }, - '6292735' => { - 'BaseType' => '6292730', - 'Name' => 'log4cxx::rolling::RolloverDescription const', + '565063' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'filter.h', + 'Line' => '77', + 'Name' => 'log4cxx::spi::Filter::ClazzFilter', + 'NameSpace' => 'log4cxx::spi::Filter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::Filter::ClazzFilter::~ClazzFilter() [_ZN7log4cxx3spi6Filter11ClazzFilterD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::Filter::ClazzFilter::~ClazzFilter() [_ZN7log4cxx3spi6Filter11ClazzFilterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::Filter::ClazzFilter::getName[abi:cxx11]() const [_ZNK7log4cxx3spi6Filter11ClazzFilter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Filter::ClazzFilter) [_ZTIN7log4cxx3spi6Filter11ClazzFilterE]' + } + }, + '5650680' => { + 'BaseType' => '5650529', + 'Name' => 'log4cxx::helpers::InstantiationException const', + 'Size' => '144', 'Type' => 'Const' }, - '6292740' => { + '565182' => { + 'BaseType' => '565063', + 'Name' => 'log4cxx::spi::Filter::ClazzFilter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5652409' => { 'Base' => { - '6294384' => { - 'pos' => '0', - 'virtual' => 1 - }, - '63470' => { - 'pos' => '1', - 'virtual' => 1 - } + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } }, 'Copied' => 1, - 'Header' => 'rollingpolicybase.h', - 'Line' => '43', - 'Memb' => { - '0' => { - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '6165013' - } - }, - 'Name' => 'log4cxx::rolling::RollingPolicyBase', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', + 'Header' => 'triggeringeventevaluator.h', + 'Line' => '37', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '0u', - '120' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::getClass() const [_ZNK7log4cxx7rolling17RollingPolicyBase8getClassEv]', - '128' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling17RollingPolicyBase10instanceofERKNS_7helpers5ClassE]', - '136' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling17RollingPolicyBase4castERKNS_7helpers5ClassE]', - '144' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling17RollingPolicyBase15activateOptionsERNS_7helpers4PoolE]', - '152' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling17RollingPolicyBase9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', '16' => '0u', - '160' => '(int (*)(...)) __cxa_pure_virtual', - '168' => '(int (*)(...)) __cxa_pure_virtual', - '176' => '(int (*)(...)) __cxa_pure_virtual', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::TriggeringEventEvaluator) [_ZTIN7log4cxx3spi24TriggeringEventEvaluatorE]', '56' => '0u', '64' => '0u', - '72' => '0u', + '72' => '(int (*)(...)) log4cxx::spi::TriggeringEventEvaluator::getClass() const [_ZNK7log4cxx3spi24TriggeringEventEvaluator8getClassEv]', '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicyBase) [_ZTIN7log4cxx7rolling17RollingPolicyBaseE]' + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' } }, - '6292750' => { - 'Header' => 'rollingpolicybase_priv.h', - 'Line' => '30', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - }, - '1' => { - 'name' => 'patternConverters', - 'offset' => '8', - 'type' => '6294360' - }, - '2' => { - 'name' => 'patternFields', - 'offset' => '32', - 'type' => '6294372' - }, - '3' => { - 'name' => 'fileNamePatternStr', - 'offset' => '56', - 'type' => '63706' - }, - '4' => { - 'name' => 'createIntermediateDirectories', - 'offset' => '88', - 'type' => '50284' - } + '5652418' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'struct log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate', - 'NameSpace' => 'log4cxx::rolling::RollingPolicyBase', - 'Size' => '96', - 'Type' => 'Struct', + 'Header' => 'triggeringeventevaluator.h', + 'Line' => '40', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator', + 'NameSpace' => 'log4cxx::spi::TriggeringEventEvaluator', + 'Size' => '8', + 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate::~RollingPolicyBasePrivate() [_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate::~RollingPolicyBasePrivate() [_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate) [_ZTIN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateE]' + '16' => '(int (*)(...)) log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator::~ClazzTriggeringEventEvaluator() [_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator::~ClazzTriggeringEventEvaluator() [_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator::getName[abi:cxx11]() const [_ZNK7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluator7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator) [_ZTIN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorE]' } }, - '6293080' => { - 'BaseType' => '6292740', - 'Name' => 'log4cxx::rolling::RollingPolicyBase const', + '5652537' => { + 'BaseType' => '5652418', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator const', + 'Size' => '8', 'Type' => 'Const' }, - '6293085' => { + '565547' => { + 'BaseType' => '564875', + 'Name' => 'log4cxx::spi::Filter const', + 'Type' => 'Const' + }, + '565552' => { + 'BaseType' => '497515', + 'Header' => 'optionconverter.h', + 'Line' => '33', + 'Name' => 'log4cxx::spi::LoggerRepositoryPtr', + 'NameSpace' => 'log4cxx::spi', + 'Type' => 'Typedef' + }, + '565564' => { + 'BaseType' => '498401', + 'Header' => 'filter.h', + 'Line' => '30', + 'Name' => 'log4cxx::spi::FilterPtr', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '565576' => { + 'BaseType' => '565564', + 'Name' => 'log4cxx::spi::FilterPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '565581' => { + 'BaseType' => '517723', + 'Header' => 'loggingevent.h', + 'Line' => '211', + 'Name' => 'log4cxx::spi::LoggingEventPtr', + 'NameSpace' => 'log4cxx::spi', + 'Type' => 'Typedef' + }, + '5655912' => { 'Base' => { - '6292740' => { + '1381112' => { 'pos' => '0' } }, - 'Header' => 'fixedwindowrollingpolicy.h', - 'Line' => '71', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy', - 'NameSpace' => 'log4cxx::rolling', + 'Copied' => 1, + 'Header' => 'jsonlayout.h', + 'Line' => '31', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5505360' + } + }, + 'Name' => 'log4cxx::JSONLayout', + 'NameSpace' => 'log4cxx', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::~FixedWindowRollingPolicy() [_ZN7log4cxx7rolling24FixedWindowRollingPolicyD1Ev]', - '112' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::~FixedWindowRollingPolicy() [_ZN7log4cxx7rolling24FixedWindowRollingPolicyD0Ev]', - '120' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::getClass() const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy8getClassEv]', - '128' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy10instanceofERKNS_7helpers5ClassE]', - '136' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy4castERKNS_7helpers5ClassE]', - '144' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling24FixedWindowRollingPolicy15activateOptionsERNS_7helpers4PoolE]', - '152' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling24FixedWindowRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '104' => '(int (*)(...)) log4cxx::JSONLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx10JSONLayout10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::JSONLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx10JSONLayout4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::JSONLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx10JSONLayout15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::JSONLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx10JSONLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '136' => '(int (*)(...)) log4cxx::JSONLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx10JSONLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '144' => '(int (*)(...)) log4cxx::JSONLayout::getContentType[abi:cxx11]() const [_ZNK7log4cxx10JSONLayout14getContentTypeB5cxx11Ev]', + '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', '16' => '0u', - '160' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::initialize(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling24FixedWindowRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', - '168' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::rollover(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling24FixedWindowRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', - '176' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::getFormatSpecifiers[abi:cxx11]() const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy19getFormatSpecifiersB5cxx11Ev]', + '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '168' => '(int (*)(...)) log4cxx::JSONLayout::ignoresThrowable() const [_ZNK7log4cxx10JSONLayout16ignoresThrowableEv]', '24' => '0u', '32' => '0u', '40' => '0u', '48' => '0u', '56' => '0u', '64' => '0u', - '72' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::JSONLayout) [_ZTIN7log4cxx10JSONLayoutE]', '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FixedWindowRollingPolicy) [_ZTIN7log4cxx7rolling24FixedWindowRollingPolicyE]' - } - }, - '6293126' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'fixedwindowrollingpolicy.h', - 'Line' => '73', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy', - 'NameSpace' => 'log4cxx::rolling::FixedWindowRollingPolicy', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::~ClazzFixedWindowRollingPolicy() [_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::~ClazzFixedWindowRollingPolicy() [_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::newInstance() const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy) [_ZTIN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyE]' + '80' => '(int (*)(...)) log4cxx::JSONLayout::~JSONLayout() [_ZN7log4cxx10JSONLayoutD1Ev]', + '88' => '(int (*)(...)) log4cxx::JSONLayout::~JSONLayout() [_ZN7log4cxx10JSONLayoutD0Ev]', + '96' => '(int (*)(...)) log4cxx::JSONLayout::getClass() const [_ZNK7log4cxx10JSONLayout8getClassEv]' } }, - '6293349' => { - 'BaseType' => '6293126', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6293354' => { - 'Base' => { - '6292750' => { - 'pos' => '0' - } - }, - 'Line' => '39', + '5655921' => { + 'Line' => '35', 'Memb' => { '0' => { - 'name' => 'minIndex', - 'offset' => '92', - 'type' => '50231' + 'name' => 'locationInfo', + 'offset' => '0', + 'type' => '174077' }, '1' => { - 'name' => 'maxIndex', - 'offset' => '96', - 'type' => '50231' + 'name' => 'prettyPrint', + 'offset' => '1', + 'type' => '174077' }, '2' => { - 'name' => 'explicitActiveFile', - 'offset' => '100', - 'type' => '50284' + 'name' => 'dateFormat', + 'offset' => '8', + 'type' => '5649596' }, '3' => { - 'name' => 'throwIOExceptionOnForkFailure', - 'offset' => '101', - 'type' => '50284' + 'name' => 'ppIndentL1', + 'offset' => '36', + 'type' => '209661' + }, + '4' => { + 'name' => 'ppIndentL2', + 'offset' => '86', + 'type' => '209661' + }, + '5' => { + 'name' => 'expectedPatternLength', + 'offset' => '136', + 'type' => '190816' + }, + '6' => { + 'name' => 'threadInfo', + 'offset' => '150', + 'type' => '174077' } }, - 'Name' => 'struct log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate', - 'NameSpace' => 'log4cxx::rolling::FixedWindowRollingPolicy', + 'Name' => 'struct log4cxx::JSONLayout::JSONLayoutPrivate', + 'NameSpace' => 'log4cxx::JSONLayout', + 'Private' => 1, 'Size' => '104', - 'Source' => 'fixedwindowrollingpolicy.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate::~FixedWindowRollingPolicyPrivate() [_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate::~FixedWindowRollingPolicyPrivate() [_ZN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate) [_ZTIN7log4cxx7rolling24FixedWindowRollingPolicy31FixedWindowRollingPolicyPrivateE]' - } - }, - '6294277' => { - 'BaseType' => '6293085', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy const', - 'Size' => '16', - 'Type' => 'Const' + 'Source' => 'jsonlayout.cpp', + 'Type' => 'Struct' }, - '6294282' => { + '5655926' => { 'Base' => { - '63730' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'gzcompressaction.h', - 'Line' => '30', - 'Name' => 'log4cxx::rolling::GZCompressAction', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', + 'Header' => 'jsonlayout.h', + 'Line' => '47', + 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout', + 'NameSpace' => 'log4cxx::JSONLayout', + 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::GZCompressAction) [_ZTIN7log4cxx7rolling16GZCompressActionE]', - '56' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::~GZCompressAction() [_ZN7log4cxx7rolling16GZCompressActionD1Ev]', - '64' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::~GZCompressAction() [_ZN7log4cxx7rolling16GZCompressActionD0Ev]', - '72' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::getClass() const [_ZNK7log4cxx7rolling16GZCompressAction8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16GZCompressAction10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16GZCompressAction4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::execute(log4cxx::helpers::Pool&) const [_ZNK7log4cxx7rolling16GZCompressAction7executeERNS_7helpers4PoolE]' + '16' => '(int (*)(...)) log4cxx::JSONLayout::ClazzJSONLayout::~ClazzJSONLayout() [_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD1Ev]', + '24' => '(int (*)(...)) log4cxx::JSONLayout::ClazzJSONLayout::~ClazzJSONLayout() [_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::JSONLayout::ClazzJSONLayout::newInstance() const [_ZTch0_h0_NK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::JSONLayout::ClazzJSONLayout::getName[abi:cxx11]() const [_ZNK7log4cxx10JSONLayout15ClazzJSONLayout7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::JSONLayout::ClazzJSONLayout::newInstance() const [_ZNK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::JSONLayout::ClazzJSONLayout) [_ZTIN7log4cxx10JSONLayout15ClazzJSONLayoutE]' } }, - '6294305' => { - 'BaseType' => '6294282', - 'Name' => 'log4cxx::rolling::GZCompressAction const', + '565593' => { + 'BaseType' => '565581', + 'Name' => 'log4cxx::spi::LoggingEventPtr const', + 'Type' => 'Const' + }, + '565598' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'loggerrepository.h', + 'Line' => '42', + 'Name' => 'log4cxx::spi::LoggerRepository', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) __cxa_pure_virtual', + '112' => '(int (*)(...)) __cxa_pure_virtual', + '120' => '(int (*)(...)) __cxa_pure_virtual', + '128' => '(int (*)(...)) __cxa_pure_virtual', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '144' => '(int (*)(...)) __cxa_pure_virtual', + '152' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '160' => '(int (*)(...)) __cxa_pure_virtual', + '168' => '(int (*)(...)) __cxa_pure_virtual', + '176' => '(int (*)(...)) __cxa_pure_virtual', + '184' => '(int (*)(...)) __cxa_pure_virtual', + '192' => '(int (*)(...)) __cxa_pure_virtual', + '200' => '(int (*)(...)) log4cxx::spi::LoggerRepository::fireAddAppenderEvent(log4cxx::Logger const*, log4cxx::Appender const*) [_ZN7log4cxx3spi16LoggerRepository20fireAddAppenderEventEPKNS_6LoggerEPKNS_8AppenderE]', + '208' => '(int (*)(...)) log4cxx::spi::LoggerRepository::fireRemoveAppenderEvent(log4cxx::Logger const*, log4cxx::Appender const*) [_ZN7log4cxx3spi16LoggerRepository23fireRemoveAppenderEventEPKNS_6LoggerEPKNS_8AppenderE]', + '216' => '(int (*)(...)) __cxa_pure_virtual', + '224' => '(int (*)(...)) __cxa_pure_virtual', + '232' => '(int (*)(...)) __cxa_pure_virtual', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggerRepository) [_ZTIN7log4cxx3spi16LoggerRepositoryE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::spi::LoggerRepository::getClass() const [_ZNK7log4cxx3spi16LoggerRepository8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } + }, + '565607' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'loggerrepository.h', + 'Line' => '45', + 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository', + 'NameSpace' => 'log4cxx::spi::LoggerRepository', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::LoggerRepository::ClazzLoggerRepository::~ClazzLoggerRepository() [_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::LoggerRepository::ClazzLoggerRepository::~ClazzLoggerRepository() [_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::LoggerRepository::ClazzLoggerRepository::getName[abi:cxx11]() const [_ZNK7log4cxx3spi16LoggerRepository21ClazzLoggerRepository7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggerRepository::ClazzLoggerRepository) [_ZTIN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryE]' + } + }, + '5656083' => { + 'BaseType' => '5655926', + 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout const', + 'Size' => '8', 'Type' => 'Const' }, - '6294310' => { + '5656105' => { 'Base' => { - '63730' => { - 'pos' => '0' - } + '1381112' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'zipcompressaction.h', - 'Line' => '30', - 'Name' => 'log4cxx::rolling::ZipCompressAction', - 'NameSpace' => 'log4cxx::rolling', + 'Header' => 'htmllayout.h', + 'Line' => '31', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5511016' + } + }, + 'Name' => 'log4cxx::HTMLLayout', + 'NameSpace' => 'log4cxx', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::HTMLLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx10HTMLLayout10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::HTMLLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx10HTMLLayout4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::HTMLLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx10HTMLLayout15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::HTMLLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx10HTMLLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '136' => '(int (*)(...)) log4cxx::HTMLLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx10HTMLLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '144' => '(int (*)(...)) log4cxx::HTMLLayout::getContentType[abi:cxx11]() const [_ZNK7log4cxx10HTMLLayout14getContentTypeB5cxx11Ev]', + '152' => '(int (*)(...)) log4cxx::HTMLLayout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx10HTMLLayout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', '16' => '0u', + '160' => '(int (*)(...)) log4cxx::HTMLLayout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx10HTMLLayout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '168' => '(int (*)(...)) log4cxx::HTMLLayout::ignoresThrowable() const [_ZNK7log4cxx10HTMLLayout16ignoresThrowableEv]', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ZipCompressAction) [_ZTIN7log4cxx7rolling17ZipCompressActionE]', - '56' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::~ZipCompressAction() [_ZN7log4cxx7rolling17ZipCompressActionD1Ev]', - '64' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::~ZipCompressAction() [_ZN7log4cxx7rolling17ZipCompressActionD0Ev]', - '72' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::getClass() const [_ZNK7log4cxx7rolling17ZipCompressAction8getClassEv]', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::HTMLLayout) [_ZTIN7log4cxx10HTMLLayoutE]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling17ZipCompressAction10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling17ZipCompressAction4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::rolling::ZipCompressAction::execute(log4cxx::helpers::Pool&) const [_ZNK7log4cxx7rolling17ZipCompressAction7executeERNS_7helpers4PoolE]' + '80' => '(int (*)(...)) log4cxx::HTMLLayout::~HTMLLayout() [_ZN7log4cxx10HTMLLayoutD1Ev]', + '88' => '(int (*)(...)) log4cxx::HTMLLayout::~HTMLLayout() [_ZN7log4cxx10HTMLLayoutD0Ev]', + '96' => '(int (*)(...)) log4cxx::HTMLLayout::getClass() const [_ZNK7log4cxx10HTMLLayout8getClassEv]' } }, - '6294333' => { - 'BaseType' => '6294310', - 'Name' => 'log4cxx::rolling::ZipCompressAction const', - 'Type' => 'Const' - }, - '6294348' => { - 'BaseType' => '6215802', - 'Header' => 'rolloverdescription.h', - 'Line' => '81', - 'Name' => 'log4cxx::rolling::RolloverDescriptionPtr', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '6294360' => { - 'BaseType' => '6153592', - 'Header' => 'rollingpolicybase.h', + '5656114' => { 'Line' => '33', - 'Name' => 'log4cxx::rolling::PatternConverterList', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '24', - 'Type' => 'Typedef' - }, - '6294372' => { - 'BaseType' => '6156696', - 'Header' => 'rollingpolicybase.h', - 'Line' => '34', - 'Name' => 'log4cxx::rolling::FormattingInfoList', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '24', - 'Type' => 'Typedef' + 'Memb' => { + '0' => { + 'name' => 'locationInfo', + 'offset' => '0', + 'type' => '174077' + }, + '1' => { + 'name' => 'title', + 'offset' => '8', + 'type' => '209661' + }, + '2' => { + 'name' => 'dateFormat', + 'offset' => '64', + 'type' => '5649596' + }, + '3' => { + 'name' => 'expectedPatternLength', + 'offset' => '86', + 'type' => '190816' + } + }, + 'Name' => 'struct log4cxx::HTMLLayout::HTMLLayoutPrivate', + 'NameSpace' => 'log4cxx::HTMLLayout', + 'Private' => 1, + 'Size' => '64', + 'Source' => 'htmllayout.cpp', + 'Type' => 'Struct' }, - '6294384' => { - 'Base' => { - '151305' => { - 'pos' => '0', - 'virtual' => 1 + '5656119' => { + 'Base' => { + '208442' => { + 'pos' => '0' } }, - 'Copied' => 1, - 'Header' => 'rollingpolicy.h', - 'Line' => '41', - 'Name' => 'log4cxx::rolling::RollingPolicy', - 'NameSpace' => 'log4cxx::rolling', + 'Header' => 'htmllayout.h', + 'Line' => '37', + 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout', + 'NameSpace' => 'log4cxx::HTMLLayout', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) __cxa_pure_virtual', - '112' => '(int (*)(...)) __cxa_pure_virtual', - '120' => '(int (*)(...)) __cxa_pure_virtual', - '128' => '(int (*)(...)) __cxa_pure_virtual', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '144' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicy) [_ZTIN7log4cxx7rolling13RollingPolicyE]', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '(int (*)(...)) log4cxx::rolling::RollingPolicy::getClass() const [_ZNK7log4cxx7rolling13RollingPolicy8getClassEv]' + '16' => '(int (*)(...)) log4cxx::HTMLLayout::ClazzHTMLLayout::~ClazzHTMLLayout() [_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD1Ev]', + '24' => '(int (*)(...)) log4cxx::HTMLLayout::ClazzHTMLLayout::~ClazzHTMLLayout() [_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::HTMLLayout::ClazzHTMLLayout::newInstance() const [_ZTch0_h0_NK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::HTMLLayout::ClazzHTMLLayout::getName[abi:cxx11]() const [_ZNK7log4cxx10HTMLLayout15ClazzHTMLLayout7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::HTMLLayout::ClazzHTMLLayout::newInstance() const [_ZNK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::HTMLLayout::ClazzHTMLLayout) [_ZTIN7log4cxx10HTMLLayout15ClazzHTMLLayoutE]' } }, - '6294484' => { - 'BaseType' => '6220335', - 'Header' => 'action.h', - 'Line' => '75', - 'Name' => 'log4cxx::rolling::ActionPtr', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', - 'Type' => 'Typedef' + '5656276' => { + 'BaseType' => '5656119', + 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout const', + 'Size' => '8', + 'Type' => 'Const' }, - '6295418' => { + '5656310' => { 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } + '1381112' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'formattinginfo.h', - 'Line' => '43', + 'Header' => 'xmllayout.h', + 'Line' => '53', 'Memb' => { '0' => { 'access' => 'private', 'name' => 'm_priv', 'offset' => '8', - 'type' => '6550550' + 'type' => '5516672' } }, - 'Name' => 'log4cxx::pattern::FormattingInfo', - 'NameSpace' => 'log4cxx::pattern', + 'Name' => 'log4cxx::xml::XMLLayout', + 'NameSpace' => 'log4cxx::xml', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::xml::XMLLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3xml9XMLLayout10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::xml::XMLLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3xml9XMLLayout4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::xml::XMLLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3xml9XMLLayout15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::xml::XMLLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3xml9XMLLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::xml::XMLLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx3xml9XMLLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '144' => '(int (*)(...)) log4cxx::Layout::getContentType[abi:cxx11]() const [_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev]', + '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', '16' => '0u', + '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '168' => '(int (*)(...)) log4cxx::xml::XMLLayout::ignoresThrowable() const [_ZNK7log4cxx3xml9XMLLayout16ignoresThrowableEv]', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FormattingInfo) [_ZTIN7log4cxx7pattern14FormattingInfoE]', - '56' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::~FormattingInfo() [_ZN7log4cxx7pattern14FormattingInfoD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::~FormattingInfo() [_ZN7log4cxx7pattern14FormattingInfoD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::getClass() const [_ZNK7log4cxx7pattern14FormattingInfo8getClassEv]', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::xml::XMLLayout) [_ZTIN7log4cxx3xml9XMLLayoutE]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern14FormattingInfo10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern14FormattingInfo4castERKNS_7helpers5ClassE]' + '80' => '(int (*)(...)) log4cxx::xml::XMLLayout::~XMLLayout() [_ZN7log4cxx3xml9XMLLayoutD1Ev]', + '88' => '(int (*)(...)) log4cxx::xml::XMLLayout::~XMLLayout() [_ZN7log4cxx3xml9XMLLayoutD0Ev]', + '96' => '(int (*)(...)) log4cxx::xml::XMLLayout::getClass() const [_ZNK7log4cxx3xml9XMLLayout8getClassEv]' } }, - '6297156' => { - 'BaseType' => '6153592', - 'Name' => 'std::vector >&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '6297162' => { - 'BaseType' => '6156696', - 'Name' => 'std::vector >&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '6297190' => { - 'BaseType' => '6292750', - 'Name' => 'struct log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6297196' => { - 'BaseType' => '6297190', - 'Name' => 'struct log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6299409' => { - 'BaseType' => '6162484', - 'Name' => 'std::shared_ptr*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6299679' => { - 'BaseType' => '6291291', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6299685' => { - 'BaseType' => '6299679', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6299804' => { - 'BaseType' => '6293354', - 'Name' => 'struct log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6299810' => { - 'BaseType' => '6299804', - 'Name' => 'struct log4cxx::rolling::FixedWindowRollingPolicy::FixedWindowRollingPolicyPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6300217' => { - 'BaseType' => '6215256', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6300235' => { - 'BaseType' => '6292730', - 'Name' => 'log4cxx::rolling::RolloverDescription*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6300434' => { - 'BaseType' => '6217710', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6300452' => { - 'BaseType' => '6292383', - 'Name' => 'log4cxx::helpers::Integer*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6300540' => { - 'BaseType' => '6219800', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6300668' => { - 'BaseType' => '6294282', - 'Name' => 'log4cxx::rolling::GZCompressAction*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6300784' => { - 'BaseType' => '6294310', - 'Name' => 'log4cxx::rolling::ZipCompressAction*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6302199' => { - 'BaseType' => '6242128', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6302217' => { - 'BaseType' => '6162484', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '6302258' => { - 'BaseType' => '6292388', - 'Name' => 'log4cxx::helpers::Integer const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6302322' => { - 'BaseType' => '6292735', - 'Name' => 'log4cxx::rolling::RolloverDescription const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6302386' => { - 'BaseType' => '6294305', - 'Name' => 'log4cxx::rolling::GZCompressAction const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6302450' => { - 'BaseType' => '6294333', - 'Name' => 'log4cxx::rolling::ZipCompressAction const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6303909' => { - 'BaseType' => '6293085', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6303915' => { - 'BaseType' => '6303909', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6303937' => { - 'BaseType' => '6294277', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6303943' => { - 'BaseType' => '6303937', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6303996' => { - 'BaseType' => '6293126', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6304002' => { - 'BaseType' => '6303996', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6304007' => { - 'BaseType' => '6293349', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6304013' => { - 'BaseType' => '6304007', - 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '630605' => { - 'Base' => { - '554758' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '529953' - } - }, - 'Type' => 'Struct' - }, - '63066' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '60586' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '62571' - } - }, - 'Type' => 'Class' - }, - '630807' => { - 'BaseType' => '554772', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '630831' => { - 'BaseType' => '554835', - 'Header' => 'alloc_traits.h', - 'Line' => '61', - 'Name' => '__gnu_cxx::__alloc_traits >::size_type', - 'NameSpace' => '__gnu_cxx::__alloc_traits >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '631487' => { - 'Copied' => 1, - 'Header' => 'stl_iterator.h', - 'Line' => '784', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_current', - 'offset' => '0', - 'type' => '51285' - } - }, - 'Name' => '__gnu_cxx::__normal_iterator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Iterator', - 'type' => '51285' - }, - '1' => { - 'key' => '_Container', - 'type' => '513815' - } - }, - 'Type' => 'Class' - }, - '632332' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '652179' - } - }, - 'Type' => 'Class' - }, - '632968' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '611948' - } - }, - 'Type' => 'Class' - }, - '633642' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '613189' - } - }, - 'Type' => 'Class' - }, - '634237' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator > > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '614239' - } - }, - 'Type' => 'Class' - }, - '63470' => { - 'Header' => 'object.h', - 'Line' => '105', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - } - }, - 'Name' => 'log4cxx::helpers::Object', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) __cxa_pure_virtual', - '40' => '(int (*)(...)) __cxa_pure_virtual', - '48' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Object) [_ZTIN7log4cxx7helpers6ObjectE]' - } - }, - '634795' => { - 'Copied' => 1, - 'Header' => 'aligned_buffer.h', - 'Line' => '47', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '0', - 'type' => '651043' - } - }, - 'Name' => 'struct __gnu_cxx::__aligned_membuf', - 'NameSpace' => '__gnu_cxx', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '652179' - } - }, - 'Type' => 'Struct' - }, - '635018' => { - 'Copied' => 1, - 'Header' => 'aligned_buffer.h', - 'Line' => '47', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '0', - 'type' => '655768' - } - }, - 'Name' => 'struct __gnu_cxx::__aligned_membuf > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '613189' - } - }, - 'Type' => 'Struct' - }, - '636552' => { - 'BaseType' => '51285', - 'Name' => 'wchar_t const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '63700' => { - 'BaseType' => '63470', - 'Name' => 'log4cxx::helpers::Object const', - 'Size' => '8', - 'Type' => 'Const' - }, - '63706' => { - 'BaseType' => '68', - 'Header' => 'logstring.h', - 'Line' => '60', - 'Name' => 'log4cxx::LogString', - 'NameSpace' => 'log4cxx', - 'Size' => '32', - 'Type' => 'Typedef' - }, - '63730' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Header' => 'action.h', - 'Line' => '35', - 'Memb' => { - '0' => { - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '44188' - } - }, - 'Name' => 'log4cxx::rolling::Action', - 'NameSpace' => 'log4cxx::rolling', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::Action) [_ZTIN7log4cxx7rolling6ActionE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::rolling::Action::getClass() const [_ZNK7log4cxx7rolling6Action8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::rolling::Action::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling6Action10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::rolling::Action::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling6Action4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) __cxa_pure_virtual' - } - }, - '63748' => { - 'Header' => 'action_priv.h', - 'Line' => '27', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - }, - '1' => { - 'name' => 'complete', - 'offset' => '8', - 'type' => '50284' - }, - '2' => { - 'name' => 'interrupted', - 'offset' => '9', - 'type' => '50284' - }, - '3' => { - 'name' => 'pool', - 'offset' => '16', - 'type' => '62082' - }, - '4' => { - 'name' => 'mutex', - 'offset' => '32', - 'type' => '41413' - } - }, - 'Name' => 'struct log4cxx::rolling::Action::ActionPrivate', - 'NameSpace' => 'log4cxx::rolling::Action', - 'Size' => '72', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::Action::ActionPrivate::~ActionPrivate() [_ZN7log4cxx7rolling6Action13ActionPrivateD2Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::Action::ActionPrivate::~ActionPrivate() [_ZN7log4cxx7rolling6Action13ActionPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::Action::ActionPrivate) [_ZTIN7log4cxx7rolling6Action13ActionPrivateE]' - } - }, - '63928' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'action.h', - 'Line' => '37', - 'Name' => 'log4cxx::rolling::Action::ClazzAction', - 'NameSpace' => 'log4cxx::rolling::Action', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::Action::ClazzAction::~ClazzAction() [_ZN7log4cxx7rolling6Action11ClazzActionD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::Action::ClazzAction::~ClazzAction() [_ZN7log4cxx7rolling6Action11ClazzActionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::Action::ClazzAction::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling6Action11ClazzAction7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::Action::ClazzAction) [_ZTIN7log4cxx7rolling6Action11ClazzActionE]' - } - }, - '64086' => { - 'BaseType' => '63928', - 'Name' => 'log4cxx::rolling::Action::ClazzAction const', - 'Size' => '8', - 'Type' => 'Const' - }, - '64609' => { - 'BaseType' => '63730', - 'Name' => 'log4cxx::rolling::Action const', - 'Size' => '16', - 'Type' => 'Const' - }, - '64643' => { - 'BaseType' => '62082', - 'Name' => 'log4cxx::helpers::Pool&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '64660' => { - 'BaseType' => '62571', - 'Name' => 'log4cxx::helpers::ClassRegistration*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '64666' => { - 'Name' => 'log4cxx::helpers::Class const&(*)()', - 'Return' => '64678', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '64672' => { - 'Name' => 'log4cxx::helpers::Class const&()', - 'Return' => '64678', - 'Type' => 'Func' - }, - '64678' => { - 'BaseType' => '62703', - 'Name' => 'log4cxx::helpers::Class const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '64684' => { - 'BaseType' => '62693', - 'Name' => 'log4cxx::helpers::ClassRegistration const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '646874' => { - 'BaseType' => '50392', - 'Name' => 'wchar_t[4]', - 'Size' => '16', - 'Type' => 'Array' - }, - '646920' => { - 'BaseType' => '520852', - 'Name' => 'std::__cxx11::basic_stringconst&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '646944' => { - 'BaseType' => '555321', - 'Name' => 'std::wstring const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '64696' => { - 'BaseType' => '62082', - 'Name' => 'log4cxx::helpers::Pool*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '64702' => { - 'BaseType' => '64708', - 'Name' => 'struct apr_pool_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '64708' => { - 'Name' => 'struct apr_pool_t', - 'Type' => 'Struct' - }, - '647671' => { - 'Header' => 'aprinitializer.h', - 'Line' => '44', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '565171' - } - }, - 'Name' => 'log4cxx::helpers::APRInitializer', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '647684' => { - 'Line' => '34', - 'Memb' => { - '0' => { - 'name' => 'p', - 'offset' => '0', - 'type' => '652756' - }, - '1' => { - 'name' => 'mutex', - 'offset' => '8', - 'type' => '41413' - }, - '2' => { - 'name' => 'watchdogs', - 'offset' => '48', - 'type' => '521844' - }, - '3' => { - 'name' => 'startTime', - 'offset' => '72', - 'type' => '649587' - }, - '4' => { - 'name' => 'tlsKey', - 'offset' => '80', - 'type' => '655127' - }, - '5' => { - 'name' => 'objects', - 'offset' => '88', - 'type' => '619801' - } - }, - 'Name' => 'struct log4cxx::helpers::APRInitializer::APRInitializerPrivate', - 'NameSpace' => 'log4cxx::helpers::APRInitializer', - 'Private' => 1, - 'Size' => '136', - 'Source' => 'aprinitializer.cpp', - 'Type' => 'Struct' - }, - '648210' => { - 'Copied' => 1, - 'Header' => 'filewatchdog.h', - 'Line' => '38', - 'Memb' => { - '0' => { - 'name' => '_vptr', - 'offset' => '0', - 'type' => '66091' - }, - '1' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '5804399' - } - }, - 'Name' => 'log4cxx::helpers::FileWatchdog', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::FileWatchdog) [_ZTIN7log4cxx7helpers12FileWatchdogE]' - } - }, - '648233' => { - 'BaseType' => '565797', - 'Header' => 'object.h', - 'Line' => '114', - 'Name' => 'log4cxx::helpers::ObjectPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '648245' => { - 'BaseType' => '648233', - 'Name' => 'log4cxx::helpers::ObjectPtr const', - 'Size' => '16', - 'Type' => 'Const' - }, - '648250' => { - 'Header' => 'threadspecificdata.h', - 'Line' => '32', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '568480' - } - }, - 'Name' => 'log4cxx::helpers::ThreadSpecificData', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '648263' => { - 'Line' => '30', - 'Memb' => { - '0' => { - 'name' => 'ndcStack', - 'offset' => '0', - 'type' => '649691' - }, - '1' => { - 'name' => 'mdcMap', - 'offset' => '80', - 'type' => '650691' - } - }, - 'Name' => 'struct log4cxx::helpers::ThreadSpecificData::ThreadSpecificDataPrivate', - 'NameSpace' => 'log4cxx::helpers::ThreadSpecificData', - 'Private' => 1, - 'Size' => '128', - 'Source' => 'threadspecificdata.cpp', - 'Type' => 'Struct' - }, - '648882' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '647671' - } - }, - 'Type' => 'Class' - }, - '649587' => { - 'BaseType' => '53742', - 'Header' => 'log4cxx.h', - 'Line' => '109', - 'Name' => 'log4cxx::log4cxx_time_t', - 'NameSpace' => 'log4cxx', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '649599' => { - 'Header' => 'ndc.h', - 'Line' => '78', - 'Name' => 'log4cxx::NDC', - 'NameSpace' => 'log4cxx', - 'Size' => '1', - 'Type' => 'Class' - }, - '649691' => { - 'BaseType' => '566565', - 'Header' => 'ndc.h', - 'Line' => '85', - 'Name' => 'log4cxx::NDC::Stack', - 'NameSpace' => 'log4cxx::NDC', - 'Type' => 'Typedef' - }, - '649704' => { - 'BaseType' => '649691', - 'Name' => 'log4cxx::NDC::Stack const', - 'Type' => 'Const' - }, - '6498573' => { - 'BaseType' => '6294384', - 'Name' => 'log4cxx::rolling::RollingPolicy*', + '5656319' => { + 'Line' => '35', + 'Memb' => { + '0' => { + 'name' => 'locationInfo', + 'offset' => '0', + 'type' => '174077' + }, + '1' => { + 'name' => 'properties', + 'offset' => '1', + 'type' => '174077' + }, + '2' => { + 'name' => 'expectedPatternLength', + 'offset' => '8', + 'type' => '190816' + } + }, + 'Name' => 'struct log4cxx::xml::XMLLayout::XMLLayoutPrivate', + 'NameSpace' => 'log4cxx::xml::XMLLayout', + 'Private' => 1, + 'Size' => '16', + 'Source' => 'xmllayout.cpp', + 'Type' => 'Struct' + }, + '5656324' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'xmllayout.h', + 'Line' => '59', + 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout', + 'NameSpace' => 'log4cxx::xml::XMLLayout', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::xml::XMLLayout::ClazzXMLLayout::~ClazzXMLLayout() [_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD1Ev]', + '24' => '(int (*)(...)) log4cxx::xml::XMLLayout::ClazzXMLLayout::~ClazzXMLLayout() [_ZN7log4cxx3xml9XMLLayout14ClazzXMLLayoutD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::xml::XMLLayout::ClazzXMLLayout::newInstance() const [_ZTch0_h0_NK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::xml::XMLLayout::ClazzXMLLayout::getName[abi:cxx11]() const [_ZNK7log4cxx3xml9XMLLayout14ClazzXMLLayout7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::xml::XMLLayout::ClazzXMLLayout::newInstance() const [_ZNK7log4cxx3xml9XMLLayout14ClazzXMLLayout11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::xml::XMLLayout::ClazzXMLLayout) [_ZTIN7log4cxx3xml9XMLLayout14ClazzXMLLayoutE]' + } }, - '6498579' => { - 'BaseType' => '6498573', - 'Name' => 'log4cxx::rolling::RollingPolicy*const', + '5656481' => { + 'BaseType' => '5656324', + 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout const', 'Size' => '8', 'Type' => 'Const' }, - '650169' => { - 'BaseType' => '566570', - 'Header' => 'ndc.h', - 'Line' => '84', - 'Name' => 'log4cxx::NDC::DiagnosticContext', - 'NameSpace' => 'log4cxx::NDC', - 'Type' => 'Typedef' - }, - '650212' => { - 'Header' => 'mdc.h', - 'Line' => '45', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'key', - 'offset' => '0', - 'type' => '63706' - } - }, - 'Name' => 'log4cxx::MDC', - 'NameSpace' => 'log4cxx', - 'Size' => '32', - 'Type' => 'Class' - }, - '650691' => { - 'BaseType' => '566575', - 'Header' => 'mdc.h', - 'Line' => '50', - 'Name' => 'log4cxx::MDC::Map', - 'NameSpace' => 'log4cxx::MDC', - 'Type' => 'Typedef' - }, - '650733' => { - 'BaseType' => '36898', - 'Name' => 'std::string&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '650739' => { - 'BaseType' => '555309', - 'Name' => 'std::wstring&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '650756' => { - 'BaseType' => '556185', - 'Name' => 'struct std::_Rb_tree_node_base*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6507892' => { - 'BaseType' => '6293080', - 'Name' => 'log4cxx::rolling::RollingPolicyBase const*', + '5656503' => { + 'Base' => { + '3118759' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'domconfigurator.h', + 'Line' => '64', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5552109' + } + }, + 'Name' => 'log4cxx::xml::DOMConfigurator', + 'NameSpace' => 'log4cxx::xml', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3xml15DOMConfigurator4castERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::doConfigure(log4cxx::File const&, std::shared_ptr) [_ZN7log4cxx3xml15DOMConfigurator11doConfigureERKNS_4FileESt10shared_ptrINS_3spi16LoggerRepositoryEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '(int (*)(...)) (& typeinfo for log4cxx::xml::DOMConfigurator) [_ZTIN7log4cxx3xml15DOMConfiguratorE]', + '72' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::~DOMConfigurator() [_ZN7log4cxx3xml15DOMConfiguratorD1Ev]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::~DOMConfigurator() [_ZN7log4cxx3xml15DOMConfiguratorD0Ev]', + '88' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::getClass() const [_ZNK7log4cxx3xml15DOMConfigurator8getClassEv]', + '96' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3xml15DOMConfigurator10instanceofERKNS_7helpers5ClassE]' + } + }, + '5656509' => { + 'Line' => '61', + 'Memb' => { + '0' => { + 'name' => 'props', + 'offset' => '0', + 'type' => '562694' + }, + '1' => { + 'name' => 'repository', + 'offset' => '8', + 'type' => '565552' + }, + '2' => { + 'name' => 'loggerFactory', + 'offset' => '36', + 'type' => '3118343' + } + }, + 'Name' => 'struct log4cxx::xml::DOMConfigurator::DOMConfiguratorPrivate', + 'NameSpace' => 'log4cxx::xml::DOMConfigurator', + 'Private' => 1, + 'Size' => '40', + 'Source' => 'domconfigurator.cpp', + 'Type' => 'Struct' + }, + '5656514' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'domconfigurator.h', + 'Line' => '212', + 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator', + 'NameSpace' => 'log4cxx::xml::DOMConfigurator', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::~ClazzDOMConfigurator() [_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD1Ev]', + '24' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::~ClazzDOMConfigurator() [_ZN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::newInstance() const [_ZTch0_h0_NK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::getName[abi:cxx11]() const [_ZNK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator::newInstance() const [_ZNK7log4cxx3xml15DOMConfigurator20ClazzDOMConfigurator11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator) [_ZTIN7log4cxx3xml15DOMConfigurator20ClazzDOMConfiguratorE]' + } }, - '6507898' => { - 'BaseType' => '6507892', - 'Name' => 'log4cxx::rolling::RollingPolicyBase const*const', + '5656671' => { + 'BaseType' => '5656514', + 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator const', 'Size' => '8', 'Type' => 'Const' }, - '650879' => { - 'BaseType' => '557205', - 'Name' => 'struct std::__detail::_List_node_base*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '650930' => { - 'Class' => '557630', - 'Name' => 'void()(std::_Undefined_class::*)', - 'Return' => '55176', - 'Size' => '8', - 'Type' => 'FieldPtr' - }, - '650969' => { - 'Name' => 'bool(*)(union std::_Any_data&, union std::_Any_data const&, enum std::_Manager_operation)', - 'Param' => { + '5656706' => { + 'Base' => { + '5658455' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'filterbasedtriggeringpolicy.h', + 'Line' => '50', + 'Memb' => { + '0' => { + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5522328' + } + }, + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::isTriggeringEvent(log4cxx::Appender*, std::shared_ptr const&, std::__cxx11::basic_string, std::allocator > const&, unsigned long) [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FilterBasedTriggeringPolicy) [_ZTIN7log4cxx7rolling27FilterBasedTriggeringPolicyE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::~FilterBasedTriggeringPolicy() [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD1Ev]', + '88' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::~FilterBasedTriggeringPolicy() [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicyD0Ev]', + '96' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::getClass() const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy8getClassEv]' + } + }, + '5656715' => { + 'Line' => '28', + 'Memb' => { + '0' => { + 'name' => 'headFilter', + 'offset' => '0', + 'type' => '565564' + }, + '1' => { + 'name' => 'tailFilter', + 'offset' => '22', + 'type' => '565564' + } + }, + 'Name' => 'struct log4cxx::rolling::FilterBasedTriggeringPolicy::FilterBasedTriggeringPolicyPrivate', + 'NameSpace' => 'log4cxx::rolling::FilterBasedTriggeringPolicy', + 'Private' => 1, + 'Size' => '32', + 'Source' => 'filterbasedtriggeringpolicy.cpp', + 'Type' => 'Struct' + }, + '5656720' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'filterbasedtriggeringpolicy.h', + 'Line' => '53', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy', + 'NameSpace' => 'log4cxx::rolling::FilterBasedTriggeringPolicy', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::~ClazzFilterBasedTriggeringPolicy() [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::~ClazzFilterBasedTriggeringPolicy() [_ZN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy::newInstance() const [_ZNK7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicy11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy) [_ZTIN7log4cxx7rolling27FilterBasedTriggeringPolicy32ClazzFilterBasedTriggeringPolicyE]' + } + }, + '5656877' => { + 'BaseType' => '5656720', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5657038' => { + 'Base' => { + '209311' => { + 'pos' => '0' + } + }, + 'Header' => 'rolloverdescription.h', + 'Line' => '29', + 'Memb' => { + '0' => { + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5533950' + } + }, + 'Name' => 'log4cxx::rolling::RolloverDescription', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::~RolloverDescription() [_ZN7log4cxx7rolling19RolloverDescriptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::~RolloverDescription() [_ZN7log4cxx7rolling19RolloverDescriptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::getClass() const [_ZNK7log4cxx7rolling19RolloverDescription8getClassEv]', + '40' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling19RolloverDescription10instanceofERKNS_7helpers5ClassE]', + '48' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling19RolloverDescription4castERKNS_7helpers5ClassE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RolloverDescription) [_ZTIN7log4cxx7rolling19RolloverDescriptionE]' + } + }, + '5657047' => { + 'Line' => '27', + 'Memb' => { '0' => { - 'type' => '651001' + 'name' => 'activeFileName', + 'offset' => '0', + 'type' => '209661' }, '1' => { - 'type' => '651007' + 'name' => 'append', + 'offset' => '50', + 'type' => '174077' }, '2' => { - 'type' => '557739' + 'name' => 'synchronous', + 'offset' => '64', + 'type' => '16772728' + }, + '3' => { + 'name' => 'asynchronous', + 'offset' => '86', + 'type' => '16772728' } }, - 'Return' => '50284', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '651001' => { - 'BaseType' => '557635', - 'Name' => 'union std::_Any_data&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '651007' => { - 'BaseType' => '557734', - 'Name' => 'union std::_Any_data const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '651043' => { - 'BaseType' => '50179', - 'Name' => 'unsigned char[8]', - 'Size' => '8', - 'Type' => 'Array' - }, - '651059' => { - 'BaseType' => '50284', - 'Name' => 'bool&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '651873' => { - 'BaseType' => '647684', - 'Name' => 'struct log4cxx::helpers::APRInitializer::APRInitializerPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '652168' => { - 'Name' => 'struct apr_threadkey_t', - 'Type' => 'Struct' - }, - '652173' => { - 'BaseType' => '652168', - 'Name' => 'struct apr_threadkey_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '652179' => { - 'BaseType' => '648210', - 'Name' => 'log4cxx::helpers::FileWatchdog*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '652185' => { - 'BaseType' => '652179', - 'Name' => 'log4cxx::helpers::FileWatchdog*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '652190' => { - 'BaseType' => '647671', - 'Name' => 'log4cxx::helpers::APRInitializer*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '652196' => { - 'BaseType' => '652190', - 'Name' => 'log4cxx::helpers::APRInitializer*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '652207' => { - 'BaseType' => '647671', - 'Name' => 'log4cxx::helpers::APRInitializer&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '652213' => { - 'BaseType' => '648245', - 'Name' => 'log4cxx::helpers::ObjectPtr const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '652254' => { - 'Name' => 'std::shared_ptr(*)(union std::_Any_data const&)', - 'Param' => { + 'Name' => 'struct log4cxx::rolling::RolloverDescription::RolloverDescriptionPrivate', + 'NameSpace' => 'log4cxx::rolling::RolloverDescription', + 'Private' => 1, + 'Size' => '72', + 'Source' => 'rolloverdescription.cpp', + 'Type' => 'Struct' + }, + '5657052' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'rolloverdescription.h', + 'Line' => '31', + 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription', + 'NameSpace' => 'log4cxx::rolling::RolloverDescription', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::ClazzRolloverDescription::~ClazzRolloverDescription() [_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::ClazzRolloverDescription::~ClazzRolloverDescription() [_ZN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionD0Ev]', + '32' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::ClazzRolloverDescription::newInstance() const [_ZNK7log4cxx7rolling19RolloverDescription24ClazzRolloverDescription11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::RolloverDescription::ClazzRolloverDescription::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling19RolloverDescription24ClazzRolloverDescription7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RolloverDescription::ClazzRolloverDescription) [_ZTIN7log4cxx7rolling19RolloverDescription24ClazzRolloverDescriptionE]' + } + }, + '5657209' => { + 'BaseType' => '5657052', + 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5657215' => { + 'Base' => { + '209311' => { + 'pos' => '1', + 'virtual' => 1 + }, + '5658321' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'rollingpolicybase.h', + 'Line' => '43', + 'Memb' => { '0' => { - 'type' => '651007' + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5539606' } }, - 'Return' => '565797', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '652337' => { - 'BaseType' => '64708', - 'Header' => 'apr_pools.h', - 'Line' => '60', - 'Name' => 'apr_pool_t', - 'Type' => 'Typedef' - }, - '652349' => { - 'BaseType' => '649599', - 'Name' => 'log4cxx::NDC*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '652355' => { - 'BaseType' => '649691', - 'Name' => 'log4cxx::NDC::Stack*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '652373' => { - 'BaseType' => '650169', - 'Name' => 'log4cxx::NDC::DiagnosticContext&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '652379' => { - 'BaseType' => '650212', - 'Name' => 'log4cxx::MDC*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '652409' => { - 'BaseType' => '648263', - 'Name' => 'struct log4cxx::helpers::ThreadSpecificData::ThreadSpecificDataPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '652648' => { - 'BaseType' => '648250', - 'Name' => 'log4cxx::helpers::ThreadSpecificData*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '652654' => { - 'BaseType' => '649704', - 'Name' => 'log4cxx::NDC::Stack const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '652660' => { - 'BaseType' => '649691', - 'Name' => 'log4cxx::NDC::Stack&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '652666' => { - 'BaseType' => '650691', - 'Name' => 'log4cxx::MDC::Map&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '652672' => { - 'BaseType' => '648250', - 'Name' => 'log4cxx::helpers::ThreadSpecificData&', + 'Name' => 'log4cxx::rolling::RollingPolicyBase', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::getClass() const [_ZNK7log4cxx7rolling17RollingPolicyBase8getClassEv]', + '128' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling17RollingPolicyBase10instanceofERKNS_7helpers5ClassE]', + '136' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling17RollingPolicyBase4castERKNS_7helpers5ClassE]', + '144' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling17RollingPolicyBase15activateOptionsERNS_7helpers4PoolE]', + '152' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling17RollingPolicyBase9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '16' => '0u', + '160' => '(int (*)(...)) __cxa_pure_virtual', + '168' => '(int (*)(...)) __cxa_pure_virtual', + '176' => '(int (*)(...)) __cxa_pure_virtual', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicyBase) [_ZTIN7log4cxx7rolling17RollingPolicyBaseE]' + } + }, + '5657224' => { + 'Header' => 'rollingpolicybase_priv.h', + 'Line' => '30', + 'Memb' => { + '0' => { + 'name' => '_vptr', + 'offset' => '0', + 'type' => '215758' + }, + '1' => { + 'name' => 'patternConverters', + 'offset' => '8', + 'type' => '16772442' + }, + '2' => { + 'name' => 'patternFields', + 'offset' => '50', + 'type' => '16772454' + }, + '3' => { + 'name' => 'fileNamePatternStr', + 'offset' => '86', + 'type' => '209661' + }, + '4' => { + 'name' => 'createIntermediateDirectories', + 'offset' => '136', + 'type' => '174077' + } + }, + 'Name' => 'struct log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate', + 'NameSpace' => 'log4cxx::rolling::RollingPolicyBase', + 'Private' => 1, + 'Size' => '96', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate::~RollingPolicyBasePrivate() [_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate::~RollingPolicyBasePrivate() [_ZN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate) [_ZTIN7log4cxx7rolling17RollingPolicyBase24RollingPolicyBasePrivateE]' + } + }, + '5657229' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'rollingpolicybase.h', + 'Line' => '48', + 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase', + 'NameSpace' => 'log4cxx::rolling::RollingPolicyBase', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase::~ClazzRollingPolicyBase() [_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase::~ClazzRollingPolicyBase() [_ZN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBase7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase) [_ZTIN7log4cxx7rolling17RollingPolicyBase22ClazzRollingPolicyBaseE]' + } + }, + '565726' => { + 'BaseType' => '565607', + 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository const', 'Size' => '8', - 'Type' => 'Ref' - }, - '652678' => { - 'BaseType' => '50678', - 'Name' => 'char const[4]', - 'Size' => '4', - 'Type' => 'Array' + 'Type' => 'Const' }, - '652756' => { - 'BaseType' => '652337', - 'Name' => 'apr_pool_t*', + '565732' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'hierarchyeventlistener.h', + 'Line' => '34', + 'Name' => 'log4cxx::spi::HierarchyEventListener', + 'NameSpace' => 'log4cxx::spi', 'Size' => '8', - 'Type' => 'Pointer' - }, - '652762' => { - 'BaseType' => '652168', - 'Header' => 'apr_thread_proc.h', - 'Line' => '190', - 'Name' => 'apr_threadkey_t', - 'Type' => 'Typedef' + 'Type' => 'Class' }, - '6548598' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6575644' - } - }, - 'Type' => 'Struct' + '5657348' => { + 'BaseType' => '5657229', + 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5657354' => { + 'Base' => { + '5657215' => { + 'pos' => '0' + } + }, + 'Header' => 'fixedwindowrollingpolicy.h', + 'Line' => '71', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::~FixedWindowRollingPolicy() [_ZN7log4cxx7rolling24FixedWindowRollingPolicyD1Ev]', + '112' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::~FixedWindowRollingPolicy() [_ZN7log4cxx7rolling24FixedWindowRollingPolicyD0Ev]', + '120' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::getClass() const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy8getClassEv]', + '128' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy10instanceofERKNS_7helpers5ClassE]', + '136' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy4castERKNS_7helpers5ClassE]', + '144' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling24FixedWindowRollingPolicy15activateOptionsERNS_7helpers4PoolE]', + '152' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling24FixedWindowRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '16' => '0u', + '160' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::initialize(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling24FixedWindowRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', + '168' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::rollover(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling24FixedWindowRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', + '176' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::getFormatSpecifiers[abi:cxx11]() const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy19getFormatSpecifiersB5cxx11Ev]', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FixedWindowRollingPolicy) [_ZTIN7log4cxx7rolling24FixedWindowRollingPolicyE]' + } + }, + '5657385' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'fixedwindowrollingpolicy.h', + 'Line' => '73', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy', + 'NameSpace' => 'log4cxx::rolling::FixedWindowRollingPolicy', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::~ClazzFixedWindowRollingPolicy() [_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::~ClazzFixedWindowRollingPolicy() [_ZN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy::newInstance() const [_ZNK7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicy11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy) [_ZTIN7log4cxx7rolling24FixedWindowRollingPolicy29ClazzFixedWindowRollingPolicyE]' + } }, - '6548684' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + '5657542' => { + 'BaseType' => '5657385', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5657564' => { + 'Base' => { + '5657215' => { + 'pos' => '0', + 'virtual' => 1 + }, + '5658455' => { + 'pos' => '1', + 'virtual' => 1 + } + }, + 'Header' => 'timebasedrollingpolicy.h', + 'Line' => '140', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5545262' + } + }, + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '32', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TimeBasedRollingPolicy) [_ZTIN7log4cxx7rolling22TimeBasedRollingPolicyE]', + '112' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::~TimeBasedRollingPolicy() [_ZN7log4cxx7rolling22TimeBasedRollingPolicyD1Ev]', + '120' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::~TimeBasedRollingPolicy() [_ZN7log4cxx7rolling22TimeBasedRollingPolicyD0Ev]', + '128' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::getClass() const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy8getClassEv]', + '136' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy10instanceofERKNS_7helpers5ClassE]', + '144' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy4castERKNS_7helpers5ClassE]', + '152' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy15activateOptionsERNS_7helpers4PoolE]', + '16' => '(int (*)(...)) 0x00000000000010', + '160' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '168' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::isTriggeringEvent(log4cxx::Appender*, std::shared_ptr const&, std::__cxx11::basic_string, std::allocator > const&, unsigned long) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm]', + '176' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::initialize(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', + '184' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::rollover(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling22TimeBasedRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', + '192' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::getFormatSpecifiers[abi:cxx11]() const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy19getFormatSpecifiersB5cxx11Ev]', + '200' => '(int (*)(...)) -0x00000000000010', + '208' => '0u', + '216' => '(int (*)(...)) -0x00000000000010', + '224' => '(int (*)(...)) -0x00000000000010', + '232' => '0u', + '24' => '0u', + '240' => '(int (*)(...)) -0x00000000000010', + '248' => '(int (*)(...)) -0x00000000000010', + '256' => '0u', + '264' => '(int (*)(...)) -0x00000000000010', + '272' => '(int (*)(...)) -0x00000000000010', + '280' => '(int (*)(...)) -0x00000000000010', + '288' => '(int (*)(...)) -0x00000000000010', + '296' => '(int (*)(...)) -0x00000000000010', + '304' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TimeBasedRollingPolicy) [_ZTIN7log4cxx7rolling22TimeBasedRollingPolicyE]', + '312' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::~TimeBasedRollingPolicy() [_ZTv0_n24_N7log4cxx7rolling22TimeBasedRollingPolicyD1Ev]', + '32' => '(int (*)(...)) 0x00000000000010', + '320' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::~TimeBasedRollingPolicy() [_ZTv0_n24_N7log4cxx7rolling22TimeBasedRollingPolicyD0Ev]', + '328' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::getClass() const [_ZTv0_n32_NK7log4cxx7rolling22TimeBasedRollingPolicy8getClassEv]', + '336' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZTv0_n40_NK7log4cxx7rolling22TimeBasedRollingPolicy10instanceofERKNS_7helpers5ClassE]', + '344' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::cast(log4cxx::helpers::Class const&) const [_ZTv0_n48_NK7log4cxx7rolling22TimeBasedRollingPolicy4castERKNS_7helpers5ClassE]', + '352' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZTv0_n64_N7log4cxx7rolling22TimeBasedRollingPolicy15activateOptionsERNS_7helpers4PoolE]', + '360' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZTv0_n72_N7log4cxx7rolling22TimeBasedRollingPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '368' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::initialize(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZTv0_n88_N7log4cxx7rolling22TimeBasedRollingPolicy10initializeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', + '376' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::rollover(std::__cxx11::basic_string, std::allocator > const&, bool, log4cxx::helpers::Pool&) [_ZTv0_n96_N7log4cxx7rolling22TimeBasedRollingPolicy8rolloverERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRNS_7helpers4PoolE]', + '384' => '(int (*)(...)) virtual thunk to log4cxx::rolling::TimeBasedRollingPolicy::getFormatSpecifiers[abi:cxx11]() const [_ZTv0_n112_NK7log4cxx7rolling22TimeBasedRollingPolicy19getFormatSpecifiersB5cxx11Ev]', + '40' => '0u', + '48' => '0u', + '56' => '(int (*)(...)) 0x00000000000010', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '5657573' => { + 'Line' => '42', + 'Memb' => { + '0' => { + 'name' => 'nextCheck', 'offset' => '0', - 'type' => '6550220' + 'type' => '1914488' + }, + '1' => { + 'name' => 'lastFileName', + 'offset' => '8', + 'type' => '209661' + }, + '10' => { + 'name' => '_fileNamePattern', + 'offset' => '296', + 'type' => '209661' + }, + '11' => { + 'name' => 'multiprocess', + 'offset' => '352', + 'type' => '174077' + }, + '12' => { + 'name' => 'throwIOExceptionOnForkFailure', + 'offset' => '353', + 'type' => '174077' + }, + '2' => { + 'name' => 'suffixLength', + 'offset' => '64', + 'type' => '190263' + }, + '3' => { + 'name' => '_mmap', + 'offset' => '72', + 'type' => '48297282' + }, + '4' => { + 'name' => '_mmapPool', + 'offset' => '86', + 'type' => '207830' + }, + '5' => { + 'name' => '_file_map', + 'offset' => '114', + 'type' => '1932117' + }, + '6' => { + 'name' => '_mapFileName', + 'offset' => '128', + 'type' => '89533' + }, + '7' => { + 'name' => '_lock_file', + 'offset' => '274', + 'type' => '1932117' + }, + '8' => { + 'name' => 'bAlreadyInitialized', + 'offset' => '288', + 'type' => '174077' + }, + '9' => { + 'name' => 'bRefreshCurFile', + 'offset' => '289', + 'type' => '174077' } }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6575644' - }, - '1' => { - 'key' => '_Dp', - 'type' => '6548598' - } - }, - 'Type' => 'Class' + 'Name' => 'struct log4cxx::rolling::TimeBasedRollingPolicy::TimeBasedRollingPolicyPrivate', + 'NameSpace' => 'log4cxx::rolling::TimeBasedRollingPolicy', + 'Private' => 1, + 'Size' => '168', + 'Source' => 'timebasedrollingpolicy.cpp', + 'Type' => 'Struct' }, - '6549007' => { + '5657578' => { 'Base' => { - '6548598' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '6548598' - } - }, - 'Type' => 'Struct' + 'Header' => 'timebasedrollingpolicy.h', + 'Line' => '143', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy', + 'NameSpace' => 'log4cxx::rolling::TimeBasedRollingPolicy', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::~ClazzTimeBasedRollingPolicy() [_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::~ClazzTimeBasedRollingPolicy() [_ZN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy::newInstance() const [_ZNK7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicy11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy) [_ZTIN7log4cxx7rolling22TimeBasedRollingPolicy27ClazzTimeBasedRollingPolicyE]' + } + }, + '5657735' => { + 'BaseType' => '5657578', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy const', + 'Size' => '8', + 'Type' => 'Const' }, - '6549260' => { + '5657757' => { 'Base' => { - '6549007' => { - 'access' => 'private', + '5658455' => { 'pos' => '0' } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '6548598' - } - }, - 'Type' => 'Struct' - }, - '6549559' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'sizebasedtriggeringpolicy.h', + 'Line' => '43', 'Memb' => { '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '6576485' + 'access' => 'protected', + 'name' => 'maxFileSize', + 'offset' => '8', + 'type' => '190816' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::pattern::FormattingInfo::FormattingInfoPrivate*>', - 'NameSpace' => 'std', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::isTriggeringEvent(log4cxx::Appender*, std::shared_ptr const&, std::__cxx11::basic_string, std::allocator > const&, unsigned long) [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::SizeBasedTriggeringPolicy) [_ZTIN7log4cxx7rolling25SizeBasedTriggeringPolicyE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::~SizeBasedTriggeringPolicy() [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD1Ev]', + '88' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::~SizeBasedTriggeringPolicy() [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicyD0Ev]', + '96' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::getClass() const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy8getClassEv]' + } + }, + '5657766' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'sizebasedtriggeringpolicy.h', + 'Line' => '45', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy', + 'NameSpace' => 'log4cxx::rolling::SizeBasedTriggeringPolicy', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '6576485' - } - }, - 'Type' => 'Struct' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::~ClazzSizeBasedTriggeringPolicy() [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD2Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::~ClazzSizeBasedTriggeringPolicy() [_ZN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy::newInstance() const [_ZNK7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicy11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy) [_ZTIN7log4cxx7rolling25SizeBasedTriggeringPolicy30ClazzSizeBasedTriggeringPolicyE]' + } }, - '6549819' => { + '5657923' => { + 'BaseType' => '5657766', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5657945' => { 'Base' => { - '6549260' => { + '5661553' => { 'pos' => '0' - }, - '6549559' => { - 'access' => 'private', - 'pos' => '1' } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::pattern::FormattingInfo::FormattingInfoPrivate*>', - 'NameSpace' => 'std', + 'Header' => 'rollingfileappender.h', + 'Line' => '79', + 'Name' => 'log4cxx::rolling::RollingFileAppender', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingFileAppender) [_ZTIN7log4cxx7rolling19RollingFileAppenderE]', + '168' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::~RollingFileAppender() [_ZN7log4cxx7rolling19RollingFileAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::~RollingFileAppender() [_ZN7log4cxx7rolling19RollingFileAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::getClass() const [_ZNK7log4cxx7rolling19RollingFileAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling19RollingFileAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling19RollingFileAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling19RollingFileAppender15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling19RollingFileAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::close() [_ZN7log4cxx7rolling19RollingFileAppender5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::WriterAppender::requiresLayout() const [_ZNK7log4cxx14WriterAppender14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::WriterAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '312' => '(int (*)(...)) log4cxx::WriterAppender::checkEntryConditions() const [_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv]', + '32' => '0u', + '320' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::createWriter(std::shared_ptr&) [_ZN7log4cxx7rolling19RollingFileAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE]', + '328' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::subAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling19RollingFileAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '336' => '(int (*)(...)) log4cxx::WriterAppender::writeFooter(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE]', + '344' => '(int (*)(...)) log4cxx::WriterAppender::writeHeader(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE]', + '352' => '(int (*)(...)) log4cxx::FileAppender::setFile(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx12FileAppender7setFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '5657954' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'rollingfileappender.h', + 'Line' => '81', + 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender', + 'NameSpace' => 'log4cxx::rolling::RollingFileAppender', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '6576485' - } - }, - 'Type' => 'Struct' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::~ClazzRollingFileAppender() [_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::~ClazzRollingFileAppender() [_ZN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender::newInstance() const [_ZNK7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender) [_ZTIN7log4cxx7rolling19RollingFileAppender24ClazzRollingFileAppenderE]' + } + }, + '5658111' => { + 'BaseType' => '5657954', + 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender const', + 'Size' => '8', + 'Type' => 'Const' }, - '6550220' => { + '5658133' => { 'Base' => { - '6549819' => { + '5658455' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + 'Header' => 'manualtriggeringpolicy.h', + 'Line' => '43', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy', + 'NameSpace' => 'log4cxx::rolling', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '6576485' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx7rolling22ManualTriggeringPolicy15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx7rolling22ManualTriggeringPolicy9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::isTriggeringEvent(log4cxx::Appender*, std::shared_ptr const&, std::__cxx11::basic_string, std::allocator > const&, unsigned long) [_ZN7log4cxx7rolling22ManualTriggeringPolicy17isTriggeringEventEPNS_8AppenderERKSt10shared_ptrINS_3spi12LoggingEventEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ManualTriggeringPolicy) [_ZTIN7log4cxx7rolling22ManualTriggeringPolicyE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::~ManualTriggeringPolicy() [_ZN7log4cxx7rolling22ManualTriggeringPolicyD1Ev]', + '88' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::~ManualTriggeringPolicy() [_ZN7log4cxx7rolling22ManualTriggeringPolicyD0Ev]', + '96' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::getClass() const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy8getClassEv]' + } + }, + '5658142' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'manualtriggeringpolicy.h', + 'Line' => '45', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy', + 'NameSpace' => 'log4cxx::rolling::ManualTriggeringPolicy', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::~ClazzManualTriggeringPolicy() [_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::~ClazzManualTriggeringPolicy() [_ZN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::newInstance() const [_ZTch0_h0_NK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy::newInstance() const [_ZNK7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicy11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy) [_ZTIN7log4cxx7rolling22ManualTriggeringPolicy27ClazzManualTriggeringPolicyE]' + } + }, + '5658299' => { + 'BaseType' => '5658142', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy const', + 'Size' => '8', + 'Type' => 'Const' }, - '6550550' => { + '5658321' => { + 'Base' => { + '566161' => { + 'pos' => '0', + 'virtual' => 1 + } + }, 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '6548684' - } + 'Header' => 'rollingpolicy.h', + 'Line' => '41', + 'Name' => 'log4cxx::rolling::RollingPolicy', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) __cxa_pure_virtual', + '112' => '(int (*)(...)) __cxa_pure_virtual', + '120' => '(int (*)(...)) __cxa_pure_virtual', + '128' => '(int (*)(...)) __cxa_pure_virtual', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '144' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicy) [_ZTIN7log4cxx7rolling13RollingPolicyE]', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '(int (*)(...)) log4cxx::rolling::RollingPolicy::getClass() const [_ZNK7log4cxx7rolling13RollingPolicy8getClassEv]' + } + }, + '5658330' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + 'Header' => 'rollingpolicy.h', + 'Line' => '44', + 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy', + 'NameSpace' => 'log4cxx::rolling::RollingPolicy', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6575644' - }, - '1' => { - 'key' => '_Dp', - 'type' => '6548598' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::RollingPolicy::ClazzRollingPolicy::~ClazzRollingPolicy() [_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD1Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::RollingPolicy::ClazzRollingPolicy::~ClazzRollingPolicy() [_ZN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::RollingPolicy::ClazzRollingPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling13RollingPolicy18ClazzRollingPolicy7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::RollingPolicy::ClazzRollingPolicy) [_ZTIN7log4cxx7rolling13RollingPolicy18ClazzRollingPolicyE]' + } }, - '65511' => { - 'BaseType' => '63748', - 'Name' => 'struct log4cxx::rolling::Action::ActionPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '655127' => { - 'BaseType' => '652762', - 'Name' => 'apr_threadkey_t*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '65517' => { - 'BaseType' => '65511', - 'Name' => 'struct log4cxx::rolling::Action::ActionPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '655298' => { - 'BaseType' => '648882', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '655304' => { - 'BaseType' => '655298', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '655442' => { - 'BaseType' => '623053', - 'Name' => 'std::__shared_ptr::element_type*', + '5658449' => { + 'BaseType' => '5658330', + 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5658455' => { + 'Base' => { + '209311' => { + 'pos' => '1', + 'virtual' => 1 + }, + '566161' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'triggeringpolicy.h', + 'Line' => '44', + 'Name' => 'log4cxx::rolling::TriggeringPolicy', + 'NameSpace' => 'log4cxx::rolling', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16TriggeringPolicy10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7rolling16TriggeringPolicy4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) __cxa_pure_virtual', + '128' => '(int (*)(...)) __cxa_pure_virtual', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TriggeringPolicy) [_ZTIN7log4cxx7rolling16TriggeringPolicyE]', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::getClass() const [_ZNK7log4cxx7rolling16TriggeringPolicy8getClassEv]' + } + }, + '5658461' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'triggeringpolicy.h', + 'Line' => '48', + 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy', + 'NameSpace' => 'log4cxx::rolling::TriggeringPolicy', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy::~ClazzTriggeringPolicy() [_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD2Ev]', + '24' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy::~ClazzTriggeringPolicy() [_ZN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicy7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy) [_ZTIN7log4cxx7rolling16TriggeringPolicy21ClazzTriggeringPolicyE]' + } + }, + '5658580' => { + 'BaseType' => '5658461', + 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy const', + 'Size' => '8', + 'Type' => 'Const' + }, + '565893' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'loggerfactory.h', + 'Line' => '32', + 'Name' => 'log4cxx::spi::LoggerFactory', + 'NameSpace' => 'log4cxx::spi', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggerFactory) [_ZTIN7log4cxx3spi13LoggerFactoryE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::spi::LoggerFactory::getClass() const [_ZNK7log4cxx3spi13LoggerFactory8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } }, - '655477' => { - 'BaseType' => '566095', - 'Name' => 'std::shared_ptrconst&', + '565902' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'loggerfactory.h', + 'Line' => '35', + 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory', + 'NameSpace' => 'log4cxx::spi::LoggerFactory', 'Size' => '8', - 'Type' => 'Ref' - }, - '655768' => { - 'BaseType' => '50179', - 'Name' => 'unsigned char[24]', - 'Size' => '24', - 'Type' => 'Array' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::LoggerFactory::ClazzLoggerFactory::~ClazzLoggerFactory() [_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::LoggerFactory::ClazzLoggerFactory::~ClazzLoggerFactory() [_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::LoggerFactory::ClazzLoggerFactory::getName[abi:cxx11]() const [_ZNK7log4cxx3spi13LoggerFactory18ClazzLoggerFactory7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggerFactory::ClazzLoggerFactory) [_ZTIN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryE]' + } }, - '6574137' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '5659045' => { + 'Header' => 'propertysetter.h', + 'Line' => '62', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'access' => 'protected', + 'name' => 'obj', 'offset' => '0', - 'type' => '55091' + 'type' => '562699' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '6575738' - } - }, + 'Name' => 'log4cxx::config::PropertySetter', + 'NameSpace' => 'log4cxx::config', + 'Size' => '16', 'Type' => 'Class' }, - '6574897' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '5659265' => { + 'Base' => { + '1378014' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'fallbackerrorhandler.h', + 'Line' => '40', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '61461' + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '5558656' } }, - 'Name' => 'log4cxx::helpers::WideLife >', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'log4cxx::varia::FallbackErrorHandler', + 'NameSpace' => 'log4cxx::varia', 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '6162484' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '(int (*)(...)) (& typeinfo for log4cxx::varia::FallbackErrorHandler) [_ZTIN7log4cxx5varia20FallbackErrorHandlerE]', + '136' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::~FallbackErrorHandler() [_ZN7log4cxx5varia20FallbackErrorHandlerD1Ev]', + '144' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::~FallbackErrorHandler() [_ZN7log4cxx5varia20FallbackErrorHandlerD0Ev]', + '152' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::getClass() const [_ZNK7log4cxx5varia20FallbackErrorHandler8getClassEv]', + '16' => '0u', + '160' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx5varia20FallbackErrorHandler10instanceofERKNS_7helpers5ClassE]', + '168' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx5varia20FallbackErrorHandler4castERKNS_7helpers5ClassE]', + '176' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx5varia20FallbackErrorHandler15activateOptionsERNS_7helpers4PoolE]', + '184' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx5varia20FallbackErrorHandler9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '192' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::setLogger(std::shared_ptr const&) [_ZN7log4cxx5varia20FallbackErrorHandler9setLoggerERKSt10shared_ptrINS_6LoggerEE]', + '200' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&, std::exception const&, int) const [_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioni]', + '208' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '216' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::error(std::__cxx11::basic_string, std::allocator > const&, std::exception const&, int, std::shared_ptr const&) const [_ZNK7log4cxx5varia20FallbackErrorHandler5errorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt9exceptioniRKSt10shared_ptrINS_3spi12LoggingEventEE]', + '224' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::setAppender(std::shared_ptr const&) [_ZN7log4cxx5varia20FallbackErrorHandler11setAppenderERKSt10shared_ptrINS_8AppenderEE]', + '232' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::setBackupAppender(std::shared_ptr const&) [_ZN7log4cxx5varia20FallbackErrorHandler17setBackupAppenderERKSt10shared_ptrINS_8AppenderEE]', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } }, - '6575644' => { - 'Line' => '25', + '5659271' => { + 'Line' => '35', 'Memb' => { '0' => { - 'name' => 'minLength', + 'name' => 'backup', 'offset' => '0', - 'type' => '50239' + 'type' => '11931440' }, '1' => { - 'name' => 'maxLength', - 'offset' => '4', - 'type' => '50239' + 'name' => 'primary', + 'offset' => '22', + 'type' => '11931440' }, '2' => { - 'name' => 'leftAlign', - 'offset' => '8', - 'type' => '50291' + 'name' => 'loggers', + 'offset' => '50', + 'type' => '11851511' } }, - 'Name' => 'struct log4cxx::pattern::FormattingInfo::FormattingInfoPrivate', - 'NameSpace' => 'log4cxx::pattern::FormattingInfo', + 'Name' => 'struct log4cxx::varia::FallbackErrorHandler::FallbackErrorHandlerPrivate', + 'NameSpace' => 'log4cxx::varia::FallbackErrorHandler', 'Private' => 1, - 'Size' => '12', - 'Source' => 'formattinginfo.cpp', + 'Size' => '56', + 'Source' => 'fallbackerrorhandler.cpp', 'Type' => 'Struct' }, - '6575738' => { + '5659276' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'formattinginfo.h', - 'Line' => '48', - 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo', - 'NameSpace' => 'log4cxx::pattern::FormattingInfo', + 'Header' => 'fallbackerrorhandler.h', + 'Line' => '47', + 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler', + 'NameSpace' => 'log4cxx::varia::FallbackErrorHandler', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::ClazzFormattingInfo::~ClazzFormattingInfo() [_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::ClazzFormattingInfo::~ClazzFormattingInfo() [_ZN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::FormattingInfo::ClazzFormattingInfo::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern14FormattingInfo19ClazzFormattingInfo7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FormattingInfo::ClazzFormattingInfo) [_ZTIN7log4cxx7pattern14FormattingInfo19ClazzFormattingInfoE]' + '16' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::~ClazzFallbackErrorHandler() [_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD1Ev]', + '24' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::~ClazzFallbackErrorHandler() [_ZN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::newInstance() const [_ZTch0_h0_NK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::getName[abi:cxx11]() const [_ZNK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler::newInstance() const [_ZNK7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandler11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler) [_ZTIN7log4cxx5varia20FallbackErrorHandler25ClazzFallbackErrorHandlerE]' } }, - '6575895' => { - 'BaseType' => '6575738', - 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo const', + '5659433' => { + 'BaseType' => '5659276', + 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler const', 'Size' => '8', 'Type' => 'Const' }, - '6576369' => { - 'BaseType' => '6295418', - 'Name' => 'log4cxx::pattern::FormattingInfo const', - 'Size' => '16', - 'Type' => 'Const' - }, - '6576374' => { - 'BaseType' => '6162484', - 'Header' => 'formattinginfo.h', - 'Line' => '96', - 'Name' => 'log4cxx::pattern::FormattingInfoPtr', - 'NameSpace' => 'log4cxx::pattern', + '5659468' => { + 'Base' => { + '54320705' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'xmlsocketappender.h', + 'Line' => '99', + 'Name' => 'log4cxx::net::XMLSocketAppender', + 'NameSpace' => 'log4cxx::net', 'Size' => '16', - 'Type' => 'Typedef' - }, - '6576485' => { - 'BaseType' => '6575644', - 'Name' => 'struct log4cxx::pattern::FormattingInfo::FormattingInfoPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::XMLSocketAppender) [_ZTIN7log4cxx3net17XMLSocketAppenderE]', + '168' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::~XMLSocketAppender() [_ZN7log4cxx3net17XMLSocketAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::~XMLSocketAppender() [_ZN7log4cxx3net17XMLSocketAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::getClass() const [_ZNK7log4cxx3net17XMLSocketAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net17XMLSocketAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net17XMLSocketAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net22SocketAppenderSkeleton15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net22SocketAppenderSkeleton9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::close() [_ZN7log4cxx3net22SocketAppenderSkeleton5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::net::SocketAppenderSkeleton::requiresLayout() const [_ZNK7log4cxx3net22SocketAppenderSkeleton14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net17XMLSocketAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '312' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::setSocket(std::shared_ptr&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net17XMLSocketAppender9setSocketERSt10shared_ptrINS_7helpers6SocketEERNS3_4PoolE]', + '32' => '0u', + '320' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::cleanUp(log4cxx::helpers::Pool&) [_ZN7log4cxx3net17XMLSocketAppender7cleanUpERNS_7helpers4PoolE]', + '328' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::getDefaultDelay() const [_ZNK7log4cxx3net17XMLSocketAppender15getDefaultDelayEv]', + '336' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::getDefaultPort() const [_ZNK7log4cxx3net17XMLSocketAppender14getDefaultPortEv]', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } }, - '6576785' => { - 'BaseType' => '6574137', - 'Name' => 'log4cxx::helpers::WideLife*', + '5659477' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'xmlsocketappender.h', + 'Line' => '117', + 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender', + 'NameSpace' => 'log4cxx::net::XMLSocketAppender', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::~ClazzXMLSocketAppender() [_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD2Ev]', + '24' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::~ClazzXMLSocketAppender() [_ZN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::newInstance() const [_ZTch0_h0_NK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::getName[abi:cxx11]() const [_ZNK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender::newInstance() const [_ZNK7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender) [_ZTIN7log4cxx3net17XMLSocketAppender22ClazzXMLSocketAppenderE]' + } }, - '6576791' => { - 'BaseType' => '6576785', - 'Name' => 'log4cxx::helpers::WideLife*const', + '5659634' => { + 'BaseType' => '5659477', + 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender const', 'Size' => '8', 'Type' => 'Const' }, - '6577004' => { - 'BaseType' => '6295418', - 'Name' => 'log4cxx::pattern::FormattingInfo*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6577010' => { - 'BaseType' => '6577004', - 'Name' => 'log4cxx::pattern::FormattingInfo*const', - 'Size' => '8', - 'Type' => 'Const' + '5659656' => { + 'Base' => { + '1379573' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'telnetappender.h', + 'Line' => '64', + 'Name' => 'log4cxx::net::TelnetAppender', + 'NameSpace' => 'log4cxx::net', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::TelnetAppender) [_ZTIN7log4cxx3net14TelnetAppenderE]', + '168' => '(int (*)(...)) log4cxx::net::TelnetAppender::~TelnetAppender() [_ZN7log4cxx3net14TelnetAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::net::TelnetAppender::~TelnetAppender() [_ZN7log4cxx3net14TelnetAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::net::TelnetAppender::getClass() const [_ZNK7log4cxx3net14TelnetAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::net::TelnetAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net14TelnetAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::net::TelnetAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net14TelnetAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::net::TelnetAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net14TelnetAppender15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::net::TelnetAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net14TelnetAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::net::TelnetAppender::close() [_ZN7log4cxx3net14TelnetAppender5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::net::TelnetAppender::requiresLayout() const [_ZNK7log4cxx3net14TelnetAppender14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::net::TelnetAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net14TelnetAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } }, - '6577050' => { - 'BaseType' => '6574897', - 'Name' => 'log4cxx::helpers::WideLife >*', + '5659665' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'telnetappender.h', + 'Line' => '73', + 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender', + 'NameSpace' => 'log4cxx::net::TelnetAppender', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::TelnetAppender::ClazzTelnetAppender::~ClazzTelnetAppender() [_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD2Ev]', + '24' => '(int (*)(...)) log4cxx::net::TelnetAppender::ClazzTelnetAppender::~ClazzTelnetAppender() [_ZN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::TelnetAppender::ClazzTelnetAppender::newInstance() const [_ZTch0_h0_NK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::net::TelnetAppender::ClazzTelnetAppender::getName[abi:cxx11]() const [_ZNK7log4cxx3net14TelnetAppender19ClazzTelnetAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::net::TelnetAppender::ClazzTelnetAppender::newInstance() const [_ZNK7log4cxx3net14TelnetAppender19ClazzTelnetAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::TelnetAppender::ClazzTelnetAppender) [_ZTIN7log4cxx3net14TelnetAppender19ClazzTelnetAppenderE]' + } }, - '6577056' => { - 'BaseType' => '6577050', - 'Name' => 'log4cxx::helpers::WideLife >*const', + '5659822' => { + 'BaseType' => '5659665', + 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender const', 'Size' => '8', 'Type' => 'Const' }, - '6577182' => { - 'BaseType' => '6576369', - 'Name' => 'log4cxx::pattern::FormattingInfo const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6577188' => { - 'BaseType' => '6577182', - 'Name' => 'log4cxx::pattern::FormattingInfo const*const', - 'Size' => '8', - 'Type' => 'Const' + '5659844' => { + 'Base' => { + '1379573' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'syslogappender.h', + 'Line' => '41', + 'Name' => 'log4cxx::net::SyslogAppender', + 'NameSpace' => 'log4cxx::net', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::SyslogAppender) [_ZTIN7log4cxx3net14SyslogAppenderE]', + '168' => '(int (*)(...)) log4cxx::net::SyslogAppender::~SyslogAppender() [_ZN7log4cxx3net14SyslogAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::net::SyslogAppender::~SyslogAppender() [_ZN7log4cxx3net14SyslogAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::net::SyslogAppender::getClass() const [_ZNK7log4cxx3net14SyslogAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::net::SyslogAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net14SyslogAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::net::SyslogAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net14SyslogAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::net::SyslogAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net14SyslogAppender15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::net::SyslogAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net14SyslogAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::net::SyslogAppender::close() [_ZN7log4cxx3net14SyslogAppender5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::net::SyslogAppender::requiresLayout() const [_ZNK7log4cxx3net14SyslogAppender14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::net::SyslogAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net14SyslogAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } }, - '6577445' => { - 'BaseType' => '6575738', - 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo*', + '5659853' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'syslogappender.h', + 'Line' => '44', + 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender', + 'NameSpace' => 'log4cxx::net::SyslogAppender', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::SyslogAppender::ClazzSyslogAppender::~ClazzSyslogAppender() [_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD1Ev]', + '24' => '(int (*)(...)) log4cxx::net::SyslogAppender::ClazzSyslogAppender::~ClazzSyslogAppender() [_ZN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::SyslogAppender::ClazzSyslogAppender::newInstance() const [_ZTch0_h0_NK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::net::SyslogAppender::ClazzSyslogAppender::getName[abi:cxx11]() const [_ZNK7log4cxx3net14SyslogAppender19ClazzSyslogAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::net::SyslogAppender::ClazzSyslogAppender::newInstance() const [_ZNK7log4cxx3net14SyslogAppender19ClazzSyslogAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SyslogAppender::ClazzSyslogAppender) [_ZTIN7log4cxx3net14SyslogAppender19ClazzSyslogAppenderE]' + } }, - '6577451' => { - 'BaseType' => '6577445', - 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo*const', + '5660010' => { + 'BaseType' => '5659853', + 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender const', 'Size' => '8', 'Type' => 'Const' }, - '6577456' => { - 'BaseType' => '6575895', - 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo const*', + '5660032' => { + 'Base' => { + '1379573' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'smtpappender.h', + 'Line' => '71', + 'Name' => 'log4cxx::net::SMTPAppender', + 'NameSpace' => 'log4cxx::net', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::net::SMTPAppender) [_ZTIN7log4cxx3net12SMTPAppenderE]', + '168' => '(int (*)(...)) log4cxx::net::SMTPAppender::~SMTPAppender() [_ZN7log4cxx3net12SMTPAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::net::SMTPAppender::~SMTPAppender() [_ZN7log4cxx3net12SMTPAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::net::SMTPAppender::getClass() const [_ZNK7log4cxx3net12SMTPAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::net::SMTPAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net12SMTPAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::net::SMTPAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx3net12SMTPAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::net::SMTPAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3net12SMTPAppender15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::net::SMTPAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3net12SMTPAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::net::SMTPAppender::close() [_ZN7log4cxx3net12SMTPAppender5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::net::SMTPAppender::requiresLayout() const [_ZNK7log4cxx3net12SMTPAppender14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::net::SMTPAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx3net12SMTPAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '5660038' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'smtpappender.h', + 'Line' => '87', + 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender', + 'NameSpace' => 'log4cxx::net::SMTPAppender', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::net::SMTPAppender::ClazzSMTPAppender::~ClazzSMTPAppender() [_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD1Ev]', + '24' => '(int (*)(...)) log4cxx::net::SMTPAppender::ClazzSMTPAppender::~ClazzSMTPAppender() [_ZN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::net::SMTPAppender::ClazzSMTPAppender::newInstance() const [_ZTch0_h0_NK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::net::SMTPAppender::ClazzSMTPAppender::getName[abi:cxx11]() const [_ZNK7log4cxx3net12SMTPAppender17ClazzSMTPAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::net::SMTPAppender::ClazzSMTPAppender::newInstance() const [_ZNK7log4cxx3net12SMTPAppender17ClazzSMTPAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::net::SMTPAppender::ClazzSMTPAppender) [_ZTIN7log4cxx3net12SMTPAppender17ClazzSMTPAppenderE]' + } }, - '6577462' => { - 'BaseType' => '6577456', - 'Name' => 'log4cxx::pattern::FormattingInfo::ClazzFormattingInfo const*const', + '5660195' => { + 'BaseType' => '5660038', + 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender const', 'Size' => '8', 'Type' => 'Const' }, - '65819' => { - 'BaseType' => '62708', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '65825' => { - 'BaseType' => '65819', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '65876' => { - 'BaseType' => '63066', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '65882' => { - 'BaseType' => '65876', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '66028' => { - 'BaseType' => '63730', - 'Name' => 'log4cxx::rolling::Action*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '66034' => { - 'BaseType' => '66028', - 'Name' => 'log4cxx::rolling::Action*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '66056' => { - 'BaseType' => '64609', - 'Name' => 'log4cxx::rolling::Action const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '66062' => { - 'BaseType' => '66056', - 'Name' => 'log4cxx::rolling::Action const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '66067' => { - 'BaseType' => '45930', - 'Name' => 'std::exception const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '66091' => { - 'BaseType' => '66097', - 'Name' => 'int(**)(...)', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '66097' => { - 'Name' => 'int(*)(...)', - 'Param' => { - '0' => { - 'type' => '-1' - } - }, - 'Return' => '50231', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '66108' => { - 'BaseType' => '63928', - 'Name' => 'log4cxx::rolling::Action::ClazzAction*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '66114' => { - 'BaseType' => '66108', - 'Name' => 'log4cxx::rolling::Action::ClazzAction*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '66119' => { - 'BaseType' => '64086', - 'Name' => 'log4cxx::rolling::Action::ClazzAction const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '66125' => { - 'BaseType' => '66119', - 'Name' => 'log4cxx::rolling::Action::ClazzAction const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '66130' => { - 'BaseType' => '63470', - 'Name' => 'log4cxx::helpers::Object*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '66136' => { - 'BaseType' => '63700', - 'Name' => 'log4cxx::helpers::Object const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6653100' => { + '566021' => { + 'BaseType' => '565902', + 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5660230' => { + 'Base' => { + '564875' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6677279' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6653248' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6677279' - } - }, - 'Type' => 'Struct' - }, - '6653262' => { - 'BaseType' => '6677279', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Header' => 'locationinfofilter.h', + 'Line' => '41', + 'Name' => 'log4cxx::filter::LocationInfoFilter', + 'NameSpace' => 'log4cxx::filter', 'Size' => '16', - 'Type' => 'Typedef' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter18LocationInfoFilter10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter18LocationInfoFilter4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter18LocationInfoFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter18LocationInfoFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LocationInfoFilter) [_ZTIN7log4cxx6filter18LocationInfoFilterE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::~LocationInfoFilter() [_ZN7log4cxx6filter18LocationInfoFilterD1Ev]', + '88' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::~LocationInfoFilter() [_ZN7log4cxx6filter18LocationInfoFilterD0Ev]', + '96' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::getClass() const [_ZNK7log4cxx6filter18LocationInfoFilter8getClassEv]' + } }, - '6653285' => { + '5660239' => { 'Base' => { - '6653100' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '6680107' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6677279' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + 'Header' => 'locationinfofilter.h', + 'Line' => '45', + 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter', + 'NameSpace' => 'log4cxx::filter::LocationInfoFilter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::~ClazzLocationInfoFilter() [_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::~ClazzLocationInfoFilter() [_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::newInstance() const [_ZNK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter) [_ZTIN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterE]' + } }, - '6653571' => { - 'BaseType' => '6653262', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' + '566027' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'appenderattachable.h', + 'Line' => '33', + 'Name' => 'log4cxx::spi::AppenderAttachable', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) __cxa_pure_virtual', + '112' => '(int (*)(...)) __cxa_pure_virtual', + '120' => '(int (*)(...)) __cxa_pure_virtual', + '128' => '(int (*)(...)) __cxa_pure_virtual', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '144' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::AppenderAttachable) [_ZTIN7log4cxx3spi18AppenderAttachableE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::spi::AppenderAttachable::getClass() const [_ZNK7log4cxx3spi18AppenderAttachable8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } + }, + '566036' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'appenderattachable.h', + 'Line' => '37', + 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable', + 'NameSpace' => 'log4cxx::spi::AppenderAttachable', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable::~ClazzAppenderAttachable() [_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable::~ClazzAppenderAttachable() [_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable::getName[abi:cxx11]() const [_ZNK7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachable7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable) [_ZTIN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableE]' + } + }, + '5660396' => { + 'BaseType' => '5660239', + 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter const', + 'Size' => '8', + 'Type' => 'Const' }, - '6653981' => { + '5660418' => { 'Base' => { - '6653285' => { - 'pos' => '0' - } + '564875' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', + 'Header' => 'stringmatchfilter.h', + 'Line' => '48', + 'Name' => 'log4cxx::filter::StringMatchFilter', + 'NameSpace' => 'log4cxx::filter', 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6677279' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter17StringMatchFilter10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter17StringMatchFilter4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter17StringMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter17StringMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::StringMatchFilter) [_ZTIN7log4cxx6filter17StringMatchFilterE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::~StringMatchFilter() [_ZN7log4cxx6filter17StringMatchFilterD1Ev]', + '88' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::~StringMatchFilter() [_ZN7log4cxx6filter17StringMatchFilterD0Ev]', + '96' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::getClass() const [_ZNK7log4cxx6filter17StringMatchFilter8getClassEv]' + } }, - '6675615' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '5660427' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Header' => 'stringmatchfilter.h', + 'Line' => '55', + 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter', + 'NameSpace' => 'log4cxx::filter::StringMatchFilter', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '6677313' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::~ClazzStringMatchFilter() [_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::~ClazzStringMatchFilter() [_ZN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter::newInstance() const [_ZNK7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilter11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter) [_ZTIN7log4cxx6filter17StringMatchFilter22ClazzStringMatchFilterE]' + } + }, + '5660584' => { + 'BaseType' => '5660427', + 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter const', + 'Size' => '8', + 'Type' => 'Const' }, - '6677279' => { + '5660606' => { 'Base' => { - '2271385' => { - 'pos' => '0' - } + '564875' => { + 'pos' => '0' + } }, - 'Header' => 'fulllocationpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern', + 'Copied' => 1, + 'Header' => 'levelrangefilter.h', + 'Line' => '56', + 'Name' => 'log4cxx::filter::LevelRangeFilter', + 'NameSpace' => 'log4cxx::filter', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28FullLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '104' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter16LevelRangeFilter10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter16LevelRangeFilter4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter16LevelRangeFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter16LevelRangeFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', '16' => '0u', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FullLocationPatternConverter) [_ZTIN7log4cxx7pattern28FullLocationPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::~FullLocationPatternConverter() [_ZN7log4cxx7pattern28FullLocationPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::~FullLocationPatternConverter() [_ZN7log4cxx7pattern28FullLocationPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern28FullLocationPatternConverter8getClassEv]', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelRangeFilter) [_ZTIN7log4cxx6filter16LevelRangeFilterE]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28FullLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28FullLocationPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + '80' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::~LevelRangeFilter() [_ZN7log4cxx6filter16LevelRangeFilterD1Ev]', + '88' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::~LevelRangeFilter() [_ZN7log4cxx6filter16LevelRangeFilterD0Ev]', + '96' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::getClass() const [_ZNK7log4cxx6filter16LevelRangeFilter8getClassEv]' } }, - '6677313' => { + '5660615' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'fulllocationpatternconverter.h', - 'Line' => '39', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern::FullLocationPatternConverter', + 'Header' => 'levelrangefilter.h', + 'Line' => '63', + 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter', + 'NameSpace' => 'log4cxx::filter::LevelRangeFilter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter::~ClazzFullLocationPatternConverter() [_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter::~ClazzFullLocationPatternConverter() [_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter) [_ZTIN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterE]' + '16' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::~ClazzLevelRangeFilter() [_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD2Ev]', + '24' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::~ClazzLevelRangeFilter() [_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::newInstance() const [_ZNK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter) [_ZTIN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterE]' } }, - '6677471' => { - 'BaseType' => '6677313', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter const', + '5660772' => { + 'BaseType' => '5660615', + 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter const', 'Size' => '8', 'Type' => 'Const' }, - '6677875' => { - 'BaseType' => '6677279', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter const', + '5660794' => { + 'Base' => { + '564875' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'levelmatchfilter.h', + 'Line' => '42', + 'Name' => 'log4cxx::filter::LevelMatchFilter', + 'NameSpace' => 'log4cxx::filter', 'Size' => '16', - 'Type' => 'Const' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter16LevelMatchFilter10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter16LevelMatchFilter4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter16LevelMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter16LevelMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelMatchFilter) [_ZTIN7log4cxx6filter16LevelMatchFilterE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::~LevelMatchFilter() [_ZN7log4cxx6filter16LevelMatchFilterD1Ev]', + '88' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::~LevelMatchFilter() [_ZN7log4cxx6filter16LevelMatchFilterD0Ev]', + '96' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::getClass() const [_ZNK7log4cxx6filter16LevelMatchFilter8getClassEv]' + } }, - '6679817' => { - 'BaseType' => '6675615', - 'Name' => 'log4cxx::helpers::WideLife*', + '5660800' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'levelmatchfilter.h', + 'Line' => '49', + 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter', + 'NameSpace' => 'log4cxx::filter::LevelMatchFilter', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::~ClazzLevelMatchFilter() [_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::~ClazzLevelMatchFilter() [_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::newInstance() const [_ZNK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter) [_ZTIN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterE]' + } }, - '6679823' => { - 'BaseType' => '6679817', - 'Name' => 'log4cxx::helpers::WideLife*const', + '5660957' => { + 'BaseType' => '5660800', + 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter const', 'Size' => '8', 'Type' => 'Const' }, - '6680107' => { - 'BaseType' => '6653571', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' + '5660980' => { + 'Base' => { + '209311' => { + 'pos' => '1', + 'virtual' => 1 + }, + '3118759' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'propertyconfigurator.h', + 'Line' => '85', + 'Memb' => { + '0' => { + 'access' => 'protected', + 'name' => 'registry', + 'offset' => '8', + 'type' => '37481371' + }, + '1' => { + 'access' => 'protected', + 'name' => 'loggerFactory', + 'offset' => '22', + 'type' => '3118343' + } + }, + 'Name' => 'log4cxx::PropertyConfigurator', + 'NameSpace' => 'log4cxx', + 'Size' => '32', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::PropertyConfigurator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx20PropertyConfigurator4castERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::PropertyConfigurator::doConfigure(log4cxx::File const&, std::shared_ptr) [_ZN7log4cxx20PropertyConfigurator11doConfigureERKNS_4FileESt10shared_ptrINS_3spi16LoggerRepositoryEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '(int (*)(...)) (& typeinfo for log4cxx::PropertyConfigurator) [_ZTIN7log4cxx20PropertyConfiguratorE]', + '72' => '(int (*)(...)) log4cxx::PropertyConfigurator::~PropertyConfigurator() [_ZN7log4cxx20PropertyConfiguratorD1Ev]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::PropertyConfigurator::~PropertyConfigurator() [_ZN7log4cxx20PropertyConfiguratorD0Ev]', + '88' => '(int (*)(...)) log4cxx::PropertyConfigurator::getClass() const [_ZNK7log4cxx20PropertyConfigurator8getClassEv]', + '96' => '(int (*)(...)) log4cxx::PropertyConfigurator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx20PropertyConfigurator10instanceofERKNS_7helpers5ClassE]' + } }, - '6680125' => { - 'BaseType' => '6677279', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter*', + '5660989' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'propertyconfigurator.h', + 'Line' => '102', + 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator', + 'NameSpace' => 'log4cxx::PropertyConfigurator', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::~ClazzPropertyConfigurator() [_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD1Ev]', + '24' => '(int (*)(...)) log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::~ClazzPropertyConfigurator() [_ZN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::newInstance() const [_ZTch0_h0_NK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::getName[abi:cxx11]() const [_ZNK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::PropertyConfigurator::ClazzPropertyConfigurator::newInstance() const [_ZNK7log4cxx20PropertyConfigurator25ClazzPropertyConfigurator11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::PropertyConfigurator::ClazzPropertyConfigurator) [_ZTIN7log4cxx20PropertyConfigurator25ClazzPropertyConfiguratorE]' + } }, - '6680131' => { - 'BaseType' => '6680125', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter*const', + '5661146' => { + 'BaseType' => '5660989', + 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator const', 'Size' => '8', 'Type' => 'Const' }, - '6680153' => { - 'BaseType' => '6653981', - 'Name' => 'std::shared_ptr&&', + '5661168' => { + 'Base' => { + '1381112' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'simplelayout.h', + 'Line' => '37', + 'Name' => 'log4cxx::SimpleLayout', + 'NameSpace' => 'log4cxx', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::SimpleLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx12SimpleLayout10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::SimpleLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx12SimpleLayout4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::SimpleLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx12SimpleLayout15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::SimpleLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx12SimpleLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '136' => '(int (*)(...)) log4cxx::SimpleLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx12SimpleLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '144' => '(int (*)(...)) log4cxx::Layout::getContentType[abi:cxx11]() const [_ZNK7log4cxx6Layout14getContentTypeB5cxx11Ev]', + '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '16' => '0u', + '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '168' => '(int (*)(...)) log4cxx::SimpleLayout::ignoresThrowable() const [_ZNK7log4cxx12SimpleLayout16ignoresThrowableEv]', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::SimpleLayout) [_ZTIN7log4cxx12SimpleLayoutE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::SimpleLayout::~SimpleLayout() [_ZN7log4cxx12SimpleLayoutD1Ev]', + '88' => '(int (*)(...)) log4cxx::SimpleLayout::~SimpleLayout() [_ZN7log4cxx12SimpleLayoutD0Ev]', + '96' => '(int (*)(...)) log4cxx::SimpleLayout::getClass() const [_ZNK7log4cxx12SimpleLayout8getClassEv]' + } }, - '6680324' => { - 'BaseType' => '6677875', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter const*', + '5661177' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'simplelayout.h', + 'Line' => '40', + 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout', + 'NameSpace' => 'log4cxx::SimpleLayout', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::SimpleLayout::ClazzSimpleLayout::~ClazzSimpleLayout() [_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD2Ev]', + '24' => '(int (*)(...)) log4cxx::SimpleLayout::ClazzSimpleLayout::~ClazzSimpleLayout() [_ZN7log4cxx12SimpleLayout17ClazzSimpleLayoutD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::SimpleLayout::ClazzSimpleLayout::newInstance() const [_ZTch0_h0_NK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::SimpleLayout::ClazzSimpleLayout::getName[abi:cxx11]() const [_ZNK7log4cxx12SimpleLayout17ClazzSimpleLayout7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::SimpleLayout::ClazzSimpleLayout::newInstance() const [_ZNK7log4cxx12SimpleLayout17ClazzSimpleLayout11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::SimpleLayout::ClazzSimpleLayout) [_ZTIN7log4cxx12SimpleLayout17ClazzSimpleLayoutE]' + } }, - '6680330' => { - 'BaseType' => '6680324', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter const*const', + '5661334' => { + 'BaseType' => '5661177', + 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout const', 'Size' => '8', 'Type' => 'Const' }, - '6680635' => { - 'BaseType' => '6677313', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '6680641' => { - 'BaseType' => '6680635', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' + '5661367' => { + 'Base' => { + '1379573' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'odbcappender.h', + 'Line' => '142', + 'Name' => 'log4cxx::db::ODBCAppender', + 'NameSpace' => 'log4cxx::db', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::db::ODBCAppender) [_ZTIN7log4cxx2db12ODBCAppenderE]', + '168' => '(int (*)(...)) log4cxx::db::ODBCAppender::~ODBCAppender() [_ZN7log4cxx2db12ODBCAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::db::ODBCAppender::~ODBCAppender() [_ZN7log4cxx2db12ODBCAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::db::ODBCAppender::getClass() const [_ZNK7log4cxx2db12ODBCAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::db::ODBCAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx2db12ODBCAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::db::ODBCAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx2db12ODBCAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::db::ODBCAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::db::ODBCAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx2db12ODBCAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::db::ODBCAppender::close() [_ZN7log4cxx2db12ODBCAppender5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::db::ODBCAppender::requiresLayout() const [_ZNK7log4cxx2db12ODBCAppender14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::db::ODBCAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '312' => '(int (*)(...)) log4cxx::db::ODBCAppender::execute(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender7executeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '32' => '0u', + '320' => '(int (*)(...)) log4cxx::db::ODBCAppender::closeConnection(void*) [_ZN7log4cxx2db12ODBCAppender15closeConnectionEPv]', + '328' => '(int (*)(...)) log4cxx::db::ODBCAppender::getConnection(log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender13getConnectionERNS_7helpers4PoolE]', + '336' => '(int (*)(...)) log4cxx::db::ODBCAppender::flushBuffer(log4cxx::helpers::Pool&) [_ZN7log4cxx2db12ODBCAppender11flushBufferERNS_7helpers4PoolE]', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } }, - '6680646' => { - 'BaseType' => '6677471', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter const*', + '5661373' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'odbcappender.h', + 'Line' => '145', + 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender', + 'NameSpace' => 'log4cxx::db::ODBCAppender', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::db::ODBCAppender::ClazzODBCAppender::~ClazzODBCAppender() [_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD1Ev]', + '24' => '(int (*)(...)) log4cxx::db::ODBCAppender::ClazzODBCAppender::~ClazzODBCAppender() [_ZN7log4cxx2db12ODBCAppender17ClazzODBCAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::db::ODBCAppender::ClazzODBCAppender::newInstance() const [_ZTch0_h0_NK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::db::ODBCAppender::ClazzODBCAppender::getName[abi:cxx11]() const [_ZNK7log4cxx2db12ODBCAppender17ClazzODBCAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::db::ODBCAppender::ClazzODBCAppender::newInstance() const [_ZNK7log4cxx2db12ODBCAppender17ClazzODBCAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::ODBCAppender::ClazzODBCAppender) [_ZTIN7log4cxx2db12ODBCAppender17ClazzODBCAppenderE]' + } }, - '6680652' => { - 'BaseType' => '6680646', - 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter const*const', + '5661530' => { + 'BaseType' => '5661373', + 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender const', 'Size' => '8', 'Type' => 'Const' }, - '6796981' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '566155' => { + 'BaseType' => '566036', + 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5661553' => { + 'Base' => { + '3122360' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '6798674' - } - }, - 'Type' => 'Class' + 'Header' => 'fileappender.h', + 'Line' => '41', + 'Name' => 'log4cxx::FileAppender', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', + '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::FileAppender) [_ZTIN7log4cxx12FileAppenderE]', + '168' => '(int (*)(...)) log4cxx::FileAppender::~FileAppender() [_ZN7log4cxx12FileAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::FileAppender::~FileAppender() [_ZN7log4cxx12FileAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::FileAppender::getClass() const [_ZNK7log4cxx12FileAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::FileAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx12FileAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::FileAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx12FileAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::FileAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx12FileAppender15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::FileAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx12FileAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', + '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::WriterAppender::close() [_ZN7log4cxx14WriterAppender5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::WriterAppender::requiresLayout() const [_ZNK7log4cxx14WriterAppender14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::WriterAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '312' => '(int (*)(...)) log4cxx::WriterAppender::checkEntryConditions() const [_ZNK7log4cxx14WriterAppender20checkEntryConditionsEv]', + '32' => '0u', + '320' => '(int (*)(...)) log4cxx::WriterAppender::createWriter(std::shared_ptr&) [_ZN7log4cxx14WriterAppender12createWriterERSt10shared_ptrINS_7helpers12OutputStreamEE]', + '328' => '(int (*)(...)) log4cxx::WriterAppender::subAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender9subAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '336' => '(int (*)(...)) log4cxx::WriterAppender::writeFooter(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeFooterERNS_7helpers4PoolE]', + '344' => '(int (*)(...)) log4cxx::WriterAppender::writeHeader(log4cxx::helpers::Pool&) [_ZN7log4cxx14WriterAppender11writeHeaderERNS_7helpers4PoolE]', + '352' => '(int (*)(...)) log4cxx::FileAppender::setFile(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx12FileAppender7setFileERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } }, - '6798674' => { + '5661562' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'gzcompressaction.h', - 'Line' => '34', - 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction', - 'NameSpace' => 'log4cxx::rolling::GZCompressAction', + 'Header' => 'fileappender.h', + 'Line' => '47', + 'Name' => 'log4cxx::FileAppender::ClazzFileAppender', + 'NameSpace' => 'log4cxx::FileAppender', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::ClazzGZCompressAction::~ClazzGZCompressAction() [_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD2Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::ClazzGZCompressAction::~ClazzGZCompressAction() [_ZN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::ClazzGZCompressAction::getName[abi:cxx11]() const [_ZNK7log4cxx7rolling16GZCompressAction21ClazzGZCompressAction7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::GZCompressAction::ClazzGZCompressAction) [_ZTIN7log4cxx7rolling16GZCompressAction21ClazzGZCompressActionE]' + '16' => '(int (*)(...)) log4cxx::FileAppender::ClazzFileAppender::~ClazzFileAppender() [_ZN7log4cxx12FileAppender17ClazzFileAppenderD2Ev]', + '24' => '(int (*)(...)) log4cxx::FileAppender::ClazzFileAppender::~ClazzFileAppender() [_ZN7log4cxx12FileAppender17ClazzFileAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::FileAppender::ClazzFileAppender::newInstance() const [_ZTch0_h0_NK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::FileAppender::ClazzFileAppender::getName[abi:cxx11]() const [_ZNK7log4cxx12FileAppender17ClazzFileAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::FileAppender::ClazzFileAppender::newInstance() const [_ZNK7log4cxx12FileAppender17ClazzFileAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::FileAppender::ClazzFileAppender) [_ZTIN7log4cxx12FileAppender17ClazzFileAppenderE]' } }, - '6798832' => { - 'BaseType' => '6798674', - 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction const', + '566161' => { + 'Base' => { + '209311' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'optionhandler.h', + 'Line' => '34', + 'Name' => 'log4cxx::spi::OptionHandler', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::OptionHandler) [_ZTIN7log4cxx3spi13OptionHandlerE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::spi::OptionHandler::getClass() const [_ZNK7log4cxx3spi13OptionHandler8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) __cxa_pure_virtual', + '88' => '(int (*)(...)) __cxa_pure_virtual', + '96' => '(int (*)(...)) __cxa_pure_virtual' + } + }, + '566170' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'optionhandler.h', + 'Line' => '37', + 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler', + 'NameSpace' => 'log4cxx::spi::OptionHandler', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::spi::OptionHandler::ClazzOptionHandler::~ClazzOptionHandler() [_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD1Ev]', + '24' => '(int (*)(...)) log4cxx::spi::OptionHandler::ClazzOptionHandler::~ClazzOptionHandler() [_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::spi::OptionHandler::ClazzOptionHandler::getName[abi:cxx11]() const [_ZNK7log4cxx3spi13OptionHandler18ClazzOptionHandler7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::OptionHandler::ClazzOptionHandler) [_ZTIN7log4cxx3spi13OptionHandler18ClazzOptionHandlerE]' + } + }, + '5661721' => { + 'BaseType' => '5661562', + 'Name' => 'log4cxx::FileAppender::ClazzFileAppender const', 'Size' => '8', 'Type' => 'Const' }, - '6798837' => { - 'Base' => { - '63748' => { + '566289' => { + 'BaseType' => '566170', + 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler const', + 'Size' => '8', + 'Type' => 'Const' + }, + '566420' => { + 'BaseType' => '566161', + 'Name' => 'log4cxx::spi::OptionHandler const', + 'Type' => 'Const' + }, + '566426' => { + 'Base' => { + '566027' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Header' => 'logger.h', + 'Line' => '49', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '456055' + }, + '1' => { + 'access' => 'private', + 'name' => 'm_threshold', + 'offset' => '22', + 'type' => '190263' + } + }, + 'Name' => 'log4cxx::Logger', + 'NameSpace' => 'log4cxx', + 'Size' => '24', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '0u', + '112' => '(int (*)(...)) (& typeinfo for log4cxx::Logger) [_ZTIN7log4cxx6LoggerE]', + '120' => '(int (*)(...)) log4cxx::Logger::~Logger() [_ZN7log4cxx6LoggerD1Ev]', + '128' => '(int (*)(...)) log4cxx::Logger::~Logger() [_ZN7log4cxx6LoggerD0Ev]', + '136' => '(int (*)(...)) log4cxx::Logger::getClass() const [_ZNK7log4cxx6Logger8getClassEv]', + '144' => '(int (*)(...)) log4cxx::Logger::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Logger10instanceofERKNS_7helpers5ClassE]', + '152' => '(int (*)(...)) log4cxx::Logger::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Logger4castERKNS_7helpers5ClassE]', + '16' => '0u', + '160' => '(int (*)(...)) log4cxx::Logger::addAppender(std::shared_ptr) [_ZN7log4cxx6Logger11addAppenderESt10shared_ptrINS_8AppenderEE]', + '168' => '(int (*)(...)) log4cxx::Logger::getAllAppenders() const [_ZNK7log4cxx6Logger15getAllAppendersEv]', + '176' => '(int (*)(...)) log4cxx::Logger::getAppender(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx6Logger11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '184' => '(int (*)(...)) log4cxx::Logger::isAttached(std::shared_ptr) const [_ZNK7log4cxx6Logger10isAttachedESt10shared_ptrINS_8AppenderEE]', + '192' => '(int (*)(...)) log4cxx::Logger::removeAllAppenders() [_ZN7log4cxx6Logger18removeAllAppendersEv]', + '200' => '(int (*)(...)) log4cxx::Logger::removeAppender(std::shared_ptr) [_ZN7log4cxx6Logger14removeAppenderESt10shared_ptrINS_8AppenderEE]', + '208' => '(int (*)(...)) log4cxx::Logger::removeAppender(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6Logger14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '216' => '(int (*)(...)) log4cxx::Logger::getEffectiveLevel() const [_ZNK7log4cxx6Logger17getEffectiveLevelEv]', + '224' => '(int (*)(...)) log4cxx::Logger::setLevel(std::shared_ptr) [_ZN7log4cxx6Logger8setLevelESt10shared_ptrINS_5LevelEE]', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '0u', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '0u' + } + }, + '566435' => { + 'Line' => '41', + 'Memb' => { + '0' => { + 'name' => 'name', + 'offset' => '0', + 'type' => '209661' + }, + '1' => { + 'name' => 'level', + 'offset' => '50', + 'type' => '567044' + }, + '2' => { + 'name' => 'parent', + 'offset' => '72', + 'type' => '3121982' + }, + '3' => { + 'name' => 'resourceBundle', + 'offset' => '100', + 'type' => '18600155' + }, + '4' => { + 'name' => 'repositoryRaw', + 'offset' => '128', + 'type' => '10588285' + }, + '5' => { + 'name' => 'aai', + 'offset' => '136', + 'type' => '558569' + }, + '6' => { + 'name' => 'additive', + 'offset' => '260', + 'type' => '174077' + } + }, + 'Name' => 'struct log4cxx::Logger::LoggerPrivate', + 'NameSpace' => 'log4cxx::Logger', + 'Private' => 1, + 'Size' => '112', + 'Source' => 'logger.cpp', + 'Type' => 'Struct' + }, + '566440' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'logger.h', + 'Line' => '53', + 'Name' => 'log4cxx::Logger::ClazzLogger', + 'NameSpace' => 'log4cxx::Logger', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::Logger::ClazzLogger::~ClazzLogger() [_ZN7log4cxx6Logger11ClazzLoggerD1Ev]', + '24' => '(int (*)(...)) log4cxx::Logger::ClazzLogger::~ClazzLogger() [_ZN7log4cxx6Logger11ClazzLoggerD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::Logger::ClazzLogger::getName[abi:cxx11]() const [_ZNK7log4cxx6Logger11ClazzLogger7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::Logger::ClazzLogger) [_ZTIN7log4cxx6Logger11ClazzLoggerE]' + } + }, + '566559' => { + 'BaseType' => '566440', + 'Name' => 'log4cxx::Logger::ClazzLogger const', + 'Size' => '8', + 'Type' => 'Const' + }, + '566565' => { + 'BaseType' => '566426', + 'Name' => 'log4cxx::Logger const', + 'Type' => 'Const' + }, + '566570' => { + 'Header' => 'mdc.h', + 'Line' => '45', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'key', + 'offset' => '0', + 'type' => '209661' + } + }, + 'Name' => 'log4cxx::MDC', + 'NameSpace' => 'log4cxx', + 'Size' => '32', + 'Type' => 'Class' + }, + '567024' => { + 'BaseType' => '485766', + 'Header' => 'mdc.h', + 'Line' => '50', + 'Name' => 'log4cxx::MDC::Map', + 'NameSpace' => 'log4cxx::MDC', + 'Type' => 'Typedef' + }, + '567044' => { + 'BaseType' => '429750', + 'Header' => 'optionconverter.h', + 'Line' => '28', + 'Name' => 'log4cxx::LevelPtr', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '567056' => { + 'BaseType' => '567044', + 'Name' => 'log4cxx::LevelPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '567061' => { + 'Copied' => 1, + 'Header' => 'file.h', + 'Line' => '40', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '0', + 'type' => '1750072' + } + }, + 'Name' => 'log4cxx::File', + 'NameSpace' => 'log4cxx', + 'Size' => '8', + 'Type' => 'Class' + }, + '567066' => { + 'BaseType' => '567061', + 'Name' => 'log4cxx::File const', + 'Type' => 'Const' + }, + '567083' => { + 'Base' => { + '564875' => { + 'pos' => '0' + } + }, + 'Header' => 'andfilter.h', + 'Line' => '73', + 'Name' => 'log4cxx::filter::AndFilter', + 'NameSpace' => 'log4cxx::filter', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::filter::AndFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter9AndFilter10instanceofERKNS_7helpers5ClassE]', + '112' => '(int (*)(...)) log4cxx::filter::AndFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter9AndFilter4castERKNS_7helpers5ClassE]', + '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', + '128' => '(int (*)(...)) log4cxx::spi::Filter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3spi6Filter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '136' => '(int (*)(...)) log4cxx::filter::AndFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter9AndFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::AndFilter) [_ZTIN7log4cxx6filter9AndFilterE]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::filter::AndFilter::~AndFilter() [_ZN7log4cxx6filter9AndFilterD1Ev]', + '88' => '(int (*)(...)) log4cxx::filter::AndFilter::~AndFilter() [_ZN7log4cxx6filter9AndFilterD0Ev]', + '96' => '(int (*)(...)) log4cxx::filter::AndFilter::getClass() const [_ZNK7log4cxx6filter9AndFilter8getClassEv]' + } + }, + '567101' => { + 'Base' => { + '208442' => { 'pos' => '0' } - }, - 'Line' => '32', - 'Memb' => { - '0' => { - 'name' => 'source', - 'offset' => '72', - 'type' => '836412' - }, - '1' => { - 'name' => 'destination', - 'offset' => '80', - 'type' => '836407' - }, - '2' => { - 'name' => 'deleteSource', - 'offset' => '88', - 'type' => '50284' - }, - '3' => { - 'name' => 'throwIOExceptionOnForkFailure', - 'offset' => '89', - 'type' => '50284' - } - }, - 'Name' => 'struct log4cxx::rolling::GZCompressAction::GZCompressActionPrivate', - 'NameSpace' => 'log4cxx::rolling::GZCompressAction', - 'Private' => 1, - 'Size' => '96', - 'Source' => 'gzcompressaction.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::GZCompressActionPrivate::~GZCompressActionPrivate() [_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::rolling::GZCompressAction::GZCompressActionPrivate::~GZCompressActionPrivate() [_ZN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::rolling::GZCompressAction::GZCompressActionPrivate) [_ZTIN7log4cxx7rolling16GZCompressAction23GZCompressActionPrivateE]' - } - }, - '68' => { - 'Copied' => 1, - 'Header' => 'basic_string.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_dataplus', - 'offset' => '0', - 'type' => '81' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_string_length', - 'offset' => '8', - 'type' => '281' - }, - '2' => { - 'access' => 'private', - 'name' => 'unnamed0', - 'offset' => '16', - 'type' => '246' - } - }, - 'Name' => 'std::__cxx11::basic_string', - 'NameSpace' => 'std::__cxx11', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => '_CharT', - 'type' => '50671' - } - }, - 'Type' => 'Class' - }, - '6802759' => { - 'BaseType' => '6796981', - 'Name' => 'log4cxx::helpers::WideLife*', + }, + 'Header' => 'andfilter.h', + 'Line' => '82', + 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter', + 'NameSpace' => 'log4cxx::filter::AndFilter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::filter::AndFilter::ClazzAndFilter::~ClazzAndFilter() [_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::AndFilter::ClazzAndFilter::~ClazzAndFilter() [_ZN7log4cxx6filter9AndFilter14ClazzAndFilterD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::AndFilter::ClazzAndFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::filter::AndFilter::ClazzAndFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter9AndFilter14ClazzAndFilter7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::filter::AndFilter::ClazzAndFilter::newInstance() const [_ZNK7log4cxx6filter9AndFilter14ClazzAndFilter11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::AndFilter::ClazzAndFilter) [_ZTIN7log4cxx6filter9AndFilter14ClazzAndFilterE]' + } + }, + '5672223' => { + 'BaseType' => '5647133', + 'Name' => 'struct log4cxx::helpers::CyclicBuffer::CyclicBufferPriv*', 'Size' => '8', 'Type' => 'Pointer' }, - '6802765' => { - 'BaseType' => '6802759', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6802884' => { - 'BaseType' => '6798837', - 'Name' => 'struct log4cxx::rolling::GZCompressAction::GZCompressActionPrivate*', + '5672443' => { + 'BaseType' => '5647120', + 'Name' => 'log4cxx::helpers::CyclicBuffer*', 'Size' => '8', 'Type' => 'Pointer' }, - '6802890' => { - 'BaseType' => '6802884', - 'Name' => 'struct log4cxx::rolling::GZCompressAction::GZCompressActionPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6803276' => { - 'BaseType' => '6302386', - 'Name' => 'log4cxx::rolling::GZCompressAction const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '6803287' => { - 'BaseType' => '6300668', - 'Name' => 'log4cxx::rolling::GZCompressAction*const', + '5672453' => { + 'BaseType' => '5647401', + 'Name' => 'log4cxx::helpers::CyclicBuffer const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '6803362' => { - 'BaseType' => '6798674', - 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction*', + '5672468' => { + 'BaseType' => '5647415', + 'Name' => 'struct log4cxx::helpers::InetAddress::InetAddressPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '6803368' => { - 'BaseType' => '6803362', - 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction*const', + '5672698' => { + 'BaseType' => '5647554', + 'Name' => 'struct log4cxx::helpers::DatagramPacket::DatagramPacketPriv*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '6803373' => { - 'BaseType' => '6798832', - 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction const*', + '5672928' => { + 'BaseType' => '5647693', + 'Name' => 'struct log4cxx::helpers::DatagramSocket::DatagramSocketPriv*', 'Size' => '8', 'Type' => 'Pointer' }, - '6803379' => { - 'BaseType' => '6803373', - 'Name' => 'log4cxx::rolling::GZCompressAction::ClazzGZCompressAction const*const', + '5672933' => { + 'BaseType' => '5672928', + 'Name' => 'struct log4cxx::helpers::DatagramSocket::DatagramSocketPriv*const', 'Size' => '8', 'Type' => 'Const' }, - '6838247' => { - 'Copied' => 1, - 'Name' => 'std::__cxx11::basic_stringstream', - 'NameSpace' => 'std::__cxx11', - 'TParam' => { - '0' => { - 'key' => '_CharT', - 'type' => '50671' - } - }, - 'Type' => 'Class' - }, - '6868367' => { - 'Header' => 'ios_base.h', - 'Line' => '57', - 'Memb' => { - '0' => { - 'name' => '_S_boolalpha', - 'value' => '1' - }, - '1' => { - 'name' => '_S_dec', - 'value' => '2' - }, - '10' => { - 'name' => '_S_showpoint', - 'value' => '1024' - }, - '11' => { - 'name' => '_S_showpos', - 'value' => '2048' - }, - '12' => { - 'name' => '_S_skipws', - 'value' => '4096' - }, - '13' => { - 'name' => '_S_unitbuf', - 'value' => '8192' - }, - '14' => { - 'name' => '_S_uppercase', - 'value' => '16384' - }, - '15' => { - 'name' => '_S_adjustfield', - 'value' => '176' - }, - '16' => { - 'name' => '_S_basefield', - 'value' => '74' - }, - '17' => { - 'name' => '_S_floatfield', - 'value' => '260' - }, - '18' => { - 'name' => '_S_ios_fmtflags_end', - 'value' => '65536' - }, - '19' => { - 'name' => '_S_ios_fmtflags_max', - 'value' => '2147483647' - }, - '2' => { - 'name' => '_S_fixed', - 'value' => '4' - }, - '20' => { - 'name' => '_S_ios_fmtflags_min', - 'value' => '18446744071562067968 (-2147483648)' - }, - '3' => { - 'name' => '_S_hex', - 'value' => '8' - }, - '4' => { - 'name' => '_S_internal', - 'value' => '16' - }, - '5' => { - 'name' => '_S_left', - 'value' => '32' - }, - '6' => { - 'name' => '_S_oct', - 'value' => '64' - }, - '7' => { - 'name' => '_S_right', - 'value' => '128' - }, - '8' => { - 'name' => '_S_scientific', - 'value' => '256' - }, - '9' => { - 'name' => '_S_showbase', - 'value' => '512' - } - }, - 'Name' => 'enum std::_Ios_Fmtflags', - 'NameSpace' => 'std', - 'Size' => '4', - 'Type' => 'Enum' - }, - '6868689' => { - 'Copied' => 1, - 'Name' => 'std::ios_base', - 'NameSpace' => 'std', - 'Type' => 'Class' - }, - '6868698' => { - 'BaseType' => '6868367', - 'Header' => 'ios_base.h', - 'Line' => '323', - 'Name' => 'std::ios_base::fmtflags', - 'NameSpace' => 'std::ios_base', - 'Size' => '4', - 'Type' => 'Typedef' - }, - '6868873' => { - 'Copied' => 1, - 'Name' => 'std::basic_ostream', - 'NameSpace' => 'std', - 'TParam' => { - '0' => { - 'key' => '_CharT', - 'type' => '50671' - } - }, - 'Type' => 'Class' - }, - '6886948' => { - 'Header' => 'hexdump.h', - 'Line' => '27', - 'Memb' => { - '0' => { - 'name' => 'None', - 'value' => '0' - }, - '1' => { - 'name' => 'AddStartingNewline', - 'value' => '1' - }, - '2' => { - 'name' => 'AddEndingNewline', - 'value' => '2' - }, - '3' => { - 'name' => 'AddNewline', - 'value' => '3' - } - }, - 'Name' => 'enum log4cxx::HexdumpFlags', - 'NameSpace' => 'log4cxx', - 'Size' => '4', - 'Type' => 'Enum' - }, - '6887057' => { - 'BaseType' => '6868689', - 'Name' => 'std::ios_base&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '6887191' => { - 'BaseType' => '6868873', - 'Name' => 'std::basic_ostream&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '6898570' => { - 'Name' => 'std::ios_base&(*)(std::ios_base&)', - 'Param' => { - '0' => { - 'type' => '6887057' - } - }, - 'Return' => '6887057', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '6898674' => { - 'BaseType' => '6838247', - 'Name' => 'std::__cxx11::basic_stringstream*', + '567311' => { + 'BaseType' => '567101', + 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '5673158' => { + 'BaseType' => '5647836', + 'Name' => 'struct log4cxx::helpers::SyslogWriter::SyslogWriterPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '6962058' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7062496' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6962206' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7062496' - } - }, - 'Type' => 'Struct' - }, - '6962220' => { - 'BaseType' => '7062496', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '6962243' => { - 'Base' => { - '6962058' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '7069092' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7062496' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '6962529' => { - 'BaseType' => '6962220', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' - }, - '6962841' => { - 'Base' => { - '6962243' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7062496' - } - }, - 'Type' => 'Class' - }, - '6965999' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7065726' - } - }, - 'Type' => 'Struct' - }, - '6966085' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '6967620' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7065726' - }, - '1' => { - 'key' => '_Dp', - 'type' => '6965999' - } - }, - 'Type' => 'Class' - }, - '6966408' => { - 'Base' => { - '6965999' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '6965999' - } - }, - 'Type' => 'Struct' - }, - '6966661' => { - 'Base' => { - '6966408' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '6965999' - } - }, - 'Type' => 'Struct' - }, - '6966958' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '7069597' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::Hierarchy::HierarchyPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '7069597' - } - }, - 'Type' => 'Struct' - }, - '696697' => { - 'Name' => 'std::shared_ptr()', - 'Return' => '565797', - 'Type' => 'Func' + '567316' => { + 'Base' => { + '564884' => { + 'pos' => '0' + } + }, + 'Line' => '31', + 'Memb' => { + '0' => { + 'name' => 'headFilter', + 'offset' => '36', + 'type' => '565564' + }, + '1' => { + 'name' => 'tailFilter', + 'offset' => '64', + 'type' => '565564' + }, + '2' => { + 'name' => 'acceptOnMatch', + 'offset' => '86', + 'type' => '174077' + } + }, + 'Name' => 'struct log4cxx::filter::AndFilter::AndFilterPrivate', + 'NameSpace' => 'log4cxx::filter::AndFilter', + 'Private' => 1, + 'Size' => '64', + 'Source' => 'andfilter.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::filter::AndFilter::AndFilterPrivate::~AndFilterPrivate() [_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::filter::AndFilter::AndFilterPrivate::~AndFilterPrivate() [_ZN7log4cxx6filter9AndFilter16AndFilterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::AndFilter::AndFilterPrivate) [_ZTIN7log4cxx6filter9AndFilter16AndFilterPrivateE]' + } }, - '6967218' => { - 'Base' => { - '6966661' => { - 'pos' => '0' - }, - '6966958' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::Hierarchy::HierarchyPrivate*>', - 'NameSpace' => 'std', + '5673378' => { + 'BaseType' => '5647823', + 'Name' => 'log4cxx::helpers::SyslogWriter*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '7069597' - } - }, - 'Type' => 'Struct' + 'Type' => 'Pointer' }, - '6967620' => { - 'Base' => { - '6967218' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '5673393' => { + 'BaseType' => '5647965', + 'Name' => 'struct log4cxx::helpers::Socket::SocketPrivate*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '7069597' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '6967952' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '6966085' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '5673398' => { + 'BaseType' => '5673393', + 'Name' => 'struct log4cxx::helpers::Socket::SocketPrivate*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7065726' - }, - '1' => { - 'key' => '_Dp', - 'type' => '6965999' - } - }, - 'Type' => 'Class' - }, - '6971087' => { - 'Copied' => 1, - 'Header' => 'stl_map.h', - 'Line' => '100', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '6971100' - } - }, - 'Name' => 'std::map, std::shared_ptr >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Tp', - 'type' => '1075444' - } - }, - 'Type' => 'Class' - }, - '6971100' => { - 'BaseType' => '6982488', - 'Header' => 'stl_map.h', - 'Line' => '148', - 'Name' => 'std::map, std::shared_ptr >::_Rep_type', - 'NameSpace' => 'std::map, std::shared_ptr >', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' - }, - '6973470' => { - 'Copied' => 1, - 'Header' => 'stl_map.h', - 'Line' => '100', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '6973483' - } - }, - 'Name' => 'std::map, std::vector > >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Tp', - 'type' => '4473434' - } - }, - 'Type' => 'Class' - }, - '6973483' => { - 'BaseType' => '6989610', - 'Header' => 'stl_map.h', - 'Line' => '148', - 'Name' => 'std::map, std::vector > >::_Rep_type', - 'NameSpace' => 'std::map, std::vector > >', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' + 'Type' => 'Const' }, - '6975853' => { - 'Base' => { - '7004575' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7065081' - } - }, - 'Type' => 'Class' + '5673623' => { + 'BaseType' => '5648104', + 'Name' => 'struct log4cxx::helpers::ServerSocket::ServerSocketPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6976154' => { - 'Base' => { - '7039151' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '6975853' - } - }, - 'Type' => 'Class' + '5673628' => { + 'BaseType' => '5673623', + 'Name' => 'struct log4cxx::helpers::ServerSocket::ServerSocketPrivate*const', + 'Size' => '8', + 'Type' => 'Const' }, - '6976305' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '6976154' - } - }, - 'Type' => 'Struct' + '5675464' => { + 'BaseType' => '5648119', + 'Name' => 'struct log4cxx::helpers::SimpleDateFormat::SimpleDateFormatPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6976319' => { - 'BaseType' => '7070236', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', + '5675694' => { + 'BaseType' => '5655921', + 'Name' => 'struct log4cxx::JSONLayout::JSONLayoutPrivate*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '6976719' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '6976918' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6975853' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '6976154' - } - }, - 'Type' => 'Struct' + '5675924' => { + 'BaseType' => '5656114', + 'Name' => 'struct log4cxx::HTMLLayout::HTMLLayoutPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6976732' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', - 'Memb' => { - '0' => { - 'name' => '_M_start', - 'offset' => '0', - 'type' => '6976906' - }, - '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '6976906' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '6976906' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' + '5676154' => { + 'BaseType' => '5656319', + 'Name' => 'struct log4cxx::xml::XMLLayout::XMLLayoutPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6976906' => { - 'BaseType' => '7039880', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', + '5676384' => { + 'BaseType' => '5656715', + 'Name' => 'struct log4cxx::rolling::FilterBasedTriggeringPolicy::FilterBasedTriggeringPolicyPrivate*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '6976918' => { - 'Base' => { - '6976154' => { - 'pos' => '0' - }, - '6976732' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' + '5676849' => { + 'BaseType' => '5657047', + 'Name' => 'struct log4cxx::rolling::RolloverDescription::RolloverDescriptionPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6977696' => { - 'Base' => { - '6976719' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6975853' - } - }, - 'Type' => 'Class' + '5677079' => { + 'BaseType' => '5657224', + 'Name' => 'struct log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6981172' => { - 'Base' => { - '7004112' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '208', - 'Memb' => { - '0' => { - 'name' => 'first', - 'offset' => '0', - 'type' => '7336' - }, - '1' => { - 'name' => 'second', - 'offset' => '32', - 'type' => '1075444' - } - }, - 'Name' => 'struct std::pairconst, std::shared_ptr >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_T1', - 'type' => '7336' - }, - '1' => { - 'key' => '_T2', - 'type' => '1075444' - } - }, - 'Type' => 'Struct' + '5677084' => { + 'BaseType' => '5677079', + 'Name' => 'struct log4cxx::rolling::RollingPolicyBase::RollingPolicyBasePrivate*const', + 'Size' => '8', + 'Type' => 'Const' }, - '6981511' => { - 'Base' => { - '7041153' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::shared_ptr > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::pair, std::allocator >, std::shared_ptr >' - } - }, - 'Type' => 'Class' + '5677309' => { + 'BaseType' => '5657573', + 'Name' => 'struct log4cxx::rolling::TimeBasedRollingPolicy::TimeBasedRollingPolicyPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6981912' => { - 'Base' => { - '7041747' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::shared_ptr > > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::_Rb_tree_node, std::allocator >, std::shared_ptr > >' - } - }, - 'Type' => 'Class' + '5677529' => { + 'BaseType' => '5648138', + 'Name' => 'log4cxx::helpers::Properties::PropertyMap*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6982099' => { - 'Base' => { - '556185' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '216', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '32', - 'type' => '7046667' - } - }, - 'Name' => 'struct std::_Rb_tree_nodeconst, std::shared_ptr > >', - 'NameSpace' => 'std', - 'Size' => '80', - 'TParam' => { - '0' => { - 'key' => '_Val', - 'type' => '6981172' - } - }, - 'Type' => 'Struct' + '5677534' => { + 'BaseType' => '562694', + 'Name' => 'log4cxx::helpers::Properties*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6982488' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '436', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '6982502' - } - }, - 'Name' => 'std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Val', - 'type' => '6981172' - }, - '2' => { - 'key' => '_KeyOfValue', - 'type' => '7022234' - }, - '3' => { - 'key' => '_Compare', - 'type' => '772116' - }, - '4' => { - 'key' => '_Alloc', - 'type' => '6981511' - } - }, - 'Type' => 'Class' + '5677549' => { + 'BaseType' => '5648499', + 'Name' => 'log4cxx::helpers::Properties const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6982502' => { - 'Base' => { - '556381' => { - 'pos' => '2' - }, - '6981912' => { - 'pos' => '0' - }, - '772192' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '673', - 'Name' => 'struct std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >::_Rb_tree_impl > >', - 'NameSpace' => 'std::_Rb_tree, std::pairconst, std::shared_ptr >, std::_Select1stconst, std::shared_ptr > >, std::less >, std::allocator, std::allocator >, std::shared_ptr > > >', - 'Protected' => 1, - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key_compare', - 'type' => '772116' - } - }, - 'Type' => 'Struct' + '5677629' => { + 'BaseType' => '5659045', + 'Name' => 'log4cxx::config::PropertySetter*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6988563' => { - 'Base' => { - '7011023' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '208', - 'Memb' => { - '0' => { - 'name' => 'first', - 'offset' => '0', - 'type' => '7336' - }, - '1' => { - 'name' => 'second', - 'offset' => '32', - 'type' => '4473434' - } - }, - 'Name' => 'struct std::pairconst, std::vector > >', - 'NameSpace' => 'std', - 'Size' => '56', - 'TParam' => { - '0' => { - 'key' => '_T1', - 'type' => '7336' - }, - '1' => { - 'key' => '_T2', - 'type' => '4473434' - } - }, - 'Type' => 'Struct' + '5677649' => { + 'BaseType' => '5656509', + 'Name' => 'struct log4cxx::xml::DOMConfigurator::DOMConfiguratorPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6988911' => { - 'Base' => { - '7042214' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::vector, std::allocator > > > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::pair, std::allocator >, std::vector, std::allocator > > >' - } - }, - 'Type' => 'Class' + '5677904' => { + 'BaseType' => '5553255', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6989312' => { - 'Base' => { - '7042808' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, std::vector, std::allocator > > > > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::_Rb_tree_node, std::allocator >, std::vector, std::allocator > > > >' - } - }, - 'Type' => 'Class' + '5677954' => { + 'BaseType' => '5659271', + 'Name' => 'struct log4cxx::varia::FallbackErrorHandler::FallbackErrorHandlerPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6989499' => { - 'Base' => { - '556185' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '216', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '32', - 'type' => '7047342' - } - }, - 'Name' => 'struct std::_Rb_tree_nodeconst, std::vector > > >', - 'NameSpace' => 'std', - 'Size' => '88', - 'TParam' => { - '0' => { - 'key' => '_Val', - 'type' => '6988563' - } - }, - 'Type' => 'Struct' + '5678548' => { + 'BaseType' => '216673', + 'Name' => 'log4cxx::helpers::Class const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '6989610' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '436', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '6989624' - } - }, - 'Name' => 'std::_Rb_tree, std::pairconst, std::vector > >, std::_Select1stconst, std::vector > > >, std::less >, std::allocator, std::allocator >, std::vector, std::allocator > > > > >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Val', - 'type' => '6988563' - }, - '2' => { - 'key' => '_KeyOfValue', - 'type' => '7022522' - }, - '3' => { - 'key' => '_Compare', - 'type' => '772116' - }, - '4' => { - 'key' => '_Alloc', - 'type' => '6988911' - } - }, - 'Type' => 'Class' + '5678588' => { + 'BaseType' => '5648970', + 'Name' => 'log4cxx::helpers::WideLife, log4cxx::helpers::Class const*> >*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '6989624' => { - 'Base' => { - '556381' => { - 'pos' => '2' - }, - '6989312' => { - 'pos' => '0' - }, - '772192' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '673', - 'Name' => 'struct std::_Rb_tree, std::pairconst, std::vector > >, std::_Select1stconst, std::vector > > >, std::less >, std::allocator, std::allocator >, std::vector, std::allocator > > > > >::_Rb_tree_impl > >', - 'NameSpace' => 'std::_Rb_tree, std::pairconst, std::vector > >, std::_Select1stconst, std::vector > > >, std::less >, std::allocator, std::allocator >, std::vector, std::allocator > > > > >', - 'Protected' => 1, - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key_compare', - 'type' => '772116' - } - }, - 'Type' => 'Struct' + '5678593' => { + 'BaseType' => '5678588', + 'Name' => 'log4cxx::helpers::WideLife, log4cxx::helpers::Class const*> >*const', + 'Size' => '8', + 'Type' => 'Const' }, - '7004112' => { - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '190', - 'Name' => 'std::__pair_baseconst, std::shared_ptr >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_U1', - 'type' => '7336' - }, - '1' => { - 'key' => '_U2', - 'type' => '1075444' - } - }, - 'Type' => 'Class' + '567912' => { + 'BaseType' => '567083', + 'Name' => 'log4cxx::filter::AndFilter const', + 'Size' => '16', + 'Type' => 'Const' + }, + '5679448' => { + 'BaseType' => '5643199', + 'Name' => 'log4cxx::helpers::Class::ClassMap&', + 'Size' => '8', + 'Type' => 'Ref' }, - '7004390' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7065081' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '5679453' => { + 'BaseType' => '5659276', + 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7004538' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7065081' - } - }, - 'Type' => 'Struct' + '5679458' => { + 'BaseType' => '5659433', + 'Name' => 'log4cxx::varia::FallbackErrorHandler::ClazzFallbackErrorHandler const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7004552' => { - 'BaseType' => '7065081', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + '5679463' => { + 'BaseType' => '5659265', + 'Name' => 'log4cxx::varia::FallbackErrorHandler*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '7004575' => { - 'Base' => { - '7004390' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '7071785' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7065081' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '5679468' => { + 'BaseType' => '5660989', + 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '567947' => { + 'Base' => { + '566161' => { + 'pos' => '0', + 'virtual' => 1 + } + }, + 'Copied' => 1, + 'Header' => 'appender.h', + 'Line' => '49', + 'Name' => 'log4cxx::Appender', + 'NameSpace' => 'log4cxx', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) __cxa_pure_virtual', + '112' => '(int (*)(...)) __cxa_pure_virtual', + '120' => '(int (*)(...)) __cxa_pure_virtual', + '128' => '(int (*)(...)) __cxa_pure_virtual', + '136' => '(int (*)(...)) __cxa_pure_virtual', + '144' => '(int (*)(...)) __cxa_pure_virtual', + '152' => '(int (*)(...)) __cxa_pure_virtual', + '16' => '0u', + '160' => '(int (*)(...)) __cxa_pure_virtual', + '168' => '(int (*)(...)) __cxa_pure_virtual', + '176' => '(int (*)(...)) __cxa_pure_virtual', + '184' => '(int (*)(...)) __cxa_pure_virtual', + '192' => '(int (*)(...)) __cxa_pure_virtual', + '200' => '(int (*)(...)) __cxa_pure_virtual', + '208' => '(int (*)(...)) __cxa_pure_virtual', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '0u', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) (& typeinfo for log4cxx::Appender) [_ZTIN7log4cxx8AppenderE]', + '8' => '(int (*)(...)) 0', + '80' => '0u', + '88' => '0u', + '96' => '(int (*)(...)) log4cxx::Appender::getClass() const [_ZNK7log4cxx8Appender8getClassEv]' + } + }, + '5679473' => { + 'BaseType' => '5661146', + 'Name' => 'log4cxx::PropertyConfigurator::ClazzPropertyConfigurator const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7004861' => { - 'BaseType' => '7004552', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + '5679478' => { + 'BaseType' => '5660980', + 'Name' => 'log4cxx::PropertyConfigurator*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '7005311' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4199656' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '5679483' => { + 'BaseType' => '5656514', + 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7005459' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4199656' - } - }, - 'Type' => 'Struct' + '5679488' => { + 'BaseType' => '5656671', + 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7005473' => { - 'BaseType' => '4199656', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + '5679493' => { + 'BaseType' => '5656503', + 'Name' => 'log4cxx::xml::DOMConfigurator*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7005496' => { - 'Base' => { - '7005311' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '7071924' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4199656' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '5679528' => { + 'BaseType' => '5657578', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7005782' => { - 'BaseType' => '7005473', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + '5679533' => { + 'BaseType' => '5657735', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy::ClazzTimeBasedRollingPolicy const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7006489' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4199728' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '5679538' => { + 'BaseType' => '5657564', + 'Name' => 'log4cxx::rolling::TimeBasedRollingPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7006637' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4199728' - } - }, - 'Type' => 'Struct' + '5679543' => { + 'BaseType' => '5657766', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7006651' => { - 'BaseType' => '4199728', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' + '5679548' => { + 'BaseType' => '5657923', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy::ClazzSizeBasedTriggeringPolicy const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7006674' => { - 'Base' => { - '7006489' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '7072075' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4199728' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '5679553' => { + 'BaseType' => '5657757', + 'Name' => 'log4cxx::rolling::SizeBasedTriggeringPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7006960' => { - 'BaseType' => '7006651', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + '5679558' => { + 'BaseType' => '5657954', + 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7007369' => { - 'Base' => { - '7006674' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4199728' - } - }, - 'Type' => 'Class' + '567956' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'appender.h', + 'Line' => '53', + 'Name' => 'log4cxx::Appender::ClazzAppender', + 'NameSpace' => 'log4cxx::Appender', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::Appender::ClazzAppender::~ClazzAppender() [_ZN7log4cxx8Appender13ClazzAppenderD1Ev]', + '24' => '(int (*)(...)) log4cxx::Appender::ClazzAppender::~ClazzAppender() [_ZN7log4cxx8Appender13ClazzAppenderD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::Appender::ClazzAppender::getName[abi:cxx11]() const [_ZNK7log4cxx8Appender13ClazzAppender7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::Appender::ClazzAppender) [_ZTIN7log4cxx8Appender13ClazzAppenderE]' + } + }, + '5679563' => { + 'BaseType' => '5658111', + 'Name' => 'log4cxx::rolling::RollingFileAppender::ClazzRollingFileAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7011023' => { - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '190', - 'Name' => 'std::__pair_baseconst, std::vector > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_U1', - 'type' => '7336' - }, - '1' => { - 'key' => '_U2', - 'type' => '4473434' - } - }, - 'Type' => 'Class' + '5679568' => { + 'BaseType' => '5657945', + 'Name' => 'log4cxx::rolling::RollingFileAppender*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7018755' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4506386' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '5679573' => { + 'BaseType' => '5658142', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7018903' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4506386' - } - }, - 'Type' => 'Struct' + '5679578' => { + 'BaseType' => '5658299', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy::ClazzManualTriggeringPolicy const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7018917' => { - 'BaseType' => '4506386', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' + '5679583' => { + 'BaseType' => '5658133', + 'Name' => 'log4cxx::rolling::ManualTriggeringPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7018940' => { - 'Base' => { - '7018755' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '7073410' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4506386' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '5679588' => { + 'BaseType' => '5657385', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7019226' => { - 'BaseType' => '7018917', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' + '5679593' => { + 'BaseType' => '5657542', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy::ClazzFixedWindowRollingPolicy const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7019630' => { - 'Base' => { - '7018940' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '4506386' - } - }, - 'Type' => 'Class' + '5679598' => { + 'BaseType' => '5657354', + 'Name' => 'log4cxx::rolling::FixedWindowRollingPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7022202' => { - 'Header' => 'stl_function.h', - 'Line' => '105', - 'Name' => 'struct std::unary_functionconst, std::shared_ptr >, std::__cxx11::basic_stringconst>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Arg', - 'type' => '6981172' - }, - '1' => { - 'key' => '_Result', - 'type' => '7336' - } - }, - 'Type' => 'Struct' + '5679603' => { + 'BaseType' => '5657229', + 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7022234' => { - 'Base' => { - '7022202' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '1147', - 'Name' => 'struct std::_Select1stconst, std::shared_ptr > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Pair', - 'type' => '6981172' - } - }, - 'Type' => 'Struct' + '5679608' => { + 'BaseType' => '5657348', + 'Name' => 'log4cxx::rolling::RollingPolicyBase::ClazzRollingPolicyBase const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7022490' => { - 'Header' => 'stl_function.h', - 'Line' => '105', - 'Name' => 'struct std::unary_functionconst, std::vector > >, std::__cxx11::basic_stringconst>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Arg', - 'type' => '6988563' - }, - '1' => { - 'key' => '_Result', - 'type' => '7336' - } - }, - 'Type' => 'Struct' + '5679613' => { + 'BaseType' => '5658330', + 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7022522' => { - 'Base' => { - '7022490' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '1147', - 'Name' => 'struct std::_Select1stconst, std::vector > > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Pair', - 'type' => '6988563' - } - }, - 'Type' => 'Struct' + '5679618' => { + 'BaseType' => '5658449', + 'Name' => 'log4cxx::rolling::RollingPolicy::ClazzRollingPolicy const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7039151' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6975853' - } - }, - 'Type' => 'Class' + '5679623' => { + 'BaseType' => '5657052', + 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7039679' => { - 'Base' => { - '6976305' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '6976154' - } - }, - 'Type' => 'Struct' + '5679628' => { + 'BaseType' => '5657209', + 'Name' => 'log4cxx::rolling::RolloverDescription::ClazzRolloverDescription const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7039880' => { - 'BaseType' => '6976319', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', + '5679633' => { + 'BaseType' => '5657038', + 'Name' => 'log4cxx::rolling::RolloverDescription*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '7041153' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::shared_ptr > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6981172' - } - }, - 'Type' => 'Class' + '5679658' => { + 'BaseType' => '5656720', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7041747' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::shared_ptr > > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6982099' - } - }, - 'Type' => 'Class' + '5679663' => { + 'BaseType' => '5656877', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy::ClazzFilterBasedTriggeringPolicy const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7042214' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::vector > > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6988563' - } - }, - 'Type' => 'Class' + '5679668' => { + 'BaseType' => '5656706', + 'Name' => 'log4cxx::rolling::FilterBasedTriggeringPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7042808' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, std::vector > > > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6989499' - } - }, - 'Type' => 'Class' + '5679673' => { + 'BaseType' => '5658461', + 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7046667' => { - 'Copied' => 1, - 'Header' => 'aligned_buffer.h', - 'Line' => '47', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '0', - 'type' => '7073609' - } - }, - 'Name' => 'struct __gnu_cxx::__aligned_membufconst, std::shared_ptr > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6981172' - } - }, - 'Type' => 'Struct' + '5679678' => { + 'BaseType' => '5658580', + 'Name' => 'log4cxx::rolling::TriggeringPolicy::ClazzTriggeringPolicy const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7047342' => { - 'Copied' => 1, - 'Header' => 'aligned_buffer.h', - 'Line' => '47', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '0', - 'type' => '843994' - } - }, - 'Name' => 'struct __gnu_cxx::__aligned_membufconst, std::vector > > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '56', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '6988563' - } - }, - 'Type' => 'Struct' + '5679683' => { + 'BaseType' => '5660239', + 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7062496' => { - 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Header' => 'resourcebundle.h', - 'Line' => '35', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => 'parent', - 'offset' => '8', - 'type' => '9677043' - } - }, - 'Name' => 'log4cxx::helpers::ResourceBundle', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '24', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '0u', - '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::getClass() const [_ZNK7log4cxx7helpers14ResourceBundle8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14ResourceBundle10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::ResourceBundle::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers14ResourceBundle4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::ResourceBundle) [_ZTIN7log4cxx7helpers14ResourceBundleE]' - } + '5679688' => { + 'BaseType' => '5660396', + 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '5679693' => { + 'BaseType' => '5660230', + 'Name' => 'log4cxx::filter::LocationInfoFilter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '5679698' => { + 'BaseType' => '5660427', + 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '5679703' => { + 'BaseType' => '5660584', + 'Name' => 'log4cxx::filter::StringMatchFilter::ClazzStringMatchFilter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '5679708' => { + 'BaseType' => '5660418', + 'Name' => 'log4cxx::filter::StringMatchFilter*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7063354' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '5679713' => { + 'BaseType' => '5660615', + 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '7065964' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '7064120' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '61461' - } - }, - 'Name' => 'log4cxx::helpers::WideLife >', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '1118582' - } - }, - 'Type' => 'Class' + '5679718' => { + 'BaseType' => '5660772', + 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7065069' => { - 'BaseType' => '6977696', - 'Header' => 'hierarchyeventlistener.h', - 'Line' => '49', - 'Name' => 'log4cxx::spi::HierarchyEventListenerList', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '24', - 'Type' => 'Typedef' + '5679723' => { + 'BaseType' => '5660606', + 'Name' => 'log4cxx::filter::LevelRangeFilter*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7065081' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Copied' => 1, - 'Header' => 'hierarchyeventlistener.h', - 'Line' => '34', - 'Name' => 'log4cxx::spi::HierarchyEventListener', - 'NameSpace' => 'log4cxx::spi', + '5679728' => { + 'BaseType' => '5660800', + 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter*', 'Size' => '8', - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '7065331' => { - 'Base' => { - '1149757' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'rootlogger.h', - 'Line' => '36', - 'Name' => 'log4cxx::spi::RootLogger', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '24', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '0u', - '112' => '(int (*)(...)) (& typeinfo for log4cxx::spi::RootLogger) [_ZTIN7log4cxx3spi10RootLoggerE]', - '120' => '(int (*)(...)) log4cxx::spi::RootLogger::~RootLogger() [_ZN7log4cxx3spi10RootLoggerD1Ev]', - '128' => '(int (*)(...)) log4cxx::spi::RootLogger::~RootLogger() [_ZN7log4cxx3spi10RootLoggerD0Ev]', - '136' => '(int (*)(...)) log4cxx::Logger::getClass() const [_ZNK7log4cxx6Logger8getClassEv]', - '144' => '(int (*)(...)) log4cxx::Logger::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Logger10instanceofERKNS_7helpers5ClassE]', - '152' => '(int (*)(...)) log4cxx::Logger::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6Logger4castERKNS_7helpers5ClassE]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::Logger::addAppender(std::shared_ptr) [_ZN7log4cxx6Logger11addAppenderESt10shared_ptrINS_8AppenderEE]', - '168' => '(int (*)(...)) log4cxx::Logger::getAllAppenders() const [_ZNK7log4cxx6Logger15getAllAppendersEv]', - '176' => '(int (*)(...)) log4cxx::Logger::getAppender(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx6Logger11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '184' => '(int (*)(...)) log4cxx::Logger::isAttached(std::shared_ptr) const [_ZNK7log4cxx6Logger10isAttachedESt10shared_ptrINS_8AppenderEE]', - '192' => '(int (*)(...)) log4cxx::Logger::removeAllAppenders() [_ZN7log4cxx6Logger18removeAllAppendersEv]', - '200' => '(int (*)(...)) log4cxx::Logger::removeAppender(std::shared_ptr) [_ZN7log4cxx6Logger14removeAppenderESt10shared_ptrINS_8AppenderEE]', - '208' => '(int (*)(...)) log4cxx::Logger::removeAppender(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6Logger14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '216' => '(int (*)(...)) log4cxx::spi::RootLogger::getEffectiveLevel() const [_ZNK7log4cxx3spi10RootLogger17getEffectiveLevelEv]', - '224' => '(int (*)(...)) log4cxx::spi::RootLogger::setLevel(std::shared_ptr) [_ZN7log4cxx3spi10RootLogger8setLevelESt10shared_ptrINS_5LevelEE]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } + '5679733' => { + 'BaseType' => '5660957', + 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7065336' => { - 'BaseType' => '7065331', - 'Name' => 'log4cxx::spi::RootLogger const', - 'Type' => 'Const' + '5679738' => { + 'BaseType' => '5660794', + 'Name' => 'log4cxx::filter::LevelMatchFilter*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7065533' => { - 'BaseType' => '6975853', - 'Header' => 'hierarchyeventlistener.h', - 'Line' => '48', - 'Name' => 'log4cxx::spi::HierarchyEventListenerPtr', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '16', - 'Type' => 'Typedef' + '5679743' => { + 'BaseType' => '5656324', + 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7065545' => { - 'BaseType' => '7065533', - 'Name' => 'log4cxx::spi::HierarchyEventListenerPtr const', - 'Size' => '16', - 'Type' => 'Const' + '5679748' => { + 'BaseType' => '5656481', + 'Name' => 'log4cxx::xml::XMLLayout::ClazzXMLLayout const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7065726' => { - 'Line' => '46', - 'Memb' => { - '0' => { - 'name' => 'pool', - 'offset' => '0', - 'type' => '62082' - }, - '1' => { - 'name' => 'mutex', - 'offset' => '16', - 'type' => '368156' - }, - '10' => { - 'name' => 'loggers', - 'offset' => '160', - 'type' => '7070195' - }, - '11' => { - 'name' => 'provisionNodes', - 'offset' => '208', - 'type' => '7070207' - }, - '12' => { - 'name' => 'allAppenders', - 'offset' => '256', - 'type' => '234162' - }, - '2' => { - 'name' => 'configuredMutex', - 'offset' => '56', - 'type' => '41413' - }, - '3' => { - 'name' => 'configured', - 'offset' => '96', - 'type' => '50284' - }, - '4' => { - 'name' => 'emittedNoAppenderWarning', - 'offset' => '97', - 'type' => '50284' - }, - '5' => { - 'name' => 'emittedNoResourceBundleWarning', - 'offset' => '98', - 'type' => '50284' - }, - '6' => { - 'name' => 'thresholdInt', - 'offset' => '100', - 'type' => '50231' - }, - '7' => { - 'name' => 'listeners', - 'offset' => '104', - 'type' => '7065069' - }, - '8' => { - 'name' => 'root', - 'offset' => '128', - 'type' => '1150380' - }, - '9' => { - 'name' => 'threshold', - 'offset' => '144', - 'type' => '409192' - } - }, - 'Name' => 'struct log4cxx::Hierarchy::HierarchyPrivate', - 'NameSpace' => 'log4cxx::Hierarchy', - 'Private' => 1, - 'Size' => '280', - 'Source' => 'hierarchy.cpp', - 'Type' => 'Struct' + '5679753' => { + 'BaseType' => '5656310', + 'Name' => 'log4cxx::xml::XMLLayout*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7065964' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'hierarchy.h', - 'Line' => '61', - 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy', - 'NameSpace' => 'log4cxx::Hierarchy', + '5679758' => { + 'BaseType' => '5661177', + 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::Hierarchy::ClazzHierarchy::~ClazzHierarchy() [_ZN7log4cxx9Hierarchy14ClazzHierarchyD1Ev]', - '24' => '(int (*)(...)) log4cxx::Hierarchy::ClazzHierarchy::~ClazzHierarchy() [_ZN7log4cxx9Hierarchy14ClazzHierarchyD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::Hierarchy::ClazzHierarchy::getName[abi:cxx11]() const [_ZNK7log4cxx9Hierarchy14ClazzHierarchy7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::Hierarchy::ClazzHierarchy) [_ZTIN7log4cxx9Hierarchy14ClazzHierarchyE]' - } + 'Type' => 'Pointer' }, - '7066122' => { - 'BaseType' => '7065964', - 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy const', + '5679763' => { + 'BaseType' => '5661334', + 'Name' => 'log4cxx::SimpleLayout::ClazzSimpleLayout const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '7067575' => { - 'BaseType' => '4506386', - 'Name' => 'log4cxx::Hierarchy const', - 'Size' => '16', - 'Type' => 'Const' + '5679768' => { + 'BaseType' => '5661168', + 'Name' => 'log4cxx::SimpleLayout*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7067826' => { - 'BaseType' => '262983', - 'Name' => 'log4cxx::Appender const', - 'Type' => 'Const' + '5679773' => { + 'BaseType' => '5656119', + 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7067831' => { - 'BaseType' => '7019630', - 'Header' => 'hierarchy.h', - 'Line' => '35', - 'Name' => 'log4cxx::HierarchyPtr', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Typedef' + '5679778' => { + 'BaseType' => '5656276', + 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7067868' => { - 'BaseType' => '4473434', - 'Header' => 'provisionnode.h', - 'Line' => '31', - 'Name' => 'log4cxx::ProvisionNode', - 'NameSpace' => 'log4cxx', - 'Size' => '24', - 'Type' => 'Typedef' + '5679783' => { + 'BaseType' => '5656105', + 'Name' => 'log4cxx::HTMLLayout*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7069092' => { - 'BaseType' => '6962529', - 'Name' => 'std::__shared_ptr::element_type*', + '5679788' => { + 'BaseType' => '5655926', + 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout*', 'Size' => '8', 'Type' => 'Pointer' }, - '7069597' => { - 'BaseType' => '7065726', - 'Name' => 'struct log4cxx::Hierarchy::HierarchyPrivate*', + '5679793' => { + 'BaseType' => '5656083', + 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7070195' => { - 'BaseType' => '6971087', - 'Line' => '43', - 'Name' => 'LoggerMap', - 'Size' => '48', - 'Source' => 'hierarchy.cpp', - 'Type' => 'Typedef' + '5679798' => { + 'BaseType' => '5655912', + 'Name' => 'log4cxx::JSONLayout*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7070207' => { - 'BaseType' => '6973470', - 'Line' => '44', - 'Name' => 'ProvisionNodeMap', - 'Size' => '48', - 'Source' => 'hierarchy.cpp', - 'Type' => 'Typedef' + '5679803' => { + 'BaseType' => '5649596', + 'Name' => 'log4cxx::helpers::ISO8601DateFormat*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56798481' => { + 'Base' => { + '56916234' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '498401' + } + }, + 'Type' => 'Class' + }, + '56798771' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '56798481' + } + }, + 'Type' => 'Struct' + }, + '56798785' => { + 'BaseType' => '575892', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '56799264' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '84', + 'Memb' => { + '0' => { + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '56799463' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '498401' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '56798481' + } + }, + 'Type' => 'Struct' + }, + '56799277' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', + 'Memb' => { + '0' => { + 'name' => '_M_start', + 'offset' => '0', + 'type' => '56799451' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '56799451' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '56799451' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '56799451' => { + 'BaseType' => '56916706', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '56799463' => { + 'Base' => { + '56798481' => { + 'pos' => '0' + }, + '56799277' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '56800288' => { + 'Base' => { + '56799264' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '498401' + } + }, + 'Type' => 'Class' + }, + '5680153' => { + 'BaseType' => '5659477', + 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7070236' => { - 'BaseType' => '6975853', - 'Name' => 'std::shared_ptr*', + '5680158' => { + 'BaseType' => '5659634', + 'Name' => 'log4cxx::net::XMLSocketAppender::ClazzXMLSocketAppender const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7071510' => { - 'BaseType' => '7063354', - 'Name' => 'log4cxx::helpers::WideLife*', + '5680163' => { + 'BaseType' => '5659468', + 'Name' => 'log4cxx::net::XMLSocketAppender*', 'Size' => '8', 'Type' => 'Pointer' }, - '7071516' => { - 'BaseType' => '7071510', - 'Name' => 'log4cxx::helpers::WideLife*const', + '5680168' => { + 'BaseType' => '5659665', + 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '7071785' => { - 'BaseType' => '7004861', - 'Name' => 'std::__shared_ptr::element_type*', + '5680173' => { + 'BaseType' => '5659822', + 'Name' => 'log4cxx::net::TelnetAppender::ClazzTelnetAppender const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7071808' => { - 'BaseType' => '7065081', - 'Name' => 'log4cxx::spi::HierarchyEventListener*', + '5680178' => { + 'BaseType' => '5659656', + 'Name' => 'log4cxx::net::TelnetAppender*', 'Size' => '8', 'Type' => 'Pointer' }, - '7071924' => { - 'BaseType' => '7005782', - 'Name' => 'std::__shared_ptr::element_type*', + '5680183' => { + 'BaseType' => '5647970', + 'Name' => 'log4cxx::helpers::Socket::ClazzSocket*', 'Size' => '8', 'Type' => 'Pointer' }, - '7071993' => { - 'BaseType' => '7064120', - 'Name' => 'log4cxx::helpers::WideLife >*', + '5680188' => { + 'BaseType' => '5648089', + 'Name' => 'log4cxx::helpers::Socket::ClazzSocket const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7071999' => { - 'BaseType' => '7071993', - 'Name' => 'log4cxx::helpers::WideLife >*const', + '5680193' => { + 'BaseType' => '5659853', + 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '7072075' => { - 'BaseType' => '7006960', - 'Name' => 'std::__shared_ptr::element_type*', + '5680198' => { + 'BaseType' => '5660010', + 'Name' => 'log4cxx::net::SyslogAppender::ClazzSyslogAppender const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7072121' => { - 'BaseType' => '7007369', - 'Name' => 'std::shared_ptr&&', + '5680203' => { + 'BaseType' => '5659844', + 'Name' => 'log4cxx::net::SyslogAppender*', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Pointer' }, - '7072850' => { - 'BaseType' => '7065331', - 'Name' => 'log4cxx::spi::RootLogger*', + '5680208' => { + 'BaseType' => '5647698', + 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket*', 'Size' => '8', 'Type' => 'Pointer' }, - '7073410' => { - 'BaseType' => '7019226', - 'Name' => 'std::__shared_ptr::element_type*', + '5680213' => { + 'BaseType' => '5647817', + 'Name' => 'log4cxx::helpers::DatagramSocket::ClazzDatagramSocket const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7073434' => { - 'BaseType' => '4544199', - 'Name' => 'log4cxx::Hierarchy*const', + '5680218' => { + 'BaseType' => '5647559', + 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '7073609' => { - 'BaseType' => '50179', - 'Name' => 'unsigned char[48]', - 'Size' => '48', - 'Type' => 'Array' + '5680223' => { + 'BaseType' => '5647678', + 'Name' => 'log4cxx::helpers::DatagramPacket::ClazzDatagramPacket const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7073796' => { - 'BaseType' => '7065336', - 'Name' => 'log4cxx::spi::RootLogger const*', + '5680228' => { + 'BaseType' => '5647420', + 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress*', 'Size' => '8', 'Type' => 'Pointer' }, - '7074430' => { - 'BaseType' => '7067575', - 'Name' => 'log4cxx::Hierarchy const*', + '5680233' => { + 'BaseType' => '5647539', + 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7074436' => { - 'BaseType' => '7074430', - 'Name' => 'log4cxx::Hierarchy const*const', + '5680238' => { + 'BaseType' => '5660038', + 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '7074452' => { - 'BaseType' => '7065545', - 'Name' => 'log4cxx::spi::HierarchyEventListenerPtr const&', + '5680243' => { + 'BaseType' => '5660195', + 'Name' => 'log4cxx::net::SMTPAppender::ClazzSMTPAppender const*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '7074470' => { - 'BaseType' => '7067826', - 'Name' => 'log4cxx::Appender const*', + '5680248' => { + 'BaseType' => '5660032', + 'Name' => 'log4cxx::net::SMTPAppender*', 'Size' => '8', 'Type' => 'Pointer' }, - '7074488' => { - 'BaseType' => '7067868', - 'Name' => 'log4cxx::ProvisionNode&', + '5680253' => { + 'BaseType' => '5652418', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '7074506' => { - 'BaseType' => '7065964', - 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy*', + '5680258' => { + 'BaseType' => '5652537', + 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7074512' => { - 'BaseType' => '7074506', - 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy*const', + '5680263' => { + 'BaseType' => '5661373', + 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '7074517' => { - 'BaseType' => '7066122', - 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy const*', + '5680268' => { + 'BaseType' => '5661530', + 'Name' => 'log4cxx::db::ODBCAppender::ClazzODBCAppender const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7074523' => { - 'BaseType' => '7074517', - 'Name' => 'log4cxx::Hierarchy::ClazzHierarchy const*const', + '5680273' => { + 'BaseType' => '5661367', + 'Name' => 'log4cxx::db::ODBCAppender*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '71280' => { - 'BaseType' => '64672', - 'Name' => 'log4cxx::helpers::Class const&()&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '7201841' => { - 'BaseType' => '1150380', - 'Name' => 'log4cxx::LoggerPtr&', + '5680278' => { + 'BaseType' => '5661562', + 'Name' => 'log4cxx::FileAppender::ClazzFileAppender*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '7331725' => { - 'BaseType' => '4544193', - 'Name' => 'log4cxx::spi::LoggerRepository*const', + '5680283' => { + 'BaseType' => '5661721', + 'Name' => 'log4cxx::FileAppender::ClazzFileAppender const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '7336' => { - 'BaseType' => '68', - 'Name' => 'std::__cxx11::basic_stringconst', - 'Size' => '32', - 'Type' => 'Const' - }, - '7391912' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7418925' - } - }, - 'Type' => 'Struct' + '5680288' => { + 'BaseType' => '5661553', + 'Name' => 'log4cxx::FileAppender*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7391999' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '7393540' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + '568075' => { + 'BaseType' => '567956', + 'Name' => 'log4cxx::Appender::ClazzAppender const', + 'Size' => '8', + 'Type' => 'Const' + }, + '568081' => { + 'BaseType' => '567947', + 'Name' => 'log4cxx::Appender const', + 'Type' => 'Const' + }, + '56813478' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5660032' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '56813626' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5660032' + } + }, + 'Type' => 'Struct' + }, + '56813640' => { + 'BaseType' => '5660032', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '56813663' => { + 'Base' => { + '56813478' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '56981515' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5660032' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '56813944' => { + 'BaseType' => '56813640', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '56814780' => { + 'Base' => { + '56813663' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5660032' + } + }, + 'Type' => 'Class' + }, + '5681666' => { + 'BaseType' => '5650347', + 'Name' => 'log4cxx::helpers::ClassNotFoundException*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7418925' - }, - '1' => { - 'key' => '_Dp', - 'type' => '7391912' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '7392322' => { - 'Base' => { - '7391912' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '7391912' - } - }, - 'Type' => 'Struct' + '5681671' => { + 'BaseType' => '5681666', + 'Name' => 'log4cxx::helpers::ClassNotFoundException*const', + 'Size' => '8', + 'Type' => 'Const' }, - '7392577' => { - 'Base' => { - '7392322' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '7391912' - } - }, - 'Type' => 'Struct' + '5681676' => { + 'BaseType' => '5650524', + 'Name' => 'log4cxx::helpers::ClassNotFoundException const&', + 'Size' => '8', + 'Type' => 'Ref' }, - '7392876' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '7421624' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::HTMLLayout::HTMLLayoutPrivate*>', - 'NameSpace' => 'std', + '5681681' => { + 'BaseType' => '5650347', + 'Name' => 'log4cxx::helpers::ClassNotFoundException&', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '7421624' - } - }, - 'Type' => 'Struct' + 'Type' => 'Ref' }, - '7393138' => { - 'Base' => { - '7392577' => { - 'pos' => '0' - }, - '7392876' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::HTMLLayout::HTMLLayoutPrivate*>', - 'NameSpace' => 'std', + '5681686' => { + 'BaseType' => '5650529', + 'Name' => 'log4cxx::helpers::InstantiationException*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '7421624' - } - }, - 'Type' => 'Struct' + 'Type' => 'Pointer' }, - '7393540' => { - 'Base' => { - '7393138' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '5681691' => { + 'BaseType' => '5681686', + 'Name' => 'log4cxx::helpers::InstantiationException*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '7421624' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '7393872' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '7391999' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '5681696' => { + 'BaseType' => '5650680', + 'Name' => 'log4cxx::helpers::InstantiationException const&', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7418925' + 'Type' => 'Ref' + }, + '5681701' => { + 'BaseType' => '5650529', + 'Name' => 'log4cxx::helpers::InstantiationException&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '56817567' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566027' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '56817715' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566027' + } + }, + 'Type' => 'Struct' + }, + '56817729' => { + 'BaseType' => '566027', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '56817752' => { + 'Base' => { + '56817567' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '56981695' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566027' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '56818033' => { + 'BaseType' => '56817729', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '56818869' => { + 'Base' => { + '56817752' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '566027' + } + }, + 'Type' => 'Class' + }, + '56822102' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1379573' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '56822250' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1379573' + } + }, + 'Type' => 'Struct' + }, + '56822264' => { + 'BaseType' => '1379573', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '56822287' => { + 'Base' => { + '56822102' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '56981890' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1379573' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '56822568' => { + 'BaseType' => '56822264', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '56823404' => { + 'Base' => { + '56822287' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '1379573' + } + }, + 'Type' => 'Class' + }, + '568268' => { + 'BaseType' => '174077', + 'Name' => 'bool&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '56834601' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656706' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '56834749' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656706' + } + }, + 'Type' => 'Struct' + }, + '56834763' => { + 'BaseType' => '5656706', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '56834786' => { + 'Base' => { + '56834601' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '56982257' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656706' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' + }, + '56835067' => { + 'BaseType' => '56834763', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '56835903' => { + 'Base' => { + '56834786' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '5656706' + } + }, + 'Type' => 'Class' + }, + '56916234' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '498401' + } + }, + 'Type' => 'Class' + }, + '56916481' => { + 'Base' => { + '56798771' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '56798481' + } + }, + 'Type' => 'Struct' + }, + '56916706' => { + 'BaseType' => '56798785', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '56946580' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '5656514' + } + }, + 'Type' => 'Class' + }, + '56955254' => { + 'BaseType' => '37307479', + 'Header' => 'domconfigurator.h', + 'Line' => '71', + 'Name' => 'log4cxx::xml::DOMConfigurator::AppenderMap', + 'NameSpace' => 'log4cxx::xml::DOMConfigurator', + 'Protected' => 1, + 'Size' => '48', + 'Type' => 'Typedef' + }, + '56956638' => { + 'BaseType' => '5656503', + 'Name' => 'log4cxx::xml::DOMConfigurator const', + 'Size' => '16', + 'Type' => 'Const' + }, + '56956643' => { + 'Base' => { + '1909459' => { + 'pos' => '0' + } + }, + 'Line' => '72', + 'Name' => 'log4cxx::xml::XMLWatchdog', + 'NameSpace' => 'log4cxx::xml', + 'Size' => '16', + 'Source' => 'domconfigurator.cpp', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::xml::XMLWatchdog::~XMLWatchdog() [_ZN7log4cxx3xml11XMLWatchdogD1Ev]', + '24' => '(int (*)(...)) log4cxx::xml::XMLWatchdog::~XMLWatchdog() [_ZN7log4cxx3xml11XMLWatchdogD0Ev]', + '32' => '(int (*)(...)) log4cxx::xml::XMLWatchdog::doOnChange() [_ZN7log4cxx3xml11XMLWatchdog10doOnChangeEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::xml::XMLWatchdog) [_ZTIN7log4cxx3xml11XMLWatchdogE]' + } + }, + '56978064' => { + 'BaseType' => '56978077', + 'Header' => 'apr_xml.h', + 'Line' => '50', + 'Name' => 'apr_text', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '56978077' => { + 'Header' => 'apr_xml.h', + 'Line' => '53', + 'Memb' => { + '0' => { + 'name' => 'text', + 'offset' => '0', + 'type' => '191618' + }, + '1' => { + 'name' => 'next', + 'offset' => '8', + 'type' => '56978121' + } + }, + 'Name' => 'struct apr_text', + 'Size' => '16', + 'Type' => 'Struct' + }, + '56978121' => { + 'BaseType' => '56978077', + 'Name' => 'struct apr_text*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56978126' => { + 'BaseType' => '56978139', + 'Header' => 'apr_xml.h', + 'Line' => '61', + 'Name' => 'apr_text_header', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '56978139' => { + 'Header' => 'apr_xml.h', + 'Line' => '64', + 'Memb' => { + '0' => { + 'name' => 'first', + 'offset' => '0', + 'type' => '56978183' + }, + '1' => { + 'name' => 'last', + 'offset' => '8', + 'type' => '56978183' + } + }, + 'Name' => 'struct apr_text_header', + 'Size' => '16', + 'Type' => 'Struct' + }, + '56978183' => { + 'BaseType' => '56978064', + 'Name' => 'apr_text*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56978201' => { + 'Header' => 'apr_xml.h', + 'Line' => '148', + 'Memb' => { + '0' => { + 'name' => 'name', + 'offset' => '0', + 'type' => '191618' + }, + '1' => { + 'name' => 'ns', + 'offset' => '8', + 'type' => '190263' + }, + '2' => { + 'name' => 'value', + 'offset' => '22', + 'type' => '191618' + }, + '3' => { + 'name' => 'next', + 'offset' => '36', + 'type' => '56978525' + } + }, + 'Name' => 'struct apr_xml_attr', + 'Size' => '32', + 'Type' => 'Struct' + }, + '56978272' => { + 'BaseType' => '56978285', + 'Header' => 'apr_xml.h', + 'Line' => '143', + 'Name' => 'apr_xml_elem', + 'Size' => '112', + 'Type' => 'Typedef' + }, + '56978285' => { + 'Header' => 'apr_xml.h', + 'Line' => '162', + 'Memb' => { + '0' => { + 'name' => 'name', + 'offset' => '0', + 'type' => '191618' + }, + '1' => { + 'name' => 'ns', + 'offset' => '8', + 'type' => '190263' + }, + '10' => { + 'name' => 'ns_scope', + 'offset' => '150', + 'type' => '56978540' }, - '1' => { - 'key' => '_Dp', - 'type' => '7391912' - } - }, - 'Type' => 'Class' - }, - '7416277' => { - 'Copied' => 1, - 'Header' => 'transform.h', - 'Line' => '30', - 'Name' => 'log4cxx::helpers::Transform', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '1', - 'Type' => 'Class' - }, - '7416909' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '7419042' - } - }, - 'Type' => 'Class' - }, - '7418907' => { - 'Base' => { - '409118' => { - 'pos' => '0' - } - }, - 'Header' => 'htmllayout.h', - 'Line' => '31', - 'Memb' => { + '11' => { + 'name' => 'priv', + 'offset' => '260', + 'type' => '190924' + }, + '2' => { + 'name' => 'lang', + 'offset' => '22', + 'type' => '191618' + }, + '3' => { + 'name' => 'first_cdata', + 'offset' => '36', + 'type' => '56978126' + }, + '4' => { + 'name' => 'following_cdata', + 'offset' => '64', + 'type' => '56978126' + }, + '5' => { + 'name' => 'parent', + 'offset' => '86', + 'type' => '56978530' + }, + '6' => { + 'name' => 'next', + 'offset' => '100', + 'type' => '56978530' + }, + '7' => { + 'name' => 'first_child', + 'offset' => '114', + 'type' => '56978530' + }, + '8' => { + 'name' => 'attr', + 'offset' => '128', + 'type' => '56978525' + }, + '9' => { + 'name' => 'last_child', + 'offset' => '136', + 'type' => '56978530' + } + }, + 'Name' => 'struct apr_xml_elem', + 'Size' => '112', + 'Type' => 'Struct' + }, + '56978468' => { + 'BaseType' => '56978481', + 'Header' => 'apr_xml.h', + 'Line' => '145', + 'Name' => 'apr_xml_doc', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '56978481' => { + 'Header' => 'apr_xml.h', + 'Line' => '200', + 'Memb' => { + '0' => { + 'name' => 'root', + 'offset' => '0', + 'type' => '56978545' + }, + '1' => { + 'name' => 'namespaces', + 'offset' => '8', + 'type' => '56978550' + } + }, + 'Name' => 'struct apr_xml_doc', + 'Size' => '16', + 'Type' => 'Struct' + }, + '56978525' => { + 'BaseType' => '56978201', + 'Name' => 'struct apr_xml_attr*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56978530' => { + 'BaseType' => '56978285', + 'Name' => 'struct apr_xml_elem*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56978535' => { + 'Name' => 'struct apr_xml_ns_scope', + 'Type' => 'Struct' + }, + '56978540' => { + 'BaseType' => '56978535', + 'Name' => 'struct apr_xml_ns_scope*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56978545' => { + 'BaseType' => '56978272', + 'Name' => 'apr_xml_elem*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56978550' => { + 'BaseType' => '1930165', + 'Name' => 'apr_array_header_t*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56979972' => { + 'BaseType' => '56956643', + 'Name' => 'log4cxx::xml::XMLWatchdog*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56979977' => { + 'BaseType' => '56979972', + 'Name' => 'log4cxx::xml::XMLWatchdog*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56979998' => { + 'BaseType' => '56946580', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56980003' => { + 'BaseType' => '56979998', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56981065' => { + 'BaseType' => '56800288', + 'Name' => 'std::vector >&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '56981515' => { + 'BaseType' => '56813944', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56981695' => { + 'BaseType' => '56818033', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56981890' => { + 'BaseType' => '56822568', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56982257' => { + 'BaseType' => '56835067', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56984108' => { + 'BaseType' => '5679493', + 'Name' => 'log4cxx::xml::DOMConfigurator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56984123' => { + 'BaseType' => '4542594', + 'Name' => 'log4cxx::helpers::CharsetDecoderPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '56984128' => { + 'BaseType' => '56978468', + 'Name' => 'apr_xml_doc*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56984133' => { + 'BaseType' => '56955254', + 'Name' => 'log4cxx::xml::DOMConfigurator::AppenderMap&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '56984138' => { + 'BaseType' => '946694', + 'Name' => 'log4cxx::AppenderPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '56984143' => { + 'BaseType' => '5659045', + 'Name' => 'log4cxx::config::PropertySetter&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '56984148' => { + 'BaseType' => '56956638', + 'Name' => 'log4cxx::xml::DOMConfigurator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '56984153' => { + 'BaseType' => '56984148', + 'Name' => 'log4cxx::xml::DOMConfigurator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56984343' => { + 'BaseType' => '5679483', + 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '56984353' => { + 'BaseType' => '5679488', + 'Name' => 'log4cxx::xml::DOMConfigurator::ClazzDOMConfigurator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '572681' => { + 'BaseType' => '558578', + 'Name' => 'struct log4cxx::helpers::AppenderAttachableImpl::priv_data*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '572946' => { + 'BaseType' => '428640', + 'Name' => 'std::_Sp_counted_base<2>*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '572976' => { + 'BaseType' => '429426', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573001' => { + 'BaseType' => '429750', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '573016' => { + 'BaseType' => '564694', + 'Name' => 'log4cxx::spi::LocationInfo const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '573021' => { + 'BaseType' => '564239', + 'Name' => 'log4cxx::spi::LocationInfo*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573026' => { + 'BaseType' => '564239', + 'Name' => 'log4cxx::spi::LocationInfo&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '573031' => { + 'BaseType' => '564694', + 'Name' => 'log4cxx::spi::LocationInfo const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573071' => { + 'BaseType' => '430611', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573213' => { + 'BaseType' => '558855', + 'Name' => 'struct log4cxx::helpers::CharMessageBuffer::CharMessageBufferPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573433' => { + 'BaseType' => '558842', + 'Name' => 'log4cxx::helpers::CharMessageBuffer*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573438' => { + 'BaseType' => '558842', + 'Name' => 'log4cxx::helpers::CharMessageBuffer&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '573443' => { + 'BaseType' => '439667', + 'Name' => 'std::ostream&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '573448' => { + 'Name' => 'std::ios_base&(*)(std::ios_base&)', + 'Param' => { '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '7393872' + 'type' => '203737' } }, - 'Name' => 'log4cxx::HTMLLayout', - 'NameSpace' => 'log4cxx', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::HTMLLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx10HTMLLayout10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::HTMLLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx10HTMLLayout4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::HTMLLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx10HTMLLayout15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::HTMLLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx10HTMLLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '136' => '(int (*)(...)) log4cxx::HTMLLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx10HTMLLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '144' => '(int (*)(...)) log4cxx::HTMLLayout::getContentType[abi:cxx11]() const [_ZNK7log4cxx10HTMLLayout14getContentTypeB5cxx11Ev]', - '152' => '(int (*)(...)) log4cxx::HTMLLayout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx10HTMLLayout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '16' => '0u', - '160' => '(int (*)(...)) log4cxx::HTMLLayout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx10HTMLLayout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '168' => '(int (*)(...)) log4cxx::HTMLLayout::ignoresThrowable() const [_ZNK7log4cxx10HTMLLayout16ignoresThrowableEv]', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::HTMLLayout) [_ZTIN7log4cxx10HTMLLayoutE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::HTMLLayout::~HTMLLayout() [_ZN7log4cxx10HTMLLayoutD1Ev]', - '88' => '(int (*)(...)) log4cxx::HTMLLayout::~HTMLLayout() [_ZN7log4cxx10HTMLLayoutD0Ev]', - '96' => '(int (*)(...)) log4cxx::HTMLLayout::getClass() const [_ZNK7log4cxx10HTMLLayout8getClassEv]' - } - }, - '7418925' => { - 'Line' => '33', - 'Memb' => { + 'Return' => '203737', + 'Size' => '8', + 'Type' => 'FuncPtr' + }, + '573469' => { + 'BaseType' => '559722', + 'Name' => 'log4cxx::helpers::CharMessageBuffer const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573489' => { + 'BaseType' => '559753', + 'Name' => 'struct log4cxx::helpers::WideMessageBuffer::WideMessageBufferPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573709' => { + 'BaseType' => '559739', + 'Name' => 'log4cxx::helpers::WideMessageBuffer*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573714' => { + 'BaseType' => '559739', + 'Name' => 'log4cxx::helpers::WideMessageBuffer&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '573719' => { + 'BaseType' => '560667', + 'Name' => 'log4cxx::helpers::WideMessageBuffer const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573739' => { + 'BaseType' => '560686', + 'Name' => 'struct log4cxx::helpers::MessageBuffer::MessageBufferPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573959' => { + 'BaseType' => '560672', + 'Name' => 'log4cxx::helpers::MessageBuffer*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573964' => { + 'BaseType' => '561894', + 'Name' => 'log4cxx::helpers::MessageBuffer const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '573989' => { + 'BaseType' => '566435', + 'Name' => 'struct log4cxx::Logger::LoggerPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '574244' => { + 'BaseType' => '457204', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '574259' => { + 'BaseType' => '457528', + 'Name' => 'std::shared_ptr*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '574305' => { + 'Class' => '457895', + 'Name' => 'void()(std::_Undefined_class::*)', + 'Return' => '198458', + 'Size' => '8', + 'Type' => 'FieldPtr' + }, + '574335' => { + 'Name' => 'bool(*)(union std::_Any_data&, union std::_Any_data const&, enum std::_Manager_operation)', + 'Param' => { '0' => { - 'name' => 'locationInfo', - 'offset' => '0', - 'type' => '50284' + 'type' => '574366' }, '1' => { - 'name' => 'title', - 'offset' => '8', - 'type' => '63706' + 'type' => '574371' }, '2' => { - 'name' => 'dateFormat', - 'offset' => '40', - 'type' => '3413463' - }, - '3' => { - 'name' => 'expectedPatternLength', - 'offset' => '56', - 'type' => '50486' + 'type' => '458004' } }, - 'Name' => 'struct log4cxx::HTMLLayout::HTMLLayoutPrivate', - 'NameSpace' => 'log4cxx::HTMLLayout', - 'Private' => 1, - 'Size' => '64', - 'Source' => 'htmllayout.cpp', - 'Type' => 'Struct' - }, - '7419042' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'htmllayout.h', - 'Line' => '37', - 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout', - 'NameSpace' => 'log4cxx::HTMLLayout', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::HTMLLayout::ClazzHTMLLayout::~ClazzHTMLLayout() [_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD1Ev]', - '24' => '(int (*)(...)) log4cxx::HTMLLayout::ClazzHTMLLayout::~ClazzHTMLLayout() [_ZN7log4cxx10HTMLLayout15ClazzHTMLLayoutD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::HTMLLayout::ClazzHTMLLayout::newInstance() const [_ZTch0_h0_NK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::HTMLLayout::ClazzHTMLLayout::getName[abi:cxx11]() const [_ZNK7log4cxx10HTMLLayout15ClazzHTMLLayout7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::HTMLLayout::ClazzHTMLLayout::newInstance() const [_ZNK7log4cxx10HTMLLayout15ClazzHTMLLayout11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::HTMLLayout::ClazzHTMLLayout) [_ZTIN7log4cxx10HTMLLayout15ClazzHTMLLayoutE]' - } - }, - '7419263' => { - 'BaseType' => '7419042', - 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7420001' => { - 'BaseType' => '7418907', - 'Name' => 'log4cxx::HTMLLayout const', - 'Size' => '16', - 'Type' => 'Const' - }, - '7420220' => { - 'BaseType' => '409118', - 'Name' => 'log4cxx::Layout const', - 'Type' => 'Const' - }, - '7421624' => { - 'BaseType' => '7418925', - 'Name' => 'struct log4cxx::HTMLLayout::HTMLLayoutPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7421977' => { - 'BaseType' => '7416909', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7421983' => { - 'BaseType' => '7421977', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7422239' => { - 'BaseType' => '7418907', - 'Name' => 'log4cxx::HTMLLayout*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7422245' => { - 'BaseType' => '7422239', - 'Name' => 'log4cxx::HTMLLayout*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7422267' => { - 'BaseType' => '7420001', - 'Name' => 'log4cxx::HTMLLayout const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7422273' => { - 'BaseType' => '7422267', - 'Name' => 'log4cxx::HTMLLayout const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7422284' => { - 'BaseType' => '7419042', - 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7422290' => { - 'BaseType' => '7422284', - 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7422295' => { - 'BaseType' => '7419263', - 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7422301' => { - 'BaseType' => '7422295', - 'Name' => 'log4cxx::HTMLLayout::ClazzHTMLLayout const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '749233' => { - 'Base' => { - '1118777' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'type' => '1149751' - } - }, - 'Type' => 'Class' + 'Return' => '174077', + 'Size' => '8', + 'Type' => 'FuncPtr' + }, + '574366' => { + 'BaseType' => '457900', + 'Name' => 'union std::_Any_data&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '574371' => { + 'BaseType' => '457999', + 'Name' => 'union std::_Any_data const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '574466' => { + 'BaseType' => '190225', + 'Name' => 'unsigned long&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '574731' => { + 'BaseType' => '190206', + 'Name' => 'unsigned char[8]', + 'Size' => '8', + 'Type' => 'Array' + }, + '575257' => { + 'BaseType' => '566570', + 'Name' => 'log4cxx::MDC*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '575282' => { + 'BaseType' => '564708', + 'Name' => 'struct log4cxx::spi::LoggingEvent::LoggingEventPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '575522' => { + 'BaseType' => '564884', + 'Name' => 'struct log4cxx::spi::Filter::FilterPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '575527' => { + 'BaseType' => '575522', + 'Name' => 'struct log4cxx::spi::Filter::FilterPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '575792' => { + 'BaseType' => '563928', + 'Name' => 'log4cxx::logchar const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '575797' => { + 'BaseType' => '497505', + 'Name' => 'std::vector, std::allocator >, std::allocator, std::allocator > > >const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '575807' => { + 'BaseType' => '567056', + 'Name' => 'log4cxx::LevelPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '575812' => { + 'BaseType' => '562694', + 'Name' => 'log4cxx::helpers::Properties&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '575817' => { + 'BaseType' => '562711', + 'Name' => 'log4cxx::helpers::ObjectPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '575822' => { + 'BaseType' => '567066', + 'Name' => 'log4cxx::File const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '575872' => { + 'BaseType' => '498077', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '575892' => { + 'BaseType' => '498401', + 'Name' => 'std::shared_ptr*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '575958' => { + 'BaseType' => '562716', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '575963' => { + 'BaseType' => '575958', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '576069' => { + 'BaseType' => '567316', + 'Name' => 'struct log4cxx::filter::AndFilter::AndFilterPrivate*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '576074' => { + 'BaseType' => '576069', + 'Name' => 'struct log4cxx::filter::AndFilter::AndFilterPrivate*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '576329' => { + 'BaseType' => '564875', + 'Name' => 'log4cxx::spi::Filter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '576334' => { + 'BaseType' => '576329', + 'Name' => 'log4cxx::spi::Filter*const', + 'Size' => '8', + 'Type' => 'Const' }, - '749238' => { - 'Copied' => 1, - 'Header' => 'thread', - 'Line' => '62', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_id', - 'offset' => '0', - 'type' => '749251' - } - }, - 'Name' => 'std::thread', - 'NameSpace' => 'std', + '576614' => { + 'BaseType' => '567083', + 'Name' => 'log4cxx::filter::AndFilter*', 'Size' => '8', - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '749251' => { - 'Copied' => 1, - 'Header' => 'thread', - 'Line' => '77', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_thread', - 'offset' => '0', - 'type' => '749334' - } - }, - 'Name' => 'std::thread::id', - 'NameSpace' => 'std::thread', + '576619' => { + 'BaseType' => '576614', + 'Name' => 'log4cxx::filter::AndFilter*const', 'Size' => '8', - 'Type' => 'Class' + 'Type' => 'Const' }, - '749334' => { - 'BaseType' => '829524', - 'Header' => 'thread', - 'Line' => '74', - 'Name' => 'std::thread::native_handle_type', - 'NameSpace' => 'std::thread', + '576644' => { + 'BaseType' => '567912', + 'Name' => 'log4cxx::filter::AndFilter const*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '7496979' => { - 'BaseType' => '1151584', - 'Name' => 'log4cxx::Layout*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7499806' => { - 'BaseType' => '7420220', - 'Name' => 'log4cxx::Layout const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7499812' => { - 'BaseType' => '7499806', - 'Name' => 'log4cxx::Layout const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '752960' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '833053' - } - }, - 'Type' => 'Struct' + '576649' => { + 'BaseType' => '576644', + 'Name' => 'log4cxx::filter::AndFilter const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '753046' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '754579' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + '576654' => { + 'BaseType' => '565576', + 'Name' => 'log4cxx::spi::FilterPtr const&', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '833053' - }, - '1' => { - 'key' => '_Dp', - 'type' => '752960' - } - }, - 'Type' => 'Class' + 'Type' => 'Ref' }, - '753369' => { - 'Base' => { - '752960' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '752960' - } - }, - 'Type' => 'Struct' + '576659' => { + 'BaseType' => '565593', + 'Name' => 'log4cxx::spi::LoggingEventPtr const&', + 'Size' => '8', + 'Type' => 'Ref' }, - '753622' => { - 'Base' => { - '753369' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '752960' - } - }, - 'Type' => 'Struct' + '576708' => { + 'BaseType' => '567101', + 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '753918' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '840435' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::ThreadUtility::priv_data*>', - 'NameSpace' => 'std', + '576713' => { + 'BaseType' => '576708', + 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '840435' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '754178' => { - 'Base' => { - '753622' => { - 'pos' => '0' - }, - '753918' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::ThreadUtility::priv_data*>', - 'NameSpace' => 'std', + '576718' => { + 'BaseType' => '567311', + 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter const*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '840435' - } - }, - 'Type' => 'Struct' + 'Type' => 'Pointer' }, - '754579' => { - 'Base' => { - '754178' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '576723' => { + 'BaseType' => '576718', + 'Name' => 'log4cxx::filter::AndFilter::ClazzAndFilter const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '840435' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '7547742' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7590065' - } - }, - 'Type' => 'Struct' - }, - '7547828' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '7549363' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7590065' - }, - '1' => { - 'key' => '_Dp', - 'type' => '7547742' - } - }, - 'Type' => 'Class' - }, - '7548151' => { - 'Base' => { - '7547742' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '7547742' - } - }, - 'Type' => 'Struct' - }, - '7548404' => { - 'Base' => { - '7548151' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '7547742' - } - }, - 'Type' => 'Struct' - }, - '754862' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '753046' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '576728' => { + 'BaseType' => '565063', + 'Name' => 'log4cxx::spi::Filter::ClazzFilter*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '833053' - }, - '1' => { - 'key' => '_Dp', - 'type' => '752960' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '7548702' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '7592626' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::InetAddress::InetAddressPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '7592626' - } - }, - 'Type' => 'Struct' - }, - '7548962' => { - 'Base' => { - '7548404' => { - 'pos' => '0' - }, - '7548702' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::InetAddress::InetAddressPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '7592626' - } - }, - 'Type' => 'Struct' - }, - '7549363' => { - 'Base' => { - '7548962' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '7592626' - } - }, - 'Type' => 'Class' - }, - '7549693' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '7547828' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7590065' - }, - '1' => { - 'key' => '_Dp', - 'type' => '7547742' - } - }, - 'Type' => 'Class' - }, - '755445' => { - 'Base' => { - '557783' => { - 'pos' => '1' - }, - '756382' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'std_function.h', - 'Line' => '369', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_invoker', - 'offset' => '24', - 'type' => '755835' - } - }, - 'Name' => 'std::function', - 'NameSpace' => 'std', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => '_Signature', - 'type' => '55176' - } - }, - 'Type' => 'Class' + '576733' => { + 'BaseType' => '565182', + 'Name' => 'log4cxx::spi::Filter::ClazzFilter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7556272' => { - 'Base' => { - '7562865' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7590047' - } - }, - 'Type' => 'Class' - }, - '7556646' => { - 'Base' => { - '7573418' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '7556272' - } - }, - 'Type' => 'Class' - }, - '7556797' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '7556646' - } - }, - 'Type' => 'Struct' - }, - '7556811' => { - 'BaseType' => '7595223', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '7557154' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '7557353' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7556272' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '7556646' - } - }, - 'Type' => 'Struct' - }, - '7557167' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', - 'Memb' => { - '0' => { - 'name' => '_M_start', - 'offset' => '0', - 'type' => '7557341' - }, - '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '7557341' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '7557341' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '7557341' => { - 'BaseType' => '7574086', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '7557353' => { - 'Base' => { - '7556646' => { - 'pos' => '0' - }, - '7557167' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' - }, - '7558131' => { - 'Base' => { - '7557154' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7556272' - } - }, - 'Type' => 'Class' - }, - '755835' => { - 'BaseType' => '840725', - 'Header' => 'std_function.h', - 'Line' => '610', - 'Name' => 'std::function::_Invoker_type', - 'NameSpace' => 'std::function', - 'Private' => 1, + '576738' => { + 'BaseType' => '564713', + 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '576743' => { + 'BaseType' => '564869', + 'Name' => 'log4cxx::spi::LoggingEvent::ClazzLoggingEvent const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '576748' => { + 'BaseType' => '564699', + 'Name' => 'log4cxx::spi::LoggingEvent*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '576753' => { + 'BaseType' => '565607', + 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '576758' => { + 'BaseType' => '565726', + 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '576763' => { + 'BaseType' => '565732', + 'Name' => 'log4cxx::spi::HierarchyEventListener*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '576768' => { + 'BaseType' => '566565', + 'Name' => 'log4cxx::Logger const*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '755906' => { - 'Base' => { - '557783' => { - 'pos' => '1' - }, - '756407' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'std_function.h', - 'Line' => '369', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_invoker', - 'offset' => '24', - 'type' => '756311' - } - }, - 'Name' => 'std::function, std::thread::id, unsigned long)>', - 'NameSpace' => 'std', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => '_Signature', - 'type' => '1022505' - } - }, - 'Type' => 'Class' + '576773' => { + 'BaseType' => '568081', + 'Name' => 'log4cxx::Appender const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7561604' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7590047' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '7561752' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7590047' - } - }, - 'Type' => 'Struct' - }, - '7561766' => { - 'BaseType' => '7590047', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '7562865' => { - 'Base' => { - '7561604' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '7595582' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7590047' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '756311' => { - 'BaseType' => '840783', - 'Header' => 'std_function.h', - 'Line' => '610', - 'Name' => 'std::function, std::thread::id, unsigned long)>::_Invoker_type', - 'NameSpace' => 'std::function, std::thread::id, unsigned long)>', - 'Private' => 1, + '576778' => { + 'BaseType' => '565902', + 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '7563152' => { - 'BaseType' => '7561766', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '756382' => { - 'Header' => 'refwrap.h', - 'Line' => '53', - 'Name' => 'struct std::_Maybe_unary_or_binary_function', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Res', - 'type' => '1' - } - }, - 'Type' => 'Struct' + '576783' => { + 'BaseType' => '566021', + 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '756407' => { - 'Header' => 'refwrap.h', - 'Line' => '53', - 'Name' => 'struct std::_Maybe_unary_or_binary_function >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Res', - 'type' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '68' - } - }, - 'Type' => 'Struct' + '576788' => { + 'BaseType' => '566440', + 'Name' => 'log4cxx::Logger::ClazzLogger*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7573418' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '7556272' - } - }, - 'Type' => 'Class' - }, - '7573885' => { - 'Base' => { - '7556797' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '7556646' - } - }, - 'Type' => 'Struct' - }, - '7574086' => { - 'BaseType' => '7556811', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '7590047' => { - 'Base' => { - '63470' => { - 'pos' => '0' - } - }, - 'Header' => 'inetaddress.h', - 'Line' => '43', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '7549693' - } - }, - 'Name' => 'log4cxx::helpers::InetAddress', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::InetAddress::~InetAddress() [_ZN7log4cxx7helpers11InetAddressD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::InetAddress::~InetAddress() [_ZN7log4cxx7helpers11InetAddressD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::InetAddress::getClass() const [_ZNK7log4cxx7helpers11InetAddress8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::InetAddress::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers11InetAddress10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::InetAddress::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers11InetAddress4castERKNS0_5ClassE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InetAddress) [_ZTIN7log4cxx7helpers11InetAddressE]' - } - }, - '7590065' => { - 'Line' => '31', - 'Memb' => { - '0' => { - 'name' => 'ipAddrString', - 'offset' => '0', - 'type' => '63706' - }, - '1' => { - 'name' => 'hostNameString', - 'offset' => '32', - 'type' => '63706' - } - }, - 'Name' => 'struct log4cxx::helpers::InetAddress::InetAddressPrivate', - 'NameSpace' => 'log4cxx::helpers::InetAddress', - 'Private' => 1, - 'Size' => '64', - 'Source' => 'inetaddress.cpp', - 'Type' => 'Struct' - }, - '7590154' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'inetaddress.h', - 'Line' => '46', - 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress', - 'NameSpace' => 'log4cxx::helpers::InetAddress', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::InetAddress::ClazzInetAddress::~ClazzInetAddress() [_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::InetAddress::ClazzInetAddress::~ClazzInetAddress() [_ZN7log4cxx7helpers11InetAddress16ClazzInetAddressD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::InetAddress::ClazzInetAddress::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers11InetAddress16ClazzInetAddress7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InetAddress::ClazzInetAddress) [_ZTIN7log4cxx7helpers11InetAddress16ClazzInetAddressE]' - } - }, - '7590312' => { - 'BaseType' => '7590154', - 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7590785' => { - 'BaseType' => '7590047', - 'Name' => 'log4cxx::helpers::InetAddress const', - 'Size' => '16', - 'Type' => 'Const' - }, - '7591208' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '7590154' - } - }, - 'Type' => 'Class' - }, - '7592264' => { - 'BaseType' => '7556272', - 'Header' => 'inetaddress.h', - 'Line' => '40', - 'Name' => 'log4cxx::helpers::InetAddressPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '7592276' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } - }, - 'Header' => 'inetaddress.h', - 'Line' => '30', - 'Name' => 'log4cxx::helpers::UnknownHostException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::UnknownHostException::~UnknownHostException() [_ZN7log4cxx7helpers20UnknownHostExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::UnknownHostException::~UnknownHostException() [_ZN7log4cxx7helpers20UnknownHostExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::UnknownHostException) [_ZTIN7log4cxx7helpers20UnknownHostExceptionE]' - } - }, - '7592433' => { - 'BaseType' => '7592276', - 'Name' => 'log4cxx::helpers::UnknownHostException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '7592626' => { - 'BaseType' => '7590065', - 'Name' => 'struct log4cxx::helpers::InetAddress::InetAddressPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7595098' => { - 'BaseType' => '7591208', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7595104' => { - 'BaseType' => '7595098', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7595223' => { - 'BaseType' => '7556272', - 'Name' => 'std::shared_ptr*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7595582' => { - 'BaseType' => '7563152', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7595600' => { - 'BaseType' => '7590047', - 'Name' => 'log4cxx::helpers::InetAddress*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7595606' => { - 'BaseType' => '7595600', - 'Name' => 'log4cxx::helpers::InetAddress*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7595688' => { - 'BaseType' => '7590785', - 'Name' => 'log4cxx::helpers::InetAddress const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7595694' => { - 'BaseType' => '7595688', - 'Name' => 'log4cxx::helpers::InetAddress const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7596062' => { - 'BaseType' => '7590154', - 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7596068' => { - 'BaseType' => '7596062', - 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7596073' => { - 'BaseType' => '7590312', - 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7596079' => { - 'BaseType' => '7596073', - 'Name' => 'log4cxx::helpers::InetAddress::ClazzInetAddress const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7596084' => { - 'BaseType' => '7592276', - 'Name' => 'log4cxx::helpers::UnknownHostException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7596090' => { - 'BaseType' => '7596084', - 'Name' => 'log4cxx::helpers::UnknownHostException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7596095' => { - 'BaseType' => '7592433', - 'Name' => 'log4cxx::helpers::UnknownHostException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '7596101' => { - 'BaseType' => '7592276', - 'Name' => 'log4cxx::helpers::UnknownHostException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '761051' => { - 'Copied' => 1, - 'Header' => 'condition_variable', - 'Line' => '66', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_cond', - 'offset' => '0', - 'type' => '761064' - } - }, - 'Name' => 'std::condition_variable', - 'NameSpace' => 'std', - 'Size' => '48', - 'Type' => 'Class' + '576793' => { + 'BaseType' => '566559', + 'Name' => 'log4cxx::Logger::ClazzLogger const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '761064' => { - 'BaseType' => '829560', - 'Header' => 'condition_variable', - 'Line' => '70', - 'Name' => 'std::condition_variable::__native_type', - 'NameSpace' => 'std::condition_variable', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' + '576798' => { + 'BaseType' => '558717', + 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '763822' => { - 'Copied' => 1, - 'Header' => 'stl_map.h', - 'Line' => '100', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '763835' - } - }, - 'Name' => 'std::map, DiscardSummary>', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Tp', - 'type' => '841514' - } - }, - 'Type' => 'Class' + '576803' => { + 'BaseType' => '558836', + 'Name' => 'log4cxx::helpers::ResourceBundle::ClazzResourceBundle const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '763835' => { - 'BaseType' => '772353', - 'Header' => 'stl_map.h', - 'Line' => '148', - 'Name' => 'std::map, DiscardSummary>::_Rep_type', - 'NameSpace' => 'std::map, DiscardSummary>', - 'Private' => 1, - 'Size' => '48', - 'Type' => 'Typedef' + '576808' => { + 'BaseType' => '564020', + 'Name' => 'log4cxx::Level::LevelClass*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '766205' => { - 'Base' => { - '810944' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'type' => '132916' - } - }, - 'Type' => 'Class' + '576813' => { + 'BaseType' => '564220', + 'Name' => 'log4cxx::Level::LevelClass const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '766356' => { - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '391', - 'Name' => 'struct std::allocator_traits > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '766205' - } - }, - 'Type' => 'Struct' + '576818' => { + 'BaseType' => '558583', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '766370' => { - 'BaseType' => '411652', - 'Header' => 'alloc_traits.h', - 'Line' => '399', - 'Name' => 'std::allocator_traits > >::pointer', - 'NameSpace' => 'std::allocator_traits > >', + '576823' => { + 'BaseType' => '558702', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl const*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '766770' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '81', - 'Memb' => { - '0' => { - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '766969' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '132916' - }, - '1' => { - 'key' => '_Alloc', - 'type' => '766205' - } - }, - 'Type' => 'Struct' + '576828' => { + 'BaseType' => '566036', + 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '766783' => { - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '88', - 'Memb' => { - '0' => { - 'name' => '_M_start', - 'offset' => '0', - 'type' => '766957' - }, - '1' => { - 'name' => '_M_finish', - 'offset' => '8', - 'type' => '766957' - }, - '2' => { - 'name' => '_M_end_of_storage', - 'offset' => '16', - 'type' => '766957' - } - }, - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' + '576833' => { + 'BaseType' => '566155', + 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '766957' => { - 'BaseType' => '811673', - 'Header' => 'stl_vector.h', - 'Line' => '86', - 'Name' => 'std::_Vector_base, std::allocator > >::pointer', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', + '576838' => { + 'BaseType' => '567956', + 'Name' => 'log4cxx::Appender::ClazzAppender*', 'Size' => '8', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '766969' => { - 'Base' => { - '766205' => { - 'pos' => '0' - }, - '766783' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '125', - 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', - 'NameSpace' => 'std::_Vector_base, std::allocator > >', - 'Size' => '24', - 'Type' => 'Struct' + '576843' => { + 'BaseType' => '568075', + 'Name' => 'log4cxx::Appender::ClazzAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '767747' => { - 'Base' => { - '766770' => { - 'access' => 'protected', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_vector.h', - 'Line' => '386', - 'Name' => 'std::vector >', - 'NameSpace' => 'std', - 'Size' => '24', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '132916' - } - }, - 'Type' => 'Class' + '576848' => { + 'BaseType' => '566170', + 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '771028' => { - 'Base' => { - '783694' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '208', - 'Memb' => { - '0' => { - 'name' => 'first', - 'offset' => '0', - 'type' => '7336' - }, - '1' => { - 'name' => 'second', - 'offset' => '32', - 'type' => '841514' - } - }, - 'Name' => 'struct std::pairconst, DiscardSummary>', - 'NameSpace' => 'std', - 'Size' => '56', - 'TParam' => { - '0' => { - 'key' => '_T1', - 'type' => '7336' - }, - '1' => { - 'key' => '_T2', - 'type' => '841514' - } - }, - 'Type' => 'Struct' + '576853' => { + 'BaseType' => '566289', + 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '771376' => { - 'Base' => { - '812906' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, DiscardSummary> >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::pair, std::allocator >, DiscardSummary>' - } - }, - 'Type' => 'Class' + '576863' => { + 'BaseType' => '215794', + 'Name' => 'log4cxx::helpers::Object*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '577932' => { + 'BaseType' => '566420', + 'Name' => 'log4cxx::spi::OptionHandler const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '577937' => { + 'BaseType' => '565547', + 'Name' => 'log4cxx::spi::Filter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7714974' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { + '577942' => { + 'BaseType' => '577937', + 'Name' => 'log4cxx::spi::Filter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '58800' => { + 'BaseType' => '51677', + 'Name' => 'std::__cxx11::basic_stringconst', + 'Size' => '32', + 'Type' => 'Const' + }, + '58805' => { + 'Copied' => 1, + 'Header' => 'basic_string.h', + 'Line' => '85', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_dataplus', + 'offset' => '0', + 'type' => '58818' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_string_length', + 'offset' => '8', + 'type' => '58990' + }, + '2' => { + 'access' => 'private', + 'name' => 'unnamed0', + 'offset' => '22', + 'type' => '58955' + } + }, + 'Name' => 'std::__cxx11::basic_string', + 'NameSpace' => 'std::__cxx11', + 'Size' => '32', + 'TParam' => { '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' + 'key' => '_CharT', + 'type' => '190393' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Type' => 'Class' + }, + '58818' => { + 'Base' => { + '30578' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'basic_string.h', + 'Line' => '158', + 'Memb' => { + '0' => { + 'name' => '_M_p', + 'offset' => '0', + 'type' => '58922' + } + }, + 'Name' => 'struct std::__cxx11::basic_string::_Alloc_hider', + 'NameSpace' => 'std::__cxx11::basic_string', + 'Private' => 1, + 'Size' => '8', + 'Type' => 'Struct' + }, + '58922' => { + 'BaseType' => '181009', + 'Header' => 'basic_string.h', + 'Line' => '100', + 'Name' => 'std::__cxx11::basic_string::pointer', + 'NameSpace' => 'std::__cxx11::basic_string', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '58955' => { + 'Header' => 'basic_string.h', + 'Line' => '180', + 'Memb' => { + '0' => { + 'name' => '_M_local_buf', + 'offset' => '0', + 'type' => '202770' + }, + '1' => { + 'name' => '_M_allocated_capacity', + 'offset' => '0', + 'type' => '58990' + } + }, + 'Name' => 'std::__cxx11::basic_string::anon-union-basic_string.h-180', + 'NameSpace' => 'std::__cxx11::basic_string', + 'Private' => 1, + 'Size' => '16', + 'Type' => 'Union' + }, + '58990' => { + 'BaseType' => '181033', + 'Header' => 'basic_string.h', + 'Line' => '96', + 'Name' => 'std::__cxx11::basic_string::size_type', + 'NameSpace' => 'std::__cxx11::basic_string', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '60042' => { + 'BaseType' => '181757', + 'Header' => 'basic_string.h', + 'Line' => '104', + 'Name' => 'std::__cxx11::basic_string::const_iterator', + 'NameSpace' => 'std::__cxx11::basic_string', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '6004556' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '7715350' + 'key' => '_Tp', + 'type' => '3120362' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '7715350' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'inputstream.h', - 'Line' => '37', - 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream', - 'NameSpace' => 'log4cxx::helpers::InputStream', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::InputStream::ClazzInputStream::~ClazzInputStream() [_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::InputStream::ClazzInputStream::~ClazzInputStream() [_ZN7log4cxx7helpers11InputStream16ClazzInputStreamD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::InputStream::ClazzInputStream::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers11InputStream16ClazzInputStream7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InputStream::ClazzInputStream) [_ZTIN7log4cxx7helpers11InputStream16ClazzInputStreamE]' - } - }, - '7715507' => { - 'BaseType' => '7715350', - 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7716729' => { - 'BaseType' => '7714974', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7716735' => { - 'BaseType' => '7716729', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7716896' => { - 'BaseType' => '1340484', - 'Name' => 'log4cxx::helpers::InputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7716902' => { - 'BaseType' => '7716896', - 'Name' => 'log4cxx::helpers::InputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7716919' => { - 'BaseType' => '7715350', - 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7716925' => { - 'BaseType' => '7716919', - 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '7716930' => { - 'BaseType' => '7715507', - 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '7716936' => { - 'BaseType' => '7716930', - 'Name' => 'log4cxx::helpers::InputStream::ClazzInputStream const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '771777' => { - 'Base' => { - '813500' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'allocator.h', - 'Line' => '111', - 'Name' => 'std::allocator, std::allocator >, DiscardSummary> > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'name' => 'std::_Rb_tree_node, std::allocator >, DiscardSummary> >' - } - }, - 'Type' => 'Class' - }, - '771964' => { - 'Base' => { - '556185' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '216', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '32', - 'type' => '816114' - } - }, - 'Name' => 'struct std::_Rb_tree_nodeconst, DiscardSummary> >', - 'NameSpace' => 'std', - 'Size' => '88', - 'TParam' => { - '0' => { - 'key' => '_Val', - 'type' => '771028' - } - }, - 'Type' => 'Struct' - }, - '772075' => { - 'Header' => 'stl_function.h', - 'Line' => '118', - 'Name' => 'struct std::binary_function, std::__cxx11::basic_string, bool>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Arg1', - 'type' => '68' - }, - '1' => { - 'key' => '_Arg2', - 'type' => '68' - }, - '2' => { - 'key' => '_Result', - 'type' => '50284' - } - }, - 'Type' => 'Struct' - }, - '772116' => { - 'Base' => { - '772075' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '381', - 'Name' => 'struct std::less >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '68' - } - }, - 'Type' => 'Struct' - }, - '772192' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '142', - 'Memb' => { - '0' => { - 'name' => '_M_key_compare', - 'offset' => '0', - 'type' => '772116' - } - }, - 'Name' => 'struct std::_Rb_tree_key_compare > >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Key_compare', - 'type' => '772116' - } - }, - 'Type' => 'Struct' - }, - '772353' => { - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '436', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => '_M_impl', - 'offset' => '0', - 'type' => '772367' - } - }, - 'Name' => 'std::_Rb_tree, std::pairconst, DiscardSummary>, std::_Select1stconst, DiscardSummary> >, std::less >, std::allocator, std::allocator >, DiscardSummary> > >', - 'NameSpace' => 'std', - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key', - 'type' => '68' - }, - '1' => { - 'key' => '_Val', - 'type' => '771028' - }, - '2' => { - 'key' => '_KeyOfValue', - 'type' => '795437' - }, - '3' => { - 'key' => '_Compare', - 'type' => '772116' - }, - '4' => { - 'key' => '_Alloc', - 'type' => '771376' - } - }, - 'Type' => 'Class' - }, - '772367' => { - 'Base' => { - '556381' => { - 'pos' => '2' - }, - '771777' => { - 'pos' => '0' - }, - '772192' => { - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'stl_tree.h', - 'Line' => '673', - 'Name' => 'struct std::_Rb_tree, std::pairconst, DiscardSummary>, std::_Select1stconst, DiscardSummary> >, std::less >, std::allocator, std::allocator >, DiscardSummary> > >::_Rb_tree_impl > >', - 'NameSpace' => 'std::_Rb_tree, std::pairconst, DiscardSummary>, std::_Select1stconst, DiscardSummary> >, std::less >, std::allocator, std::allocator >, DiscardSummary> > >', - 'Protected' => 1, - 'Size' => '48', - 'TParam' => { - '0' => { - 'key' => '_Key_compare', - 'type' => '772116' - } - }, - 'Type' => 'Struct' - }, - '7761247' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', + '6004704' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '7787476' + 'type' => '3120362' } }, 'Type' => 'Struct' }, - '7761333' => { + '6004718' => { + 'BaseType' => '3120362', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' + }, + '6004741' => { + 'Base' => { + '6004556' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', - 'name' => '_M_t', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '7762867' + 'type' => '6085520' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'std::__uniq_ptr_impl >', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '7787476' + 'type' => '3120362' }, '1' => { - 'key' => '_Dp', - 'type' => '7761247' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '7761656' => { + '6005022' => { + 'BaseType' => '6004718', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' + }, + '6005748' => { + 'BaseType' => '2974326', + 'Name' => 'std::shared_ptrconst', + 'Size' => '16', + 'Type' => 'Const' + }, + '6005763' => { 'Base' => { - '7761247' => { + '6047521' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator > >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '7761247' + 'name' => 'std::__cxx11::basic_string, std::allocator >' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '7761909' => { - 'Base' => { - '7761656' => { - 'access' => 'private', - 'pos' => '0' - } - }, + '6006052' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits, std::allocator > > >', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '7761247' + 'type' => '6005763' } }, 'Type' => 'Struct' }, - '7762207' => { + '6006066' => { + 'BaseType' => '202670', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits, std::allocator > > >::pointer', + 'NameSpace' => 'std::allocator_traits, std::allocator > > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '6006397' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', + 'Header' => 'stl_vector.h', + 'Line' => '84', 'Memb' => { '0' => { - 'name' => '_M_head_impl', + 'name' => '_M_impl', 'offset' => '0', - 'type' => '7790215' + 'type' => '6006596' } }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::InputStreamReader::InputStreamReaderPrivate*>', + 'Name' => 'struct std::_Vector_base, std::allocator, std::allocator > > >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '24', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Tp', + 'type' => '51677' }, '1' => { - 'key' => '_Head', - 'type' => '7790215' + 'key' => '_Alloc', + 'type' => '6005763' } }, 'Type' => 'Struct' }, - '7762467' => { + '6006410' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', + 'Memb' => { + '0' => { + 'name' => '_M_start', + 'offset' => '0', + 'type' => '6006584' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '6006584' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '6006584' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator, std::allocator > > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator, std::allocator > > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '6006584' => { + 'BaseType' => '6047993', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator, std::allocator > > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator, std::allocator > > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '6006596' => { 'Base' => { - '7761909' => { + '6005763' => { 'pos' => '0' }, - '7762207' => { - 'access' => 'private', + '6006410' => { 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::InputStreamReader::InputStreamReaderPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '7790215' - } - }, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator, std::allocator > > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator, std::allocator > > >', + 'Size' => '24', 'Type' => 'Struct' }, - '7762867' => { + '6007393' => { 'Base' => { - '7762467' => { + '6006397' => { + 'access' => 'protected', 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '7790215' - } - }, - 'Type' => 'Class' - }, - '7763196' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '7761333' - } - }, - 'Name' => 'std::unique_ptr >', + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '24', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '7787476' - }, - '1' => { - 'key' => '_Dp', - 'type' => '7761247' + 'type' => '51677' } }, 'Type' => 'Class' }, - '7766419' => { + '6010542' => { + 'BaseType' => '6007393', + 'Name' => 'std::vector >const', + 'Size' => '24', + 'Type' => 'Const' + }, + '6010653' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1340484' + 'type' => '6073622' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '7766567' => { + '6010801' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1340484' + 'type' => '6073622' } }, 'Type' => 'Struct' }, - '7766581' => { - 'BaseType' => '1340484', + '6010815' => { + 'BaseType' => '6073622', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', 'Type' => 'Typedef' }, - '7767591' => { + '6010838' => { 'Base' => { - '7766419' => { + '6010653' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '7791447' + 'type' => '6085805' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '1340484' + 'type' => '6073622' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '7767877' => { - 'BaseType' => '7766581', + '6011119' => { + 'BaseType' => '6010815', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', 'Type' => 'Typedef' }, - '777986' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '260723' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '778134' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '260723' - } - }, - 'Type' => 'Struct' - }, - '778148' => { - 'BaseType' => '260723', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Type' => 'Typedef' - }, - '778171' => { - 'Base' => { - '777986' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '842524' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '260723' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + '6012050' => { + 'Base' => { + '6010838' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '6073622' + } + }, + 'Type' => 'Class' + }, + '602616' => { + 'BaseType' => '566161', + 'Name' => 'log4cxx::spi::OptionHandler*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '778457' => { - 'BaseType' => '778148', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Type' => 'Typedef' + '602621' => { + 'BaseType' => '602616', + 'Name' => 'log4cxx::spi::OptionHandler*const', + 'Size' => '8', + 'Type' => 'Const' }, - '7787459' => { + '6047521' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '51677' + } + }, + 'Type' => 'Class' + }, + '6047768' => { 'Base' => { - '7789107' => { + '6006052' => { 'pos' => '0' } }, - 'Header' => 'inputstreamreader.h', - 'Line' => '40', + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits, std::allocator > > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '6005763' + } + }, + 'Type' => 'Struct' + }, + '6047993' => { + 'BaseType' => '6006066', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits, std::allocator > > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits, std::allocator > > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '6071600' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '7763196' + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::InputStreamReader', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::~InputStreamReader() [_ZN7log4cxx7helpers17InputStreamReaderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::~InputStreamReader() [_ZN7log4cxx7helpers17InputStreamReaderD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::getClass() const [_ZNK7log4cxx7helpers17InputStreamReader8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers17InputStreamReader10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers17InputStreamReader4castERKNS0_5ClassE]', - '56' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers17InputStreamReader5closeERNS0_4PoolE]', - '64' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::read[abi:cxx11](log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers17InputStreamReader4readB5cxx11ERNS0_4PoolE]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InputStreamReader) [_ZTIN7log4cxx7helpers17InputStreamReaderE]' - } + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '6073656' + } + }, + 'Type' => 'Class' }, - '7787476' => { - 'Line' => '32', + '6072360' => { + 'Header' => 'widelife.h', + 'Line' => '36', 'Memb' => { '0' => { - 'name' => 'in', + 'access' => 'private', + 'name' => 'storage', 'offset' => '0', - 'type' => '4044621' - }, - '1' => { - 'name' => 'dec', - 'offset' => '16', - 'type' => '1729333' + 'type' => '202654' } }, - 'Name' => 'struct log4cxx::helpers::InputStreamReader::InputStreamReaderPrivate', - 'NameSpace' => 'log4cxx::helpers::InputStreamReader', - 'Private' => 1, - 'Size' => '32', - 'Source' => 'inputstreamreader.cpp', - 'Type' => 'Struct' + 'Name' => 'log4cxx::helpers::WideLife >', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '2974326' + } + }, + 'Type' => 'Class' + }, + '6073617' => { + 'BaseType' => '3120362', + 'Name' => 'log4cxx::pattern::PatternConverter const', + 'Type' => 'Const' }, - '7787607' => { + '6073622' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '6074647' => { + 'pos' => '0' + } }, - 'Header' => 'inputstreamreader.h', - 'Line' => '46', - 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader', - 'NameSpace' => 'log4cxx::helpers::InputStreamReader', + 'Header' => 'classnamepatternconverter.h', + 'Line' => '36', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern25ClassNamePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ClassNamePatternConverter) [_ZTIN7log4cxx7pattern25ClassNamePatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::~ClassNamePatternConverter() [_ZN7log4cxx7pattern25ClassNamePatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::~ClassNamePatternConverter() [_ZN7log4cxx7pattern25ClassNamePatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::getClass() const [_ZNK7log4cxx7pattern25ClassNamePatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern25ClassNamePatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern25ClassNamePatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } + }, + '6073656' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'classnamepatternconverter.h', + 'Line' => '44', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter', + 'NameSpace' => 'log4cxx::pattern::ClassNamePatternConverter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::ClazzInputStreamReader::~ClazzInputStreamReader() [_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::ClazzInputStreamReader::~ClazzInputStreamReader() [_ZN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderD0Ev]', + '16' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter::~ClazzClassNamePatternConverter() [_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter::~ClazzClassNamePatternConverter() [_ZN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::InputStreamReader::ClazzInputStreamReader::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers17InputStreamReader22ClazzInputStreamReader7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::InputStreamReader::ClazzInputStreamReader) [_ZTIN7log4cxx7helpers17InputStreamReader22ClazzInputStreamReaderE]' + '40' => '(int (*)(...)) log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter) [_ZTIN7log4cxx7pattern25ClassNamePatternConverter30ClazzClassNamePatternConverterE]' } }, - '7787764' => { - 'BaseType' => '7787607', - 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader const', + '6073803' => { + 'BaseType' => '6073656', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '7788236' => { - 'BaseType' => '7787459', - 'Name' => 'log4cxx::helpers::InputStreamReader const', + '6074198' => { + 'BaseType' => '6073622', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter const', 'Size' => '16', 'Type' => 'Const' }, - '7788283' => { - 'Header' => 'widelife.h', + '6074642' => { + 'BaseType' => '3121054', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter const', + 'Type' => 'Const' + }, + '6074647' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, + 'Header' => 'namepatternconverter.h', 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + 'Name' => 'log4cxx::pattern::NamePatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) __cxa_pure_virtual', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NamePatternConverter) [_ZTIN7log4cxx7pattern20NamePatternConverterE]', + '56' => '0u', + '64' => '0u', + '72' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::getClass() const [_ZNK7log4cxx7pattern20NamePatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern20NamePatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern20NamePatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } + }, + '6074656' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Header' => 'namepatternconverter.h', + 'Line' => '41', + 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter', + 'NameSpace' => 'log4cxx::pattern::NamePatternConverter', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '7787607' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter::~ClazzNamePatternConverter() [_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter::~ClazzNamePatternConverter() [_ZN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter) [_ZTIN7log4cxx7pattern20NamePatternConverter25ClazzNamePatternConverterE]' + } }, - '7789085' => { - 'BaseType' => '4044621', - 'Name' => 'log4cxx::helpers::InputStreamPtr const', - 'Size' => '16', + '6074774' => { + 'BaseType' => '6074656', + 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter const', + 'Size' => '8', 'Type' => 'Const' }, - '7789102' => { - 'BaseType' => '1729333', - 'Name' => 'log4cxx::helpers::CharsetDecoderPtr const', - 'Size' => '16', + '6075040' => { + 'BaseType' => '6074647', + 'Name' => 'log4cxx::pattern::NamePatternConverter const', 'Type' => 'Const' }, - '7789107' => { + '6075057' => { 'Base' => { - '63470' => { - 'pos' => '0' - } + '209311' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'reader.h', - 'Line' => '33', - 'Name' => 'log4cxx::helpers::Reader', - 'NameSpace' => 'log4cxx::helpers', + 'Header' => 'nameabbreviator.h', + 'Line' => '38', + 'Name' => 'log4cxx::pattern::NameAbbreviator', + 'NameSpace' => 'log4cxx::pattern', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', '16' => '0u', '24' => '0u', - '32' => '(int (*)(...)) log4cxx::helpers::Reader::getClass() const [_ZNK7log4cxx7helpers6Reader8getClassEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Reader::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Reader10instanceofERKNS0_5ClassE]', - '48' => '(int (*)(...)) log4cxx::helpers::Reader::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers6Reader4castERKNS0_5ClassE]', + '32' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::getClass() const [_ZNK7log4cxx7pattern15NameAbbreviator8getClassEv]', + '40' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern15NameAbbreviator10instanceofERKNS_7helpers5ClassE]', + '48' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern15NameAbbreviator4castERKNS_7helpers5ClassE]', '56' => '(int (*)(...)) __cxa_pure_virtual', - '64' => '(int (*)(...)) __cxa_pure_virtual', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Reader) [_ZTIN7log4cxx7helpers6ReaderE]' + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NameAbbreviator) [_ZTIN7log4cxx7pattern15NameAbbreviatorE]' + } + }, + '6075063' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'nameabbreviator.h', + 'Line' => '41', + 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator', + 'NameSpace' => 'log4cxx::pattern::NameAbbreviator', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator::~ClazzNameAbbreviator() [_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator::~ClazzNameAbbreviator() [_ZN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviator7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator) [_ZTIN7log4cxx7pattern15NameAbbreviator20ClazzNameAbbreviatorE]' } }, - '7789174' => { - 'BaseType' => '7789107', - 'Name' => 'log4cxx::helpers::Reader const', + '6075181' => { + 'BaseType' => '6075063', + 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator const', + 'Size' => '8', 'Type' => 'Const' }, - '7790215' => { - 'BaseType' => '7787476', - 'Name' => 'struct log4cxx::helpers::InputStreamReader::InputStreamReaderPrivate*', + '6085328' => { + 'BaseType' => '6074642', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7791241' => { - 'BaseType' => '7788283', - 'Name' => 'log4cxx::helpers::WideLife*', + '6085333' => { + 'BaseType' => '6085328', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '6085384' => { + 'BaseType' => '6071600', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '7791247' => { - 'BaseType' => '7791241', - 'Name' => 'log4cxx::helpers::WideLife*const', + '6085389' => { + 'BaseType' => '6085384', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '7791447' => { - 'BaseType' => '7767877', - 'Name' => 'std::__shared_ptr::element_type*', + '6085520' => { + 'BaseType' => '6005022', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '6085535' => { + 'BaseType' => '2974326', + 'Name' => 'std::shared_ptr*', 'Size' => '8', 'Type' => 'Pointer' }, - '7791615' => { - 'BaseType' => '7789085', - 'Name' => 'log4cxx::helpers::InputStreamPtr const&', + '6085545' => { + 'BaseType' => '6005748', + 'Name' => 'std::shared_ptrconst&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '6085700' => { + 'BaseType' => '6010542', + 'Name' => 'std::vector >const&', 'Size' => '8', 'Type' => 'Ref' }, - '7791621' => { - 'BaseType' => '7789102', - 'Name' => 'log4cxx::helpers::CharsetDecoderPtr const&', + '6085710' => { + 'BaseType' => '6007393', + 'Name' => 'std::vector >&', 'Size' => '8', 'Type' => 'Ref' }, - '7791681' => { - 'BaseType' => '7788236', - 'Name' => 'log4cxx::helpers::InputStreamReader const*', + '6085735' => { + 'BaseType' => '6072360', + 'Name' => 'log4cxx::helpers::WideLife >*', 'Size' => '8', 'Type' => 'Pointer' }, - '7791687' => { - 'BaseType' => '7791681', - 'Name' => 'log4cxx::helpers::InputStreamReader const*const', + '6085740' => { + 'BaseType' => '6085735', + 'Name' => 'log4cxx::helpers::WideLife >*const', 'Size' => '8', 'Type' => 'Const' }, - '7791692' => { - 'BaseType' => '7787459', - 'Name' => 'log4cxx::helpers::InputStreamReader*', + '6085805' => { + 'BaseType' => '6011119', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '7791698' => { - 'BaseType' => '7791692', - 'Name' => 'log4cxx::helpers::InputStreamReader*const', + '6085835' => { + 'BaseType' => '6012050', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'RvalueRef' }, - '7791715' => { - 'BaseType' => '7787607', - 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader*', + '6085850' => { + 'BaseType' => '3120362', + 'Name' => 'log4cxx::pattern::PatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '7791721' => { - 'BaseType' => '7791715', - 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader*const', + '6085855' => { + 'BaseType' => '6085850', + 'Name' => 'log4cxx::pattern::PatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '7791726' => { - 'BaseType' => '7787764', - 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader const*', + '6085860' => { + 'BaseType' => '6073622', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '7791732' => { - 'BaseType' => '7791726', - 'Name' => 'log4cxx::helpers::InputStreamReader::ClazzInputStreamReader const*const', + '6085865' => { + 'BaseType' => '6085860', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '779350' => { - 'Base' => { - '778171' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '260723' - } - }, - 'Type' => 'Class' - }, - '7816819' => { - 'BaseType' => '7789174', - 'Name' => 'log4cxx::helpers::Reader const*', + '6086386' => { + 'BaseType' => '6074198', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7816825' => { - 'BaseType' => '7816819', - 'Name' => 'log4cxx::helpers::Reader const*const', + '6086391' => { + 'BaseType' => '6086386', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '783694' => { - 'Copied' => 1, - 'Header' => 'stl_pair.h', - 'Line' => '190', - 'Name' => 'std::__pair_baseconst, DiscardSummary>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_U1', - 'type' => '7336' - }, - '1' => { - 'key' => '_U2', - 'type' => '841514' - } - }, - 'Type' => 'Class' - }, - '7871014' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '6086541' => { + 'BaseType' => '6073656', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '7871390' - } - }, - 'Type' => 'Class' + 'Type' => 'Pointer' }, - '7871390' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'integer.h', - 'Line' => '32', - 'Name' => 'log4cxx::helpers::Integer::ClazzInteger', - 'NameSpace' => 'log4cxx::helpers::Integer', + '6086546' => { + 'BaseType' => '6086541', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter*const', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Integer::ClazzInteger::~ClazzInteger() [_ZN7log4cxx7helpers7Integer12ClazzIntegerD2Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Integer::ClazzInteger::~ClazzInteger() [_ZN7log4cxx7helpers7Integer12ClazzIntegerD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Integer::ClazzInteger::newInstance() const [_ZNK7log4cxx7helpers7Integer12ClazzInteger11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Integer::ClazzInteger::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers7Integer12ClazzInteger7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Integer::ClazzInteger) [_ZTIN7log4cxx7helpers7Integer12ClazzIntegerE]' - } + 'Type' => 'Const' + }, + '6086551' => { + 'BaseType' => '6073803', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7871586' => { - 'BaseType' => '7871390', - 'Name' => 'log4cxx::helpers::Integer::ClazzInteger const', + '6086556' => { + 'BaseType' => '6086551', + 'Name' => 'log4cxx::pattern::ClassNamePatternConverter::ClazzClassNamePatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '7872724' => { - 'BaseType' => '7871014', - 'Name' => 'log4cxx::helpers::WideLife*', + '6086561' => { + 'BaseType' => '6074656', + 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '7872730' => { - 'BaseType' => '7872724', - 'Name' => 'log4cxx::helpers::WideLife*const', + '6086566' => { + 'BaseType' => '6074774', + 'Name' => 'log4cxx::pattern::NamePatternConverter::ClazzNamePatternConverter const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' + }, + '6086571' => { + 'BaseType' => '6075063', + 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '6086576' => { + 'BaseType' => '6075181', + 'Name' => 'log4cxx::pattern::NameAbbreviator::ClazzNameAbbreviator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '6087834' => { + 'BaseType' => '6073617', + 'Name' => 'log4cxx::pattern::PatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '7872886' => { - 'BaseType' => '6300452', - 'Name' => 'log4cxx::helpers::Integer*const', + '6087839' => { + 'BaseType' => '6087834', + 'Name' => 'log4cxx::pattern::PatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '7872903' => { - 'BaseType' => '6302258', - 'Name' => 'log4cxx::helpers::Integer const*const', + '6087844' => { + 'BaseType' => '6075040', + 'Name' => 'log4cxx::pattern::NamePatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '6087849' => { + 'BaseType' => '6087844', + 'Name' => 'log4cxx::pattern::NamePatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '7872908' => { - 'BaseType' => '7871390', - 'Name' => 'log4cxx::helpers::Integer::ClazzInteger*', + '6087917' => { + 'BaseType' => '6074647', + 'Name' => 'log4cxx::pattern::NamePatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '7872914' => { - 'BaseType' => '7872908', - 'Name' => 'log4cxx::helpers::Integer::ClazzInteger*const', + '6087922' => { + 'BaseType' => '6087917', + 'Name' => 'log4cxx::pattern::NamePatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '7872919' => { - 'BaseType' => '7871586', - 'Name' => 'log4cxx::helpers::Integer::ClazzInteger const*', + '6114587' => { + 'BaseType' => '3121054', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '7872925' => { - 'BaseType' => '7872919', - 'Name' => 'log4cxx::helpers::Integer::ClazzInteger const*const', + '6114592' => { + 'BaseType' => '6114587', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '7920241' => { + '6547629' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '7945801' + 'type' => '6613785' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '7920389' => { + '6547777' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '7945801' + 'type' => '6613785' } }, 'Type' => 'Struct' }, - '7920403' => { - 'BaseType' => '7945801', + '6547791' => { + 'BaseType' => '6613785', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Size' => '16', 'Type' => 'Typedef' }, - '7920426' => { + '6547814' => { 'Base' => { - '7920241' => { + '6547629' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '7946906' + 'type' => '6626163' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '7945801' + 'type' => '6613785' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '7920712' => { - 'BaseType' => '7920403', + '6548095' => { + 'BaseType' => '6547791', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Size' => '16', 'Type' => 'Typedef' }, - '7921121' => { + '6548546' => { 'Base' => { - '7920426' => { + '6547814' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '7945801' + 'type' => '6613785' } }, 'Type' => 'Class' }, - '7944099' => { + '65815' => { + 'BaseType' => '58805', + 'Name' => 'std::__cxx11::basic_stringconst', + 'Size' => '32', + 'Type' => 'Const' + }, + '6611638' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -150274,398 +152353,350 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '7945819' + 'type' => '6613819' } }, 'Type' => 'Class' }, - '7945801' => { + '6613785' => { 'Base' => { - '2270651' => { + '3121054' => { 'pos' => '0' } }, - 'Header' => 'integerpatternconverter.h', + 'Header' => 'colorstartpatternconverter.h', 'Line' => '35', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter', 'NameSpace' => 'log4cxx::pattern', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern26ColorStartPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', '16' => '0u', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::IntegerPatternConverter) [_ZTIN7log4cxx7pattern23IntegerPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::~IntegerPatternConverter() [_ZN7log4cxx7pattern23IntegerPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::~IntegerPatternConverter() [_ZN7log4cxx7pattern23IntegerPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::getClass() const [_ZNK7log4cxx7pattern23IntegerPatternConverter8getClassEv]', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorStartPatternConverter) [_ZTIN7log4cxx7pattern26ColorStartPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::~ColorStartPatternConverter() [_ZN7log4cxx7pattern26ColorStartPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::~ColorStartPatternConverter() [_ZN7log4cxx7pattern26ColorStartPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::getClass() const [_ZNK7log4cxx7pattern26ColorStartPatternConverter8getClassEv]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23IntegerPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23IntegerPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern23IntegerPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + '80' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern26ColorStartPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern26ColorStartPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '7945819' => { + '6613819' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'integerpatternconverter.h', - 'Line' => '38', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter', - 'NameSpace' => 'log4cxx::pattern::IntegerPatternConverter', + 'Header' => 'colorstartpatternconverter.h', + 'Line' => '41', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter', + 'NameSpace' => 'log4cxx::pattern::ColorStartPatternConverter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter::~ClazzIntegerPatternConverter() [_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter::~ClazzIntegerPatternConverter() [_ZN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterD0Ev]', + '16' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter::~ClazzColorStartPatternConverter() [_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter::~ClazzColorStartPatternConverter() [_ZN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter) [_ZTIN7log4cxx7pattern23IntegerPatternConverter28ClazzIntegerPatternConverterE]' + '40' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter) [_ZTIN7log4cxx7pattern26ColorStartPatternConverter31ClazzColorStartPatternConverterE]' } }, - '7945976' => { - 'BaseType' => '7945819', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter const', + '6613967' => { + 'BaseType' => '6613819', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '7946379' => { - 'BaseType' => '7945801', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter const', + '6613972' => { + 'Base' => { + '3120371' => { + 'pos' => '0' + } + }, + 'Line' => '135', + 'Memb' => { + '0' => { + 'name' => 'm_fatalColor', + 'offset' => '114', + 'type' => '209661' + }, + '1' => { + 'name' => 'm_errorColor', + 'offset' => '260', + 'type' => '209661' + }, + '2' => { + 'name' => 'm_warnColor', + 'offset' => '310', + 'type' => '209661' + }, + '3' => { + 'name' => 'm_infoColor', + 'offset' => '360', + 'type' => '209661' + }, + '4' => { + 'name' => 'm_debugColor', + 'offset' => '512', + 'type' => '209661' + }, + '5' => { + 'name' => 'm_traceColor', + 'offset' => '562', + 'type' => '209661' + } + }, + 'Name' => 'struct log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate', + 'NameSpace' => 'log4cxx::pattern::ColorStartPatternConverter', + 'Private' => 1, + 'Size' => '264', + 'Source' => 'colorstartpatternconverter.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate::~ColorPatternConverterPrivate() [_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate::~ColorPatternConverterPrivate() [_ZN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate) [_ZTIN7log4cxx7pattern26ColorStartPatternConverter28ColorPatternConverterPrivateE]' + } + }, + '6614810' => { + 'BaseType' => '6613785', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter const', 'Size' => '16', 'Type' => 'Const' }, - '7946570' => { - 'BaseType' => '7944099', - 'Name' => 'log4cxx::helpers::WideLife*', + '6625637' => { + 'BaseType' => '6611638', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '7946576' => { - 'BaseType' => '7946570', - 'Name' => 'log4cxx::helpers::WideLife*const', + '6625642' => { + 'BaseType' => '6625637', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '7946906' => { - 'BaseType' => '7920712', - 'Name' => 'std::__shared_ptr::element_type*', + '6625748' => { + 'BaseType' => '6613972', + 'Name' => 'struct log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '7946924' => { - 'BaseType' => '7945801', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter*', + '6625753' => { + 'BaseType' => '6625748', + 'Name' => 'struct log4cxx::pattern::ColorStartPatternConverter::ColorPatternConverterPrivate*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '7946930' => { - 'BaseType' => '7946924', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter*const', + '6626163' => { + 'BaseType' => '6548095', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '7946952' => { - 'BaseType' => '7921121', - 'Name' => 'std::shared_ptr&&', + '6626193' => { + 'BaseType' => '6548546', + 'Name' => 'std::shared_ptr&&', 'Size' => '8', 'Type' => 'RvalueRef' }, - '7947121' => { - 'BaseType' => '7946379', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter const*', + '6626343' => { + 'BaseType' => '191037', + 'Name' => 'char const[12]', + 'Size' => '12', + 'Type' => 'Array' + }, + '6626390' => { + 'BaseType' => '6613785', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '7947127' => { - 'BaseType' => '7947121', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter const*const', + '6626395' => { + 'BaseType' => '6626390', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '7947621' => { - 'BaseType' => '7945819', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter*', + '6626731' => { + 'BaseType' => '6614810', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '7947627' => { - 'BaseType' => '7947621', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter*const', + '6626736' => { + 'BaseType' => '6626731', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '7947632' => { - 'BaseType' => '7945976', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter const*', + '6626896' => { + 'BaseType' => '209661', + 'Name' => 'log4cxx::LogString*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '6626935' => { + 'BaseType' => '6613819', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '7947638' => { - 'BaseType' => '7947632', - 'Name' => 'log4cxx::pattern::IntegerPatternConverter::ClazzIntegerPatternConverter const*const', + '6626940' => { + 'BaseType' => '6626935', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '795405' => { - 'Header' => 'stl_function.h', - 'Line' => '105', - 'Name' => 'struct std::unary_functionconst, DiscardSummary>, std::__cxx11::basic_stringconst>', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Arg', - 'type' => '771028' - }, - '1' => { - 'key' => '_Result', - 'type' => '7336' - } - }, - 'Type' => 'Struct' - }, - '795437' => { - 'Base' => { - '795405' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'stl_function.h', - 'Line' => '1147', - 'Name' => 'struct std::_Select1stconst, DiscardSummary> >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Pair', - 'type' => '771028' - } - }, - 'Type' => 'Struct' - }, - '7956' => { - 'BaseType' => '50193', - 'Header' => 'c++config.h', - 'Line' => '258', - 'Name' => 'std::size_t', - 'NameSpace' => 'std', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '8031576' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '8065076' - } - }, - 'Type' => 'Struct' + '6626945' => { + 'BaseType' => '6613967', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '8031663' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '8033204' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + '6626950' => { + 'BaseType' => '6626945', + 'Name' => 'log4cxx::pattern::ColorStartPatternConverter::ClazzColorStartPatternConverter const*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '8065076' - }, - '1' => { - 'key' => '_Dp', - 'type' => '8031576' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '8031986' => { - 'Base' => { - '8031576' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '8031576' - } - }, - 'Type' => 'Struct' + '6657158' => { + 'BaseType' => '6626343', + 'Name' => 'char const[12]&', + 'Size' => '8', + 'Type' => 'Ref' }, - '8032241' => { - 'Base' => { - '8031986' => { - 'access' => 'private', - 'pos' => '0' - } - }, + '6993045' => { 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' + 'key' => '_Tp', + 'type' => '7053888' }, '1' => { - 'key' => undef, - 'type' => '8031576' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' }, - '8032539' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '8067949' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::JSONLayout::JSONLayoutPrivate*>', + '6993193' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '8067949' + 'key' => '_Tp', + 'type' => '7053888' } }, 'Type' => 'Struct' }, - '8032801' => { + '6993207' => { + 'BaseType' => '7053888', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '6993230' => { 'Base' => { - '8032241' => { + '6993045' => { 'pos' => '0' - }, - '8032539' => { - 'access' => 'private', - 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::JSONLayout::JSONLayoutPrivate*>', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '7065366' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' + } + }, + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' + 'key' => '_Tp', + 'type' => '7053888' }, '1' => { - 'key' => undef, - 'type' => '8067949' + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, - 'Type' => 'Struct' + 'Type' => 'Class' + }, + '6993511' => { + 'BaseType' => '6993207', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Size' => '16', + 'Type' => 'Typedef' }, - '8033204' => { + '6993962' => { 'Base' => { - '8032801' => { + '6993230' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '8067949' - } - }, - 'Type' => 'Class' - }, - '8033534' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '8031663' - } - }, - 'Name' => 'std::unique_ptr >', + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', - 'Size' => '8', + 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8065076' - }, - '1' => { - 'key' => '_Dp', - 'type' => '8031576' + 'type' => '7053888' } }, 'Type' => 'Class' }, - '8062891' => { + '7051911' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -150673,522 +152704,474 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '8065232' + 'type' => '7053922' } }, 'Type' => 'Class' }, - '8064794' => { - 'BaseType' => '8065045', - 'Header' => 'loggingevent.h', - 'Line' => '58', - 'Name' => 'log4cxx::spi::LoggingEvent::KeySet', - 'NameSpace' => 'log4cxx::spi::LoggingEvent', - 'Size' => '24', - 'Type' => 'Typedef' - }, - '8065045' => { - 'BaseType' => '2242385', - 'Header' => 'loggingevent.h', - 'Line' => '39', - 'Name' => 'log4cxx::spi::KeySet', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '24', - 'Type' => 'Typedef' - }, - '8065058' => { + '7053888' => { 'Base' => { - '409118' => { - 'pos' => '0' - } - }, - 'Header' => 'jsonlayout.h', - 'Line' => '31', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '8', - 'type' => '8033534' - } + '3121054' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::JSONLayout', - 'NameSpace' => 'log4cxx', + 'Header' => 'colorendpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter', + 'NameSpace' => 'log4cxx::pattern', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::JSONLayout::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx10JSONLayout10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::JSONLayout::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx10JSONLayout4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::JSONLayout::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx10JSONLayout15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::JSONLayout::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx10JSONLayout9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '136' => '(int (*)(...)) log4cxx::JSONLayout::format(std::__cxx11::basic_string, std::allocator >&, std::shared_ptr const&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx10JSONLayout6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '144' => '(int (*)(...)) log4cxx::JSONLayout::getContentType[abi:cxx11]() const [_ZNK7log4cxx10JSONLayout14getContentTypeB5cxx11Ev]', - '152' => '(int (*)(...)) log4cxx::Layout::appendHeader(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendHeaderERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern24ColorEndPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', '16' => '0u', - '160' => '(int (*)(...)) log4cxx::Layout::appendFooter(std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) [_ZN7log4cxx6Layout12appendFooterERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '168' => '(int (*)(...)) log4cxx::JSONLayout::ignoresThrowable() const [_ZNK7log4cxx10JSONLayout16ignoresThrowableEv]', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::JSONLayout) [_ZTIN7log4cxx10JSONLayoutE]', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorEndPatternConverter) [_ZTIN7log4cxx7pattern24ColorEndPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::~ColorEndPatternConverter() [_ZN7log4cxx7pattern24ColorEndPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::~ColorEndPatternConverter() [_ZN7log4cxx7pattern24ColorEndPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::getClass() const [_ZNK7log4cxx7pattern24ColorEndPatternConverter8getClassEv]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::JSONLayout::~JSONLayout() [_ZN7log4cxx10JSONLayoutD1Ev]', - '88' => '(int (*)(...)) log4cxx::JSONLayout::~JSONLayout() [_ZN7log4cxx10JSONLayoutD0Ev]', - '96' => '(int (*)(...)) log4cxx::JSONLayout::getClass() const [_ZNK7log4cxx10JSONLayout8getClassEv]' + '80' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern24ColorEndPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern24ColorEndPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '8065076' => { - 'Line' => '35', - 'Memb' => { - '0' => { - 'name' => 'locationInfo', - 'offset' => '0', - 'type' => '50284' - }, - '1' => { - 'name' => 'prettyPrint', - 'offset' => '1', - 'type' => '50284' - }, - '2' => { - 'name' => 'dateFormat', - 'offset' => '8', - 'type' => '3413463' - }, - '3' => { - 'name' => 'ppIndentL1', - 'offset' => '24', - 'type' => '63706' - }, - '4' => { - 'name' => 'ppIndentL2', - 'offset' => '56', - 'type' => '63706' - }, - '5' => { - 'name' => 'expectedPatternLength', - 'offset' => '88', - 'type' => '50486' - }, - '6' => { - 'name' => 'threadInfo', - 'offset' => '96', - 'type' => '50284' - } - }, - 'Name' => 'struct log4cxx::JSONLayout::JSONLayoutPrivate', - 'NameSpace' => 'log4cxx::JSONLayout', - 'Private' => 1, - 'Size' => '104', - 'Source' => 'jsonlayout.cpp', - 'Type' => 'Struct' - }, - '8065232' => { + '7053922' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'jsonlayout.h', - 'Line' => '47', - 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout', - 'NameSpace' => 'log4cxx::JSONLayout', + 'Header' => 'colorendpatternconverter.h', + 'Line' => '39', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter', + 'NameSpace' => 'log4cxx::pattern::ColorEndPatternConverter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::JSONLayout::ClazzJSONLayout::~ClazzJSONLayout() [_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD1Ev]', - '24' => '(int (*)(...)) log4cxx::JSONLayout::ClazzJSONLayout::~ClazzJSONLayout() [_ZN7log4cxx10JSONLayout15ClazzJSONLayoutD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::JSONLayout::ClazzJSONLayout::newInstance() const [_ZTch0_h0_NK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::JSONLayout::ClazzJSONLayout::getName[abi:cxx11]() const [_ZNK7log4cxx10JSONLayout15ClazzJSONLayout7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::JSONLayout::ClazzJSONLayout::newInstance() const [_ZNK7log4cxx10JSONLayout15ClazzJSONLayout11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::JSONLayout::ClazzJSONLayout) [_ZTIN7log4cxx10JSONLayout15ClazzJSONLayoutE]' + '16' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter::~ClazzColorEndPatternConverter() [_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter::~ClazzColorEndPatternConverter() [_ZN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter) [_ZTIN7log4cxx7pattern24ColorEndPatternConverter29ClazzColorEndPatternConverterE]' } }, - '8065453' => { - 'BaseType' => '8065232', - 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout const', + '7054068' => { + 'BaseType' => '7053922', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '8066346' => { - 'BaseType' => '8065058', - 'Name' => 'log4cxx::JSONLayout const', + '7054456' => { + 'BaseType' => '7053888', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter const', 'Size' => '16', 'Type' => 'Const' }, - '8067949' => { - 'BaseType' => '8065076', - 'Name' => 'struct log4cxx::JSONLayout::JSONLayoutPrivate*', + '7065115' => { + 'BaseType' => '7051911', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7065120' => { + 'BaseType' => '7065115', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7065366' => { + 'BaseType' => '6993511', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', 'Type' => 'Pointer' }, - '8068302' => { - 'BaseType' => '8062891', - 'Name' => 'log4cxx::helpers::WideLife*', + '7065396' => { + 'BaseType' => '6993962', + 'Name' => 'std::shared_ptr&&', + 'Size' => '8', + 'Type' => 'RvalueRef' + }, + '7065476' => { + 'BaseType' => '7053888', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '8068308' => { - 'BaseType' => '8068302', - 'Name' => 'log4cxx::helpers::WideLife*const', + '7065481' => { + 'BaseType' => '7065476', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '8068854' => { - 'BaseType' => '8065058', - 'Name' => 'log4cxx::JSONLayout*', + '7065817' => { + 'BaseType' => '7054456', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '8068860' => { - 'BaseType' => '8068854', - 'Name' => 'log4cxx::JSONLayout*const', + '7065822' => { + 'BaseType' => '7065817', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '8068882' => { - 'BaseType' => '8066346', - 'Name' => 'log4cxx::JSONLayout const*', + '7065972' => { + 'BaseType' => '7053922', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '8068888' => { - 'BaseType' => '8068882', - 'Name' => 'log4cxx::JSONLayout const*const', + '7065977' => { + 'BaseType' => '7065972', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '8068899' => { - 'BaseType' => '8065232', - 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout*', + '7065982' => { + 'BaseType' => '7054068', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '8068905' => { - 'BaseType' => '8068899', - 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout*const', + '7065987' => { + 'BaseType' => '7065982', + 'Name' => 'log4cxx::pattern::ColorEndPatternConverter::ClazzColorEndPatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '8068910' => { - 'BaseType' => '8065453', - 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout const*', + '7401091' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '3118768' + } + }, + 'Type' => 'Class' + }, + '7403503' => { + 'BaseType' => '3118759', + 'Name' => 'log4cxx::spi::Configurator const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7411720' => { + 'BaseType' => '7401091', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '8068916' => { - 'BaseType' => '8068910', - 'Name' => 'log4cxx::JSONLayout::ClazzJSONLayout const*const', + '7411725' => { + 'BaseType' => '7411720', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '81' => { - 'Base' => { - '12111' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'basic_string.h', - 'Line' => '154', - 'Memb' => { - '0' => { - 'name' => '_M_p', - 'offset' => '0', - 'type' => '211' - } - }, - 'Name' => 'struct std::__cxx11::basic_string::_Alloc_hider', - 'NameSpace' => 'std::__cxx11::basic_string', - 'Private' => 1, - 'Size' => '8', - 'Type' => 'Struct' - }, - '810944' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocator >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '132916' - } - }, - 'Type' => 'Class' - }, - '811472' => { - 'Base' => { - '766356' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'alloc_traits.h', - 'Line' => '50', - 'Name' => 'struct __gnu_cxx::__alloc_traits > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Alloc', - 'type' => '766205' - } - }, - 'Type' => 'Struct' - }, - '811673' => { - 'BaseType' => '766370', - 'Header' => 'alloc_traits.h', - 'Line' => '59', - 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', - 'NameSpace' => '__gnu_cxx::__alloc_traits > >', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '812906' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, DiscardSummary> >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '771028' - } - }, - 'Type' => 'Class' - }, - '813500' => { - 'Copied' => 1, - 'Header' => 'new_allocator.h', - 'Line' => '58', - 'Name' => '__gnu_cxx::new_allocatorconst, DiscardSummary> > >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '771964' - } - }, - 'Type' => 'Class' - }, - '816114' => { - 'Copied' => 1, - 'Header' => 'aligned_buffer.h', - 'Line' => '47', - 'Memb' => { - '0' => { - 'name' => '_M_storage', - 'offset' => '0', - 'type' => '843994' - } - }, - 'Name' => 'struct __gnu_cxx::__aligned_membufconst, DiscardSummary> >', - 'NameSpace' => '__gnu_cxx', - 'Size' => '56', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '771028' - } - }, - 'Type' => 'Struct' - }, - '824025' => { - 'Header' => 'thread-shared-types.h', - 'Line' => '92', - 'Memb' => { - '0' => { - 'name' => 'unnamed0', - 'offset' => '0', - 'type' => '824038' - }, - '1' => { - 'name' => 'unnamed1', - 'offset' => '8', - 'type' => '824110' - }, - '2' => { - 'name' => '__g_refs', - 'offset' => '16', - 'type' => '824262' - }, - '3' => { - 'name' => '__g_size', - 'offset' => '24', - 'type' => '824262' - }, - '4' => { - 'name' => '__g1_orig_size', - 'offset' => '32', - 'type' => '50167' - }, - '5' => { - 'name' => '__wrefs', - 'offset' => '36', - 'type' => '50167' - }, - '6' => { - 'name' => '__g_signals', - 'offset' => '40', - 'type' => '824262' - } - }, - 'Name' => 'struct __pthread_cond_s', - 'Size' => '48', - 'Type' => 'Struct' - }, - '824038' => { - 'Header' => 'thread-shared-types.h', - 'Line' => '95', - 'Memb' => { - '0' => { - 'name' => '__wseq', - 'offset' => '0', - 'type' => '50205' - }, - '1' => { - 'name' => '__wseq32', - 'offset' => '0', - 'type' => '824048' - } - }, - 'Name' => '__pthread_cond_s::anon-union-thread-shared-types.h-95', - 'NameSpace' => '__pthread_cond_s', - 'Size' => '8', - 'Type' => 'Union' - }, - '824048' => { - 'Header' => 'thread-shared-types.h', - 'Line' => '98', - 'Memb' => { - '0' => { - 'name' => '__low', - 'offset' => '0', - 'type' => '50167' - }, - '1' => { - 'name' => '__high', - 'offset' => '4', - 'type' => '50167' - } - }, - 'Name' => 'anon-struct-thread-shared-types.h-98', - 'Size' => '8', - 'Type' => 'Struct' - }, - '824110' => { - 'Header' => 'thread-shared-types.h', - 'Line' => '104', - 'Memb' => { - '0' => { - 'name' => '__g1_start', - 'offset' => '0', - 'type' => '50205' - }, - '1' => { - 'name' => '__g1_start32', - 'offset' => '0', - 'type' => '824120' - } - }, - 'Name' => '__pthread_cond_s::anon-union-thread-shared-types.h-104', - 'NameSpace' => '__pthread_cond_s', - 'Size' => '8', - 'Type' => 'Union' - }, - '824120' => { - 'Header' => 'thread-shared-types.h', - 'Line' => '107', - 'Memb' => { - '0' => { - 'name' => '__low', - 'offset' => '0', - 'type' => '50167' - }, - '1' => { - 'name' => '__high', - 'offset' => '4', - 'type' => '50167' - } - }, - 'Name' => 'anon-struct-thread-shared-types.h-107', - 'Size' => '8', - 'Type' => 'Struct' - }, - '824262' => { - 'BaseType' => '50167', - 'Name' => 'unsigned int[2]', - 'Size' => '8', - 'Type' => 'Array' - }, - '824278' => { - 'BaseType' => '50193', - 'Header' => 'pthreadtypes.h', - 'Line' => '27', - 'Name' => 'pthread_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '824369' => { - 'Header' => 'pthreadtypes.h', - 'Line' => '76', - 'Memb' => { - '0' => { - 'name' => '__data', - 'offset' => '0', - 'type' => '824025' - }, - '1' => { - 'name' => '__size', - 'offset' => '0', - 'type' => '824420' - }, - '2' => { - 'name' => '__align', - 'offset' => '0', - 'type' => '50256' - } - }, - 'Name' => 'union pthread_cond_t', - 'Size' => '48', - 'Type' => 'Union' - }, - '824420' => { - 'BaseType' => '50671', - 'Name' => 'char[48]', - 'Size' => '48', - 'Type' => 'Array' - }, - '824436' => { - 'BaseType' => '824369', - 'Header' => 'pthreadtypes.h', - 'Line' => '80', - 'Name' => 'pthread_cond_t', - 'Size' => '48', - 'Type' => 'Typedef' - }, - '8256592' => { + '7412091' => { + 'BaseType' => '7403503', + 'Name' => 'log4cxx::spi::Configurator const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7412096' => { + 'BaseType' => '7412091', + 'Name' => 'log4cxx::spi::Configurator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7412101' => { + 'BaseType' => '3118759', + 'Name' => 'log4cxx::spi::Configurator*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7412106' => { + 'BaseType' => '7412101', + 'Name' => 'log4cxx::spi::Configurator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7412141' => { + 'BaseType' => '3134132', + 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7412151' => { + 'BaseType' => '3134137', + 'Name' => 'log4cxx::spi::Configurator::ClazzConfigurator const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7772961' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '7862611' + } + }, + 'Type' => 'Struct' + }, + '7773975' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '7776619' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '7862611' + }, + '1' => { + 'key' => '_Dp', + 'type' => '7772961' + } + }, + 'Type' => 'Class' + }, + '7774650' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '78', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '7772961' + } + }, + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => '_Head', + 'type' => '7772961' + } + }, + 'Type' => 'Struct' + }, + '7774948' => { + 'Base' => { + '7774650' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '7772961' + } + }, + 'Type' => 'Struct' + }, + '7775295' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', + 'Memb' => { + '0' => { + 'name' => '_M_head_impl', + 'offset' => '0', + 'type' => '7874669' + } + }, + 'Name' => 'struct std::_Head_base<0ul, log4cxx::WriterAppender::WriterAppenderPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '7874669' + } + }, + 'Type' => 'Struct' + }, + '7775593' => { + 'Base' => { + '7774948' => { + 'pos' => '0' + }, + '7775295' => { + 'access' => 'private', + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::WriterAppender::WriterAppenderPriv*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '7874669' + } + }, + 'Type' => 'Struct' + }, + '7776619' => { + 'Base' => { + '7775593' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '7874669' + } + }, + 'Type' => 'Class' + }, + '7778117' => { + 'Base' => { + '7773975' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '7862611' + }, + '1' => { + 'key' => '_Dp', + 'type' => '7772961' + } + }, + 'Type' => 'Struct' + }, + '7778362' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '7778117' + } + }, + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '7862611' + }, + '1' => { + 'key' => '_Dp', + 'type' => '7772961' + } + }, + 'Type' => 'Class' + }, + '7809568' => { + 'Base' => { + '12881974' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'type' => '3116491' + } + }, + 'Type' => 'Class' + }, + '7855398' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -151196,641 +153179,456 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '8258206' + 'type' => '3122015' } }, 'Type' => 'Class' }, - '8258206' => { + '7856149' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '3116358' => { + 'pos' => '0' + } }, - 'Header' => 'layout.h', - 'Line' => '36', - 'Name' => 'log4cxx::Layout::ClazzLayout', - 'NameSpace' => 'log4cxx::Layout', + 'Header' => 'systemoutwriter.h', + 'Line' => '31', + 'Name' => 'log4cxx::helpers::SystemOutWriter', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::Layout::ClazzLayout::~ClazzLayout() [_ZN7log4cxx6Layout11ClazzLayoutD1Ev]', - '24' => '(int (*)(...)) log4cxx::Layout::ClazzLayout::~ClazzLayout() [_ZN7log4cxx6Layout11ClazzLayoutD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::Layout::ClazzLayout::getName[abi:cxx11]() const [_ZNK7log4cxx6Layout11ClazzLayout7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::Layout::ClazzLayout) [_ZTIN7log4cxx6Layout11ClazzLayoutE]' + '16' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::~SystemOutWriter() [_ZN7log4cxx7helpers15SystemOutWriterD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::~SystemOutWriter() [_ZN7log4cxx7helpers15SystemOutWriterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::getClass() const [_ZNK7log4cxx7helpers15SystemOutWriter8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15SystemOutWriter10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15SystemOutWriter4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemOutWriter5closeERNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemOutWriter5flushERNS0_4PoolE]', + '72' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::write(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemOutWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SystemOutWriter) [_ZTIN7log4cxx7helpers15SystemOutWriterE]' } }, - '8258363' => { - 'BaseType' => '8258206', - 'Name' => 'log4cxx::Layout::ClazzLayout const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8260050' => { - 'BaseType' => '8256592', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8260056' => { - 'BaseType' => '8260050', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8260352' => { - 'BaseType' => '50678', - 'Name' => 'char const[15]', - 'Size' => '15', - 'Type' => 'Array' - }, - '8260637' => { - 'BaseType' => '8258206', - 'Name' => 'log4cxx::Layout::ClazzLayout*', + '7856158' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'systemoutwriter.h', + 'Line' => '34', + 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter', + 'NameSpace' => 'log4cxx::helpers::SystemOutWriter', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter::~ClazzSystemOutWriter() [_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter::~ClazzSystemOutWriter() [_ZN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter::newInstance() const [_ZNK7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter) [_ZTIN7log4cxx7helpers15SystemOutWriter20ClazzSystemOutWriterE]' + } }, - '8260643' => { - 'BaseType' => '8260637', - 'Name' => 'log4cxx::Layout::ClazzLayout*const', + '7856312' => { + 'BaseType' => '7856158', + 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter const', 'Size' => '8', 'Type' => 'Const' }, - '8260648' => { - 'BaseType' => '8258363', - 'Name' => 'log4cxx::Layout::ClazzLayout const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8260654' => { - 'BaseType' => '8260648', - 'Name' => 'log4cxx::Layout::ClazzLayout const*const', - 'Size' => '8', + '7856341' => { + 'BaseType' => '7856149', + 'Name' => 'log4cxx::helpers::SystemOutWriter const', 'Type' => 'Const' }, - '8263693' => { - 'BaseType' => '8260352', - 'Name' => 'char const[15]&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '829524' => { - 'BaseType' => '824278', - 'Header' => 'gthr-default.h', - 'Line' => '47', - 'Name' => '__gthread_t', - 'Size' => '8', - 'Type' => 'Typedef' - }, - '829560' => { - 'BaseType' => '824436', - 'Header' => 'gthr-default.h', - 'Line' => '52', - 'Name' => '__gthread_cond_t', - 'Size' => '48', - 'Type' => 'Typedef' - }, - '832107' => { - 'Base' => { - '45925' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'exception.h', - 'Line' => '37', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'msg', - 'offset' => '8', - 'type' => '4359662' - } - }, - 'Name' => 'log4cxx::helpers::Exception', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Exception::~Exception() [_ZN7log4cxx7helpers9ExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Exception::~Exception() [_ZN7log4cxx7helpers9ExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Exception) [_ZTIN7log4cxx7helpers9ExceptionE]' - } - }, - '832569' => { - 'Header' => 'optionconverter.h', - 'Line' => '46', - 'Name' => 'log4cxx::helpers::OptionConverter', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '1', - 'Type' => 'Class' - }, - '832974' => { - 'Copied' => 1, - 'Header' => 'properties.h', - 'Line' => '32', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'properties', - 'offset' => '0', - 'type' => '4048430' - } - }, - 'Name' => 'log4cxx::helpers::Properties', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '832996' => { - 'Header' => 'threadutility.h', - 'Line' => '59', - 'Memb' => { - '0' => { - 'name' => 'NoConfiguration', - 'value' => '0' - }, - '1' => { - 'name' => 'BlockSignalsOnly', - 'value' => '1' - }, - '2' => { - 'name' => 'NameThreadOnly', - 'value' => '2' - }, - '3' => { - 'name' => 'BlockSignalsAndNameThread', - 'value' => '3' - } - }, - 'Name' => 'enum log4cxx::helpers::ThreadConfigurationType', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '4', - 'Type' => 'Enum' - }, - '833040' => { - 'Header' => 'threadutility.h', - 'Line' => '70', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '754862' - } - }, - 'Name' => 'log4cxx::helpers::ThreadUtility', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' - }, - '833053' => { - 'Line' => '39', - 'Memb' => { - '0' => { - 'name' => 'start_pre', - 'offset' => '0', - 'type' => '833466' - }, - '1' => { - 'name' => 'started', - 'offset' => '32', - 'type' => '833478' - }, - '2' => { - 'name' => 'start_post', - 'offset' => '64', - 'type' => '833490' - } - }, - 'Name' => 'struct log4cxx::helpers::ThreadUtility::priv_data', - 'NameSpace' => 'log4cxx::helpers::ThreadUtility', - 'Private' => 1, - 'Size' => '96', - 'Source' => 'threadutility.cpp', - 'Type' => 'Struct' - }, - '833466' => { - 'BaseType' => '755445', - 'Header' => 'threadutility.h', - 'Line' => '38', - 'Name' => 'log4cxx::helpers::ThreadStartPre', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '32', - 'Type' => 'Typedef' - }, - '833478' => { - 'BaseType' => '755906', - 'Header' => 'threadutility.h', - 'Line' => '51', - 'Name' => 'log4cxx::helpers::ThreadStarted', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '32', - 'Type' => 'Typedef' - }, - '833490' => { - 'BaseType' => '755445', - 'Header' => 'threadutility.h', - 'Line' => '57', - 'Name' => 'log4cxx::helpers::ThreadStartPost', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '32', - 'Type' => 'Typedef' - }, - '833512' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '836440' - } - }, - 'Type' => 'Class' - }, - '834603' => { - 'BaseType' => '779350', - 'Header' => 'appenderattachableimpl.h', - 'Line' => '111', - 'Name' => 'log4cxx::helpers::AppenderAttachableImplPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '834615' => { - 'Base' => { - '834777' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '77', - 'Name' => 'log4cxx::helpers::IllegalArgumentException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::IllegalArgumentException::~IllegalArgumentException() [_ZN7log4cxx7helpers24IllegalArgumentExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::IllegalArgumentException::~IllegalArgumentException() [_ZN7log4cxx7helpers24IllegalArgumentExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::IllegalArgumentException) [_ZTIN7log4cxx7helpers24IllegalArgumentExceptionE]' - } - }, - '834772' => { - 'BaseType' => '834615', - 'Name' => 'log4cxx::helpers::IllegalArgumentException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '834777' => { - 'Base' => { - '832107' => { - 'pos' => '0' - } - }, - 'Header' => 'exception.h', - 'Line' => '53', - 'Name' => 'log4cxx::helpers::RuntimeException', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '144', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::RuntimeException::~RuntimeException() [_ZN7log4cxx7helpers16RuntimeExceptionD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::RuntimeException::~RuntimeException() [_ZN7log4cxx7helpers16RuntimeExceptionD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Exception::what() const [_ZNK7log4cxx7helpers9Exception4whatEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::RuntimeException) [_ZTIN7log4cxx7helpers16RuntimeExceptionE]' - } - }, - '834992' => { - 'BaseType' => '834777', - 'Name' => 'log4cxx::helpers::RuntimeException const', - 'Size' => '144', - 'Type' => 'Const' - }, - '835099' => { - 'BaseType' => '407323', - 'Name' => 'log4cxx::Level const', - 'Type' => 'Const' - }, - '835117' => { - 'Header' => 'locationinfo.h', - 'Line' => '45', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'lineNumber', - 'offset' => '0', - 'type' => '50231' - }, - '1' => { - 'access' => 'private', - 'name' => 'fileName', - 'offset' => '8', - 'type' => '51127' - }, - '2' => { - 'access' => 'private', - 'name' => 'shortFileName', - 'offset' => '16', - 'type' => '51127' - }, - '3' => { - 'access' => 'private', - 'name' => 'methodName', - 'offset' => '24', - 'type' => '51127' - } - }, - 'Name' => 'log4cxx::spi::LocationInfo', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '32', - 'Type' => 'Class' - }, - '835578' => { - 'BaseType' => '835117', - 'Name' => 'log4cxx::spi::LocationInfo const', - 'Size' => '32', - 'Type' => 'Const' - }, - '835654' => { - 'BaseType' => '407370', - 'Name' => 'log4cxx::spi::LoggingEvent const', - 'Type' => 'Const' - }, - '835664' => { - 'BaseType' => '749233', - 'Header' => 'optionconverter.h', - 'Line' => '33', - 'Name' => 'log4cxx::spi::LoggerRepositoryPtr', - 'NameSpace' => 'log4cxx::spi', - 'Type' => 'Typedef' - }, - '836407' => { - 'Copied' => 1, - 'Header' => 'file.h', - 'Line' => '40', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '4014119' - } - }, - 'Name' => 'log4cxx::File', - 'NameSpace' => 'log4cxx', - 'Size' => '8', - 'Type' => 'Class' - }, - '836412' => { - 'BaseType' => '836407', - 'Name' => 'log4cxx::File const', - 'Type' => 'Const' - }, - '836422' => { - 'Base' => { - '262822' => { - 'pos' => '0', - 'virtual' => 1 - }, - '407542' => { - 'pos' => '1', - 'virtual' => 1 - } - }, - 'Header' => 'asyncappender.h', - 'Line' => '43', - 'Name' => 'log4cxx::AsyncAppender', - 'NameSpace' => 'log4cxx', - 'Size' => '24', - 'Type' => 'Class', - 'VTable' => { - '0' => '8u', - '104' => '0u', - '112' => '0u', - '120' => '0u', - '128' => '0u', - '136' => '(int (*)(...)) (& typeinfo for log4cxx::AsyncAppender) [_ZTIN7log4cxx13AsyncAppenderE]', - '144' => '(int (*)(...)) log4cxx::AsyncAppender::~AsyncAppender() [_ZN7log4cxx13AsyncAppenderD1Ev]', - '152' => '(int (*)(...)) log4cxx::AsyncAppender::~AsyncAppender() [_ZN7log4cxx13AsyncAppenderD0Ev]', - '16' => '(int (*)(...)) 0x00000000000008', - '160' => '(int (*)(...)) log4cxx::AsyncAppender::getClass() const [_ZNK7log4cxx13AsyncAppender8getClassEv]', - '168' => '(int (*)(...)) log4cxx::AsyncAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx13AsyncAppender10instanceofERKNS_7helpers5ClassE]', - '176' => '(int (*)(...)) log4cxx::AsyncAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx13AsyncAppender4castERKNS_7helpers5ClassE]', - '184' => '(int (*)(...)) log4cxx::AsyncAppender::addAppender(std::shared_ptr) [_ZN7log4cxx13AsyncAppender11addAppenderESt10shared_ptrINS_8AppenderEE]', - '192' => '(int (*)(...)) log4cxx::AsyncAppender::getAllAppenders() const [_ZNK7log4cxx13AsyncAppender15getAllAppendersEv]', - '200' => '(int (*)(...)) log4cxx::AsyncAppender::getAppender(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx13AsyncAppender11getAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '208' => '(int (*)(...)) log4cxx::AsyncAppender::isAttached(std::shared_ptr) const [_ZNK7log4cxx13AsyncAppender10isAttachedESt10shared_ptrINS_8AppenderEE]', - '216' => '(int (*)(...)) log4cxx::AsyncAppender::removeAllAppenders() [_ZN7log4cxx13AsyncAppender18removeAllAppendersEv]', - '224' => '(int (*)(...)) log4cxx::AsyncAppender::removeAppender(std::shared_ptr) [_ZN7log4cxx13AsyncAppender14removeAppenderESt10shared_ptrINS_8AppenderEE]', - '232' => '(int (*)(...)) log4cxx::AsyncAppender::removeAppender(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx13AsyncAppender14removeAppenderERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '24' => '0u', - '240' => '(int (*)(...)) log4cxx::AsyncAppender::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx13AsyncAppender8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '248' => '(int (*)(...)) log4cxx::AsyncAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx13AsyncAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '256' => '(int (*)(...)) log4cxx::AsyncAppender::close() [_ZN7log4cxx13AsyncAppender5closeEv]', - '264' => '(int (*)(...)) log4cxx::AsyncAppender::requiresLayout() const [_ZNK7log4cxx13AsyncAppender14requiresLayoutEv]', - '272' => '(int (*)(...)) log4cxx::AsyncAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx13AsyncAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '280' => '(int (*)(...)) -0x00000000000008', - '288' => '0u', - '296' => '(int (*)(...)) -0x00000000000008', - '304' => '0u', - '312' => '0u', - '32' => '0u', - '320' => '0u', - '328' => '0u', - '336' => '(int (*)(...)) -0x00000000000008', - '344' => '(int (*)(...)) -0x00000000000008', - '352' => '0u', - '360' => '0u', - '368' => '0u', - '376' => '0u', - '384' => '(int (*)(...)) -0x00000000000008', - '392' => '0u', - '40' => '0u', - '400' => '(int (*)(...)) -0x00000000000008', - '408' => '(int (*)(...)) -0x00000000000008', - '416' => '(int (*)(...)) -0x00000000000008', - '424' => '(int (*)(...)) -0x00000000000008', - '432' => '(int (*)(...)) -0x00000000000008', - '440' => '(int (*)(...)) -0x00000000000008', - '448' => '(int (*)(...)) (& typeinfo for log4cxx::AsyncAppender) [_ZTIN7log4cxx13AsyncAppenderE]', - '456' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::~AsyncAppender() [_ZTv0_n24_N7log4cxx13AsyncAppenderD1Ev]', - '464' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::~AsyncAppender() [_ZTv0_n24_N7log4cxx13AsyncAppenderD0Ev]', - '472' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::getClass() const [_ZTv0_n32_NK7log4cxx13AsyncAppender8getClassEv]', - '48' => '0u', - '480' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::instanceof(log4cxx::helpers::Class const&) const [_ZTv0_n40_NK7log4cxx13AsyncAppender10instanceofERKNS_7helpers5ClassE]', - '488' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::cast(log4cxx::helpers::Class const&) const [_ZTv0_n48_NK7log4cxx13AsyncAppender4castERKNS_7helpers5ClassE]', - '496' => '(int (*)(...)) log4cxx::AppenderSkeleton::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton15activateOptionsERNS_7helpers4PoolE]', - '504' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZTv0_n72_N7log4cxx13AsyncAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_]', - '512' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', - '520' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', - '528' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', - '536' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::close() [_ZTv0_n112_N7log4cxx13AsyncAppender5closeEv]', - '544' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZTv0_n120_N7log4cxx13AsyncAppender8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '552' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', - '56' => '0u', - '560' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', - '568' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', - '576' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '584' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::requiresLayout() const [_ZTv0_n160_NK7log4cxx13AsyncAppender14requiresLayoutEv]', - '592' => '(int (*)(...)) virtual thunk to log4cxx::AsyncAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZTv0_n176_N7log4cxx13AsyncAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', - '64' => '0u', - '72' => '0u', - '8' => '0u', - '80' => '0u', - '88' => '0u', - '96' => '0u' - } - }, - '836440' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'asyncappender.h', - 'Line' => '51', - 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender', - 'NameSpace' => 'log4cxx::AsyncAppender', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::AsyncAppender::ClazzAsyncAppender::~ClazzAsyncAppender() [_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD1Ev]', - '24' => '(int (*)(...)) log4cxx::AsyncAppender::ClazzAsyncAppender::~ClazzAsyncAppender() [_ZN7log4cxx13AsyncAppender18ClazzAsyncAppenderD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::AsyncAppender::ClazzAsyncAppender::newInstance() const [_ZTch0_h0_NK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::AsyncAppender::ClazzAsyncAppender::getName[abi:cxx11]() const [_ZNK7log4cxx13AsyncAppender18ClazzAsyncAppender7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::AsyncAppender::ClazzAsyncAppender::newInstance() const [_ZNK7log4cxx13AsyncAppender18ClazzAsyncAppender11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::AsyncAppender::ClazzAsyncAppender) [_ZTIN7log4cxx13AsyncAppender18ClazzAsyncAppenderE]' - } - }, - '836663' => { - 'BaseType' => '836440', - 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '836668' => { - 'Base' => { - '407560' => { - 'pos' => '0' - } - }, - 'Line' => '99', - 'Memb' => { - '0' => { - 'name' => 'buffer', - 'offset' => '184', - 'type' => '838206' - }, - '1' => { - 'name' => 'bufferMutex', - 'offset' => '208', - 'type' => '41413' - }, - '2' => { - 'name' => 'bufferNotFull', - 'offset' => '248', - 'type' => '761051' - }, - '3' => { - 'name' => 'bufferNotEmpty', - 'offset' => '296', - 'type' => '761051' - }, - '4' => { - 'name' => 'discardMap', - 'offset' => '344', - 'type' => '841815' - }, - '5' => { - 'name' => 'bufferSize', - 'offset' => '392', - 'type' => '50231' - }, - '6' => { - 'name' => 'appenders', - 'offset' => '400', - 'type' => '834603' - }, - '7' => { - 'name' => 'dispatcher', - 'offset' => '416', - 'type' => '749238' - }, - '8' => { - 'name' => 'locationInfo', - 'offset' => '424', - 'type' => '50284' - }, - '9' => { - 'name' => 'blocking', - 'offset' => '425', - 'type' => '50284' - } - }, - 'Name' => 'struct log4cxx::AsyncAppender::AsyncAppenderPriv', - 'NameSpace' => 'log4cxx::AsyncAppender', - 'Protected' => 1, - 'Size' => '432', - 'Source' => 'asyncappender.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::AsyncAppender::AsyncAppenderPriv::~AsyncAppenderPriv() [_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD1Ev]', - '24' => '(int (*)(...)) log4cxx::AsyncAppender::AsyncAppenderPriv::~AsyncAppenderPriv() [_ZN7log4cxx13AsyncAppender17AsyncAppenderPrivD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::AsyncAppender::AsyncAppenderPriv) [_ZTIN7log4cxx13AsyncAppender17AsyncAppenderPrivE]' - } - }, - '8368579' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '7856744' => { + 'Base' => { + '3116358' => { + 'pos' => '0' + } + }, + 'Header' => 'systemerrwriter.h', + 'Line' => '31', + 'Name' => 'log4cxx::helpers::SystemErrWriter', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::~SystemErrWriter() [_ZN7log4cxx7helpers15SystemErrWriterD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::~SystemErrWriter() [_ZN7log4cxx7helpers15SystemErrWriterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::getClass() const [_ZNK7log4cxx7helpers15SystemErrWriter8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15SystemErrWriter10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers15SystemErrWriter4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::close(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemErrWriter5closeERNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::flush(log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemErrWriter5flushERNS0_4PoolE]', + '72' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::write(std::__cxx11::basic_string, std::allocator > const&, log4cxx::helpers::Pool&) [_ZN7log4cxx7helpers15SystemErrWriter5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SystemErrWriter) [_ZTIN7log4cxx7helpers15SystemErrWriterE]' + } + }, + '7856753' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'systemerrwriter.h', + 'Line' => '34', + 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter', + 'NameSpace' => 'log4cxx::helpers::SystemErrWriter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter::~ClazzSystemErrWriter() [_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter::~ClazzSystemErrWriter() [_ZN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter::newInstance() const [_ZNK7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriter11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter) [_ZTIN7log4cxx7helpers15SystemErrWriter20ClazzSystemErrWriterE]' + } + }, + '7856907' => { + 'BaseType' => '7856753', + 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7856936' => { + 'BaseType' => '7856744', + 'Name' => 'log4cxx::helpers::SystemErrWriter const', + 'Type' => 'Const' + }, + '7857384' => { + 'BaseType' => '3335202', + 'Name' => 'log4cxx::helpers::WriterPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '7857651' => { + 'BaseType' => '7809568', + 'Header' => 'outputstream.h', + 'Line' => '55', + 'Name' => 'log4cxx::helpers::OutputStreamPtr', + 'NameSpace' => 'log4cxx::helpers', + 'Type' => 'Typedef' + }, + '7861835' => { + 'Base' => { + '7862611' => { + 'pos' => '0' + } + }, + 'Line' => '30', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' + 'name' => 'target', + 'offset' => '576', + 'type' => '209661' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'struct log4cxx::ConsoleAppender::ConsoleAppenderPriv', + 'NameSpace' => 'log4cxx::ConsoleAppender', + 'Private' => 1, + 'Size' => '272', + 'Source' => 'consoleappender.cpp', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::ConsoleAppender::ConsoleAppenderPriv::~ConsoleAppenderPriv() [_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD1Ev]', + '24' => '(int (*)(...)) log4cxx::ConsoleAppender::ConsoleAppenderPriv::~ConsoleAppenderPriv() [_ZN7log4cxx15ConsoleAppender19ConsoleAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::ConsoleAppender::ConsoleAppenderPriv) [_ZTIN7log4cxx15ConsoleAppender19ConsoleAppenderPrivE]' + } + }, + '7862611' => { + 'Base' => { + '1379591' => { + 'pos' => '0' + } + }, + 'Header' => 'writerappender_priv.h', + 'Line' => '34', + 'Memb' => { + '0' => { + 'name' => 'immediateFlush', + 'offset' => '388', + 'type' => '1752914' + }, + '1' => { + 'name' => 'encoding', + 'offset' => '402', + 'type' => '209661' + }, + '2' => { + 'name' => 'writer', + 'offset' => '548', + 'type' => '3335202' + } + }, + 'Name' => 'struct log4cxx::WriterAppender::WriterAppenderPriv', + 'NameSpace' => 'log4cxx::WriterAppender', + 'Protected' => 1, + 'Size' => '240', + 'Type' => 'Struct', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::WriterAppender::WriterAppenderPriv::~WriterAppenderPriv() [_ZN7log4cxx14WriterAppender18WriterAppenderPrivD1Ev]', + '24' => '(int (*)(...)) log4cxx::WriterAppender::WriterAppenderPriv::~WriterAppenderPriv() [_ZN7log4cxx14WriterAppender18WriterAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::WriterAppender::WriterAppenderPriv) [_ZTIN7log4cxx14WriterAppender18WriterAppenderPrivE]' + } + }, + '7863636' => { + 'BaseType' => '3122360', + 'Name' => 'log4cxx::WriterAppender const', + 'Type' => 'Const' + }, + '7874278' => { + 'BaseType' => '7855398', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7874283' => { + 'BaseType' => '7874278', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7874389' => { + 'BaseType' => '7861835', + 'Name' => 'struct log4cxx::ConsoleAppender::ConsoleAppenderPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7874394' => { + 'BaseType' => '7874389', + 'Name' => 'struct log4cxx::ConsoleAppender::ConsoleAppenderPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7874669' => { + 'BaseType' => '7862611', + 'Name' => 'struct log4cxx::WriterAppender::WriterAppenderPriv*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7874674' => { + 'BaseType' => '7874669', + 'Name' => 'struct log4cxx::WriterAppender::WriterAppenderPriv*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7875014' => { + 'BaseType' => '7856149', + 'Name' => 'log4cxx::helpers::SystemOutWriter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7875019' => { + 'BaseType' => '7875014', + 'Name' => 'log4cxx::helpers::SystemOutWriter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7875170' => { + 'BaseType' => '7856744', + 'Name' => 'log4cxx::helpers::SystemErrWriter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7875175' => { + 'BaseType' => '7875170', + 'Name' => 'log4cxx::helpers::SystemErrWriter*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7875817' => { + 'BaseType' => '7856341', + 'Name' => 'log4cxx::helpers::SystemOutWriter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7875962' => { + 'BaseType' => '7856936', + 'Name' => 'log4cxx::helpers::SystemErrWriter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7876162' => { + 'BaseType' => '3133817', + 'Name' => 'log4cxx::ConsoleAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7876241' => { + 'BaseType' => '7856753', + 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7876246' => { + 'BaseType' => '7856907', + 'Name' => 'log4cxx::helpers::SystemErrWriter::ClazzSystemErrWriter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7876251' => { + 'BaseType' => '7856158', + 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7876256' => { + 'BaseType' => '7856312', + 'Name' => 'log4cxx::helpers::SystemOutWriter::ClazzSystemOutWriter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7876266' => { + 'BaseType' => '3133977', + 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7876276' => { + 'BaseType' => '3133982', + 'Name' => 'log4cxx::ConsoleAppender::ClazzConsoleAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7877620' => { + 'BaseType' => '7863636', + 'Name' => 'log4cxx::WriterAppender const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7877625' => { + 'BaseType' => '7877620', + 'Name' => 'log4cxx::WriterAppender const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7877630' => { + 'BaseType' => '3122360', + 'Name' => 'log4cxx::WriterAppender*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '7877635' => { + 'BaseType' => '7877630', + 'Name' => 'log4cxx::WriterAppender*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '7877645' => { + 'BaseType' => '7857651', + 'Name' => 'log4cxx::helpers::OutputStreamPtr&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '7877740' => { + 'BaseType' => '7857384', + 'Name' => 'log4cxx::helpers::WriterPtr const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '8364523' => { + 'BaseType' => '2354662', + 'Header' => 'loggingevent.h', + 'Line' => '212', + 'Name' => 'log4cxx::spi::LoggingEventList', + 'NameSpace' => 'log4cxx::spi', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '8373722' => { + 'BaseType' => '5672443', + 'Name' => 'log4cxx::helpers::CyclicBuffer*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '8373737' => { + 'BaseType' => '5672453', + 'Name' => 'log4cxx::helpers::CyclicBuffer const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '8374120' => { + 'BaseType' => '8374125', + 'Name' => 'char const[22]&', 'Size' => '8', + 'Type' => 'Ref' + }, + '8374125' => { + 'BaseType' => '191037', + 'Name' => 'char const[22]', + 'Size' => '22', + 'Type' => 'Array' + }, + '8640801' => { + 'Header' => 'refwrap.h', + 'Line' => '55', + 'Name' => 'struct std::_Maybe_unary_or_binary_function', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '8370208' + 'key' => '_Res', + 'type' => '190282' + } + }, + 'Type' => 'Struct' + }, + '8640829' => { + 'Base' => { + '458046' => { + 'pos' => '1' + }, + '8640801' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'std_function.h', + 'Line' => '334', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_invoker', + 'offset' => '36', + 'type' => '8641221' + } + }, + 'Name' => 'std::function', + 'NameSpace' => 'std', + 'Size' => '32', + 'TParam' => { + '0' => { + 'key' => '_Signature', + 'type' => '8709287' } }, 'Type' => 'Class' }, - '8369341' => { + '8641221' => { + 'BaseType' => '8697641', + 'Header' => 'std_function.h', + 'Line' => '666', + 'Name' => 'std::function::_Invoker_type', + 'NameSpace' => 'std::function', + 'Private' => 1, + 'Size' => '8', + 'Type' => 'Typedef' + }, + '8690155' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -151838,458 +153636,413 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '61461' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife >', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', + 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '370752' + 'type' => '1914278' } }, 'Type' => 'Class' }, - '8370208' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'level.h', - 'Line' => '51', - 'Name' => 'log4cxx::Level::LevelClass', - 'NameSpace' => 'log4cxx::Level', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::Level::LevelClass::~LevelClass() [_ZN7log4cxx5Level10LevelClassD2Ev]', - '24' => '(int (*)(...)) log4cxx::Level::LevelClass::~LevelClass() [_ZN7log4cxx5Level10LevelClassD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::Level::LevelClass::getName[abi:cxx11]() const [_ZNK7log4cxx5Level10LevelClass7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::Level::LevelClass::toLevel(std::__cxx11::basic_string, std::allocator > const&) const [_ZNK7log4cxx5Level10LevelClass7toLevelERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', - '56' => '(int (*)(...)) log4cxx::Level::LevelClass::toLevel(int) const [_ZNK7log4cxx5Level10LevelClass7toLevelEi]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::Level::LevelClass) [_ZTIN7log4cxx5Level10LevelClassE]' - } + '8690714' => { + 'BaseType' => '8640829', + 'Header' => 'date.h', + 'Line' => '68', + 'Name' => 'log4cxx::helpers::Date::GetCurrentTimeFn', + 'NameSpace' => 'log4cxx::helpers::Date', + 'Size' => '32', + 'Type' => 'Typedef' }, - '8370480' => { - 'BaseType' => '8370208', - 'Name' => 'log4cxx::Level::LevelClass const', - 'Size' => '8', + '8691165' => { + 'BaseType' => '1914272', + 'Name' => 'log4cxx::helpers::Date const', + 'Size' => '16', 'Type' => 'Const' }, - '8372554' => { - 'BaseType' => '407323', - 'Name' => 'log4cxx::Level*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8372560' => { - 'BaseType' => '8372554', - 'Name' => 'log4cxx::Level*const', + '8692034' => { + 'BaseType' => '1914488', + 'Name' => 'log4cxx::log4cxx_time_t const', 'Size' => '8', 'Type' => 'Const' }, - '8373106' => { - 'BaseType' => '8368579', - 'Name' => 'log4cxx::helpers::WideLife*', + '8697510' => { + 'BaseType' => '8690155', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '8373112' => { - 'BaseType' => '8373106', - 'Name' => 'log4cxx::helpers::WideLife*const', + '8697515' => { + 'BaseType' => '8697510', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '8373214' => { - 'BaseType' => '8369341', - 'Name' => 'log4cxx::helpers::WideLife >*', + '8697641' => { + 'Name' => 'long(*)(union std::_Any_data const&)', + 'Param' => { + '0' => { + 'type' => '574371' + } + }, + 'Return' => '190282', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'FuncPtr' }, - '8373220' => { - 'BaseType' => '8373214', - 'Name' => 'log4cxx::helpers::WideLife >*const', + '8698008' => { + 'BaseType' => '1938374', + 'Name' => 'log4cxx::helpers::Date*const', 'Size' => '8', 'Type' => 'Const' }, - '8373380' => { - 'BaseType' => '50678', - 'Name' => 'char const[5]', - 'Size' => '5', - 'Type' => 'Array' - }, - '8373668' => { - 'BaseType' => '8370208', - 'Name' => 'log4cxx::Level::LevelClass*', + '8698018' => { + 'BaseType' => '8691165', + 'Name' => 'log4cxx::helpers::Date const*', 'Size' => '8', 'Type' => 'Pointer' }, - '8373674' => { - 'BaseType' => '8373668', - 'Name' => 'log4cxx::Level::LevelClass*const', + '8698023' => { + 'BaseType' => '8698018', + 'Name' => 'log4cxx::helpers::Date const*const', 'Size' => '8', 'Type' => 'Const' }, - '8373685' => { - 'BaseType' => '8370480', - 'Name' => 'log4cxx::Level::LevelClass const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8373691' => { - 'BaseType' => '8373685', - 'Name' => 'log4cxx::Level::LevelClass const*const', + '8698033' => { + 'BaseType' => '1938364', + 'Name' => 'log4cxx::helpers::Date::ClazzDate*const', 'Size' => '8', 'Type' => 'Const' }, - '8378131' => { - 'BaseType' => '8373380', - 'Name' => 'char const[5]&', + '8698043' => { + 'BaseType' => '1938369', + 'Name' => 'log4cxx::helpers::Date::ClazzDate const*const', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Const' }, - '8378360' => { - 'BaseType' => '652678', - 'Name' => 'char const[4]&', - 'Size' => '8', - 'Type' => 'Ref' + '8709287' => { + 'Name' => 'long()', + 'Return' => '190282', + 'Type' => 'Func' }, - '838041' => { - 'BaseType' => '836422', - 'Name' => 'log4cxx::AsyncAppender const', - 'Size' => '24', - 'Type' => 'Const' - }, - '838206' => { - 'BaseType' => '767747', - 'Header' => 'asyncappender.h', - 'Line' => '27', - 'Name' => 'log4cxx::LoggingEventList', - 'NameSpace' => 'log4cxx', - 'Size' => '24', - 'Type' => 'Typedef' + '871963' => { + 'Base' => { + '877906' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '567947' + } + }, + 'Type' => 'Class' }, - '838230' => { - 'BaseType' => '50231', - 'Header' => 'log4cxx.h', - 'Line' => '111', - 'Name' => 'log4cxx::log4cxx_status_t', - 'NameSpace' => 'log4cxx', - 'Size' => '4', - 'Type' => 'Typedef' + '872280' => { + 'BaseType' => '871963', + 'Name' => 'std::shared_ptrconst', + 'Size' => '16', + 'Type' => 'Const' }, - '839402' => { - 'BaseType' => '835578', - 'Name' => 'log4cxx::spi::LocationInfo const&', - 'Size' => '8', - 'Type' => 'Ref' + '872285' => { + 'Base' => { + '917115' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '871963' + } + }, + 'Type' => 'Class' }, - '839408' => { - 'BaseType' => '835117', - 'Name' => 'log4cxx::spi::LocationInfo*', - 'Size' => '8', - 'Type' => 'Pointer' + '872570' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '872285' + } + }, + 'Type' => 'Struct' }, - '839414' => { - 'BaseType' => '835117', - 'Name' => 'log4cxx::spi::LocationInfo&', + '872584' => { + 'BaseType' => '954717', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Typedef' }, - '839420' => { - 'BaseType' => '835578', - 'Name' => 'log4cxx::spi::LocationInfo const*', - 'Size' => '8', - 'Type' => 'Pointer' + '873063' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '84', + 'Memb' => { + '0' => { + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '873262' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '871963' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '872285' + } + }, + 'Type' => 'Struct' }, - '840063' => { - 'BaseType' => '832974', - 'Name' => 'log4cxx::helpers::Properties&', - 'Size' => '8', - 'Type' => 'Ref' + '873076' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', + 'Memb' => { + '0' => { + 'name' => '_M_start', + 'offset' => '0', + 'type' => '873250' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '873250' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '873250' + } + }, + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' }, - '840075' => { - 'BaseType' => '836412', - 'Name' => 'log4cxx::File const&', + '873250' => { + 'BaseType' => '917584', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Typedef' }, - '840435' => { - 'BaseType' => '833053', - 'Name' => 'struct log4cxx::helpers::ThreadUtility::priv_data*', - 'Size' => '8', - 'Type' => 'Pointer' + '873262' => { + 'Base' => { + '872285' => { + 'pos' => '0' + }, + '873076' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' }, - '840674' => { - 'BaseType' => '833040', - 'Name' => 'log4cxx::helpers::ThreadUtility*', - 'Size' => '8', - 'Type' => 'Pointer' + '874087' => { + 'Base' => { + '873063' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', + 'NameSpace' => 'std', + 'Size' => '24', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '871963' + } + }, + 'Type' => 'Class' }, - '840680' => { - 'BaseType' => '840674', - 'Name' => 'log4cxx::helpers::ThreadUtility*const', - 'Size' => '8', + '877293' => { + 'BaseType' => '874087', + 'Name' => 'std::vector >const', + 'Size' => '24', 'Type' => 'Const' }, - '840725' => { - 'Name' => 'void(*)(union std::_Any_data const&)', - 'Param' => { - '0' => { - 'type' => '651007' - } - }, - 'Return' => '1', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '840783' => { - 'Name' => 'void(*)(union std::_Any_data const&, std::__cxx11::basic_string&&, std::thread::id&&, unsigned long&&)', - 'Param' => { - '0' => { - 'type' => '651007' - }, - '1' => { - 'type' => '61523' - }, - '2' => { - 'type' => '840816' - }, - '3' => { - 'type' => '840822' - } - }, - 'Return' => '1', - 'Size' => '8', - 'Type' => 'FuncPtr' - }, - '840816' => { - 'BaseType' => '749251', - 'Name' => 'std::thread::id&&', - 'Size' => '8', - 'Type' => 'RvalueRef' + '877721' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '567947' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '840822' => { - 'BaseType' => '50193', - 'Name' => 'unsigned long&&', - 'Size' => '8', - 'Type' => 'RvalueRef' + '877869' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '567947' + } + }, + 'Type' => 'Struct' }, - '841473' => { - 'BaseType' => '407370', - 'Name' => 'log4cxx::spi::LoggingEvent*', - 'Size' => '8', - 'Type' => 'Pointer' + '877883' => { + 'BaseType' => '567947', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' }, - '841514' => { - 'Line' => '49', + '877906' => { + 'Base' => { + '877721' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'maxEvent', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '151288' + 'type' => '954983' }, '1' => { 'access' => 'private', - 'name' => 'count', - 'offset' => '16', - 'type' => '50231' + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'DiscardSummary', - 'Size' => '24', - 'Source' => 'asyncappender.cpp', + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '567947' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, 'Type' => 'Class' }, - '841781' => { - 'BaseType' => '841514', - 'Name' => 'DiscardSummary const', - 'Size' => '24', - 'Type' => 'Const' - }, - '841786' => { - 'BaseType' => '841514', - 'Name' => 'DiscardSummary*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '841792' => { - 'BaseType' => '841786', - 'Name' => 'DiscardSummary*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '841803' => { - 'BaseType' => '841781', - 'Name' => 'DiscardSummary const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '841809' => { - 'BaseType' => '841514', - 'Name' => 'DiscardSummary&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '841815' => { - 'BaseType' => '763822', - 'Line' => '93', - 'Name' => 'DiscardMap', - 'Size' => '48', - 'Source' => 'asyncappender.cpp', + '878187' => { + 'BaseType' => '877883', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '842524' => { - 'BaseType' => '778457', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '842588' => { - 'BaseType' => '833512', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '842594' => { - 'BaseType' => '842588', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '842713' => { - 'BaseType' => '836668', - 'Name' => 'struct log4cxx::AsyncAppender::AsyncAppenderPriv*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '842719' => { - 'BaseType' => '842713', - 'Name' => 'struct log4cxx::AsyncAppender::AsyncAppenderPriv*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '843078' => { - 'BaseType' => '264877', - 'Name' => 'log4cxx::Appender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '843934' => { - 'BaseType' => '836422', - 'Name' => 'log4cxx::AsyncAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '843940' => { - 'BaseType' => '843934', - 'Name' => 'log4cxx::AsyncAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '843994' => { - 'BaseType' => '50179', - 'Name' => 'unsigned char[56]', - 'Size' => '56', - 'Type' => 'Array' - }, - '844061' => { - 'BaseType' => '835654', - 'Name' => 'log4cxx::spi::LoggingEvent const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '845079' => { - 'BaseType' => '838041', - 'Name' => 'log4cxx::AsyncAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '845085' => { - 'BaseType' => '845079', - 'Name' => 'log4cxx::AsyncAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '845161' => { - 'BaseType' => '836440', - 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '845167' => { - 'BaseType' => '845161', - 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '845172' => { - 'BaseType' => '836663', - 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '845178' => { - 'BaseType' => '845172', - 'Name' => 'log4cxx::AsyncAppender::ClazzAsyncAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '845704' => { - 'BaseType' => '834615', - 'Name' => 'log4cxx::helpers::IllegalArgumentException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '845710' => { - 'BaseType' => '845704', - 'Name' => 'log4cxx::helpers::IllegalArgumentException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '845715' => { - 'BaseType' => '834772', - 'Name' => 'log4cxx::helpers::IllegalArgumentException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '845721' => { - 'BaseType' => '834615', - 'Name' => 'log4cxx::helpers::IllegalArgumentException&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '845727' => { - 'BaseType' => '834777', - 'Name' => 'log4cxx::helpers::RuntimeException*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '845733' => { - 'BaseType' => '845727', - 'Name' => 'log4cxx::helpers::RuntimeException*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '845738' => { - 'BaseType' => '834992', - 'Name' => 'log4cxx::helpers::RuntimeException const&', - 'Size' => '8', - 'Type' => 'Ref' - }, - '845744' => { - 'BaseType' => '834777', - 'Name' => 'log4cxx::helpers::RuntimeException&', - 'Size' => '8', - 'Type' => 'Ref' + '878511' => { + 'Base' => { + '11854759' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '686', + 'Name' => 'std::weak_ptr', + 'NameSpace' => 'std', + 'Size' => '16', + 'TParam' => { + '0' => { + 'type' => '567947' + } + }, + 'Type' => 'Class' }, - '8534185' => { + '88704' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '30578' + } + }, + 'Type' => 'Struct' + }, + '88718' => { + 'BaseType' => '191741', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits >::pointer', + 'NameSpace' => 'std::allocator_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '88781' => { + 'BaseType' => '3463', + 'Header' => 'alloc_traits.h', + 'Line' => '435', + 'Name' => 'std::allocator_traits >::size_type', + 'NameSpace' => 'std::allocator_traits >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '8887683' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -152297,1051 +154050,714 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '8535858' + 'type' => '4207458' } }, 'Type' => 'Class' }, - '8535840' => { - 'Base' => { - '150952' => { - 'pos' => '0' - } - }, - 'Header' => 'levelmatchfilter.h', - 'Line' => '42', - 'Name' => 'log4cxx::filter::LevelMatchFilter', - 'NameSpace' => 'log4cxx::filter', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter16LevelMatchFilter10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter16LevelMatchFilter4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter16LevelMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter16LevelMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelMatchFilter) [_ZTIN7log4cxx6filter16LevelMatchFilterE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::~LevelMatchFilter() [_ZN7log4cxx6filter16LevelMatchFilterD1Ev]', - '88' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::~LevelMatchFilter() [_ZN7log4cxx6filter16LevelMatchFilterD0Ev]', - '96' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::getClass() const [_ZNK7log4cxx6filter16LevelMatchFilter8getClassEv]' - } - }, - '8535858' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'levelmatchfilter.h', - 'Line' => '49', - 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter', - 'NameSpace' => 'log4cxx::filter::LevelMatchFilter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::~ClazzLevelMatchFilter() [_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::~ClazzLevelMatchFilter() [_ZN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter::newInstance() const [_ZNK7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilter11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter) [_ZTIN7log4cxx6filter16LevelMatchFilter21ClazzLevelMatchFilterE]' - } - }, - '8536078' => { - 'BaseType' => '8535858', - 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8536083' => { - 'Base' => { - '150962' => { - 'pos' => '0' - } - }, - 'Line' => '33', - 'Memb' => { - '0' => { - 'name' => 'acceptOnMatch', - 'offset' => '24', - 'type' => '50284' - }, - '1' => { - 'name' => 'levelToMatch', - 'offset' => '32', - 'type' => '409192' - } - }, - 'Name' => 'struct log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate', - 'NameSpace' => 'log4cxx::filter::LevelMatchFilter', - 'Private' => 1, - 'Size' => '48', - 'Source' => 'levelmatchfilter.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate::~LevelMatchFilterPrivate() [_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate::~LevelMatchFilterPrivate() [_ZN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate) [_ZTIN7log4cxx6filter16LevelMatchFilter23LevelMatchFilterPrivateE]' - } - }, - '8536752' => { - 'BaseType' => '8535840', - 'Name' => 'log4cxx::filter::LevelMatchFilter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '8538413' => { - 'BaseType' => '8534185', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8538419' => { - 'BaseType' => '8538413', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8538538' => { - 'BaseType' => '8536083', - 'Name' => 'struct log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8538544' => { - 'BaseType' => '8538538', - 'Name' => 'struct log4cxx::filter::LevelMatchFilter::LevelMatchFilterPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8538976' => { - 'BaseType' => '8535840', - 'Name' => 'log4cxx::filter::LevelMatchFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8538982' => { - 'BaseType' => '8538976', - 'Name' => 'log4cxx::filter::LevelMatchFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8539004' => { - 'BaseType' => '8536752', - 'Name' => 'log4cxx::filter::LevelMatchFilter const*', + '8890070' => { + 'BaseType' => '8887683', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '8539010' => { - 'BaseType' => '8539004', - 'Name' => 'log4cxx::filter::LevelMatchFilter const*const', + '8890075' => { + 'BaseType' => '8890070', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '8539068' => { - 'BaseType' => '8535858', - 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8539074' => { - 'BaseType' => '8539068', - 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter*const', + '8890481' => { + 'BaseType' => '4213132', + 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat*const', 'Size' => '8', 'Type' => 'Const' }, - '8539079' => { - 'BaseType' => '8536078', - 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8539085' => { - 'BaseType' => '8539079', - 'Name' => 'log4cxx::filter::LevelMatchFilter::ClazzLevelMatchFilter const*const', + '8890491' => { + 'BaseType' => '4213137', + 'Name' => 'log4cxx::helpers::DateFormat::ClazzDateFormat const*const', 'Size' => '8', 'Type' => 'Const' }, - '854506' => { - 'BaseType' => '832107', - 'Name' => 'log4cxx::helpers::Exception*', - 'Size' => '8', - 'Type' => 'Pointer' + '89533' => { + 'BaseType' => '51677', + 'Header' => 'stringfwd.h', + 'Line' => '79', + 'Name' => 'std::string', + 'NameSpace' => 'std', + 'Size' => '32', + 'Type' => 'Typedef' + }, + '89545' => { + 'BaseType' => '89533', + 'Name' => 'std::string const', + 'Size' => '32', + 'Type' => 'Const' + }, + '89705' => { + 'BaseType' => '58805', + 'Header' => 'stringfwd.h', + 'Line' => '83', + 'Name' => 'std::wstring', + 'NameSpace' => 'std', + 'Size' => '32', + 'Type' => 'Typedef' + }, + '89717' => { + 'BaseType' => '89705', + 'Name' => 'std::wstring const', + 'Size' => '32', + 'Type' => 'Const' + }, + '917115' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '871963' + } + }, + 'Type' => 'Class' + }, + '917359' => { + 'Base' => { + '872570' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Alloc', + 'type' => '872285' + } + }, + 'Type' => 'Struct' }, - '854512' => { - 'BaseType' => '854506', - 'Name' => 'log4cxx::helpers::Exception*const', + '917584' => { + 'BaseType' => '872584', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Typedef' }, - '8612352' => { + '9178253' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Header' => 'unique_ptr.h', + 'Line' => '63', + 'Name' => 'struct std::default_delete', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8637994' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'type' => '9330879' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '8612500' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + '9179227' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '128', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_t', + 'offset' => '0', + 'type' => '9181649' + } + }, + 'Name' => 'std::__uniq_ptr_impl >', 'NameSpace' => 'std', - 'Size' => '1', + 'Size' => '8', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8637994' + 'type' => '9330879' + }, + '1' => { + 'key' => '_Dp', + 'type' => '9178253' } }, - 'Type' => 'Struct' - }, - '8612514' => { - 'BaseType' => '8637994', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' + 'Type' => 'Class' }, - '8612537' => { - 'Base' => { - '8612352' => { - 'pos' => '0' - } - }, + '9179863' => { 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Header' => 'tuple', + 'Line' => '78', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => '_M_ptr', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '8640624' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' + 'type' => '9178253' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '8637994' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' }, '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' + 'key' => '_Head', + 'type' => '9178253' } }, - 'Type' => 'Class' - }, - '8612823' => { - 'BaseType' => '8612514', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', - 'Type' => 'Typedef' + 'Type' => 'Struct' }, - '8613233' => { + '9180121' => { 'Base' => { - '8612537' => { + '9179863' => { + 'access' => 'private', 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Header' => 'tuple', + 'Line' => '416', + 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', 'NameSpace' => 'std', - 'Size' => '16', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => '_Tp', - 'type' => '8637994' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '1' + }, + '1' => { + 'key' => undef, + 'type' => '9178253' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '8636364' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '9180427' => { + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '187', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_head_impl', 'offset' => '0', - 'type' => '55091' + 'type' => '9347008' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::StrftimeDateFormat::StrftimeDateFormatPrivate*>', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '8638028' + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => '_Head', + 'type' => '9347008' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '8637994' => { + '9180685' => { 'Base' => { - '2271385' => { + '9180121' => { 'pos' => '0' + }, + '9180427' => { + 'access' => 'private', + 'pos' => '1' } }, - 'Header' => 'levelpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::LevelPatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern21LevelPatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern21LevelPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LevelPatternConverter) [_ZTIN7log4cxx7pattern21LevelPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::~LevelPatternConverter() [_ZN7log4cxx7pattern21LevelPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::~LevelPatternConverter() [_ZN7log4cxx7pattern21LevelPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::getClass() const [_ZNK7log4cxx7pattern21LevelPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern21LevelPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern21LevelPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '258', + 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::StrftimeDateFormat::StrftimeDateFormatPrivate*>', + 'NameSpace' => 'std', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => '_Idx', + 'type' => '190225', + 'val' => '0' + }, + '1' => { + 'key' => undef, + 'type' => '9347008' + } + }, + 'Type' => 'Struct' }, - '8638028' => { + '9181649' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '9180685' => { + 'pos' => '0' + } }, - 'Header' => 'levelpatternconverter.h', - 'Line' => '38', - 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter', - 'NameSpace' => 'log4cxx::pattern::LevelPatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter::~ClazzLevelPatternConverter() [_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter::~ClazzLevelPatternConverter() [_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter) [_ZTIN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterE]' - } - }, - '8638186' => { - 'BaseType' => '8638028', - 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8638635' => { - 'BaseType' => '8637994', - 'Name' => 'log4cxx::pattern::LevelPatternConverter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '8640334' => { - 'BaseType' => '8636364', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8640340' => { - 'BaseType' => '8640334', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8640624' => { - 'BaseType' => '8612823', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8640642' => { - 'BaseType' => '8637994', - 'Name' => 'log4cxx::pattern::LevelPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8640648' => { - 'BaseType' => '8640642', - 'Name' => 'log4cxx::pattern::LevelPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8640670' => { - 'BaseType' => '8613233', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '8640857' => { - 'BaseType' => '8638635', - 'Name' => 'log4cxx::pattern::LevelPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8640863' => { - 'BaseType' => '8640857', - 'Name' => 'log4cxx::pattern::LevelPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8641350' => { - 'BaseType' => '8638028', - 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8641356' => { - 'BaseType' => '8641350', - 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8641361' => { - 'BaseType' => '8638186', - 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter const*', + 'Copied' => 1, + 'Header' => 'tuple', + 'Line' => '981', + 'Name' => 'std::tuple', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => undef, + 'type' => '9347008' + } + }, + 'Type' => 'Class' }, - '8641367' => { - 'BaseType' => '8641361', - 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter const*const', + '9183091' => { + 'Base' => { + '9179227' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '208', + 'Name' => 'struct std::__uniq_ptr_data >', + 'NameSpace' => 'std', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9330879' + }, + '1' => { + 'key' => '_Dp', + 'type' => '9178253' + } + }, + 'Type' => 'Struct' }, - '8762643' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '9183293' => { + 'Copied' => 1, + 'Header' => 'unique_ptr.h', + 'Line' => '242', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_t', 'offset' => '0', - 'type' => '55091' + 'type' => '9183091' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'std::unique_ptr >', + 'NameSpace' => 'std', 'Size' => '8', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '8764367' + 'key' => '_Tp', + 'type' => '9330879' + }, + '1' => { + 'key' => '_Dp', + 'type' => '9178253' } }, 'Type' => 'Class' }, - '8764349' => { - 'Base' => { - '150952' => { - 'pos' => '0' - } - }, - 'Header' => 'levelrangefilter.h', - 'Line' => '56', - 'Name' => 'log4cxx::filter::LevelRangeFilter', - 'NameSpace' => 'log4cxx::filter', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter16LevelRangeFilter10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter16LevelRangeFilter4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter16LevelRangeFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter16LevelRangeFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelRangeFilter) [_ZTIN7log4cxx6filter16LevelRangeFilterE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::~LevelRangeFilter() [_ZN7log4cxx6filter16LevelRangeFilterD1Ev]', - '88' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::~LevelRangeFilter() [_ZN7log4cxx6filter16LevelRangeFilterD0Ev]', - '96' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::getClass() const [_ZNK7log4cxx6filter16LevelRangeFilter8getClassEv]' - } + '9215971' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '4208199' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '8764367' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'levelrangefilter.h', - 'Line' => '63', - 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter', - 'NameSpace' => 'log4cxx::filter::LevelRangeFilter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::~ClazzLevelRangeFilter() [_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD2Ev]', - '24' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::~ClazzLevelRangeFilter() [_ZN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter::newInstance() const [_ZNK7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilter11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter) [_ZTIN7log4cxx6filter16LevelRangeFilter21ClazzLevelRangeFilterE]' - } + '9216119' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '4208199' + } + }, + 'Type' => 'Struct' }, - '8764588' => { - 'BaseType' => '8764367', - 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter const', - 'Size' => '8', - 'Type' => 'Const' + '9216133' => { + 'BaseType' => '4208199', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' }, - '8764593' => { + '9216156' => { 'Base' => { - '150962' => { - 'pos' => '0' - } + '9215971' => { + 'pos' => '0' + } }, - 'Line' => '33', + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { - 'name' => 'acceptOnMatch', - 'offset' => '24', - 'type' => '50284' + 'access' => 'private', + 'name' => '_M_ptr', + 'offset' => '0', + 'type' => '9348701' }, '1' => { - 'name' => 'levelMin', - 'offset' => '32', - 'type' => '409192' - }, - '2' => { - 'name' => 'levelMax', - 'offset' => '48', - 'type' => '409192' + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'struct log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate', - 'NameSpace' => 'log4cxx::filter::LevelRangeFilter', - 'Private' => 1, - 'Size' => '64', - 'Source' => 'levelrangefilter.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate::~LevelRangeFilterPrivate() [_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD2Ev]', - '24' => '(int (*)(...)) log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate::~LevelRangeFilterPrivate() [_ZN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate) [_ZTIN7log4cxx6filter16LevelRangeFilter23LevelRangeFilterPrivateE]' - } - }, - '8765341' => { - 'BaseType' => '8764349', - 'Name' => 'log4cxx::filter::LevelRangeFilter const', + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', 'Size' => '16', - 'Type' => 'Const' - }, - '8767002' => { - 'BaseType' => '8762643', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8767008' => { - 'BaseType' => '8767002', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8767127' => { - 'BaseType' => '8764593', - 'Name' => 'struct log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8767133' => { - 'BaseType' => '8767127', - 'Name' => 'struct log4cxx::filter::LevelRangeFilter::LevelRangeFilterPrivate*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8767565' => { - 'BaseType' => '8764349', - 'Name' => 'log4cxx::filter::LevelRangeFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8767571' => { - 'BaseType' => '8767565', - 'Name' => 'log4cxx::filter::LevelRangeFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8767593' => { - 'BaseType' => '8765341', - 'Name' => 'log4cxx::filter::LevelRangeFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8767599' => { - 'BaseType' => '8767593', - 'Name' => 'log4cxx::filter::LevelRangeFilter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8767657' => { - 'BaseType' => '8764367', - 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8767663' => { - 'BaseType' => '8767657', - 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8767668' => { - 'BaseType' => '8764588', - 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '4208199' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' + } + }, + 'Type' => 'Class' }, - '8767674' => { - 'BaseType' => '8767668', - 'Name' => 'log4cxx::filter::LevelRangeFilter::ClazzLevelRangeFilter const*const', - 'Size' => '8', - 'Type' => 'Const' + '9216437' => { + 'BaseType' => '9216133', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' }, - '8847695' => { + '9220461' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8871860' + 'type' => '9334866' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '8847843' => { + '9220609' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8871860' + 'type' => '9334866' } }, 'Type' => 'Struct' }, - '8847857' => { - 'BaseType' => '8871860', + '9220623' => { + 'BaseType' => '9334866', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Size' => '16', 'Type' => 'Typedef' }, - '8847880' => { + '9220646' => { 'Base' => { - '8847695' => { + '9220461' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '8874688' + 'type' => '9348971' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8871860' + 'type' => '9334866' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '8848166' => { - 'BaseType' => '8847857', + '9220927' => { + 'BaseType' => '9220623', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Size' => '16', 'Type' => 'Typedef' }, - '8848576' => { + '9221858' => { 'Base' => { - '8847880' => { + '9220646' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8871860' - } - }, - 'Type' => 'Class' - }, - '8870208' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '8871894' + 'type' => '9334866' } }, 'Type' => 'Class' }, - '8871860' => { - 'Base' => { - '2271385' => { - 'pos' => '0' - } - }, - 'Header' => 'linelocationpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LineLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LineLocationPatternConverter) [_ZTIN7log4cxx7pattern28LineLocationPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::~LineLocationPatternConverter() [_ZN7log4cxx7pattern28LineLocationPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::~LineLocationPatternConverter() [_ZN7log4cxx7pattern28LineLocationPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern28LineLocationPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28LineLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28LineLocationPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } - }, - '8871894' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'linelocationpatternconverter.h', - 'Line' => '39', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter', - 'NameSpace' => 'log4cxx::pattern::LineLocationPatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter::~ClazzLineLocationPatternConverter() [_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter::~ClazzLineLocationPatternConverter() [_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter) [_ZTIN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterE]' - } - }, - '8872052' => { - 'BaseType' => '8871894', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8872456' => { - 'BaseType' => '8871860', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '8874398' => { - 'BaseType' => '8870208', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8874404' => { - 'BaseType' => '8874398', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8874688' => { - 'BaseType' => '8848166', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8874706' => { - 'BaseType' => '8871860', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8874712' => { - 'BaseType' => '8874706', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8874734' => { - 'BaseType' => '8848576', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '8874905' => { - 'BaseType' => '8872456', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8874911' => { - 'BaseType' => '8874905', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8875216' => { - 'BaseType' => '8871894', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8875222' => { - 'BaseType' => '8875216', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8875227' => { - 'BaseType' => '8872052', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8875233' => { - 'BaseType' => '8875227', - 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8948187' => { + '9225576' => { 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8971130' + 'type' => '1914272' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '8948335' => { + '9225724' => { 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', 'NameSpace' => 'std', 'Size' => '1', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8971130' + 'type' => '1914272' } }, 'Type' => 'Struct' }, - '8948349' => { - 'BaseType' => '8971130', + '9225738' => { + 'BaseType' => '1914272', 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', 'Type' => 'Typedef' }, - '8948372' => { + '9225761' => { 'Base' => { - '8948187' => { + '9225576' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', 'name' => '_M_ptr', 'offset' => '0', - 'type' => '8973479' + 'type' => '9349166' }, '1' => { 'access' => 'private', 'name' => '_M_refcount', 'offset' => '8', - 'type' => '123552' + 'type' => '428177' } }, - 'Name' => 'std::__shared_ptr', + 'Name' => 'std::__shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8971130' + 'type' => '1914272' }, '1' => { 'key' => '_Lp', - 'type' => '50077', + 'type' => '188587', 'val' => '2' } }, 'Type' => 'Class' }, - '8948661' => { - 'BaseType' => '8948349', + '9226042' => { + 'BaseType' => '9225738', 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', - 'Size' => '16', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', 'Type' => 'Typedef' }, - '8949071' => { + '9226878' => { 'Base' => { - '8948372' => { + '9225761' => { 'pos' => '0' } }, 'Copied' => 1, 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', + 'Line' => '122', + 'Name' => 'std::shared_ptr', 'NameSpace' => 'std', 'Size' => '16', 'TParam' => { '0' => { 'key' => '_Tp', - 'type' => '8971130' + 'type' => '1914272' } }, 'Type' => 'Class' }, - '8969500' => { + '9330865' => { + 'BaseType' => '5648110', + 'Name' => 'log4cxx::helpers::SimpleDateFormat const', + 'Type' => 'Const' + }, + '9330870' => { + 'Base' => { + '4207448' => { + 'pos' => '0' + } + }, + 'Header' => 'strftimedateformat.h', + 'Line' => '33', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'm_priv', + 'offset' => '8', + 'type' => '9183293' + } + }, + 'Name' => 'log4cxx::helpers::StrftimeDateFormat', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::StrftimeDateFormat::~StrftimeDateFormat() [_ZN7log4cxx7helpers18StrftimeDateFormatD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::StrftimeDateFormat::~StrftimeDateFormat() [_ZN7log4cxx7helpers18StrftimeDateFormatD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::StrftimeDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers18StrftimeDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::StrftimeDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers18StrftimeDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::StrftimeDateFormat) [_ZTIN7log4cxx7helpers18StrftimeDateFormatE]' + } + }, + '9330879' => { + 'Line' => '27', + 'Memb' => { + '0' => { + 'name' => 'timeZone', + 'offset' => '0', + 'type' => '4207803' + }, + '1' => { + 'name' => 'pattern', + 'offset' => '22', + 'type' => '89533' + } + }, + 'Name' => 'struct log4cxx::helpers::StrftimeDateFormat::StrftimeDateFormatPrivate', + 'NameSpace' => 'log4cxx::helpers::StrftimeDateFormat', + 'Private' => 1, + 'Size' => '48', + 'Source' => 'strftimedateformat.cpp', + 'Type' => 'Struct' + }, + '9330912' => { + 'BaseType' => '9330870', + 'Name' => 'log4cxx::helpers::StrftimeDateFormat const', + 'Type' => 'Const' + }, + '9332078' => { 'Header' => 'widelife.h', 'Line' => '36', 'Memb' => { @@ -153349,3423 +154765,2206 @@ $VAR1 = { 'access' => 'private', 'name' => 'storage', 'offset' => '0', - 'type' => '55091' + 'type' => '197961' } }, - 'Name' => 'log4cxx::helpers::WideLife', + 'Name' => 'log4cxx::helpers::WideLife', 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', 'TParam' => { '0' => { 'key' => 'T', - 'type' => '8971164' + 'type' => '9334884' } }, 'Type' => 'Class' }, - '8971130' => { + '9332978' => { 'Base' => { - '2271385' => { + '5648110' => { 'pos' => '0' } }, - 'Header' => 'lineseparatorpatternconverter.h', - 'Line' => '35', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter', - 'NameSpace' => 'log4cxx::pattern', + 'Header' => 'absolutetimedateformat.h', + 'Line' => '31', + 'Name' => 'log4cxx::helpers::AbsoluteTimeDateFormat', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', - '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LineSeparatorPatternConverter) [_ZTIN7log4cxx7pattern29LineSeparatorPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::~LineSeparatorPatternConverter() [_ZN7log4cxx7pattern29LineSeparatorPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::~LineSeparatorPatternConverter() [_ZN7log4cxx7pattern29LineSeparatorPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::getClass() const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' - } - }, - '8971164' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'lineseparatorpatternconverter.h', - 'Line' => '39', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter', - 'NameSpace' => 'log4cxx::pattern::LineSeparatorPatternConverter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter::~ClazzLineSeparatorPatternConverter() [_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter::~ClazzLineSeparatorPatternConverter() [_ZN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter) [_ZTIN7log4cxx7pattern29LineSeparatorPatternConverter34ClazzLineSeparatorPatternConverterE]' + '16' => '(int (*)(...)) log4cxx::helpers::AbsoluteTimeDateFormat::~AbsoluteTimeDateFormat() [_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::AbsoluteTimeDateFormat::~AbsoluteTimeDateFormat() [_ZN7log4cxx7helpers22AbsoluteTimeDateFormatD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::AbsoluteTimeDateFormat) [_ZTIN7log4cxx7helpers22AbsoluteTimeDateFormatE]' } }, - '8971322' => { - 'BaseType' => '8971164', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8971777' => { - 'BaseType' => '8971130', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '8973189' => { - 'BaseType' => '8969500', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8973195' => { - 'BaseType' => '8973189', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8973479' => { - 'BaseType' => '8948661', - 'Name' => 'std::__shared_ptr::element_type*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8973497' => { - 'BaseType' => '8971130', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8973503' => { - 'BaseType' => '8973497', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8973525' => { - 'BaseType' => '8949071', - 'Name' => 'std::shared_ptr&&', - 'Size' => '8', - 'Type' => 'RvalueRef' - }, - '8973596' => { - 'BaseType' => '8971777', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8973602' => { - 'BaseType' => '8973596', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8973913' => { - 'BaseType' => '8971164', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8973919' => { - 'BaseType' => '8973913', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '8973924' => { - 'BaseType' => '8971322', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '8973930' => { - 'BaseType' => '8973924', - 'Name' => 'log4cxx::pattern::LineSeparatorPatternConverter::ClazzLineSeparatorPatternConverter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9055770' => { - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '999', - 'Name' => 'std::__shared_ptr_access', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9081249' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' - }, - '9055918' => { - 'Header' => 'type_traits', - 'Line' => '1829', - 'Name' => 'struct std::remove_extent', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9081249' - } - }, - 'Type' => 'Struct' - }, - '9055932' => { - 'BaseType' => '9081249', - 'Header' => 'type_traits', - 'Line' => '1830', - 'Name' => 'std::remove_extent::type', - 'NameSpace' => 'std::remove_extent', - 'Size' => '16', - 'Type' => 'Typedef' - }, - '9055955' => { + '9333119' => { 'Base' => { - '9055770' => { + '5648110' => { 'pos' => '0' } }, - 'Copied' => 1, - 'Header' => 'shared_ptr_base.h', - 'Line' => '1080', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_ptr', - 'offset' => '0', - 'type' => '9084389' - }, - '1' => { - 'access' => 'private', - 'name' => '_M_refcount', - 'offset' => '8', - 'type' => '123552' - } - }, - 'Name' => 'std::__shared_ptr', - 'NameSpace' => 'std', + 'Header' => 'datetimedateformat.h', + 'Line' => '31', + 'Name' => 'log4cxx::helpers::DateTimeDateFormat', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9081249' - }, - '1' => { - 'key' => '_Lp', - 'type' => '50077', - 'val' => '2' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::helpers::DateTimeDateFormat::~DateTimeDateFormat() [_ZN7log4cxx7helpers18DateTimeDateFormatD1Ev]', + '24' => '(int (*)(...)) log4cxx::helpers::DateTimeDateFormat::~DateTimeDateFormat() [_ZN7log4cxx7helpers18DateTimeDateFormatD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::DateFormat::getClass() const [_ZNK7log4cxx7helpers10DateFormat8getClassEv]', + '40' => '(int (*)(...)) log4cxx::helpers::DateFormat::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat10instanceofERKNS0_5ClassE]', + '48' => '(int (*)(...)) log4cxx::helpers::DateFormat::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7helpers10DateFormat4castERKNS0_5ClassE]', + '56' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::format(std::__cxx11::basic_string, std::allocator >&, long, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers16SimpleDateFormat6formatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRNS0_4PoolE]', + '64' => '(int (*)(...)) log4cxx::helpers::SimpleDateFormat::setTimeZone(std::shared_ptr const&) [_ZN7log4cxx7helpers16SimpleDateFormat11setTimeZoneERKSt10shared_ptrINS0_8TimeZoneEE]', + '72' => '(int (*)(...)) log4cxx::helpers::DateFormat::numberFormat(std::__cxx11::basic_string, std::allocator >&, int, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7helpers10DateFormat12numberFormatERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRNS0_4PoolE]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::DateTimeDateFormat) [_ZTIN7log4cxx7helpers18DateTimeDateFormatE]' + } }, - '9056241' => { - 'BaseType' => '9055932', - 'Header' => 'shared_ptr_base.h', - 'Line' => '1084', - 'Name' => 'std::__shared_ptr::element_type', - 'NameSpace' => 'std::__shared_ptr', + '9334143' => { + 'BaseType' => '9226878', + 'Header' => 'date.h', + 'Line' => '81', + 'Name' => 'log4cxx::helpers::DatePtr', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '16', 'Type' => 'Typedef' }, - '9057135' => { - 'Base' => { - '9055955' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'shared_ptr.h', - 'Line' => '103', - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', + '9334155' => { + 'BaseType' => '9334143', + 'Name' => 'log4cxx::helpers::DatePtr const', 'Size' => '16', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9081249' - } - }, - 'Type' => 'Class' - }, - '9079449' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '9081283' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '9081249' => { + '9334866' => { 'Base' => { - '2271385' => { + '3121054' => { 'pos' => '0' } }, - 'Header' => 'literalpatternconverter.h', + 'Header' => 'datepatternconverter.h', 'Line' => '35', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter', + 'Name' => 'log4cxx::pattern::DatePatternConverter', 'NameSpace' => 'log4cxx::pattern', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', - '112' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern23LiteralPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '112' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', '16' => '0u', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LiteralPatternConverter) [_ZTIN7log4cxx7pattern23LiteralPatternConverterE]', - '56' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::~LiteralPatternConverter() [_ZN7log4cxx7pattern23LiteralPatternConverterD1Ev]', - '64' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::~LiteralPatternConverter() [_ZN7log4cxx7pattern23LiteralPatternConverterD0Ev]', - '72' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::getClass() const [_ZNK7log4cxx7pattern23LiteralPatternConverter8getClassEv]', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::DatePatternConverter) [_ZTIN7log4cxx7pattern20DatePatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::~DatePatternConverter() [_ZN7log4cxx7pattern20DatePatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::~DatePatternConverter() [_ZN7log4cxx7pattern20DatePatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::getClass() const [_ZNK7log4cxx7pattern20DatePatternConverter8getClassEv]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23LiteralPatternConverter10instanceofERKNS_7helpers5ClassE]', - '88' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23LiteralPatternConverter4castERKNS_7helpers5ClassE]', - '96' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern23LiteralPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + '80' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern20DatePatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern20DatePatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern20DatePatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '9081283' => { + '9334884' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'literalpatternconverter.h', - 'Line' => '40', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter', - 'NameSpace' => 'log4cxx::pattern::LiteralPatternConverter', + 'Header' => 'datepatternconverter.h', + 'Line' => '46', + 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter', + 'NameSpace' => 'log4cxx::pattern::DatePatternConverter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter::~ClazzLiteralPatternConverter() [_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD2Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter::~ClazzLiteralPatternConverter() [_ZN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterD0Ev]', + '16' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter::~ClazzDatePatternConverter() [_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter::~ClazzDatePatternConverter() [_ZN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter) [_ZTIN7log4cxx7pattern23LiteralPatternConverter28ClazzLiteralPatternConverterE]' + '40' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter) [_ZTIN7log4cxx7pattern20DatePatternConverter25ClazzDatePatternConverterE]' } }, - '9081441' => { - 'BaseType' => '9081283', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter const', + '9335032' => { + 'BaseType' => '9334884', + 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '9081446' => { + '9335037' => { 'Base' => { - '2428623' => { + '3120371' => { 'pos' => '0' } }, - 'Line' => '31', + 'Line' => '37', 'Memb' => { '0' => { - 'name' => 'literal', - 'offset' => '72', - 'type' => '262804' + 'name' => 'df', + 'offset' => '114', + 'type' => '4207786' } }, - 'Name' => 'struct log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate', - 'NameSpace' => 'log4cxx::pattern::LiteralPatternConverter', + 'Name' => 'struct log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate', + 'NameSpace' => 'log4cxx::pattern::DatePatternConverter', 'Private' => 1, - 'Size' => '104', - 'Source' => 'literalpatternconverter.cpp', + 'Size' => '88', + 'Source' => 'datepatternconverter.cpp', 'Type' => 'Struct', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate::~LiteralPatternConverterPrivate() [_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate::~LiteralPatternConverterPrivate() [_ZN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate) [_ZTIN7log4cxx7pattern23LiteralPatternConverter30LiteralPatternConverterPrivateE]' + '16' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate::~DatePatternConverterPrivate() [_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate::~DatePatternConverterPrivate() [_ZN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate) [_ZTIN7log4cxx7pattern20DatePatternConverter27DatePatternConverterPrivateE]' } }, - '9082073' => { - 'BaseType' => '9081249', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter const', + '9335683' => { + 'BaseType' => '9334866', + 'Name' => 'log4cxx::pattern::DatePatternConverter const', 'Size' => '16', 'Type' => 'Const' }, - '9083798' => { - 'BaseType' => '9079449', - 'Name' => 'log4cxx::helpers::WideLife*', + '9336134' => { + 'BaseType' => '6007393', + 'Header' => 'patternconverter.h', + 'Line' => '33', + 'Name' => 'log4cxx::pattern::OptionsList', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '9336146' => { + 'BaseType' => '9336134', + 'Name' => 'log4cxx::pattern::OptionsList const', + 'Size' => '24', + 'Type' => 'Const' + }, + '9347008' => { + 'BaseType' => '9330879', + 'Name' => 'struct log4cxx::helpers::StrftimeDateFormat::StrftimeDateFormatPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '9083804' => { - 'BaseType' => '9083798', - 'Name' => 'log4cxx::helpers::WideLife*const', + '9347624' => { + 'BaseType' => '9332078', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '9347629' => { + 'BaseType' => '9347624', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '9083923' => { - 'BaseType' => '9081446', - 'Name' => 'struct log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate*', + '9347735' => { + 'BaseType' => '9335037', + 'Name' => 'struct log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate*', 'Size' => '8', 'Type' => 'Pointer' }, - '9083929' => { - 'BaseType' => '9083923', - 'Name' => 'struct log4cxx::pattern::LiteralPatternConverter::LiteralPatternConverterPrivate*const', + '9347740' => { + 'BaseType' => '9347735', + 'Name' => 'struct log4cxx::pattern::DatePatternConverter::DatePatternConverterPrivate*const', 'Size' => '8', 'Type' => 'Const' }, - '9084389' => { - 'BaseType' => '9056241', - 'Name' => 'std::__shared_ptr::element_type*', + '9348250' => { + 'BaseType' => '5679803', + 'Name' => 'log4cxx::helpers::ISO8601DateFormat*const', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Const' }, - '9084407' => { - 'BaseType' => '9081249', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter*', + '9348340' => { + 'BaseType' => '9332978', + 'Name' => 'log4cxx::helpers::AbsoluteTimeDateFormat*', 'Size' => '8', 'Type' => 'Pointer' }, - '9084413' => { - 'BaseType' => '9084407', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter*const', + '9348345' => { + 'BaseType' => '9348340', + 'Name' => 'log4cxx::helpers::AbsoluteTimeDateFormat*const', 'Size' => '8', 'Type' => 'Const' }, - '9084435' => { - 'BaseType' => '9057135', - 'Name' => 'std::shared_ptr&&', + '9348435' => { + 'BaseType' => '9333119', + 'Name' => 'log4cxx::helpers::DateTimeDateFormat*', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Pointer' + }, + '9348440' => { + 'BaseType' => '9348435', + 'Name' => 'log4cxx::helpers::DateTimeDateFormat*const', + 'Size' => '8', + 'Type' => 'Const' }, - '9084522' => { - 'BaseType' => '9082073', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter const*', + '9348530' => { + 'BaseType' => '5648110', + 'Name' => 'log4cxx::helpers::SimpleDateFormat*', 'Size' => '8', 'Type' => 'Pointer' }, - '9084528' => { - 'BaseType' => '9084522', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter const*const', + '9348535' => { + 'BaseType' => '9348530', + 'Name' => 'log4cxx::helpers::SimpleDateFormat*const', 'Size' => '8', 'Type' => 'Const' }, - '9084940' => { - 'BaseType' => '9081283', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter*', + '9348651' => { + 'BaseType' => '9330870', + 'Name' => 'log4cxx::helpers::StrftimeDateFormat*', 'Size' => '8', 'Type' => 'Pointer' }, - '9084946' => { - 'BaseType' => '9084940', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter*const', + '9348656' => { + 'BaseType' => '9348651', + 'Name' => 'log4cxx::helpers::StrftimeDateFormat*const', 'Size' => '8', 'Type' => 'Const' }, - '9084951' => { - 'BaseType' => '9081441', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter const*', + '9348701' => { + 'BaseType' => '9216437', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '9348971' => { + 'BaseType' => '9220927', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '9349016' => { + 'BaseType' => '9334866', + 'Name' => 'log4cxx::pattern::DatePatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '9084957' => { - 'BaseType' => '9084951', - 'Name' => 'log4cxx::pattern::LiteralPatternConverter::ClazzLiteralPatternConverter const*const', + '9349021' => { + 'BaseType' => '9349016', + 'Name' => 'log4cxx::pattern::DatePatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '9207019' => { - 'Copied' => 1, - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'TParam' => { - '0' => { - 'type' => '9226738' - } - }, - 'Type' => 'Class' + '9349166' => { + 'BaseType' => '9226042', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '9207024' => { - 'Copied' => 1, - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'TParam' => { - '0' => { - 'type' => '9233156' - } - }, - 'Type' => 'Class' + '9350583' => { + 'BaseType' => '9330865', + 'Name' => 'log4cxx::helpers::SimpleDateFormat const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '9207029' => { - 'Copied' => 1, - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'TParam' => { - '0' => { - 'type' => '9233901' - } - }, - 'Type' => 'Class' + '9350728' => { + 'BaseType' => '9330912', + 'Name' => 'log4cxx::helpers::StrftimeDateFormat const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '9207034' => { - 'Copied' => 1, - 'Name' => 'std::shared_ptr', - 'NameSpace' => 'std', - 'TParam' => { - '0' => { - 'type' => '9232366' - } - }, - 'Type' => 'Class' + '9351018' => { + 'BaseType' => '9335683', + 'Name' => 'log4cxx::pattern::DatePatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '9226660' => { - 'Copied' => 1, - 'Header' => 'loader.h', - 'Line' => '33', - 'Name' => 'log4cxx::helpers::Loader', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '1', - 'Type' => 'Class' + '9351023' => { + 'BaseType' => '9351018', + 'Name' => 'log4cxx::pattern::DatePatternConverter const*const', + 'Size' => '8', + 'Type' => 'Const' }, - '9226738' => { - 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Copied' => 1, - 'Header' => 'xml.h', - 'Line' => '50', - 'Name' => 'log4cxx::helpers::XMLDOMNode', - 'NameSpace' => 'log4cxx::helpers', + '9351288' => { + 'BaseType' => '9336146', + 'Name' => 'log4cxx::pattern::OptionsList const&', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) __cxa_pure_virtual', - '112' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMNode) [_ZTIN7log4cxx7helpers10XMLDOMNodeE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::helpers::XMLDOMNode::getClass() const [_ZNK7log4cxx7helpers10XMLDOMNode8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' - } + 'Type' => 'Ref' }, - '9226755' => { - 'Header' => 'xml.h', - 'Line' => '54', - 'Memb' => { - '0' => { - 'name' => 'NOT_IMPLEMENTED_NODE', - 'value' => '0' - }, - '1' => { - 'name' => 'ELEMENT_NODE', - 'value' => '1' - }, - '2' => { - 'name' => 'DOCUMENT_NODE', - 'value' => '9' - } - }, - 'Name' => 'enum log4cxx::helpers::XMLDOMNode::XMLDOMNodeType', - 'NameSpace' => 'log4cxx::helpers::XMLDOMNode', - 'Size' => '4', - 'Type' => 'Enum' + '9351303' => { + 'BaseType' => '9334155', + 'Name' => 'log4cxx::helpers::DatePtr const&', + 'Size' => '8', + 'Type' => 'Ref' }, - '9226794' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'xml.h', - 'Line' => '53', - 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode', - 'NameSpace' => 'log4cxx::helpers::XMLDOMNode', + '9351662' => { + 'BaseType' => '9334884', + 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode::~ClazzXMLDOMNode() [_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode::~ClazzXMLDOMNode() [_ZN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNode7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode) [_ZTIN7log4cxx7helpers10XMLDOMNode15ClazzXMLDOMNodeE]' - } + 'Type' => 'Pointer' }, - '9226948' => { - 'BaseType' => '9226794', - 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode const', + '9351667' => { + 'BaseType' => '9351662', + 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter*const', 'Size' => '8', 'Type' => 'Const' }, - '9227195' => { - 'BaseType' => '9226738', - 'Name' => 'log4cxx::helpers::XMLDOMNode const', + '9351672' => { + 'BaseType' => '9335032', + 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '9351677' => { + 'BaseType' => '9351672', + 'Name' => 'log4cxx::pattern::DatePatternConverter::ClazzDatePatternConverter const*const', 'Size' => '8', 'Type' => 'Const' }, - '9227210' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '939677' => { + 'BaseType' => '558569', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl const', + 'Size' => '16', + 'Type' => 'Const' + }, + '942891' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', + 'Size' => '8', + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '558583' + } + }, + 'Type' => 'Class' + }, + '945316' => { + 'BaseType' => '566027', + 'Name' => 'log4cxx::spi::AppenderAttachable const', + 'Type' => 'Const' + }, + '946544' => { + 'BaseType' => '874087', + 'Header' => 'appender.h', + 'Line' => '133', + 'Name' => 'log4cxx::AppenderList', + 'NameSpace' => 'log4cxx', + 'Size' => '24', + 'Type' => 'Typedef' + }, + '946694' => { + 'BaseType' => '871963', + 'Header' => 'appender.h', + 'Line' => '132', + 'Name' => 'log4cxx::AppenderPtr', + 'NameSpace' => 'log4cxx', + 'Size' => '16', + 'Type' => 'Typedef' + }, + '946706' => { + 'BaseType' => '946694', + 'Name' => 'log4cxx::AppenderPtr const', + 'Size' => '16', + 'Type' => 'Const' + }, + '954606' => { + 'BaseType' => '942891', + 'Name' => 'log4cxx::helpers::WideLife*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '954611' => { + 'BaseType' => '954606', + 'Name' => 'log4cxx::helpers::WideLife*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '954717' => { + 'BaseType' => '871963', + 'Name' => 'std::shared_ptr*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '954903' => { + 'BaseType' => '877293', + 'Name' => 'std::vector >const&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '954983' => { + 'BaseType' => '878187', + 'Name' => 'std::__shared_ptr::element_type*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '955003' => { + 'BaseType' => '872280', + 'Name' => 'std::shared_ptrconst&', + 'Size' => '8', + 'Type' => 'Ref' + }, + '955078' => { + 'BaseType' => '567947', + 'Name' => 'log4cxx::Appender*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '955413' => { + 'BaseType' => '558569', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '955418' => { + 'BaseType' => '955413', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '955433' => { + 'BaseType' => '939677', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '955438' => { + 'BaseType' => '955433', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '955543' => { + 'BaseType' => '576818', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '955553' => { + 'BaseType' => '576823', + 'Name' => 'log4cxx::helpers::AppenderAttachableImpl::ClazzAppenderAttachableImpl const*const', + 'Size' => '8', + 'Type' => 'Const' + }, + '956706' => { + 'BaseType' => '945316', + 'Name' => 'log4cxx::spi::AppenderAttachable const*', + 'Size' => '8', + 'Type' => 'Pointer' + }, + '95718' => { + 'Copied' => 1, + 'Header' => 'locale_classes.h', + 'Line' => '62', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_impl', + 'offset' => '0', + 'type' => '203516' + } + }, + 'Name' => 'std::locale', + 'NameSpace' => 'std', + 'Size' => '8', + 'Type' => 'Class' + }, + '96341' => { + 'Copied' => 1, + 'Header' => 'locale_classes.h', + 'Line' => '524', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '0', + 'type' => '200752' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_facets', + 'offset' => '8', + 'type' => '203563' + }, + '2' => { + 'access' => 'private', + 'name' => '_M_facets_size', + 'offset' => '22', + 'type' => '3463' + }, + '3' => { + 'access' => 'private', + 'name' => '_M_caches', + 'offset' => '36', + 'type' => '203563' + }, + '4' => { + 'access' => 'private', + 'name' => '_M_names', + 'offset' => '50', + 'type' => '198884' + } + }, + 'Name' => 'std::locale::_Impl', + 'NameSpace' => 'std::locale', + 'Size' => '40', + 'Type' => 'Class' + }, + '97496' => { + 'Copied' => 1, + 'Name' => 'std::locale::facet', + 'NameSpace' => 'std::locale', + 'Private' => 1, + 'Type' => 'Class' + }, + '97501' => { + 'BaseType' => '97496', + 'Name' => 'std::locale::facet const', + 'Type' => 'Const' + }, + '97507' => { + 'BaseType' => '95718', + 'Name' => 'std::locale const', + 'Size' => '8', + 'Type' => 'Const' + }, + '9811909' => { + 'Base' => { + '9852535' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Copied' => 1, + 'Header' => 'shared_ptr.h', + 'Line' => '122', + 'Name' => 'std::shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9227583' + 'key' => '_Tp', + 'type' => '3121054' } }, 'Type' => 'Class' }, - '9227583' => { + '9812279' => { 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'object.h', - 'Line' => '112', - 'Name' => 'log4cxx::helpers::Object::ClazzObject', - 'NameSpace' => 'log4cxx::helpers::Object', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::Object::ClazzObject::~ClazzObject() [_ZN7log4cxx7helpers6Object11ClazzObjectD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::Object::ClazzObject::~ClazzObject() [_ZN7log4cxx7helpers6Object11ClazzObjectD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::Object::ClazzObject::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers6Object11ClazzObject7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::Object::ClazzObject) [_ZTIN7log4cxx7helpers6Object11ClazzObjectE]' - } - }, - '9227737' => { - 'BaseType' => '9227583', - 'Name' => 'log4cxx::helpers::Object::ClazzObject const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9228450' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '9918790' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator >', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9235134' + 'type' => '9811909' } }, 'Type' => 'Class' }, - '9228806' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '9812568' => { + 'Copied' => 1, + 'Header' => 'alloc_traits.h', + 'Line' => '411', + 'Name' => 'struct std::allocator_traits > >', + 'NameSpace' => 'std', + 'Size' => '1', + 'TParam' => { + '0' => { + 'type' => '9812279' + } + }, + 'Type' => 'Struct' + }, + '9812582' => { + 'BaseType' => '9974497', + 'Header' => 'alloc_traits.h', + 'Line' => '420', + 'Name' => 'std::allocator_traits > >::pointer', + 'NameSpace' => 'std::allocator_traits > >', + 'Size' => '8', + 'Type' => 'Typedef' + }, + '9813059' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '84', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_impl', 'offset' => '0', - 'type' => '55091' + 'type' => '9813258' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Name' => 'struct std::_Vector_base, std::allocator > >', + 'NameSpace' => 'std', + 'Size' => '24', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9235603' + 'key' => '_Tp', + 'type' => '9811909' + }, + '1' => { + 'key' => '_Alloc', + 'type' => '9812279' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '9229162' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '9813072' => { + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '91', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_start', 'offset' => '0', - 'type' => '55091' + 'type' => '9813246' + }, + '1' => { + 'name' => '_M_finish', + 'offset' => '8', + 'type' => '9813246' + }, + '2' => { + 'name' => '_M_end_of_storage', + 'offset' => '22', + 'type' => '9813246' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl_data', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '9813246' => { + 'BaseType' => '9919262', + 'Header' => 'stl_vector.h', + 'Line' => '89', + 'Name' => 'std::_Vector_base, std::allocator > >::pointer', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', 'Size' => '8', + 'Type' => 'Typedef' + }, + '9813258' => { + 'Base' => { + '9812279' => { + 'pos' => '0' + }, + '9813072' => { + 'pos' => '1' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '128', + 'Name' => 'struct std::_Vector_base, std::allocator > >::_Vector_impl', + 'NameSpace' => 'std::_Vector_base, std::allocator > >', + 'Size' => '24', + 'Type' => 'Struct' + }, + '9814083' => { + 'Base' => { + '9813059' => { + 'access' => 'protected', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_vector.h', + 'Line' => '389', + 'Name' => 'std::vector >', + 'NameSpace' => 'std', + 'Size' => '24', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9240830' + 'key' => '_Tp', + 'type' => '9811909' } }, 'Type' => 'Class' }, - '9229518' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '9818364' => { + 'Base' => { + '9828977' => { + 'access' => 'private', + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '211', 'Memb' => { '0' => { - 'access' => 'private', - 'name' => 'storage', + 'name' => 'first', 'offset' => '0', - 'type' => '55091' + 'type' => '58800' + }, + '1' => { + 'name' => 'second', + 'offset' => '50', + 'type' => '9825618' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Name' => 'struct std::pairconst, std::function(std::vector >const&)> >', + 'NameSpace' => 'std', + 'Size' => '64', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9234795' + 'key' => '_T1', + 'type' => '58800' + }, + '1' => { + 'key' => '_T2', + 'type' => '9825618' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '9229874' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '9818722' => { + 'Base' => { + '9920028' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Copied' => 1, + 'Header' => 'allocator.h', + 'Line' => '124', + 'Name' => 'std::allocator, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> > >', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9236265' + 'name' => 'std::pair, std::allocator >, std::function(const std::vector, std::allocator >, std::allocator, std::allocator > > >&)> >' } }, 'Type' => 'Class' }, - '9230230' => { - 'Header' => 'widelife.h', - 'Line' => '36', + '9825618' => { + 'Base' => { + '458046' => { + 'pos' => '1' + }, + '9829194' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'std_function.h', + 'Line' => '334', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' + 'name' => '_M_invoker', + 'offset' => '36', + 'type' => '9826015' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Name' => 'std::function(std::vector >const&)>', + 'NameSpace' => 'std', + 'Size' => '32', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9236890' + 'key' => '_Signature', + 'type' => '9975180' } }, 'Type' => 'Class' }, - '9230586' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '9826015' => { + 'BaseType' => '9975139', + 'Header' => 'std_function.h', + 'Line' => '666', + 'Name' => 'std::function(std::vector >const&)>::_Invoker_type', + 'NameSpace' => 'std::function(std::vector >const&)>', + 'Private' => 1, 'Size' => '8', + 'Type' => 'Typedef' + }, + '9828977' => { + 'Copied' => 1, + 'Header' => 'stl_pair.h', + 'Line' => '189', + 'Name' => 'std::__pair_baseconst, std::function(std::vector >const&)> >', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9237247' + 'key' => '_U1', + 'type' => '58800' + }, + '1' => { + 'key' => '_U2', + 'type' => '9825618' } }, 'Type' => 'Class' }, - '9230942' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + '9829138' => { + 'Header' => 'stl_function.h', + 'Line' => '117', + 'Name' => 'struct std::unary_function >const&, std::shared_ptr >', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9239967' + 'key' => '_Arg', + 'type' => '6085700' + }, + '1' => { + 'key' => '_Result', + 'type' => '2974326' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '9231298' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } + '9829194' => { + 'Base' => { + '9829138' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Header' => 'refwrap.h', + 'Line' => '59', + 'Name' => 'struct std::_Maybe_unary_or_binary_function, std::vector >const&>', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9238293' + 'key' => '_Res', + 'type' => '2974326' + }, + '1' => { + 'key' => undef, + 'type' => '6085700' } }, - 'Type' => 'Class' + 'Type' => 'Struct' }, - '9231654' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + '9852350' => { + 'Copied' => 1, + 'Header' => 'shared_ptr_base.h', + 'Line' => '971', + 'Name' => 'std::__shared_ptr_access', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9226794' + 'key' => '_Tp', + 'type' => '3121054' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '9232010' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + '9852498' => { + 'Header' => 'type_traits', + 'Line' => '1981', + 'Name' => 'struct std::remove_extent', + 'NameSpace' => 'std', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9232383' + 'key' => '_Tp', + 'type' => '3121054' } }, - 'Type' => 'Class' + 'Type' => 'Struct' + }, + '9852512' => { + 'BaseType' => '3121054', + 'Header' => 'type_traits', + 'Line' => '1982', + 'Name' => 'std::remove_extent::type', + 'NameSpace' => 'std::remove_extent', + 'Type' => 'Typedef' }, - '9232366' => { + '9852535' => { 'Base' => { - '9226738' => { - 'pos' => '0', - 'virtual' => 1 + '9852350' => { + 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'xml.h', - 'Line' => '86', - 'Name' => 'log4cxx::helpers::XMLDOMDocument', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::helpers::XMLDOMDocument::getClass() const [_ZNK7log4cxx7helpers14XMLDOMDocument8getClassEv]', - '112' => '(int (*)(...)) __cxa_pure_virtual', - '120' => '(int (*)(...)) __cxa_pure_virtual', - '128' => '(int (*)(...)) __cxa_pure_virtual', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '144' => '(int (*)(...)) __cxa_pure_virtual', - '152' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '160' => '(int (*)(...)) __cxa_pure_virtual', - '168' => '(int (*)(...)) __cxa_pure_virtual', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMDocument) [_ZTIN7log4cxx7helpers14XMLDOMDocumentE]', - '88' => '0u', - '96' => '0u' - } - }, - '9232383' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'xml.h', - 'Line' => '89', - 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument', - 'NameSpace' => 'log4cxx::helpers::XMLDOMDocument', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument::~ClazzXMLDOMDocument() [_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument::~ClazzXMLDOMDocument() [_ZN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocument7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument) [_ZTIN7log4cxx7helpers14XMLDOMDocument19ClazzXMLDOMDocumentE]' - } - }, - '9232537' => { - 'BaseType' => '9232383', - 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9232795' => { - 'BaseType' => '9232366', - 'Name' => 'log4cxx::helpers::XMLDOMDocument const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9232800' => { - 'Header' => 'widelife.h', - 'Line' => '36', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1052', 'Memb' => { '0' => { 'access' => 'private', - 'name' => 'storage', + 'name' => '_M_ptr', 'offset' => '0', - 'type' => '55091' + 'type' => '9976044' + }, + '1' => { + 'access' => 'private', + 'name' => '_M_refcount', + 'offset' => '8', + 'type' => '428177' } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Name' => 'std::__shared_ptr', + 'NameSpace' => 'std', + 'Size' => '16', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9233173' + 'key' => '_Tp', + 'type' => '3121054' + }, + '1' => { + 'key' => '_Lp', + 'type' => '188587', + 'val' => '2' } }, 'Type' => 'Class' }, - '9233156' => { - 'Base' => { - '9226738' => { - 'pos' => '0', - 'virtual' => 1 - } - }, - 'Copied' => 1, - 'Header' => 'xml.h', - 'Line' => '71', - 'Name' => 'log4cxx::helpers::XMLDOMElement', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::helpers::XMLDOMElement::getClass() const [_ZNK7log4cxx7helpers13XMLDOMElement8getClassEv]', - '112' => '(int (*)(...)) __cxa_pure_virtual', - '120' => '(int (*)(...)) __cxa_pure_virtual', - '128' => '(int (*)(...)) __cxa_pure_virtual', - '136' => '(int (*)(...)) __cxa_pure_virtual', - '144' => '(int (*)(...)) __cxa_pure_virtual', - '152' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '160' => '(int (*)(...)) __cxa_pure_virtual', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '0u', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMElement) [_ZTIN7log4cxx7helpers13XMLDOMElementE]', - '88' => '0u', - '96' => '0u' - } - }, - '9233173' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'xml.h', - 'Line' => '74', - 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement', - 'NameSpace' => 'log4cxx::helpers::XMLDOMElement', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement::~ClazzXMLDOMElement() [_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement::~ClazzXMLDOMElement() [_ZN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElement7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement) [_ZTIN7log4cxx7helpers13XMLDOMElement18ClazzXMLDOMElementE]' - } - }, - '9233327' => { - 'BaseType' => '9233173', - 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9233540' => { - 'BaseType' => '9233156', - 'Name' => 'log4cxx::helpers::XMLDOMElement const', - 'Size' => '8', - 'Type' => 'Const' + '9852816' => { + 'BaseType' => '9852512', + 'Header' => 'shared_ptr_base.h', + 'Line' => '1056', + 'Name' => 'std::__shared_ptr::element_type', + 'NameSpace' => 'std::__shared_ptr', + 'Type' => 'Typedef' }, - '9233545' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + '9918790' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocator >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9233918' + 'key' => '_Tp', + 'type' => '9811909' } }, 'Type' => 'Class' }, - '9233901' => { + '9919037' => { 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } + '9812568' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'xml.h', - 'Line' => '107', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) __cxa_pure_virtual', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMNodeList) [_ZTIN7log4cxx7helpers14XMLDOMNodeListE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::helpers::XMLDOMNodeList::getClass() const [_ZNK7log4cxx7helpers14XMLDOMNodeList8getClassEv]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' - } - }, - '9233918' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'xml.h', - 'Line' => '110', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList', - 'NameSpace' => 'log4cxx::helpers::XMLDOMNodeList', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList::~ClazzXMLDOMNodeList() [_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD1Ev]', - '24' => '(int (*)(...)) log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList::~ClazzXMLDOMNodeList() [_ZN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList::getName[abi:cxx11]() const [_ZNK7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeList7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList) [_ZTIN7log4cxx7helpers14XMLDOMNodeList19ClazzXMLDOMNodeListE]' - } - }, - '9234072' => { - 'BaseType' => '9233918', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9234285' => { - 'BaseType' => '9233901', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9234290' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', + 'Header' => 'alloc_traits.h', + 'Line' => '48', + 'Name' => 'struct __gnu_cxx::__alloc_traits > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', 'TParam' => { '0' => { - 'key' => 'T', - 'type' => '9238640' + 'key' => '_Alloc', + 'type' => '9812279' } }, - 'Type' => 'Class' - }, - '9234651' => { - 'BaseType' => '9207019', - 'Header' => 'xml.h', - 'Line' => '65', - 'Name' => 'log4cxx::helpers::XMLDOMNodePtr', - 'NameSpace' => 'log4cxx::helpers', - 'Type' => 'Typedef' - }, - '9234663' => { - 'BaseType' => '9207024', - 'Header' => 'xml.h', - 'Line' => '78', - 'Name' => 'log4cxx::helpers::XMLDOMElementPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Type' => 'Typedef' - }, - '9234675' => { - 'BaseType' => '9207029', - 'Header' => 'xml.h', - 'Line' => '114', - 'Name' => 'log4cxx::helpers::XMLDOMNodeListPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Type' => 'Typedef' - }, - '9234687' => { - 'BaseType' => '9207034', - 'Header' => 'xml.h', - 'Line' => '95', - 'Name' => 'log4cxx::helpers::XMLDOMDocumentPtr', - 'NameSpace' => 'log4cxx::helpers', - 'Type' => 'Typedef' - }, - '9234795' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'filter.h', - 'Line' => '77', - 'Name' => 'log4cxx::spi::Filter::ClazzFilter', - 'NameSpace' => 'log4cxx::spi::Filter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::Filter::ClazzFilter::~ClazzFilter() [_ZN7log4cxx3spi6Filter11ClazzFilterD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::Filter::ClazzFilter::~ClazzFilter() [_ZN7log4cxx3spi6Filter11ClazzFilterD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::Filter::ClazzFilter::getName[abi:cxx11]() const [_ZNK7log4cxx3spi6Filter11ClazzFilter7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::Filter::ClazzFilter) [_ZTIN7log4cxx3spi6Filter11ClazzFilterE]' - } - }, - '9234949' => { - 'BaseType' => '9234795', - 'Name' => 'log4cxx::spi::Filter::ClazzFilter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9235134' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'optionhandler.h', - 'Line' => '37', - 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler', - 'NameSpace' => 'log4cxx::spi::OptionHandler', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::OptionHandler::ClazzOptionHandler::~ClazzOptionHandler() [_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::OptionHandler::ClazzOptionHandler::~ClazzOptionHandler() [_ZN7log4cxx3spi13OptionHandler18ClazzOptionHandlerD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::OptionHandler::ClazzOptionHandler::getName[abi:cxx11]() const [_ZNK7log4cxx3spi13OptionHandler18ClazzOptionHandler7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::OptionHandler::ClazzOptionHandler) [_ZTIN7log4cxx3spi13OptionHandler18ClazzOptionHandlerE]' - } - }, - '9235288' => { - 'BaseType' => '9235134', - 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9235581' => { - 'BaseType' => '151305', - 'Name' => 'log4cxx::spi::OptionHandler const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9235603' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'errorhandler.h', - 'Line' => '61', - 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler', - 'NameSpace' => 'log4cxx::spi::ErrorHandler', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::ErrorHandler::ClazzErrorHandler::~ClazzErrorHandler() [_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::ErrorHandler::ClazzErrorHandler::~ClazzErrorHandler() [_ZN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::ErrorHandler::ClazzErrorHandler::getName[abi:cxx11]() const [_ZNK7log4cxx3spi12ErrorHandler17ClazzErrorHandler7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::ErrorHandler::ClazzErrorHandler) [_ZTIN7log4cxx3spi12ErrorHandler17ClazzErrorHandlerE]' - } - }, - '9235757' => { - 'BaseType' => '9235603', - 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9236265' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'appenderattachable.h', - 'Line' => '37', - 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable', - 'NameSpace' => 'log4cxx::spi::AppenderAttachable', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable::~ClazzAppenderAttachable() [_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable::~ClazzAppenderAttachable() [_ZN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable::getName[abi:cxx11]() const [_ZNK7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachable7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable) [_ZTIN7log4cxx3spi18AppenderAttachable23ClazzAppenderAttachableE]' - } - }, - '9236419' => { - 'BaseType' => '9236265', - 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9236868' => { - 'BaseType' => '262822', - 'Name' => 'log4cxx::spi::AppenderAttachable const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9236890' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'loggerfactory.h', - 'Line' => '35', - 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory', - 'NameSpace' => 'log4cxx::spi::LoggerFactory', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::LoggerFactory::ClazzLoggerFactory::~ClazzLoggerFactory() [_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::LoggerFactory::ClazzLoggerFactory::~ClazzLoggerFactory() [_ZN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::LoggerFactory::ClazzLoggerFactory::getName[abi:cxx11]() const [_ZNK7log4cxx3spi13LoggerFactory18ClazzLoggerFactory7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggerFactory::ClazzLoggerFactory) [_ZTIN7log4cxx3spi13LoggerFactory18ClazzLoggerFactoryE]' - } - }, - '9237044' => { - 'BaseType' => '9236890', - 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9237225' => { - 'BaseType' => '4199656', - 'Name' => 'log4cxx::spi::LoggerFactory const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9237247' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'loggerrepository.h', - 'Line' => '45', - 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository', - 'NameSpace' => 'log4cxx::spi::LoggerRepository', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::LoggerRepository::ClazzLoggerRepository::~ClazzLoggerRepository() [_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::LoggerRepository::ClazzLoggerRepository::~ClazzLoggerRepository() [_ZN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::LoggerRepository::ClazzLoggerRepository::getName[abi:cxx11]() const [_ZNK7log4cxx3spi16LoggerRepository21ClazzLoggerRepository7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::LoggerRepository::ClazzLoggerRepository) [_ZTIN7log4cxx3spi16LoggerRepository21ClazzLoggerRepositoryE]' - } - }, - '9237401' => { - 'BaseType' => '9237247', - 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9238271' => { - 'BaseType' => '1149751', - 'Name' => 'log4cxx::spi::LoggerRepository const', - 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Struct' }, - '9238293' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'repositoryselector.h', - 'Line' => '45', - 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector', - 'NameSpace' => 'log4cxx::spi::RepositorySelector', + '9919262' => { + 'BaseType' => '9812582', + 'Header' => 'alloc_traits.h', + 'Line' => '57', + 'Name' => '__gnu_cxx::__alloc_traits > >::pointer', + 'NameSpace' => '__gnu_cxx::__alloc_traits > >', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::RepositorySelector::ClazzRepositorySelector::~ClazzRepositorySelector() [_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::RepositorySelector::ClazzRepositorySelector::~ClazzRepositorySelector() [_ZN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::RepositorySelector::ClazzRepositorySelector::getName[abi:cxx11]() const [_ZNK7log4cxx3spi18RepositorySelector23ClazzRepositorySelector7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::RepositorySelector::ClazzRepositorySelector) [_ZTIN7log4cxx3spi18RepositorySelector23ClazzRepositorySelectorE]' - } + 'Type' => 'Typedef' }, - '9238447' => { - 'BaseType' => '9238293', - 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector const', - 'Size' => '8', - 'Type' => 'Const' + '9920028' => { + 'Copied' => 1, + 'Header' => 'new_allocator.h', + 'Line' => '55', + 'Name' => '__gnu_cxx::new_allocatorconst, std::function(std::vector >const&)> > >', + 'NameSpace' => '__gnu_cxx', + 'Size' => '1', + 'TParam' => { + '0' => { + 'key' => '_Tp', + 'type' => '9818364' + } + }, + 'Type' => 'Class' }, - '9238618' => { - 'BaseType' => '4279770', - 'Name' => 'log4cxx::spi::RepositorySelector const', + '9947519' => { + 'Header' => 'widelife.h', + 'Line' => '36', + 'Memb' => { + '0' => { + 'access' => 'private', + 'name' => 'storage', + 'offset' => '0', + 'type' => '197961' + } + }, + 'Name' => 'log4cxx::helpers::WideLife', + 'NameSpace' => 'log4cxx::helpers', 'Size' => '8', - 'Type' => 'Const' + 'TParam' => { + '0' => { + 'key' => 'T', + 'type' => '9956878' + } + }, + 'Type' => 'Class' }, - '9238623' => { + '9953745' => { 'Base' => { - '63470' => { - 'pos' => '0', - 'virtual' => 1 - } + '6074647' => { + 'pos' => '0' + } }, 'Copied' => 1, - 'Header' => 'triggeringeventevaluator.h', - 'Line' => '37', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator', - 'NameSpace' => 'log4cxx::spi', - 'Size' => '8', + 'Header' => 'loggerpatternconverter.h', + 'Line' => '36', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern22LoggerPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', '16' => '0u', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '(int (*)(...)) (& typeinfo for log4cxx::spi::TriggeringEventEvaluator) [_ZTIN7log4cxx3spi24TriggeringEventEvaluatorE]', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) log4cxx::spi::TriggeringEventEvaluator::getClass() const [_ZNK7log4cxx3spi24TriggeringEventEvaluator8getClassEv]', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LoggerPatternConverter) [_ZTIN7log4cxx7pattern22LoggerPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::~LoggerPatternConverter() [_ZN7log4cxx7pattern22LoggerPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::~LoggerPatternConverter() [_ZN7log4cxx7pattern22LoggerPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::getClass() const [_ZNK7log4cxx7pattern22LoggerPatternConverter8getClassEv]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) __cxa_pure_virtual', - '88' => '(int (*)(...)) __cxa_pure_virtual', - '96' => '(int (*)(...)) __cxa_pure_virtual' + '80' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern22LoggerPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern22LoggerPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '9238640' => { + '9953770' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'triggeringeventevaluator.h', - 'Line' => '40', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator', - 'NameSpace' => 'log4cxx::spi::TriggeringEventEvaluator', + 'Header' => 'loggerpatternconverter.h', + 'Line' => '39', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter', + 'NameSpace' => 'log4cxx::pattern::LoggerPatternConverter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator::~ClazzTriggeringEventEvaluator() [_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD1Ev]', - '24' => '(int (*)(...)) log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator::~ClazzTriggeringEventEvaluator() [_ZN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorD0Ev]', + '16' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter::~ClazzLoggerPatternConverter() [_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter::~ClazzLoggerPatternConverter() [_ZN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator::getName[abi:cxx11]() const [_ZNK7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluator7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator) [_ZTIN7log4cxx3spi24TriggeringEventEvaluator29ClazzTriggeringEventEvaluatorE]' + '40' => '(int (*)(...)) log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter) [_ZTIN7log4cxx7pattern22LoggerPatternConverter27ClazzLoggerPatternConverterE]' } }, - '9238794' => { - 'BaseType' => '9238640', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9238968' => { - 'BaseType' => '9238623', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator const', + '9953888' => { + 'BaseType' => '9953770', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '9239950' => { + '9954387' => { 'Base' => { - '150952' => { - 'pos' => '0' - } + '3121054' => { + 'pos' => '0' + } }, - 'Header' => 'denyallfilter.h', + 'Copied' => 1, + 'Header' => 'filelocationpatternconverter.h', 'Line' => '35', - 'Name' => 'log4cxx::filter::DenyAllFilter', - 'NameSpace' => 'log4cxx::filter', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter13DenyAllFilter10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter13DenyAllFilter4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::spi::Filter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx3spi6Filter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter13DenyAllFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28FileLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', '16' => '0u', '24' => '0u', '32' => '0u', '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::DenyAllFilter) [_ZTIN7log4cxx6filter13DenyAllFilterE]', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FileLocationPatternConverter) [_ZTIN7log4cxx7pattern28FileLocationPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::~FileLocationPatternConverter() [_ZN7log4cxx7pattern28FileLocationPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::~FileLocationPatternConverter() [_ZN7log4cxx7pattern28FileLocationPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern28FileLocationPatternConverter8getClassEv]', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::~DenyAllFilter() [_ZN7log4cxx6filter13DenyAllFilterD1Ev]', - '88' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::~DenyAllFilter() [_ZN7log4cxx6filter13DenyAllFilterD0Ev]', - '96' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::getClass() const [_ZNK7log4cxx6filter13DenyAllFilter8getClassEv]' - } - }, - '9239967' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'denyallfilter.h', - 'Line' => '43', - 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter', - 'NameSpace' => 'log4cxx::filter::DenyAllFilter', - 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::~ClazzDenyAllFilter() [_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD2Ev]', - '24' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::~ClazzDenyAllFilter() [_ZN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter::newInstance() const [_ZNK7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilter11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter) [_ZTIN7log4cxx6filter13DenyAllFilter18ClazzDenyAllFilterE]' + '80' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28FileLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28FileLocationPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' } }, - '9240185' => { - 'BaseType' => '9239967', - 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9240554' => { - 'BaseType' => '9239950', - 'Name' => 'log4cxx::filter::DenyAllFilter const', - 'Size' => '16', - 'Type' => 'Const' - }, - '9240830' => { + '9954412' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'appender.h', - 'Line' => '53', - 'Name' => 'log4cxx::Appender::ClazzAppender', - 'NameSpace' => 'log4cxx::Appender', + 'Header' => 'filelocationpatternconverter.h', + 'Line' => '39', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern::FileLocationPatternConverter', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::Appender::ClazzAppender::~ClazzAppender() [_ZN7log4cxx8Appender13ClazzAppenderD1Ev]', - '24' => '(int (*)(...)) log4cxx::Appender::ClazzAppender::~ClazzAppender() [_ZN7log4cxx8Appender13ClazzAppenderD0Ev]', + '16' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter::~ClazzFileLocationPatternConverter() [_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter::~ClazzFileLocationPatternConverter() [_ZN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterD0Ev]', '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::Appender::ClazzAppender::getName[abi:cxx11]() const [_ZNK7log4cxx8Appender13ClazzAppender7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::Appender::ClazzAppender) [_ZTIN7log4cxx8Appender13ClazzAppenderE]' - } - }, - '9240984' => { - 'BaseType' => '9240830', - 'Name' => 'log4cxx::Appender::ClazzAppender const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243140' => { - 'BaseType' => '9227210', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243146' => { - 'BaseType' => '9243140', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243247' => { - 'BaseType' => '9228450', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243253' => { - 'BaseType' => '9243247', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243309' => { - 'BaseType' => '9228806', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243315' => { - 'BaseType' => '9243309', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243371' => { - 'BaseType' => '9229162', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243377' => { - 'BaseType' => '9243371', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243433' => { - 'BaseType' => '9229518', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243439' => { - 'BaseType' => '9243433', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243495' => { - 'BaseType' => '9229874', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243501' => { - 'BaseType' => '9243495', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243557' => { - 'BaseType' => '9230230', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243563' => { - 'BaseType' => '9243557', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243619' => { - 'BaseType' => '9230586', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243625' => { - 'BaseType' => '9243619', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243681' => { - 'BaseType' => '9230942', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243687' => { - 'BaseType' => '9243681', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243743' => { - 'BaseType' => '9231298', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243749' => { - 'BaseType' => '9243743', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243805' => { - 'BaseType' => '9231654', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243811' => { - 'BaseType' => '9243805', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243867' => { - 'BaseType' => '9232010', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243873' => { - 'BaseType' => '9243867', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243929' => { - 'BaseType' => '9232800', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243935' => { - 'BaseType' => '9243929', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9243991' => { - 'BaseType' => '9233545', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9243997' => { - 'BaseType' => '9243991', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244053' => { - 'BaseType' => '9234290', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244059' => { - 'BaseType' => '9244053', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244753' => { - 'BaseType' => '9238968', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244759' => { - 'BaseType' => '9244753', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244764' => { - 'BaseType' => '9238623', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244787' => { - 'BaseType' => '9234285', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244793' => { - 'BaseType' => '9244787', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244798' => { - 'BaseType' => '9233901', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244804' => { - 'BaseType' => '9233540', - 'Name' => 'log4cxx::helpers::XMLDOMElement const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244810' => { - 'BaseType' => '9244804', - 'Name' => 'log4cxx::helpers::XMLDOMElement const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244815' => { - 'BaseType' => '9233156', - 'Name' => 'log4cxx::helpers::XMLDOMElement*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244821' => { - 'BaseType' => '9232795', - 'Name' => 'log4cxx::helpers::XMLDOMDocument const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244827' => { - 'BaseType' => '9244821', - 'Name' => 'log4cxx::helpers::XMLDOMDocument const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244832' => { - 'BaseType' => '9232366', - 'Name' => 'log4cxx::helpers::XMLDOMDocument*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244838' => { - 'BaseType' => '9227195', - 'Name' => 'log4cxx::helpers::XMLDOMNode const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244844' => { - 'BaseType' => '9244838', - 'Name' => 'log4cxx::helpers::XMLDOMNode const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244849' => { - 'BaseType' => '9226738', - 'Name' => 'log4cxx::helpers::XMLDOMNode*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244855' => { - 'BaseType' => '9238618', - 'Name' => 'log4cxx::spi::RepositorySelector const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244861' => { - 'BaseType' => '9244855', - 'Name' => 'log4cxx::spi::RepositorySelector const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244872' => { - 'BaseType' => '9239950', - 'Name' => 'log4cxx::filter::DenyAllFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244878' => { - 'BaseType' => '9244872', - 'Name' => 'log4cxx::filter::DenyAllFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244895' => { - 'BaseType' => '9240554', - 'Name' => 'log4cxx::filter::DenyAllFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244901' => { - 'BaseType' => '9244895', - 'Name' => 'log4cxx::filter::DenyAllFilter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244906' => { - 'BaseType' => '9238271', - 'Name' => 'log4cxx::spi::LoggerRepository const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244912' => { - 'BaseType' => '9244906', - 'Name' => 'log4cxx::spi::LoggerRepository const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244958' => { - 'BaseType' => '7074470', - 'Name' => 'log4cxx::Appender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244963' => { - 'BaseType' => '9237225', - 'Name' => 'log4cxx::spi::LoggerFactory const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9244969' => { - 'BaseType' => '9244963', - 'Name' => 'log4cxx::spi::LoggerFactory const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9244998' => { - 'BaseType' => '9236868', - 'Name' => 'log4cxx::spi::AppenderAttachable const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245004' => { - 'BaseType' => '9244998', - 'Name' => 'log4cxx::spi::AppenderAttachable const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245061' => { - 'BaseType' => '9235581', - 'Name' => 'log4cxx::spi::OptionHandler const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245067' => { - 'BaseType' => '9245061', - 'Name' => 'log4cxx::spi::OptionHandler const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245072' => { - 'BaseType' => '9238640', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245078' => { - 'BaseType' => '9245072', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245083' => { - 'BaseType' => '9238794', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245089' => { - 'BaseType' => '9245083', - 'Name' => 'log4cxx::spi::TriggeringEventEvaluator::ClazzTriggeringEventEvaluator const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245094' => { - 'BaseType' => '9233918', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245100' => { - 'BaseType' => '9245094', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245105' => { - 'BaseType' => '9234072', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245111' => { - 'BaseType' => '9245105', - 'Name' => 'log4cxx::helpers::XMLDOMNodeList::ClazzXMLDOMNodeList const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245116' => { - 'BaseType' => '9232383', - 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245122' => { - 'BaseType' => '9245116', - 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245127' => { - 'BaseType' => '9232537', - 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245133' => { - 'BaseType' => '9245127', - 'Name' => 'log4cxx::helpers::XMLDOMDocument::ClazzXMLDOMDocument const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245138' => { - 'BaseType' => '9233173', - 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245144' => { - 'BaseType' => '9245138', - 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245149' => { - 'BaseType' => '9233327', - 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245155' => { - 'BaseType' => '9245149', - 'Name' => 'log4cxx::helpers::XMLDOMElement::ClazzXMLDOMElement const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245160' => { - 'BaseType' => '9226794', - 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245166' => { - 'BaseType' => '9245160', - 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245171' => { - 'BaseType' => '9226948', - 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245177' => { - 'BaseType' => '9245171', - 'Name' => 'log4cxx::helpers::XMLDOMNode::ClazzXMLDOMNode const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245182' => { - 'BaseType' => '9238293', - 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245188' => { - 'BaseType' => '9245182', - 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245193' => { - 'BaseType' => '9238447', - 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245199' => { - 'BaseType' => '9245193', - 'Name' => 'log4cxx::spi::RepositorySelector::ClazzRepositorySelector const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245204' => { - 'BaseType' => '9239967', - 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245210' => { - 'BaseType' => '9245204', - 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245215' => { - 'BaseType' => '9240185', - 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245221' => { - 'BaseType' => '9245215', - 'Name' => 'log4cxx::filter::DenyAllFilter::ClazzDenyAllFilter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245226' => { - 'BaseType' => '9235603', - 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245232' => { - 'BaseType' => '9245226', - 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245237' => { - 'BaseType' => '9235757', - 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245243' => { - 'BaseType' => '9245237', - 'Name' => 'log4cxx::spi::ErrorHandler::ClazzErrorHandler const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245248' => { - 'BaseType' => '9234795', - 'Name' => 'log4cxx::spi::Filter::ClazzFilter*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245254' => { - 'BaseType' => '9245248', - 'Name' => 'log4cxx::spi::Filter::ClazzFilter*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245259' => { - 'BaseType' => '9234949', - 'Name' => 'log4cxx::spi::Filter::ClazzFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245265' => { - 'BaseType' => '9245259', - 'Name' => 'log4cxx::spi::Filter::ClazzFilter const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245270' => { - 'BaseType' => '9237247', - 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245276' => { - 'BaseType' => '9245270', - 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245281' => { - 'BaseType' => '9237401', - 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245287' => { - 'BaseType' => '9245281', - 'Name' => 'log4cxx::spi::LoggerRepository::ClazzLoggerRepository const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245292' => { - 'BaseType' => '9236890', - 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245298' => { - 'BaseType' => '9245292', - 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245303' => { - 'BaseType' => '9237044', - 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245309' => { - 'BaseType' => '9245303', - 'Name' => 'log4cxx::spi::LoggerFactory::ClazzLoggerFactory const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245314' => { - 'BaseType' => '9236265', - 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245320' => { - 'BaseType' => '9245314', - 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245325' => { - 'BaseType' => '9236419', - 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245331' => { - 'BaseType' => '9245325', - 'Name' => 'log4cxx::spi::AppenderAttachable::ClazzAppenderAttachable const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245336' => { - 'BaseType' => '9240830', - 'Name' => 'log4cxx::Appender::ClazzAppender*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245342' => { - 'BaseType' => '9245336', - 'Name' => 'log4cxx::Appender::ClazzAppender*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245347' => { - 'BaseType' => '9240984', - 'Name' => 'log4cxx::Appender::ClazzAppender const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245353' => { - 'BaseType' => '9245347', - 'Name' => 'log4cxx::Appender::ClazzAppender const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245358' => { - 'BaseType' => '9235134', - 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245364' => { - 'BaseType' => '9245358', - 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245369' => { - 'BaseType' => '9235288', - 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler const*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9245375' => { - 'BaseType' => '9245369', - 'Name' => 'log4cxx::spi::OptionHandler::ClazzOptionHandler const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245438' => { - 'BaseType' => '66136', - 'Name' => 'log4cxx::helpers::Object const*const', - 'Size' => '8', - 'Type' => 'Const' - }, - '9245443' => { - 'BaseType' => '9227583', - 'Name' => 'log4cxx::helpers::Object::ClazzObject*', - 'Size' => '8', - 'Type' => 'Pointer' + '40' => '(int (*)(...)) log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter) [_ZTIN7log4cxx7pattern28FileLocationPatternConverter33ClazzFileLocationPatternConverterE]' + } }, - '9245449' => { - 'BaseType' => '9245443', - 'Name' => 'log4cxx::helpers::Object::ClazzObject*const', + '9954530' => { + 'BaseType' => '9954412', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '9245454' => { - 'BaseType' => '9227737', - 'Name' => 'log4cxx::helpers::Object::ClazzObject const*', + '9954559' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'fulllocationpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28FullLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FullLocationPatternConverter) [_ZTIN7log4cxx7pattern28FullLocationPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::~FullLocationPatternConverter() [_ZN7log4cxx7pattern28FullLocationPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::~FullLocationPatternConverter() [_ZN7log4cxx7pattern28FullLocationPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern28FullLocationPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28FullLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28FullLocationPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } + }, + '9954584' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'fulllocationpatternconverter.h', + 'Line' => '39', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern::FullLocationPatternConverter', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter::~ClazzFullLocationPatternConverter() [_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter::~ClazzFullLocationPatternConverter() [_ZN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter) [_ZTIN7log4cxx7pattern28FullLocationPatternConverter33ClazzFullLocationPatternConverterE]' + } }, - '9245460' => { - 'BaseType' => '9245454', - 'Name' => 'log4cxx::helpers::Object::ClazzObject const*const', + '9954702' => { + 'BaseType' => '9954584', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '9332460' => { + '9954731' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9350786' - } - }, - 'Type' => 'Struct' + 'Header' => 'shortfilelocationpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ShortFileLocationPatternConverter) [_ZTIN7log4cxx7pattern33ShortFileLocationPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::~ShortFileLocationPatternConverter() [_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::~ShortFileLocationPatternConverter() [_ZN7log4cxx7pattern33ShortFileLocationPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } }, - '9332546' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '9334081' - } + '9954756' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + 'Header' => 'shortfilelocationpatternconverter.h', + 'Line' => '44', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern::ShortFileLocationPatternConverter', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9350786' - }, - '1' => { - 'key' => '_Dp', - 'type' => '9332460' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter::~ClazzShortFileLocationPatternConverter() [_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter::~ClazzShortFileLocationPatternConverter() [_ZN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter) [_ZTIN7log4cxx7pattern33ShortFileLocationPatternConverter38ClazzShortFileLocationPatternConverterE]' + } + }, + '9954874' => { + 'BaseType' => '9954756', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter const', + 'Size' => '8', + 'Type' => 'Const' }, - '9332869' => { + '9954903' => { 'Base' => { - '9332460' => { + '3121054' => { 'pos' => '0' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '9332460' - } - }, - 'Type' => 'Struct' + 'Header' => 'linelocationpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LineLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LineLocationPatternConverter) [_ZTIN7log4cxx7pattern28LineLocationPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::~LineLocationPatternConverter() [_ZN7log4cxx7pattern28LineLocationPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::~LineLocationPatternConverter() [_ZN7log4cxx7pattern28LineLocationPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern28LineLocationPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28LineLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern28LineLocationPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } }, - '9333122' => { + '9954928' => { 'Base' => { - '9332869' => { - 'access' => 'private', - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '9332460' - } - }, - 'Type' => 'Struct' + 'Header' => 'linelocationpatternconverter.h', + 'Line' => '39', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern::LineLocationPatternConverter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter::~ClazzLineLocationPatternConverter() [_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter::~ClazzLineLocationPatternConverter() [_ZN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter) [_ZTIN7log4cxx7pattern28LineLocationPatternConverter33ClazzLineLocationPatternConverterE]' + } }, - '9333420' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '9351340' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::helpers::Locale::LocalePrivate*>', - 'NameSpace' => 'std', + '9955046' => { + 'BaseType' => '9954928', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '9351340' - } - }, - 'Type' => 'Struct' + 'Type' => 'Const' }, - '9333680' => { + '9955075' => { 'Base' => { - '9333122' => { + '3121054' => { 'pos' => '0' - }, - '9333420' => { - 'access' => 'private', - 'pos' => '1' } }, 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::helpers::Locale::LocalePrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '9351340' - } - }, - 'Type' => 'Struct' + 'Header' => 'messagepatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::MessagePatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern23MessagePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MessagePatternConverter) [_ZTIN7log4cxx7pattern23MessagePatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::~MessagePatternConverter() [_ZN7log4cxx7pattern23MessagePatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::~MessagePatternConverter() [_ZN7log4cxx7pattern23MessagePatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::getClass() const [_ZNK7log4cxx7pattern23MessagePatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23MessagePatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern23MessagePatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } }, - '9334081' => { + '9955100' => { 'Base' => { - '9333680' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + 'Header' => 'messagepatternconverter.h', + 'Line' => '38', + 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter', + 'NameSpace' => 'log4cxx::pattern::MessagePatternConverter', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '9351340' - } - }, - 'Type' => 'Class' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter::~ClazzMessagePatternConverter() [_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter::~ClazzMessagePatternConverter() [_ZN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter) [_ZTIN7log4cxx7pattern23MessagePatternConverter28ClazzMessagePatternConverterE]' + } }, - '9334410' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '9332546' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '9955218' => { + 'BaseType' => '9955100', + 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9350786' - }, - '1' => { - 'key' => '_Dp', - 'type' => '9332460' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '9350773' => { - 'Header' => 'locale.h', - 'Line' => '28', - 'Memb' => { - '0' => { - 'access' => 'protected', - 'name' => 'm_priv', - 'offset' => '0', - 'type' => '9334410' - } + '9955247' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::Locale', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'Type' => 'Class' + 'Copied' => 1, + 'Header' => 'methodlocationpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MethodLocationPatternConverter) [_ZTIN7log4cxx7pattern30MethodLocationPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::~MethodLocationPatternConverter() [_ZN7log4cxx7pattern30MethodLocationPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::~MethodLocationPatternConverter() [_ZN7log4cxx7pattern30MethodLocationPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::getClass() const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } }, - '9350786' => { - 'Line' => '23', - 'Memb' => { - '0' => { - 'name' => 'language', - 'offset' => '0', - 'type' => '262804' - }, - '1' => { - 'name' => 'country', - 'offset' => '32', - 'type' => '262804' - }, - '2' => { - 'name' => 'variant', - 'offset' => '64', - 'type' => '262804' - } + '9955272' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } }, - 'Name' => 'struct log4cxx::helpers::Locale::LocalePrivate', - 'NameSpace' => 'log4cxx::helpers::Locale', - 'Protected' => 1, - 'Size' => '96', - 'Source' => 'locale.cpp', - 'Type' => 'Struct' + 'Header' => 'methodlocationpatternconverter.h', + 'Line' => '39', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter', + 'NameSpace' => 'log4cxx::pattern::MethodLocationPatternConverter', + 'Size' => '8', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter::~ClazzMethodLocationPatternConverter() [_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter::~ClazzMethodLocationPatternConverter() [_ZN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter) [_ZTIN7log4cxx7pattern30MethodLocationPatternConverter35ClazzMethodLocationPatternConverterE]' + } }, - '9351293' => { - 'BaseType' => '9350773', - 'Name' => 'log4cxx::helpers::Locale const', + '9955390' => { + 'BaseType' => '9955272', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '9351340' => { - 'BaseType' => '9350786', - 'Name' => 'struct log4cxx::helpers::Locale::LocalePrivate*', - 'Size' => '8', - 'Type' => 'Pointer' + '9955419' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'levelpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::LevelPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern21LevelPatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern21LevelPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LevelPatternConverter) [_ZTIN7log4cxx7pattern21LevelPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::~LevelPatternConverter() [_ZN7log4cxx7pattern21LevelPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::~LevelPatternConverter() [_ZN7log4cxx7pattern21LevelPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::getClass() const [_ZNK7log4cxx7pattern21LevelPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern21LevelPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern21LevelPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } }, - '9351624' => { - 'BaseType' => '9350773', - 'Name' => 'log4cxx::helpers::Locale*', + '9955444' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'levelpatternconverter.h', + 'Line' => '38', + 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter', + 'NameSpace' => 'log4cxx::pattern::LevelPatternConverter', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter::~ClazzLevelPatternConverter() [_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter::~ClazzLevelPatternConverter() [_ZN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter) [_ZTIN7log4cxx7pattern21LevelPatternConverter26ClazzLevelPatternConverterE]' + } }, - '9351630' => { - 'BaseType' => '9351624', - 'Name' => 'log4cxx::helpers::Locale*const', + '9955562' => { + 'BaseType' => '9955444', + 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '9351635' => { - 'BaseType' => '9351293', - 'Name' => 'log4cxx::helpers::Locale const*', - 'Size' => '8', - 'Type' => 'Pointer' + '9955591' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'threadpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern22ThreadPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThreadPatternConverter) [_ZTIN7log4cxx7pattern22ThreadPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::~ThreadPatternConverter() [_ZN7log4cxx7pattern22ThreadPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::~ThreadPatternConverter() [_ZN7log4cxx7pattern22ThreadPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::getClass() const [_ZNK7log4cxx7pattern22ThreadPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern22ThreadPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern22ThreadPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } }, - '9351641' => { - 'BaseType' => '9351635', - 'Name' => 'log4cxx::helpers::Locale const*const', + '9955616' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'threadpatternconverter.h', + 'Line' => '38', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter', + 'NameSpace' => 'log4cxx::pattern::ThreadPatternConverter', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter::~ClazzThreadPatternConverter() [_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD1Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter::~ClazzThreadPatternConverter() [_ZN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter) [_ZTIN7log4cxx7pattern22ThreadPatternConverter27ClazzThreadPatternConverterE]' + } }, - '9351646' => { - 'BaseType' => '9351293', - 'Name' => 'log4cxx::helpers::Locale const&', + '9955734' => { + 'BaseType' => '9955616', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter const', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Const' }, - '9425144' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '1142208' - } + '9955763' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '32', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '835117' - } - }, - 'Type' => 'Class' - }, - '9425501' => { - 'BaseType' => '9425144', - 'Name' => 'log4cxx::helpers::WideLifeconst', - 'Size' => '32', - 'Type' => 'Const' + 'Copied' => 1, + 'Header' => 'ndcpatternconverter.h', + 'Line' => '35', + 'Name' => 'log4cxx::pattern::NDCPatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern19NDCPatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NDCPatternConverter) [_ZTIN7log4cxx7pattern19NDCPatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::~NDCPatternConverter() [_ZN7log4cxx7pattern19NDCPatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::~NDCPatternConverter() [_ZN7log4cxx7pattern19NDCPatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::getClass() const [_ZNK7log4cxx7pattern19NDCPatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern19NDCPatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern19NDCPatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } }, - '9425520' => { - 'BaseType' => '839408', - 'Name' => 'log4cxx::spi::LocationInfo*const', + '9955788' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'ndcpatternconverter.h', + 'Line' => '38', + 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter', + 'NameSpace' => 'log4cxx::pattern::NDCPatternConverter', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter::~ClazzNDCPatternConverter() [_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter::~ClazzNDCPatternConverter() [_ZN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter) [_ZTIN7log4cxx7pattern19NDCPatternConverter24ClazzNDCPatternConverterE]' + } }, - '9425537' => { - 'BaseType' => '839420', - 'Name' => 'log4cxx::spi::LocationInfo const*const', + '9955906' => { + 'BaseType' => '9955788', + 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '9425604' => { - 'BaseType' => '9425144', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' - }, - '9425610' => { - 'BaseType' => '9425604', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' + '9955935' => { + 'Base' => { + '3121054' => { + 'pos' => '0' + } + }, + 'Copied' => 1, + 'Header' => 'threadusernamepatternconverter.h', + 'Line' => '30', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '104' => '(int (*)(...)) log4cxx::pattern::PatternConverter::getStyleClass[abi:cxx11](std::shared_ptr const&) const [_ZNK7log4cxx7pattern16PatternConverter13getStyleClassB5cxx11ERKSt10shared_ptrINS_7helpers6ObjectEE]', + '112' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter6formatERKSt10shared_ptrINS_3spi12LoggingEventEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_7helpers4PoolE]', + '120' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::handlesThrowable() const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter16handlesThrowableEv]', + '16' => '0u', + '24' => '0u', + '32' => '0u', + '40' => '0u', + '48' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThreadUsernamePatternConverter) [_ZTIN7log4cxx7pattern30ThreadUsernamePatternConverterE]', + '56' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::~ThreadUsernamePatternConverter() [_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD1Ev]', + '64' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::~ThreadUsernamePatternConverter() [_ZN7log4cxx7pattern30ThreadUsernamePatternConverterD0Ev]', + '72' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::getClass() const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter8getClassEv]', + '8' => '(int (*)(...)) 0', + '80' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter10instanceofERKNS_7helpers5ClassE]', + '88' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter4castERKNS_7helpers5ClassE]', + '96' => '(int (*)(...)) log4cxx::pattern::LoggingEventPatternConverter::format(std::shared_ptr const&, std::__cxx11::basic_string, std::allocator >&, log4cxx::helpers::Pool&) const [_ZNK7log4cxx7pattern28LoggingEventPatternConverter6formatERKSt10shared_ptrINS_7helpers6ObjectEERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS3_4PoolE]' + } }, - '9425615' => { - 'BaseType' => '9425501', - 'Name' => 'log4cxx::helpers::WideLifeconst*', + '9955944' => { + 'Base' => { + '208442' => { + 'pos' => '0' + } + }, + 'Header' => 'threadusernamepatternconverter.h', + 'Line' => '34', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter', + 'NameSpace' => 'log4cxx::pattern::ThreadUsernamePatternConverter', 'Size' => '8', - 'Type' => 'Pointer' + 'Type' => 'Class', + 'VTable' => { + '0' => '(int (*)(...)) 0', + '16' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter::~ClazzThreadUsernamePatternConverter() [_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD2Ev]', + '24' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter::~ClazzThreadUsernamePatternConverter() [_ZN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterD0Ev]', + '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter::getName[abi:cxx11]() const [_ZNK7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverter7getNameB5cxx11Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter) [_ZTIN7log4cxx7pattern30ThreadUsernamePatternConverter35ClazzThreadUsernamePatternConverterE]' + } }, - '9425621' => { - 'BaseType' => '9425615', - 'Name' => 'log4cxx::helpers::WideLifeconst*const', + '9956062' => { + 'BaseType' => '9955944', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter const', 'Size' => '8', 'Type' => 'Const' }, - '9524830' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '9526953' - } - }, - 'Type' => 'Class' + '9956513' => { + 'BaseType' => '9811909', + 'Header' => 'loggingeventpatternconverter.h', + 'Line' => '84', + 'Name' => 'log4cxx::pattern::LoggingEventPatternConverterPtr', + 'NameSpace' => 'log4cxx::pattern', + 'Size' => '16', + 'Type' => 'Typedef' }, - '9526935' => { + '9956860' => { 'Base' => { - '150952' => { - 'pos' => '0' - } + '1379573' => { + 'pos' => '0' + } }, - 'Header' => 'locationinfofilter.h', - 'Line' => '41', - 'Name' => 'log4cxx::filter::LocationInfoFilter', - 'NameSpace' => 'log4cxx::filter', + 'Header' => 'dbappender.h', + 'Line' => '113', + 'Name' => 'log4cxx::db::DBAppender', + 'NameSpace' => 'log4cxx::db', 'Size' => '16', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter18LocationInfoFilter10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter18LocationInfoFilter4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter18LocationInfoFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter18LocationInfoFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', + '104' => '0u', + '112' => '0u', + '120' => '0u', + '128' => '0u', + '136' => '0u', + '144' => '0u', + '152' => '0u', '16' => '0u', + '160' => '(int (*)(...)) (& typeinfo for log4cxx::db::DBAppender) [_ZTIN7log4cxx2db10DBAppenderE]', + '168' => '(int (*)(...)) log4cxx::db::DBAppender::~DBAppender() [_ZN7log4cxx2db10DBAppenderD1Ev]', + '176' => '(int (*)(...)) log4cxx::db::DBAppender::~DBAppender() [_ZN7log4cxx2db10DBAppenderD0Ev]', + '184' => '(int (*)(...)) log4cxx::db::DBAppender::getClass() const [_ZNK7log4cxx2db10DBAppender8getClassEv]', + '192' => '(int (*)(...)) log4cxx::db::DBAppender::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx2db10DBAppender10instanceofERKNS_7helpers5ClassE]', + '200' => '(int (*)(...)) log4cxx::db::DBAppender::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx2db10DBAppender4castERKNS_7helpers5ClassE]', + '208' => '(int (*)(...)) log4cxx::db::DBAppender::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx2db10DBAppender15activateOptionsERNS_7helpers4PoolE]', + '216' => '(int (*)(...)) log4cxx::db::DBAppender::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx2db10DBAppender9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', + '224' => '(int (*)(...)) log4cxx::AppenderSkeleton::addFilter(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9addFilterESt10shared_ptrINS_3spi6FilterEE]', + '232' => '(int (*)(...)) log4cxx::AppenderSkeleton::getFilter() const [_ZNK7log4cxx16AppenderSkeleton9getFilterEv]', '24' => '0u', + '240' => '(int (*)(...)) log4cxx::AppenderSkeleton::clearFilters() [_ZN7log4cxx16AppenderSkeleton12clearFiltersEv]', + '248' => '(int (*)(...)) log4cxx::db::DBAppender::close() [_ZN7log4cxx2db10DBAppender5closeEv]', + '256' => '(int (*)(...)) log4cxx::AppenderSkeleton::doAppend(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx16AppenderSkeleton8doAppendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', + '264' => '(int (*)(...)) log4cxx::AppenderSkeleton::getName[abi:cxx11]() const [_ZNK7log4cxx16AppenderSkeleton7getNameB5cxx11Ev]', + '272' => '(int (*)(...)) log4cxx::AppenderSkeleton::setLayout(std::shared_ptr) [_ZN7log4cxx16AppenderSkeleton9setLayoutESt10shared_ptrINS_6LayoutEE]', + '280' => '(int (*)(...)) log4cxx::AppenderSkeleton::getLayout() const [_ZNK7log4cxx16AppenderSkeleton9getLayoutEv]', + '288' => '(int (*)(...)) log4cxx::AppenderSkeleton::setName(std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx16AppenderSkeleton7setNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE]', + '296' => '(int (*)(...)) log4cxx::db::DBAppender::requiresLayout() const [_ZNK7log4cxx2db10DBAppender14requiresLayoutEv]', + '304' => '(int (*)(...)) log4cxx::db::DBAppender::append(std::shared_ptr const&, log4cxx::helpers::Pool&) [_ZN7log4cxx2db10DBAppender6appendERKSt10shared_ptrINS_3spi12LoggingEventEERNS_7helpers4PoolE]', '32' => '0u', '40' => '0u', '48' => '0u', '56' => '0u', '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LocationInfoFilter) [_ZTIN7log4cxx6filter18LocationInfoFilterE]', + '72' => '0u', '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::~LocationInfoFilter() [_ZN7log4cxx6filter18LocationInfoFilterD1Ev]', - '88' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::~LocationInfoFilter() [_ZN7log4cxx6filter18LocationInfoFilterD0Ev]', - '96' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::getClass() const [_ZNK7log4cxx6filter18LocationInfoFilter8getClassEv]' + '80' => '0u', + '88' => '0u', + '96' => '0u' } }, - '9526953' => { + '9956878' => { 'Base' => { - '62698' => { - 'pos' => '0' - } + '208442' => { + 'pos' => '0' + } }, - 'Header' => 'locationinfofilter.h', - 'Line' => '45', - 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter', - 'NameSpace' => 'log4cxx::filter::LocationInfoFilter', + 'Header' => 'dbappender.h', + 'Line' => '116', + 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender', + 'NameSpace' => 'log4cxx::db::DBAppender', 'Size' => '8', 'Type' => 'Class', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::~ClazzLocationInfoFilter() [_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::~ClazzLocationInfoFilter() [_ZN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter::newInstance() const [_ZNK7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilter11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter) [_ZTIN7log4cxx6filter18LocationInfoFilter23ClazzLocationInfoFilterE]' + '16' => '(int (*)(...)) log4cxx::db::DBAppender::ClazzDBAppender::~ClazzDBAppender() [_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD2Ev]', + '24' => '(int (*)(...)) log4cxx::db::DBAppender::ClazzDBAppender::~ClazzDBAppender() [_ZN7log4cxx2db10DBAppender15ClazzDBAppenderD0Ev]', + '32' => '(int (*)(...)) covariant return thunk to log4cxx::db::DBAppender::ClazzDBAppender::newInstance() const [_ZTch0_h0_NK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv]', + '40' => '(int (*)(...)) log4cxx::db::DBAppender::ClazzDBAppender::getName[abi:cxx11]() const [_ZNK7log4cxx2db10DBAppender15ClazzDBAppender7getNameB5cxx11Ev]', + '48' => '(int (*)(...)) log4cxx::db::DBAppender::ClazzDBAppender::newInstance() const [_ZNK7log4cxx2db10DBAppender15ClazzDBAppender11newInstanceEv]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::DBAppender::ClazzDBAppender) [_ZTIN7log4cxx2db10DBAppender15ClazzDBAppenderE]' } }, - '9527174' => { - 'BaseType' => '9526953', - 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter const', + '9957087' => { + 'BaseType' => '9956878', + 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender const', 'Size' => '8', 'Type' => 'Const' }, - '9527179' => { + '9957092' => { 'Base' => { - '150962' => { - 'pos' => '0' - } + '1379591' => { + 'pos' => '0' + } }, - 'Line' => '34', + 'Line' => '51', 'Memb' => { '0' => { - 'name' => 'acceptOnMatch', - 'offset' => '24', - 'type' => '50284' + 'name' => 'm_driver', + 'offset' => '388', + 'type' => '9977196' }, '1' => { - 'name' => 'mustMatchAll', - 'offset' => '25', - 'type' => '50284' + 'name' => 'm_databaseHandle', + 'offset' => '402', + 'type' => '9977201' }, '2' => { - 'name' => 'lineNumber', - 'offset' => '28', - 'type' => '50231' + 'name' => 'preparedStmt', + 'offset' => '512', + 'type' => '9977206' }, '3' => { - 'name' => 'methodName', - 'offset' => '32', - 'type' => '36898' + 'name' => 'mappedName', + 'offset' => '520', + 'type' => '6007393' + }, + '4' => { + 'name' => 'driverName', + 'offset' => '562', + 'type' => '89533' + }, + '5' => { + 'name' => 'driverParams', + 'offset' => '612', + 'type' => '89533' + }, + '6' => { + 'name' => 'databaseName', + 'offset' => '662', + 'type' => '89533' + }, + '7' => { + 'name' => 'sqlStatement', + 'offset' => '808', + 'type' => '89533' + }, + '8' => { + 'name' => 'm_pool', + 'offset' => '864', + 'type' => '207830' + }, + '9' => { + 'name' => 'converters', + 'offset' => '886', + 'type' => '9814083' } }, - 'Name' => 'struct log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate', - 'NameSpace' => 'log4cxx::filter::LocationInfoFilter', - 'Private' => 1, - 'Size' => '64', - 'Source' => 'locationinfofilter.cpp', + 'Name' => 'struct log4cxx::db::DBAppender::DBAppenderPriv', + 'NameSpace' => 'log4cxx::db::DBAppender', + 'Protected' => 1, + 'Size' => '400', + 'Source' => 'dbappender.cpp', 'Type' => 'Struct', 'VTable' => { '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate::~LocationInfoFilterPrivate() [_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate::~LocationInfoFilterPrivate() [_ZN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate) [_ZTIN7log4cxx6filter18LocationInfoFilter25LocationInfoFilterPrivateE]' + '16' => '(int (*)(...)) log4cxx::db::DBAppender::DBAppenderPriv::~DBAppenderPriv() [_ZN7log4cxx2db10DBAppender14DBAppenderPrivD2Ev]', + '24' => '(int (*)(...)) log4cxx::db::DBAppender::DBAppenderPriv::~DBAppenderPriv() [_ZN7log4cxx2db10DBAppender14DBAppenderPrivD0Ev]', + '8' => '(int (*)(...)) (& typeinfo for log4cxx::db::DBAppender::DBAppenderPriv) [_ZTIN7log4cxx2db10DBAppender14DBAppenderPrivE]' } }, - '9527941' => { - 'BaseType' => '9526935', - 'Name' => 'log4cxx::filter::LocationInfoFilter const', + '9957951' => { + 'BaseType' => '9956860', + 'Name' => 'log4cxx::db::DBAppender const', 'Size' => '16', 'Type' => 'Const' }, - '9529929' => { - 'BaseType' => '9524830', - 'Name' => 'log4cxx::helpers::WideLife*', - 'Size' => '8', - 'Type' => 'Pointer' + '9974022' => { + 'BaseType' => '9974041', + 'Header' => 'apr_dbd.h', + 'Line' => '82', + 'Name' => 'apr_dbd_driver_t', + 'Type' => 'Typedef' }, - '9529935' => { - 'BaseType' => '9529929', - 'Name' => 'log4cxx::helpers::WideLife*const', - 'Size' => '8', - 'Type' => 'Const' + '9974041' => { + 'Name' => 'struct apr_dbd_driver_t', + 'Type' => 'Struct' }, - '9530054' => { - 'BaseType' => '9527179', - 'Name' => 'struct log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate*', - 'Size' => '8', - 'Type' => 'Pointer' + '9974046' => { + 'BaseType' => '9974060', + 'Header' => 'apr_dbd.h', + 'Line' => '83', + 'Name' => 'apr_dbd_t', + 'Type' => 'Typedef' }, - '9530060' => { - 'BaseType' => '9530054', - 'Name' => 'struct log4cxx::filter::LocationInfoFilter::LocationInfoFilterPrivate*const', - 'Size' => '8', - 'Type' => 'Const' + '9974060' => { + 'Name' => 'struct apr_dbd_t', + 'Type' => 'Struct' }, - '9530540' => { - 'BaseType' => '9526935', - 'Name' => 'log4cxx::filter::LocationInfoFilter*', - 'Size' => '8', - 'Type' => 'Pointer' + '9974122' => { + 'BaseType' => '9974136', + 'Header' => 'apr_dbd.h', + 'Line' => '87', + 'Name' => 'apr_dbd_prepared_t', + 'Type' => 'Typedef' }, - '9530546' => { - 'BaseType' => '9530540', - 'Name' => 'log4cxx::filter::LocationInfoFilter*const', - 'Size' => '8', - 'Type' => 'Const' + '9974136' => { + 'Name' => 'struct apr_dbd_prepared_t', + 'Type' => 'Struct' }, - '9530568' => { - 'BaseType' => '9527941', - 'Name' => 'log4cxx::filter::LocationInfoFilter const*', + '9974186' => { + 'BaseType' => '9947519', + 'Name' => 'log4cxx::helpers::WideLife*', 'Size' => '8', 'Type' => 'Pointer' }, - '9530574' => { - 'BaseType' => '9530568', - 'Name' => 'log4cxx::filter::LocationInfoFilter const*const', + '9974191' => { + 'BaseType' => '9974186', + 'Name' => 'log4cxx::helpers::WideLife*const', 'Size' => '8', 'Type' => 'Const' }, - '9530632' => { - 'BaseType' => '9526953', - 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter*', + '9974497' => { + 'BaseType' => '9811909', + 'Name' => 'std::shared_ptr*', 'Size' => '8', 'Type' => 'Pointer' }, - '9530638' => { - 'BaseType' => '9530632', - 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter*const', + '9975139' => { + 'Name' => 'std::shared_ptr(*)(union std::_Any_data const&, std::vector >const&)', + 'Param' => { + '0' => { + 'type' => '574371' + }, + '1' => { + 'type' => '6085700' + } + }, + 'Return' => '2974326', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'FuncPtr' }, - '9530643' => { - 'BaseType' => '9527174', - 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter const*', - 'Size' => '8', - 'Type' => 'Pointer' + '9975180' => { + 'Name' => 'std::shared_ptr(std::vector >const&)', + 'Param' => { + '0' => { + 'type' => '6085700' + } + }, + 'Return' => '2974326', + 'Type' => 'Func' }, - '9530649' => { - 'BaseType' => '9530643', - 'Name' => 'log4cxx::filter::LocationInfoFilter::ClazzLocationInfoFilter const*const', + '9975507' => { + 'BaseType' => '9975512', + 'Name' => 'char const[5]&', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Ref' }, - '9630451' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '59', - 'Name' => 'struct std::default_delete', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9679453' - } - }, - 'Type' => 'Struct' + '9975512' => { + 'BaseType' => '191037', + 'Name' => 'char const[5]', + 'Size' => '5', + 'Type' => 'Array' }, - '9630538' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '120', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '9632080' - } - }, - 'Name' => 'std::__uniq_ptr_impl >', - 'NameSpace' => 'std', + '9975533' => { + 'BaseType' => '9975538', + 'Name' => 'char const[14]&', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9679453' - }, - '1' => { - 'key' => '_Dp', - 'type' => '9630451' - } - }, - 'Type' => 'Class' - }, - '9630861' => { - 'Base' => { - '9630451' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '73', - 'Name' => 'struct std::_Head_base<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => '_Head', - 'type' => '9630451' - } - }, - 'Type' => 'Struct' - }, - '9631116' => { - 'Base' => { - '9630861' => { - 'access' => 'private', - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '326', - 'Name' => 'struct std::_Tuple_impl<1ul, std::default_delete >', - 'NameSpace' => 'std', - 'Size' => '1', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '1' - }, - '1' => { - 'key' => undef, - 'type' => '9630451' - } - }, - 'Type' => 'Struct' + 'Type' => 'Ref' }, - '9631414' => { - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '120', - 'Memb' => { - '0' => { - 'name' => '_M_head_impl', - 'offset' => '0', - 'type' => '9685544' - } - }, - 'Name' => 'struct std::_Head_base<0ul, log4cxx::Logger::LoggerPrivate*>', - 'NameSpace' => 'std', - 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => '_Head', - 'type' => '9685544' - } - }, - 'Type' => 'Struct' + '9975538' => { + 'BaseType' => '191037', + 'Name' => 'char const[14]', + 'Size' => '14', + 'Type' => 'Array' }, - '9631676' => { - 'Base' => { - '9631116' => { - 'pos' => '0' - }, - '9631414' => { - 'access' => 'private', - 'pos' => '1' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '185', - 'Name' => 'struct std::_Tuple_impl<0ul, log4cxx::Logger::LoggerPrivate*>', - 'NameSpace' => 'std', + '9975704' => { + 'BaseType' => '9957092', + 'Name' => 'struct log4cxx::db::DBAppender::DBAppenderPriv*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Idx', - 'type' => '50193', - 'val' => '0' - }, - '1' => { - 'key' => undef, - 'type' => '9685544' - } - }, - 'Type' => 'Struct' + 'Type' => 'Pointer' }, - '9632080' => { - 'Base' => { - '9631676' => { - 'pos' => '0' - } - }, - 'Copied' => 1, - 'Header' => 'tuple', - 'Line' => '893', - 'Name' => 'std::tuple', - 'NameSpace' => 'std', + '9975709' => { + 'BaseType' => '9975704', + 'Name' => 'struct log4cxx::db::DBAppender::DBAppenderPriv*const', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => undef, - 'type' => '9685544' - } - }, - 'Type' => 'Class' + 'Type' => 'Const' }, - '9632412' => { - 'Copied' => 1, - 'Header' => 'unique_ptr.h', - 'Line' => '172', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => '_M_t', - 'offset' => '0', - 'type' => '9630538' - } - }, - 'Name' => 'std::unique_ptr >', - 'NameSpace' => 'std', + '9976044' => { + 'BaseType' => '9852816', + 'Name' => 'std::__shared_ptr::element_type*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => '_Tp', - 'type' => '9679453' - }, - '1' => { - 'key' => '_Dp', - 'type' => '9630451' - } - }, - 'Type' => 'Class' - }, - '9677043' => { - 'BaseType' => '6962841', - 'Header' => 'resourcebundle.h', - 'Line' => '30', - 'Name' => 'log4cxx::helpers::ResourceBundlePtr', - 'NameSpace' => 'log4cxx::helpers', - 'Size' => '16', - 'Type' => 'Typedef' + 'Type' => 'Pointer' }, - '9677055' => { - 'BaseType' => '9677043', - 'Name' => 'log4cxx::helpers::ResourceBundlePtr const', - 'Size' => '16', - 'Type' => 'Const' + '9976554' => { + 'BaseType' => '190206', + 'Name' => 'unsigned char[64]', + 'Size' => '64', + 'Type' => 'Array' }, - '9677060' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '9977196' => { + 'BaseType' => '9974022', + 'Name' => 'apr_dbd_driver_t*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '9679620' - } - }, - 'Type' => 'Class' - }, - '9679453' => { - 'Line' => '41', - 'Memb' => { - '0' => { - 'name' => 'name', - 'offset' => '0', - 'type' => '63706' - }, - '1' => { - 'name' => 'level', - 'offset' => '32', - 'type' => '409192' - }, - '2' => { - 'name' => 'parent', - 'offset' => '48', - 'type' => '1150380' - }, - '3' => { - 'name' => 'resourceBundle', - 'offset' => '64', - 'type' => '9677043' - }, - '4' => { - 'name' => 'repositoryRaw', - 'offset' => '80', - 'type' => '4544193' - }, - '5' => { - 'name' => 'aai', - 'offset' => '88', - 'type' => '260723' - }, - '6' => { - 'name' => 'additive', - 'offset' => '104', - 'type' => '50284' - } - }, - 'Name' => 'struct log4cxx::Logger::LoggerPrivate', - 'NameSpace' => 'log4cxx::Logger', - 'Private' => 1, - 'Size' => '112', - 'Source' => 'logger.cpp', - 'Type' => 'Struct' + 'Type' => 'Pointer' }, - '9679620' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'logger.h', - 'Line' => '53', - 'Name' => 'log4cxx::Logger::ClazzLogger', - 'NameSpace' => 'log4cxx::Logger', + '9977201' => { + 'BaseType' => '9974046', + 'Name' => 'apr_dbd_t*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::Logger::ClazzLogger::~ClazzLogger() [_ZN7log4cxx6Logger11ClazzLoggerD1Ev]', - '24' => '(int (*)(...)) log4cxx::Logger::ClazzLogger::~ClazzLogger() [_ZN7log4cxx6Logger11ClazzLoggerD0Ev]', - '32' => '(int (*)(...)) log4cxx::helpers::Class::newInstance() const [_ZNK7log4cxx7helpers5Class11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::Logger::ClazzLogger::getName[abi:cxx11]() const [_ZNK7log4cxx6Logger11ClazzLogger7getNameB5cxx11Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::Logger::ClazzLogger) [_ZTIN7log4cxx6Logger11ClazzLoggerE]' - } + 'Type' => 'Pointer' }, - '9679778' => { - 'BaseType' => '9679620', - 'Name' => 'log4cxx::Logger::ClazzLogger const', + '9977206' => { + 'BaseType' => '9974122', + 'Name' => 'apr_dbd_prepared_t*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '9685544' => { - 'BaseType' => '9679453', - 'Name' => 'struct log4cxx::Logger::LoggerPrivate*', + '9977211' => { + 'BaseType' => '9957951', + 'Name' => 'log4cxx::db::DBAppender const*', 'Size' => '8', 'Type' => 'Pointer' }, - '9685904' => { - 'BaseType' => '4201308', - 'Name' => 'log4cxx::Logger*const', + '9977216' => { + 'BaseType' => '9977211', + 'Name' => 'log4cxx::db::DBAppender const*const', 'Size' => '8', 'Type' => 'Const' }, - '9686016' => { - 'BaseType' => '9677060', - 'Name' => 'log4cxx::helpers::WideLife*', + '9977221' => { + 'BaseType' => '9956860', + 'Name' => 'log4cxx::db::DBAppender*', 'Size' => '8', 'Type' => 'Pointer' }, - '9686022' => { - 'BaseType' => '9686016', - 'Name' => 'log4cxx::helpers::WideLife*const', + '9977226' => { + 'BaseType' => '9977221', + 'Name' => 'log4cxx::db::DBAppender*const', 'Size' => '8', 'Type' => 'Const' }, - '9687264' => { - 'BaseType' => '4201534', - 'Name' => 'log4cxx::Logger const*const', + '9977295' => { + 'BaseType' => '9955788', + 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '9687292' => { - 'BaseType' => '36898', - 'Name' => 'std::string&&', + '9977300' => { + 'BaseType' => '9955906', + 'Name' => 'log4cxx::pattern::NDCPatternConverter::ClazzNDCPatternConverter const*', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Pointer' }, - '9687298' => { - 'BaseType' => '555309', - 'Name' => 'std::wstring&&', + '9977305' => { + 'BaseType' => '9955944', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter*', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Pointer' }, - '9687304' => { - 'BaseType' => '63706', - 'Name' => 'log4cxx::LogString&&', + '9977310' => { + 'BaseType' => '9956062', + 'Name' => 'log4cxx::pattern::ThreadUsernamePatternConverter::ClazzThreadUsernamePatternConverter const*', 'Size' => '8', - 'Type' => 'RvalueRef' + 'Type' => 'Pointer' }, - '9687316' => { - 'BaseType' => '9677055', - 'Name' => 'log4cxx::helpers::ResourceBundlePtr const&', + '9977315' => { + 'BaseType' => '9955616', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter*', 'Size' => '8', - 'Type' => 'Ref' + 'Type' => 'Pointer' }, - '9687334' => { - 'BaseType' => '9679620', - 'Name' => 'log4cxx::Logger::ClazzLogger*', + '9977320' => { + 'BaseType' => '9955734', + 'Name' => 'log4cxx::pattern::ThreadPatternConverter::ClazzThreadPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '9687340' => { - 'BaseType' => '9687334', - 'Name' => 'log4cxx::Logger::ClazzLogger*const', + '9977325' => { + 'BaseType' => '9955444', + 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '9687345' => { - 'BaseType' => '9679778', - 'Name' => 'log4cxx::Logger::ClazzLogger const*', + '9977330' => { + 'BaseType' => '9955562', + 'Name' => 'log4cxx::pattern::LevelPatternConverter::ClazzLevelPatternConverter const*', 'Size' => '8', 'Type' => 'Pointer' }, - '9687351' => { - 'BaseType' => '9687345', - 'Name' => 'log4cxx::Logger::ClazzLogger const*const', + '9977335' => { + 'BaseType' => '9955272', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '9948965' => { - 'Header' => 'widelife.h', - 'Line' => '36', - 'Memb' => { - '0' => { - 'access' => 'private', - 'name' => 'storage', - 'offset' => '0', - 'type' => '55091' - } - }, - 'Name' => 'log4cxx::helpers::WideLife', - 'NameSpace' => 'log4cxx::helpers', + '9977340' => { + 'BaseType' => '9955390', + 'Name' => 'log4cxx::pattern::MethodLocationPatternConverter::ClazzMethodLocationPatternConverter const*', 'Size' => '8', - 'TParam' => { - '0' => { - 'key' => 'T', - 'type' => '9950620' - } - }, - 'Type' => 'Class' - }, - '9950602' => { - 'Base' => { - '150952' => { - 'pos' => '0' - } - }, - 'Header' => 'loggermatchfilter.h', - 'Line' => '45', - 'Name' => 'log4cxx::filter::LoggerMatchFilter', - 'NameSpace' => 'log4cxx::filter', - 'Size' => '16', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '104' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::instanceof(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter17LoggerMatchFilter10instanceofERKNS_7helpers5ClassE]', - '112' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::cast(log4cxx::helpers::Class const&) const [_ZNK7log4cxx6filter17LoggerMatchFilter4castERKNS_7helpers5ClassE]', - '120' => '(int (*)(...)) log4cxx::spi::Filter::activateOptions(log4cxx::helpers::Pool&) [_ZN7log4cxx3spi6Filter15activateOptionsERNS_7helpers4PoolE]', - '128' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::setOption(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) [_ZN7log4cxx6filter17LoggerMatchFilter9setOptionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_]', - '136' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::decide(std::shared_ptr const&) const [_ZNK7log4cxx6filter17LoggerMatchFilter6decideERKSt10shared_ptrINS_3spi12LoggingEventEE]', - '16' => '0u', - '24' => '0u', - '32' => '0u', - '40' => '0u', - '48' => '0u', - '56' => '0u', - '64' => '0u', - '72' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LoggerMatchFilter) [_ZTIN7log4cxx6filter17LoggerMatchFilterE]', - '8' => '(int (*)(...)) 0', - '80' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::~LoggerMatchFilter() [_ZN7log4cxx6filter17LoggerMatchFilterD1Ev]', - '88' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::~LoggerMatchFilter() [_ZN7log4cxx6filter17LoggerMatchFilterD0Ev]', - '96' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::getClass() const [_ZNK7log4cxx6filter17LoggerMatchFilter8getClassEv]' - } + 'Type' => 'Pointer' }, - '9950620' => { - 'Base' => { - '62698' => { - 'pos' => '0' - } - }, - 'Header' => 'loggermatchfilter.h', - 'Line' => '52', - 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter', - 'NameSpace' => 'log4cxx::filter::LoggerMatchFilter', + '9977345' => { + 'BaseType' => '9955100', + 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter*', 'Size' => '8', - 'Type' => 'Class', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::~ClazzLoggerMatchFilter() [_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD2Ev]', - '24' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::~ClazzLoggerMatchFilter() [_ZN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterD0Ev]', - '32' => '(int (*)(...)) covariant return thunk to log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::newInstance() const [_ZTch0_h0_NK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv]', - '40' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::getName[abi:cxx11]() const [_ZNK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter7getNameB5cxx11Ev]', - '48' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter::newInstance() const [_ZNK7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilter11newInstanceEv]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter) [_ZTIN7log4cxx6filter17LoggerMatchFilter22ClazzLoggerMatchFilterE]' - } + 'Type' => 'Pointer' }, - '9950840' => { - 'BaseType' => '9950620', - 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter const', + '9977350' => { + 'BaseType' => '9955218', + 'Name' => 'log4cxx::pattern::MessagePatternConverter::ClazzMessagePatternConverter const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '9950845' => { - 'Base' => { - '150962' => { - 'pos' => '0' - } - }, - 'Line' => '32', - 'Memb' => { - '0' => { - 'name' => 'acceptOnMatch', - 'offset' => '24', - 'type' => '50284' - }, - '1' => { - 'name' => 'loggerToMatch', - 'offset' => '32', - 'type' => '63706' - } - }, - 'Name' => 'struct log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate', - 'NameSpace' => 'log4cxx::filter::LoggerMatchFilter', - 'Private' => 1, - 'Size' => '64', - 'Source' => 'loggermatchfilter.cpp', - 'Type' => 'Struct', - 'VTable' => { - '0' => '(int (*)(...)) 0', - '16' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate::~LoggerMatchFilterPrivate() [_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD1Ev]', - '24' => '(int (*)(...)) log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate::~LoggerMatchFilterPrivate() [_ZN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateD0Ev]', - '8' => '(int (*)(...)) (& typeinfo for log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate) [_ZTIN7log4cxx6filter17LoggerMatchFilter24LoggerMatchFilterPrivateE]' - } + '9977355' => { + 'BaseType' => '9954928', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '9951516' => { - 'BaseType' => '9950602', - 'Name' => 'log4cxx::filter::LoggerMatchFilter const', - 'Size' => '16', - 'Type' => 'Const' + '9977360' => { + 'BaseType' => '9955046', + 'Name' => 'log4cxx::pattern::LineLocationPatternConverter::ClazzLineLocationPatternConverter const*', + 'Size' => '8', + 'Type' => 'Pointer' }, - '9953151' => { - 'BaseType' => '9948965', - 'Name' => 'log4cxx::helpers::WideLife*', + '9977365' => { + 'BaseType' => '9954756', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '9953157' => { - 'BaseType' => '9953151', - 'Name' => 'log4cxx::helpers::WideLife*const', + '9977370' => { + 'BaseType' => '9954874', + 'Name' => 'log4cxx::pattern::ShortFileLocationPatternConverter::ClazzShortFileLocationPatternConverter const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '9953276' => { - 'BaseType' => '9950845', - 'Name' => 'struct log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate*', + '9977375' => { + 'BaseType' => '9954584', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '9953282' => { - 'BaseType' => '9953276', - 'Name' => 'struct log4cxx::filter::LoggerMatchFilter::LoggerMatchFilterPrivate*const', + '9977380' => { + 'BaseType' => '9954702', + 'Name' => 'log4cxx::pattern::FullLocationPatternConverter::ClazzFullLocationPatternConverter const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '9953720' => { - 'BaseType' => '9950602', - 'Name' => 'log4cxx::filter::LoggerMatchFilter*', + '9977385' => { + 'BaseType' => '9954412', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '9953726' => { - 'BaseType' => '9953720', - 'Name' => 'log4cxx::filter::LoggerMatchFilter*const', + '9977390' => { + 'BaseType' => '9954530', + 'Name' => 'log4cxx::pattern::FileLocationPatternConverter::ClazzFileLocationPatternConverter const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '9953748' => { - 'BaseType' => '9951516', - 'Name' => 'log4cxx::filter::LoggerMatchFilter const*', + '9977450' => { + 'BaseType' => '9953770', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter*', 'Size' => '8', 'Type' => 'Pointer' }, - '9953754' => { - 'BaseType' => '9953748', - 'Name' => 'log4cxx::filter::LoggerMatchFilter const*const', + '9977455' => { + 'BaseType' => '9953888', + 'Name' => 'log4cxx::pattern::LoggerPatternConverter::ClazzLoggerPatternConverter const*', 'Size' => '8', - 'Type' => 'Const' + 'Type' => 'Pointer' }, - '9953812' => { - 'BaseType' => '9950620', - 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter*', + '9977525' => { + 'BaseType' => '9956878', + 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender*', 'Size' => '8', 'Type' => 'Pointer' }, - '9953818' => { - 'BaseType' => '9953812', - 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter*const', + '9977530' => { + 'BaseType' => '9977525', + 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender*const', 'Size' => '8', 'Type' => 'Const' }, - '9953823' => { - 'BaseType' => '9950840', - 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter const*', + '9977535' => { + 'BaseType' => '9957087', + 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender const*', 'Size' => '8', 'Type' => 'Pointer' }, - '9953829' => { - 'BaseType' => '9953823', - 'Name' => 'log4cxx::filter::LoggerMatchFilter::ClazzLoggerMatchFilter const*const', + '9977540' => { + 'BaseType' => '9977535', + 'Name' => 'log4cxx::db::DBAppender::ClazzDBAppender const*const', 'Size' => '8', 'Type' => 'Const' } @@ -156785,6 +156984,7 @@ $VAR1 = { '_ZTVN10__cxxabiv120__function_type_infoE@CXXABI_1.3' => 0, '_ZTVN10__cxxabiv120__si_class_type_infoE@CXXABI_1.3' => 0, '_ZTVN10__cxxabiv121__vmi_class_type_infoE@CXXABI_1.3' => 0, + '_ZTVNSt6thread6_StateE@GLIBCXX_3.4.22' => 0, '_ZTVNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEEE@GLIBCXX_3.4.21' => 0, '_ZTVNSt7__cxx1115basic_stringbufIwSt11char_traitsIwESaIwEEE@GLIBCXX_3.4.21' => 0, '_ZTVNSt7__cxx1118basic_stringstreamIcSt11char_traitsIcESaIcEEE@GLIBCXX_3.4.21' => 0, @@ -156795,6 +156995,7 @@ $VAR1 = { '_ZTVSt15basic_streambufIwSt11char_traitsIwEE@GLIBCXX_3.4' => 0, '_ZTVSt9basic_iosIcSt11char_traitsIcEE@GLIBCXX_3.4' => 0, '_ZTVSt9basic_iosIwSt11char_traitsIwEE@GLIBCXX_3.4' => 0, + '_ZTVSt9exception@GLIBCXX_3.4' => 0, '__assert_fail@GLIBC_2.2.5' => 0, '__ctype_get_mb_cur_max@GLIBC_2.2.5' => 0, '__cxa_allocate_exception@CXXABI_1.3' => 0, @@ -156814,10 +157015,13 @@ $VAR1 = { '__errno_location@GLIBC_2.2.5' => 0, '__gmon_start__' => 0, '__gxx_personality_v0@CXXABI_1.3' => 0, - '__pthread_key_create' => 0, + '__libc_single_threaded@GLIBC_2.32' => 0, '__stack_chk_fail@GLIBC_2.4' => 0, '__syslog_chk@GLIBC_2.4' => 0, '__tls_get_addr@GLIBC_2.3' => 0, + '__wmemcpy_chk@GLIBC_2.4' => 0, + '__wmemmove_chk@GLIBC_2.4' => 0, + '__wmemset_chk@GLIBC_2.4' => 0, 'apr_dbd_close' => 0, 'apr_dbd_error' => 0, 'apr_dbd_get_driver' => 0, @@ -156902,29 +157106,26 @@ $VAR1 = { 'memcpy@GLIBC_2.14' => 0, 'memmove@GLIBC_2.2.5' => 0, 'memset@GLIBC_2.2.5' => 0, - 'pthread_cond_timedwait@GLIBC_2.3.2' => 0, - 'pthread_create' => 0, - 'pthread_getname_np' => 0, + 'pthread_cond_clockwait@GLIBC_2.34' => 0, + 'pthread_getname_np@GLIBC_2.34' => 0, 'pthread_mutex_lock@GLIBC_2.2.5' => 0, - 'pthread_mutex_trylock' => 0, + 'pthread_mutex_trylock@GLIBC_2.34' => 0, 'pthread_mutex_unlock@GLIBC_2.2.5' => 0, 'pthread_self@GLIBC_2.2.5' => 0, - 'pthread_setname_np' => 0, - 'pthread_sigmask' => 0, + 'pthread_setname_np@GLIBC_2.34' => 0, + 'pthread_sigmask@GLIBC_2.32' => 0, 'sigfillset@GLIBC_2.2.5' => 0, 'stderr@GLIBC_2.2.5' => 0, 'stdout@GLIBC_2.2.5' => 0, 'strcmp@GLIBC_2.2.5' => 0, + 'strlen@GLIBC_2.2.5' => 0, 'strncpy@GLIBC_2.2.5' => 0, 'strtol@GLIBC_2.2.5' => 0, 'strtoll@GLIBC_2.2.5' => 0, 'tolower@GLIBC_2.2.5' => 0, - 'vsnprintf@GLIBC_2.2.5' => 0, 'wcrtomb@GLIBC_2.2.5' => 0, 'wcslen@GLIBC_2.2.5' => 0, - 'wmemcpy@GLIBC_2.2.5' => 0, - 'wmemmove@GLIBC_2.2.5' => 0, - 'wmemset@GLIBC_2.2.5' => 0 + 'wmemcpy@GLIBC_2.2.5' => 0 } }, 'WordSize' => '8' diff --git a/src/main/cpp/CMakeLists.txt b/src/main/cpp/CMakeLists.txt index ef4b8739b..465a51d8c 100644 --- a/src/main/cpp/CMakeLists.txt +++ b/src/main/cpp/CMakeLists.txt @@ -15,9 +15,6 @@ # limitations under the License. # -# Options -option(LOG4CXX_ABI_CHECK "Check for ABI changes" OFF) - # Build the log4cxx library add_library(log4cxx) if(${log4cxx_ABI_VER} GREATER 15) @@ -245,43 +242,3 @@ endif() if(${ENABLE_FMT_LAYOUT}) target_link_libraries(log4cxx PUBLIC fmt::fmt) endif() - -if(LOG4CXX_ABI_CHECK) - if(NOT "log4cxx" STREQUAL "${LOG4CXX_NS}") - message(FATAL_ERROR "ABI compatability can only be checked if LOG4CXX_NS=log4cxx, but LOG4CXX_NS=${LOG4CXX_NS}.") - endif() - - message("Getting dependencies for ABI compatability check...") - # Get the latest version of abi-dumper and abi-compliance-checker - include(FetchContent) - FetchContent_Declare(abi-dumper - GIT_REPOSITORY https://github.com/lvc/abi-dumper.git - GIT_TAG 1.2 - ) - FetchContent_GetProperties(abi-dumper) - if(NOT abi-dumper_POPULATED) - FetchContent_Populate(abi-dumper) - endif() - - FetchContent_Declare(abi-compliance-checker - GIT_REPOSITORY https://github.com/lvc/abi-compliance-checker.git - GIT_TAG f60ce442c33f1d5cda1cec7cfddee24af1777572 - ) - FetchContent_GetProperties(abi-compliance-checker) - if(NOT abi-compliance-checker_POPULATED) - FetchContent_Populate(abi-compliance-checker) - endif() - - set(abi-dumper-script ${abi-dumper_SOURCE_DIR}/abi-dumper.pl) - set(abi-compliance-script ${abi-compliance-checker_SOURCE_DIR}/abi-compliance-checker.pl) - - add_custom_target(dump-abi ALL - COMMAND perl ${abi-dumper-script} -o new-abi.dump -skip-cxx -vnum ${log4cxx_ABI_VER} $ - DEPENDS log4cxx - COMMENT "Dumping ABI symbols") - - add_custom_target(compare-abi ALL - COMMAND perl ${abi-compliance-script} -skip-internal-symbols "\\d\\(fmt\\)" -skip-internal-types "\\(fmt\\)::" -l log4cxx -old ${LOG4CXX_SOURCE_DIR}/src/main/abi-symbols/abi.dump -new new-abi.dump - DEPENDS dump-abi - COMMENT "Comparing ABI symbols") -endif(LOG4CXX_ABI_CHECK) diff --git a/src/main/include/CMakeLists.txt b/src/main/include/CMakeLists.txt index 13dc50846..26cb928d4 100644 --- a/src/main/include/CMakeLists.txt +++ b/src/main/include/CMakeLists.txt @@ -222,3 +222,13 @@ if(LOG4CXX_QT_SUPPORT) target_include_directories(log4cxx-qt-include PUBLIC . ${CMAKE_CURRENT_BINARY_DIR}) add_dependencies(log4cxx-qt-include log4cxx-include) endif() + +# A list of public header files +set(PUBLIC_HEADER_FILES ${HEADERS} ${GENERATED_HEADERS} ${HEADERS_QT}) +list(FILTER PUBLIC_HEADER_FILES EXCLUDE REGEX ".*/private/.*") +foreach(file ${PUBLIC_HEADER_FILES} ) + file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/../abi-symbols/public_header_files.txt + "${file}\n" + ) +endforeach() + diff --git a/src/main/include/log4cxx/helpers/optionconverter.h b/src/main/include/log4cxx/helpers/optionconverter.h index 3971e7ee9..009988d2f 100644 --- a/src/main/include/log4cxx/helpers/optionconverter.h +++ b/src/main/include/log4cxx/helpers/optionconverter.h @@ -37,9 +37,6 @@ namespace helpers { class Properties; -class Object; -typedef std::shared_ptr ObjectPtr; - class Class; /** A convenience class to convert property values to specific types.*/