aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-09-09 19:00:06 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2020-09-09 20:11:28 +0200
commitb73faa47499ae6bebc92247183d1290dad263fe7 (patch)
treeac25c741d0712eb4d21258c877dd8a4d7ea3654d
parent0265d6e64296ee253d7ac16b8e470e685adc6e98 (diff)
Update to MNCC v7 (Support IPv6 addresses)
-rw-r--r--mncc.h6
-rw-r--r--mncc.py1782
-rw-r--r--mncc.xml3625
3 files changed, 4134 insertions, 1279 deletions
diff --git a/mncc.h b/mncc.h
index 64928a8..230afbd 100644
--- a/mncc.h
+++ b/mncc.h
@@ -5,6 +5,7 @@
*/
#include <stdint.h>
+#include <netinet/in.h>
/* GSM 04.08 Bearer Capability: Information Transfer Capability */
enum gsm48_bcap_itcap {
@@ -316,7 +317,7 @@ struct gsm_data_frame {
unsigned char data[0];
};
-#define MNCC_SOCK_VERSION 6
+#define MNCC_SOCK_VERSION 7
struct gsm_mncc_hello {
uint32_t msg_type;
uint32_t version;
@@ -335,8 +336,7 @@ struct gsm_mncc_hello {
struct gsm_mncc_rtp {
uint32_t msg_type;
uint32_t callref;
- uint32_t ip;
- uint16_t port;
+ struct sockaddr_storage addr;
uint32_t payload_type;
uint32_t payload_msg_type;
char sdp[1024];
diff --git a/mncc.py b/mncc.py
index 9acac29..58e1351 100644
--- a/mncc.py
+++ b/mncc.py
@@ -1,71 +1,169 @@
from ctypes import *
+STRING = c_char_p
-GSM48_BCAP_TR_TR_PREF = 2
-GSM48_BCAP_PAR_EVEN = 2
-GSM48_BCAP_PAR_ODD = 0
+GSM48_BCAP_SV_AMR_OHW = 7
+SOCK_STREAM = 1
+GSM48_BCAP_UR_12000 = 6
+GSM_MNCC_BCAP_RESERVED = 7
+GSM_MNCC_BCAP_FAX_G3 = 3
+GSM48_BCAP_MT_V22bis = 3
+IPPORT_SUPDUP = 95
+IPPORT_TTYLINK = 87
+IPPORT_FINGER = 79
+IPPORT_RJE = 77
+IPPORT_TIMESERVER = 37
GSM48_BCAP_SA_I440_I450 = 1
-GSM48_BCAP_PAR_ZERO = 4
-GSM48_BCAP_SA_X28_NDP = 5
-GSM48_BCAP_ITCAP_SPEECH = 0
-GSM48_BCAP_TR_TRANSP = 0
-GSM48_BCAP_TR_RLP = 1
-GSM48_BCAP_MT_V26ter = 5
-GSM48_BCAP_SA_X32 = 6
-GSM48_BCAP_ITCAP_OTHER = 5
+IPPORT_EXECSERVER = 512
+IPPORT_LOGINSERVER = 513
+GSM48_BCAP_UR_2400 = 3
+IPPORT_EFSSERVER = 520
+IPPORT_DISCARD = 9
+GSM48_BCAP_IR_8k = 2
+IPPROTO_DCCP = 33
+MSG_WAITALL = 256
+GSM48_BCAP_ITCAP_UNR_DIG_INF = 1
+IPPORT_NAMESERVER = 42
+SOCK_DCCP = 6
+GSM_MNCC_BCAP_UNR_DIG = 1
+GSM48_BCAP_MT_V22 = 2
+IPPORT_DAYTIME = 13
+GSM48_BCAP_RRQ_DUAL_HR = 2
+GSM48_BCAP_RRQ_DUAL_FR = 3
+GSM48_BCAP_SV_AMR_OH = 11
+IPPROTO_MH = 135
+GSM48_BCAP_UR_300 = 1
GSM48_BCAP_MT_V32 = 6
-GSM48_BCAP_SV_FR = 0
-GSM48_BCAP_SA_X28_DP_IN = 3
+IPPROTO_PIM = 103
+MSG_MORE = 32768
+IPPROTO_COMP = 108
+IPPROTO_ICMPV6 = 58
+GSM48_BCAP_MT_V21 = 1
GSM48_BCAP_MT_V23 = 4
-GSM48_BCAP_MT_AUTO_1 = 8
-GSM48_BCAP_MT_V22bis = 3
-GSM48_BCAP_ITCAP_FAX_G3 = 3
-GSM48_BCAP_UR_4800 = 4
-GSM48_BCAP_IR_16k = 3
-GSM48_BCAP_RA_OTHER = 3
+SCM_RIGHTS = 1
+IPPORT_MTP = 57
+IPPROTO_BEETPH = 94
+MSG_DONTWAIT = 64
+IPPROTO_ROUTING = 43
+IPPORT_WHOIS = 43
+MSG_CONFIRM = 2048
+GSM48_BCAP_TMOD_CIRCUIT = 0
+IPPROTO_MTP = 92
+IPPORT_RESERVED = 1024
GSM48_BCAP_RA_NONE = 0
-GSM48_BCAP_SV_AMR_F = 4
-GSM48_BCAP_MT_V21 = 1
-GSM48_BCAP_ITCAP_3k1_AUDIO = 2
-GSM48_BCAP_SA_X28_DP_UN = 4
-GSM48_BCAP_TR_RLP_PREF = 3
+IPPORT_CMDSERVER = 514
+IPPROTO_MPLS = 137
+IPPORT_TELNET = 23
+GSM48_BCAP_MT_V26ter = 5
+MSG_WAITFORONE = 65536
+SHUT_RD = 0
+MSG_FIN = 512
+MSG_NOSIGNAL = 16384
+GSM48_BCAP_MT_AUTO_1 = 8
+IPPROTO_MAX = 263
+GSM48_BCAP_MT_UNDEF = 7
+IPPROTO_MPTCP = 262
GSM48_BCAP_SV_AMR_FW = 8
-GSM_MNCC_BCAP_AUDIO = 2
-GSM48_BCAP_RA_X31 = 2
+IPPORT_FTP = 21
GSM48_BCAP_SV_HR = 1
+GSM48_BCAP_PAR_ONE = 5
+IPPROTO_ETHERNET = 143
+GSM48_BCAP_PAR_NONE = 3
+GSM48_BCAP_PAR_ODD = 0
+SOCK_NONBLOCK = 2048
+SOCK_CLOEXEC = 524288
+SOCK_PACKET = 10
GSM48_BCAP_SV_EFR = 2
-GSM48_BCAP_RA_V110_X30 = 1
-GSM48_BCAP_SV_AMR_H = 5
-GSM_MNCC_BCAP_UNR_DIG = 1
-GSM48_BCAP_TMOD_CIRCUIT = 0
GSM48_BCAP_MT_NONE = 0
+GSM48_BCAP_CODING_GSM_STD = 0
+MSG_BATCH = 262144
+SOCK_SEQPACKET = 5
+SOCK_RDM = 4
+SOCK_RAW = 3
+SOCK_DGRAM = 2
+MSG_ZEROCOPY = 67108864
+IPPORT_ECHO = 7
+IPPORT_BIFFUDP = 512
+GSM48_BCAP_ITCAP_FAX_G3 = 3
+IPPROTO_GRE = 47
+GSM48_BCAP_ITCAP_3k1_AUDIO = 2
+MSG_CTRUNC = 8
+MSG_FASTOPEN = 536870912
+GSM48_BCAP_SV_FR = 0
+IPPORT_WHOSERVER = 513
+IPPROTO_UDPLITE = 136
+GSM48_BCAP_RRQ_FR_ONLY = 1
+MSG_SYN = 1024
+IPPROTO_UDP = 17
+IPPROTO_RAW = 255
+GSM48_BCAP_ITCAP_SPEECH = 0
+GSM48_BCAP_SV_AMR_F = 4
+IPPORT_ROUTESERVER = 520
+GSM48_BCAP_SA_X21 = 2
+GSM48_BCAP_SA_X28_DP_UN = 4
+MSG_RST = 4096
+GSM48_BCAP_IR_16k = 3
+GSM48_BCAP_RA_X31 = 2
+MSG_PEEK = 2
+IPPORT_USERRESERVED = 5000
+MSG_TRYHARD = 4
GSM48_BCAP_UR_1200_75 = 7
-GSM48_BCAP_UR_12000 = 6
+MSG_CMSG_CLOEXEC = 1073741824
+GSM48_BCAP_SV_AMR_H = 5
+IPPROTO_ENCAP = 98
+IPPORT_SYSTAT = 11
GSM48_BCAP_UR_9600 = 5
-GSM48_BCAP_MT_UNDEF = 7
-GSM48_BCAP_UR_2400 = 3
+GSM48_BCAP_RA_V110_X30 = 1
+GSM48_BCAP_UR_4800 = 4
+IPPORT_NETSTAT = 15
+GSM48_BCAP_PAR_ZERO = 4
GSM48_BCAP_UR_1200 = 2
-GSM48_BCAP_ITCAP_RESERVED = 7
-GSM48_BCAP_UR_300 = 1
-GSM_MNCC_BCAP_RESERVED = 7
-GSM_MNCC_BCAP_OTHER_ITC = 5
-GSM_MNCC_BCAP_FAX_G3 = 3
-GSM48_BCAP_RRQ_DUAL_FR = 3
-GSM48_BCAP_IR_8k = 2
-GSM48_BCAP_PAR_NONE = 3
+IPPORT_SMTP = 25
+IPPROTO_IP = 0
+IPPROTO_EGP = 8
+IPPROTO_DSTOPTS = 60
GSM_MNCC_BCAP_SPEECH = 0
-GSM48_BCAP_MT_V22 = 2
-GSM48_BCAP_SV_AMR_OH = 11
-GSM48_BCAP_SA_X21 = 2
-GSM48_BCAP_RRQ_DUAL_HR = 2
-GSM48_BCAP_PAR_ONE = 5
-GSM48_BCAP_SV_AMR_OHW = 7
+IPPROTO_NONE = 59
+IPPROTO_FRAGMENT = 44
+MSG_EOR = 128
+IPPROTO_HOPOPTS = 0
+GSM48_BCAP_PAR_EVEN = 2
+GSM_MNCC_BCAP_AUDIO = 2
+IPPROTO_IPV6 = 41
GSM48_BCAP_SV_AMR_OFW = 6
-GSM48_BCAP_ITCAP_UNR_DIG_INF = 1
-GSM48_BCAP_RRQ_FR_ONLY = 1
+GSM48_BCAP_SA_X28_DP_IN = 3
+IPPROTO_AH = 51
+IPPROTO_ESP = 50
+IPPROTO_RSVP = 46
+MSG_TRUNC = 32
+MSG_PROXY = 16
+IPPROTO_PUP = 12
+MSG_DONTROUTE = 4
+GSM48_BCAP_TR_RLP_PREF = 3
+GSM48_BCAP_TR_RLP = 1
+IPPROTO_IPIP = 4
+MSG_OOB = 1
+GSM48_BCAP_SA_X32 = 6
+IPPROTO_IGMP = 2
+IPPROTO_ICMP = 1
+SHUT_RDWR = 2
+IPPROTO_SCTP = 132
+SHUT_WR = 1
+GSM48_BCAP_TR_TR_PREF = 2
+GSM48_BCAP_RA_OTHER = 3
GSM48_BCAP_TMOD_PACKET = 1
-GSM48_BCAP_CODING_GSM_STD = 0
+GSM48_BCAP_ITCAP_RESERVED = 7
+IPPROTO_TP = 29
+MSG_ERRQUEUE = 8192
+SCM_CREDENTIALS = 2
+GSM48_BCAP_SA_X28_NDP = 5
+GSM48_BCAP_TR_TRANSP = 0
+IPPROTO_IDP = 22
+GSM_MNCC_BCAP_OTHER_ITC = 5
+GSM48_BCAP_ITCAP_OTHER = 5
+IPPROTO_TCP = 6
+IPPORT_TFTP = 69
# values for enumeration 'gsm48_bcap_itcap'
gsm48_bcap_itcap = c_int # enum
@@ -104,9 +202,9 @@ gsm48_bcap_modem_type = c_int # enum
gsm48_bcap_speech_ver = c_int # enum
class gsm_mncc_bearer_cap(Structure):
pass
-class N19gsm_mncc_bearer_cap3DOT_0E(Structure):
+class N19gsm_mncc_bearer_cap4DOT_25E(Structure):
pass
-N19gsm_mncc_bearer_cap3DOT_0E._fields_ = [
+N19gsm_mncc_bearer_cap4DOT_25E._fields_ = [
('rate_adaption', gsm48_bcap_ra),
('sig_access', gsm48_bcap_sig_access),
('async', c_int),
@@ -125,7 +223,7 @@ gsm_mncc_bearer_cap._fields_ = [
('radio', c_int),
('speech_ctm', c_int),
('speech_ver', c_int * 8),
- ('data', N19gsm_mncc_bearer_cap3DOT_0E),
+ ('data', N19gsm_mncc_bearer_cap4DOT_25E),
]
class gsm_mncc_number(Structure):
pass
@@ -182,10 +280,11 @@ gsm_mncc_cccap._fields_ = [
# values for unnamed enumeration
class gsm_mncc(Structure):
pass
-uint32_t = c_uint32
-class N8gsm_mncc3DOT_2E(Structure):
+__uint32_t = c_uint
+uint32_t = __uint32_t
+class N8gsm_mncc4DOT_27E(Structure):
pass
-N8gsm_mncc3DOT_2E._fields_ = [
+N8gsm_mncc4DOT_27E._fields_ = [
('sup', c_int),
('inv', c_int),
]
@@ -204,7 +303,7 @@ gsm_mncc._fields_ = [
('facility', gsm_mncc_facility),
('cccap', gsm_mncc_cccap),
('ssversion', gsm_mncc_ssversion),
- ('clir', N8gsm_mncc3DOT_2E),
+ ('clir', N8gsm_mncc4DOT_27E),
('signal', c_int),
('keypad', c_int),
('more', c_int),
@@ -236,12 +335,18 @@ gsm_mncc_hello._fields_ = [
]
class gsm_mncc_rtp(Structure):
pass
-uint16_t = c_uint16
+class sockaddr_storage(Structure):
+ pass
+sa_family_t = c_ushort
+sockaddr_storage._fields_ = [
+ ('ss_family', sa_family_t),
+ ('__ss_padding', c_char * 118),
+ ('__ss_align', c_ulong),
+]
gsm_mncc_rtp._fields_ = [
('msg_type', uint32_t),
('callref', uint32_t),
- ('ip', uint32_t),
- ('port', uint16_t),
+ ('addr', sockaddr_storage),
('payload_type', uint32_t),
('payload_msg_type', uint32_t),
('sdp', c_char * 1024),
@@ -252,186 +357,973 @@ gsm_mncc_bridge._fields_ = [
('msg_type', uint32_t),
('callref', uint32_t * 2),
]
-INT_LEAST8_MAX = 127 # Variable c_int '127'
-_ATFILE_SOURCE = 1 # Variable c_int '1'
+SOL_PPPOL2TP = 273 # Variable c_int '273'
MNCC_SETUP_CNF = 260 # Variable c_int '260'
-GSM_TCHH_FRAME = 770 # Variable c_int '770'
-_SVID_SOURCE = 1 # Variable c_int '1'
-MNCC_F_CAUSE = 32 # Variable c_int '32'
-INT_LEAST32_MIN = -2147483648 # Variable c_int '-0x00000000080000000'
-__GNU_LIBRARY__ = 6 # Variable c_int '6'
+INT_FAST64_WIDTH = 64 # Variable c_int '64'
+SO_RCVBUF = 8 # Variable c_int '8'
MNCC_REL_CNF = 274 # Variable c_int '274'
-__USE_XOPEN = 1 # Variable c_int '1'
-MNCC_REL_REQ = 272 # Variable c_int '272'
+IPV6_FREEBIND = 78 # Variable c_int '78'
+_ATFILE_SOURCE = 1 # Variable c_int '1'
+IP_RECVFRAGSIZE = 25 # Variable c_int '25'
MNCC_RTP_CREATE = 516 # Variable c_int '516'
-__USE_XOPEN2KXSI = 1 # Variable c_int '1'
-MNCC_STOP_DTMF_RSP = 281 # Variable c_int '281'
+SO_PASSCRED = 16 # Variable c_int '16'
+PF_SECURITY = 14 # Variable c_int '14'
+SOL_XDP = 283 # Variable c_int '283'
+INT_FAST16_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
+IP_PASSSEC = 18 # Variable c_int '18'
+MNCC_FACILITY_IND = 276 # Variable c_int '276'
+IPV6_DSTOPTS = 59 # Variable c_int '59'
+IPV6_ORIGDSTADDR = 74 # Variable c_int '74'
+__SIZEOF_PTHREAD_CONDATTR_T = 4 # Variable c_int '4'
+SOL_AAL = 265 # Variable c_int '265'
+SO_TIMESTAMPING_NEW = 65 # Variable c_int '65'
+_BITS_PTHREADTYPES_COMMON_H = 1 # Variable c_int '1'
+INT_FAST16_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
+SOL_ALG = 279 # Variable c_int '279'
+PF_X25 = 9 # Variable c_int '9'
+IP_UNICAST_IF = 50 # Variable c_int '50'
+IP_RECVERR = 11 # Variable c_int '11'
+IN_CLASSA_HOST = 16777215L # Variable c_uint '16777215u'
+__time_t_defined = 1 # Variable c_int '1'
+INT_LEAST16_MAX = 32767 # Variable c_int '32767'
+__NFDBITS = 64 # Variable c_int '64'
+__SIZEOF_PTHREAD_MUTEXATTR_T = 4 # Variable c_int '4'
+IPV6_RECVFRAGSIZE = 77 # Variable c_int '77'
+_POSIX_SOURCE = 1 # Variable c_int '1'
+PF_ISDN = 34 # Variable c_int '34'
+INT_LEAST8_MIN = -128 # Variable c_int '-0x00000000000000080'
+MNCC_REL_IND = 273 # Variable c_int '273'
+INT_FAST64_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
+INT16_WIDTH = 16 # Variable c_int '16'
+SOL_CAIF = 278 # Variable c_int '278'
+SO_MARK = 36 # Variable c_int '36'
+IPV6_HOPLIMIT = 52 # Variable c_int '52'
+__USE_POSIX199309 = 1 # Variable c_int '1'
+MNCC_RTP_CONNECT = 517 # Variable c_int '517'
+INT_LEAST16_WIDTH = 16 # Variable c_int '16'
+SO_BINDTODEVICE = 25 # Variable c_int '25'
+SOL_IUCV = 277 # Variable c_int '277'
+SO_BROADCAST = 6 # Variable c_int '6'
+__GLIBC_USE_DEPRECATED_SCANF = 0 # Variable c_int '0'
+IP_ADD_SOURCE_MEMBERSHIP = 39 # Variable c_int '39'
+__USE_ISOCXX11 = 1 # Variable c_int '1'
+INT_FAST8_WIDTH = 8 # Variable c_int '8'
+MNCC_F_USERUSER = 64 # Variable c_int '64'
+IP_MULTICAST_ALL = 49 # Variable c_int '49'
+PF_ALG = 38 # Variable c_int '38'
+__SIZEOF_PTHREAD_BARRIER_T = 32 # Variable c_int '32'
+INTMAX_WIDTH = 64 # Variable c_int '64'
+SOL_RDS = 276 # Variable c_int '276'
+IP_PMTUDISC_INTERFACE = 4 # Variable c_int '4'
+IPV6_2292RTHDR = 5 # Variable c_int '5'
+MCAST_JOIN_SOURCE_GROUP = 46 # Variable c_int '46'
+IPV6_RTHDR = 57 # Variable c_int '57'
+_BITS_ENDIANNESS_H = 1 # Variable c_int '1'
+IPV6_PMTUDISC_DO = 2 # Variable c_int '2'
+IP_MTU = 14 # Variable c_int '14'
+INT8_MAX = 127 # Variable c_int '127'
+__osockaddr_defined = 1 # Variable c_int '1'
+__USE_KERNEL_IPV6_DEFS = 0 # Variable c_int '0'
+SO_INCOMING_NAPI_ID = 56 # Variable c_int '56'
+__GLIBC_USE_LIB_EXT2 = 1 # Variable c_int '1'
+INET_ADDRSTRLEN = 16 # Variable c_int '16'
+SO_DETACH_REUSEPORT_BPF = 68 # Variable c_int '68'
+INADDR_BROADCAST = 4294967295L # Variable c_uint '4294967295u'
+WCHAR_WIDTH = 32 # Variable c_int '32'
+INTPTR_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
+PF_MPLS = 28 # Variable c_int '28'
+_ENDIAN_H = 1 # Variable c_int '1'
+INADDR_ALLSNOOPERS_GROUP = 3758096490L # Variable c_uint '3758096490u'
+FIOGETOWN = 35075 # Variable c_int '35075'
+MCAST_JOIN_GROUP = 42 # Variable c_int '42'
+__USE_FORTIFY_LEVEL = 0 # Variable c_int '0'
+PTRDIFF_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
+MNCC_F_CCCAP = 2048 # Variable c_int '2048'
+INT32_MIN = -2147483648 # Variable c_int '-0x00000000080000000'
+__USE_XOPEN_EXTENDED = 1 # Variable c_int '1'
+INT_LEAST32_MAX = 2147483647 # Variable c_int '2147483647'
+IP_PKTINFO = 8 # Variable c_int '8'
+UINT32_WIDTH = 32 # Variable c_int '32'
+PF_BLUETOOTH = 31 # Variable c_int '31'
+PF_IRDA = 23 # Variable c_int '23'
+SO_DONTROUTE = 5 # Variable c_int '5'
+PF_IUCV = 32 # Variable c_int '32'
+MNCC_REJ_IND = 296 # Variable c_int '296'
+PF_APPLETALK = 5 # Variable c_int '5'
+UINTMAX_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
+IPV6_PMTUDISC_PROBE = 3 # Variable c_int '3'
+PF_VSOCK = 40 # Variable c_int '40'
+MNCC_SETUP_COMPL_REQ = 261 # Variable c_int '261'
+IPV6_DONTFRAG = 62 # Variable c_int '62'
+SOL_PACKET = 263 # Variable c_int '263'
+MNCC_START_DTMF_IND = 277 # Variable c_int '277'
+UINT_FAST16_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
+__WORDSIZE = 64 # Variable c_int '64'
+UINT_FAST64_WIDTH = 64 # Variable c_int '64'
+MNCC_FRAME_DROP = 514 # Variable c_int '514'
+SOL_RXRPC = 272 # Variable c_int '272'
+INT_FAST8_MIN = -128 # Variable c_int '-0x00000000000000080'
+_XOPEN_SOURCE = 700 # Variable c_int '700'
+SO_KEEPALIVE = 9 # Variable c_int '9'
+WINT_MIN = 0L # Variable c_uint '0u'
+__USE_ISOC95 = 1 # Variable c_int '1'
+IN_CLASSA_MAX = 128 # Variable c_int '128'
+MNCC_ALERT_IND = 267 # Variable c_int '267'
+IN_CLASSC_NSHIFT = 8 # Variable c_int '8'
+IP_PMTUDISC_DO = 2 # Variable c_int '2'
+__GLIBC__ = 2 # Variable c_int '2'
+SO_LOCK_FILTER = 44 # Variable c_int '44'
+__USE_ISOC99 = 1 # Variable c_int '1'
+SO_OOBINLINE = 10 # Variable c_int '10'
+PF_AX25 = 3 # Variable c_int '3'
+MNCC_F_SSVERSION = 1024 # Variable c_int '1024'
+IPV6_MULTICAST_LOOP = 19 # Variable c_int '19'
+SOL_TLS = 282 # Variable c_int '282'
+IPV6_HOPOPTS = 54 # Variable c_int '54'
+SOL_LLC = 268 # Variable c_int '268'
+IPV6_RECVERR = 25 # Variable c_int '25'
+INT_LEAST8_MAX = 127 # Variable c_int '127'
+UINT8_MAX = 255 # Variable c_int '255'
+SOL_NETBEUI = 267 # Variable c_int '267'
+SO_BUSY_POLL = 46 # Variable c_int '46'
+IN_CLASSB_HOST = 65535L # Variable c_uint '65535u'
+__USE_XOPEN = 1 # Variable c_int '1'
+PF_ROSE = 11 # Variable c_int '11'
+IPV6_ADDRFORM = 1 # Variable c_int '1'
+INT8_WIDTH = 8 # Variable c_int '8'
MNCC_PROGRESS_REQ = 265 # Variable c_int '265'
+PF_SMC = 43 # Variable c_int '43'
__USE_POSIX2 = 1 # Variable c_int '1'
-GSM_TCH_FRAME_AMR = 771 # Variable c_int '771'
-__USE_XOPEN2K8XSI = 1 # Variable c_int '1'
-__USE_POSIX199309 = 1 # Variable c_int '1'
-MNCC_FACILITY_IND = 276 # Variable c_int '276'
+INT_LEAST64_WIDTH = 64 # Variable c_int '64'
+__iovec_defined = 1 # Variable c_int '1'
+IPV6_RECVRTHDR = 56 # Variable c_int '56'
+SOL_IRDA = 266 # Variable c_int '266'
MNCC_LCHAN_MODIFY = 515 # Variable c_int '515'
+MNCC_F_REDIRECTING = 8 # Variable c_int '8'
GSM_MAX_FACILITY = 128 # Variable c_int '128'
-UINT8_MAX = 255 # Variable c_int '255'
-UINTMAX_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
-INT_FAST16_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
-__USE_XOPEN_EXTENDED = 1 # Variable c_int '1'
+INT64_WIDTH = 64 # Variable c_int '64'
+IP_PMTUDISC = 10 # Variable c_int '10'
+IPV6_2292PKTINFO = 2 # Variable c_int '2'
+SO_TIMESTAMPNS_NEW = 64 # Variable c_int '64'
+SO_PRIORITY = 12 # Variable c_int '12'
UINT64_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
+SO_INCOMING_CPU = 49 # Variable c_int '49'
+IN_CLASSB_MAX = 65536 # Variable c_int '65536'
+SO_LINGER = 13 # Variable c_int '13'
__USE_ATFILE = 1 # Variable c_int '1'
-MNCC_START_DTMF_REJ = 279 # Variable c_int '279'
-INT_LEAST16_MAX = 32767 # Variable c_int '32767'
-MNCC_SETUP_COMPL_IND = 262 # Variable c_int '262'
-MNCC_SOCK_VERSION = 6 # Variable c_int '6'
+PF_CAIF = 37 # Variable c_int '37'
+IP_MAX_MEMBERSHIPS = 20 # Variable c_int '20'
INTMAX_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
-INT32_MAX = 2147483647 # Variable c_int '2147483647'
-INTMAX_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
-MNCC_USERINFO_IND = 294 # Variable c_int '294'
-_POSIX_SOURCE = 1 # Variable c_int '1'
-_ISOC95_SOURCE = 1 # Variable c_int '1'
-INT64_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
-_ISOC99_SOURCE = 1 # Variable c_int '1'
-MNCC_HOLD_IND = 287 # Variable c_int '287'
+IP_RECVOPTS = 6 # Variable c_int '6'
+UINT_LEAST8_WIDTH = 8 # Variable c_int '8'
+UINT_FAST8_MAX = 255 # Variable c_int '255'
__USE_POSIX = 1 # Variable c_int '1'
-MNCC_HOLD_CNF = 288 # Variable c_int '288'
-INT_LEAST8_MIN = -128 # Variable c_int '-0x00000000000000080'
-MNCC_REL_IND = 273 # Variable c_int '273'
-MNCC_F_SIGNAL = 8192 # Variable c_int '8192'
-INT_FAST64_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
+IP_RECVTOS = 13 # Variable c_int '13'
+IP_PMTUDISC_WANT = 1 # Variable c_int '1'
+MCAST_LEAVE_SOURCE_GROUP = 47 # Variable c_int '47'
+SO_PEERNAME = 28 # Variable c_int '28'
+__BITS_PER_LONG = 64 # Variable c_int '64'
+_BITS_STDINT_INTN_H = 1 # Variable c_int '1'
INT_FAST64_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
-MNCC_DISC_REQ = 270 # Variable c_int '270'
+IPV6_RECVPKTINFO = 49 # Variable c_int '49'
MNCC_BRIDGE = 512 # Variable c_int '512'
+IPV6_PMTUDISC_WANT = 1 # Variable c_int '1'
MNCC_F_CALLED = 2 # Variable c_int '2'
-UINT_LEAST32_MAX = 4294967295L # Variable c_uint '4294967295u'
+IPV6_RTHDR_STRICT = 1 # Variable c_int '1'
+IPV6_RECVHOPOPTS = 53 # Variable c_int '53'
+SO_TYPE = 3 # Variable c_int '3'
+_BITS_WCHAR_H = 1 # Variable c_int '1'
+__GLIBC_MINOR__ = 32 # Variable c_int '32'
+INT64_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
+IPV6_IPSEC_POLICY = 34 # Variable c_int '34'
+SO_ZEROCOPY = 60 # Variable c_int '60'
+__SOCKADDR_COMMON_SIZE = 2L # Variable c_ulong '2ul'
+__clockid_t_defined = 1 # Variable c_int '1'
+SO_ACCEPTCONN = 30 # Variable c_int '30'
+IP_MULTICAST_LOOP = 34 # Variable c_int '34'
+IPV6_AUTOFLOWLABEL = 70 # Variable c_int '70'
+GSM_MAX_USERUSER = 128 # Variable c_int '128'
+__SIZEOF_PTHREAD_ATTR_T = 56 # Variable c_int '56'
+IPV6_MINHOPCOUNT = 73 # Variable c_int '73'
+IP_OPTIONS = 4 # Variable c_int '4'
+SO_RCVLOWAT = 18 # Variable c_int '18'
+SO_DEBUG = 1 # Variable c_int '1'
+__WORDSIZE_TIME64_COMPAT32 = 1 # Variable c_int '1'
+SCM_TIMESTAMPING_PKTINFO = 58 # Variable c_int '58'
+IN_CLASSB_NSHIFT = 16 # Variable c_int '16'
+_SYS_TYPES_H = 1 # Variable c_int '1'
+SO_MEMINFO = 55 # Variable c_int '55'
+PF_NETBEUI = 13 # Variable c_int '13'
+__HAVE_GENERIC_SELECTION = 0 # Variable c_int '0'
+IP_TOS = 1 # Variable c_int '1'
+MNCC_USERINFO_REQ = 293 # Variable c_int '293'
+IP_BIND_ADDRESS_NO_PORT = 24 # Variable c_int '24'
+__USE_GNU = 1 # Variable c_int '1'
+__GLIBC_USE_IEC_60559_FUNCS_EXT_C2X = 1 # Variable c_int '1'
+PF_UNSPEC = 0 # Variable c_int '0'
__USE_LARGEFILE64 = 1 # Variable c_int '1'
-MNCC_RTP_CONNECT = 517 # Variable c_int '517'
+IP_MTU_DISCOVER = 10 # Variable c_int '10'
+SIOCGSTAMP_OLD = 35078 # Variable c_int '35078'
+MNCC_MODIFY_IND = 283 # Variable c_int '283'
+SOL_IPV6 = 41 # Variable c_int '41'
+MNCC_CALL_CONF_IND = 263 # Variable c_int '263'
+_POSIX_C_SOURCE = 200809 # Variable c_long '200809l'
+MNCC_F_SIGNAL = 8192 # Variable c_int '8192'
+UINT_LEAST16_WIDTH = 16 # Variable c_int '16'
+SO_SNDTIMEO_OLD = 21 # Variable c_int '21'
+IPV6_2292PKTOPTIONS = 6 # Variable c_int '6'
+UINT_LEAST64_WIDTH = 64 # Variable c_int '64'
+MNCC_DISC_IND = 271 # Variable c_int '271'
+_DEFAULT_SOURCE = 1 # Variable c_int '1'
+_BITS_ENDIAN_H = 1 # Variable c_int '1'
+SO_CNX_ADVICE = 53 # Variable c_int '53'
+INT8_MIN = -128 # Variable c_int '-0x00000000000000080'
+UINT_LEAST64_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
+IP_BLOCK_SOURCE = 38 # Variable c_int '38'
+UINT_FAST64_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
+SOL_ATM = 264 # Variable c_int '264'
+__SIZEOF_PTHREAD_RWLOCK_T = 56 # Variable c_int '56'
+_THREAD_SHARED_TYPES_H = 1 # Variable c_int '1'
+SOL_PNPIPE = 275 # Variable c_int '275'
+IP_TTL = 2 # Variable c_int '2'
+_SYS_SOCKET_H = 1 # Variable c_int '1'
+PF_TIPC = 30 # Variable c_int '30'
+MNCC_MODIFY_CNF = 285 # Variable c_int '285'
+INT32_MAX = 2147483647 # Variable c_int '2147483647'
+INT_LEAST64_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
+__USE_LARGEFILE = 1 # Variable c_int '1'
+__SIZEOF_PTHREAD_COND_T = 48 # Variable c_int '48'
+PTRDIFF_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
+_FEATURES_H = 1 # Variable c_int '1'
+IPV6_MTU_DISCOVER = 23 # Variable c_int '23'
+SIG_ATOMIC_WIDTH = 32 # Variable c_int '32'
+IP_ROUTER_ALERT = 5 # Variable c_int '5'
+MNCC_MODIFY_REQ = 282 # Variable c_int '282'
+_BITS_TYPES_H = 1 # Variable c_int '1'
+IP_DEFAULT_MULTICAST_LOOP = 1 # Variable c_int '1'
+IPV6_NEXTHOP = 9 # Variable c_int '9'
+IP_MSFILTER = 41 # Variable c_int '41'
+PF_DECnet = 12 # Variable c_int '12'
+INT_LEAST8_WIDTH = 8 # Variable c_int '8'
+IP_MINTTL = 21 # Variable c_int '21'
+MNCC_MODIFY_REJ = 286 # Variable c_int '286'
+PF_QIPCRTR = 42 # Variable c_int '42'
+IP_PMTUDISC_DONT = 0 # Variable c_int '0'
+UINT_LEAST32_WIDTH = 32 # Variable c_int '32'
+_XOPEN_SOURCE_EXTENDED = 1 # Variable c_int '1'
+SIOCGSTAMPNS_OLD = 35079 # Variable c_int '35079'
+PF_LOCAL = 1 # Variable c_int '1'
+MNCC_RETRIEVE_CNF = 291 # Variable c_int '291'
+MNCC_F_EMERGENCY = 256 # Variable c_int '256'
+INADDR_ALLHOSTS_GROUP = 3758096385L # Variable c_uint '3758096385u'
+MNCC_REJ_REQ = 295 # Variable c_int '295'
+IPV6_TCLASS = 67 # Variable c_int '67'
+INT_FAST8_MAX = 127 # Variable c_int '127'
+UINT64_WIDTH = 64 # Variable c_int '64'
+SO_BINDTOIFINDEX = 62 # Variable c_int '62'
+SOL_SOCKET = 1 # Variable c_int '1'
+INTPTR_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
+__KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64 = 1 # Variable c_int '1'
+IPV6_2292DSTOPTS = 4 # Variable c_int '4'
+MNCC_F_CALLING = 4 # Variable c_int '4'
+PF_IB = 27 # Variable c_int '27'
+IP_MULTICAST_TTL = 33 # Variable c_int '33'
+MNCC_CALL_PROC_REQ = 264 # Variable c_int '264'
+WINT_MAX = 4294967295L # Variable c_uint '4294967295u'
+SIOCGPGRP = 35076 # Variable c_int '35076'
+_BITS_STDINT_UINTN_H = 1 # Variable c_int '1'
+IP_ADD_MEMBERSHIP = 35 # Variable c_int '35'
+GSM_BAD_FRAME = 1023 # Variable c_int '1023'
+__GLIBC_USE_DEPRECATED_GETS = 0 # Variable c_int '0'
+PF_NETROM = 6 # Variable c_int '6'
+__glibc_c99_flexarr_available = 1 # Variable c_int '1'
+GSM_TCHH_FRAME = 770 # Variable c_int '770'
+__GNU_LIBRARY__ = 6 # Variable c_int '6'
+_BITS_TYPESIZES_H = 1 # Variable c_int '1'
+IP_RECVTTL = 12 # Variable c_int '12'
+MNCC_REL_REQ = 272 # Variable c_int '272'
+MNCC_STOP_DTMF_RSP = 281 # Variable c_int '281'
+SO_ERROR = 4 # Variable c_int '4'
+MCAST_LEAVE_GROUP = 45 # Variable c_int '45'
+IPV6_RECVHOPLIMIT = 51 # Variable c_int '51'
+IP_ORIGDSTADDR = 20 # Variable c_int '20'
+PF_NFC = 39 # Variable c_int '39'
+IPV6_LEAVE_ANYCAST = 28 # Variable c_int '28'
+GSM_TCHF_FRAME_EFR = 769 # Variable c_int '769'
+IN_CLASSA_NET = 4278190080L # Variable c_uint '4278190080u'
+SOL_TIPC = 271 # Variable c_int '271'
+IPV6_MULTICAST_IF = 17 # Variable c_int '17'
MNCC_NOTIFY_IND = 269 # Variable c_int '269'
-__SYSCALL_WORDSIZE = 64 # Variable c_int '64'
-__GLIBC_MINOR__ = 19 # Variable c_int '19'
-MNCC_SOCKET_HELLO = 1024 # Variable c_int '1024'
+MNCC_SETUP_COMPL_IND = 262 # Variable c_int '262'
+SO_TIMESTAMPNS_OLD = 35 # Variable c_int '35'
+INTMAX_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
+IP_DROP_SOURCE_MEMBERSHIP = 40 # Variable c_int '40'
+__GLIBC_USE_IEC_60559_BFP_EXT_C2X = 1 # Variable c_int '1'
+SO_SNDLOWAT = 19 # Variable c_int '19'
+MNCC_HOLD_CNF = 288 # Variable c_int '288'
+SOL_NFC = 280 # Variable c_int '280'
+__GLIBC_USE_IEC_60559_BFP_EXT = 1 # Variable c_int '1'
+SO_REUSEADDR = 2 # Variable c_int '2'
+__GLIBC_USE_IEC_60559_FUNCS_EXT = 1 # Variable c_int '1'
+PF_PPPOX = 24 # Variable c_int '24'
+SO_BSDCOMPAT = 14 # Variable c_int '14'
+__RLIM_T_MATCHES_RLIM64_T = 1 # Variable c_int '1'
+MNCC_DISC_REQ = 270 # Variable c_int '270'
+IN_CLASSC_HOST = 255L # Variable c_uint '255u'
+PF_RXRPC = 33 # Variable c_int '33'
+__LDOUBLE_REDIRECTS_TO_FLOAT128_ABI = 0 # Variable c_int '0'
+UINT_LEAST32_MAX = 4294967295L # Variable c_uint '4294967295u'
+__GLIBC_USE_IEC_60559_TYPES_EXT = 1 # Variable c_int '1'
+SO_SNDBUF = 7 # Variable c_int '7'
+SO_PEEK_OFF = 42 # Variable c_int '42'
+WINT_WIDTH = 32 # Variable c_int '32'
UINT32_MAX = 4294967295L # Variable c_uint '4294967295u'
MNCC_F_PROGRESS = 128 # Variable c_int '128'
MNCC_HOLD_REJ = 289 # Variable c_int '289'
-GSM_MAX_USERUSER = 128 # Variable c_int '128'
-INT64_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
+IPV6_UNICAST_HOPS = 16 # Variable c_int '16'
+IPV6_AUTHHDR = 10 # Variable c_int '10'
+SO_ATTACH_REUSEPORT_CBPF = 51 # Variable c_int '51'
+IP_DROP_MEMBERSHIP = 36 # Variable c_int '36'
MNCC_SETUP_REQ = 257 # Variable c_int '257'
-MNCC_F_USERUSER = 64 # Variable c_int '64'
-UINT_FAST8_MAX = 255 # Variable c_int '255'
-MNCC_REJ_REQ = 295 # Variable c_int '295'
+SO_SECURITY_ENCRYPTION_TRANSPORT = 23 # Variable c_int '23'
+IPV6_RTHDRDSTOPTS = 55 # Variable c_int '55'
+IP_FREEBIND = 15 # Variable c_int '15'
__USE_XOPEN2K = 1 # Variable c_int '1'
-__WORDSIZE_TIME64_COMPAT32 = 1 # Variable c_int '1'
-__USE_XOPEN2K8 = 1 # Variable c_int '1'
-MNCC_USERINFO_REQ = 293 # Variable c_int '293'
+__FD_SETSIZE = 1024 # Variable c_int '1024'
+INADDR_ALLRTRS_GROUP = 3758096386L # Variable c_uint '3758096386u'
+SIOCATMARK = 35077 # Variable c_int '35077'
+IPV6_PKTINFO = 50 # Variable c_int '50'
+UINTMAX_WIDTH = 64 # Variable c_int '64'
+PF_CAN = 29 # Variable c_int '29'
MNCC_RTP_FREE = 518 # Variable c_int '518'
-__USE_GNU = 1 # Variable c_int '1'
-__USE_BSD = 1 # Variable c_int '1'
-MNCC_F_REDIRECTING = 8 # Variable c_int '8'
+PF_SNA = 22 # Variable c_int '22'
+SOL_DCCP = 269 # Variable c_int '269'
+SO_NO_CHECK = 11 # Variable c_int '11'
+__GLIBC_USE_ISOC2X = 1 # Variable c_int '1'
+SOL_ICMPV6 = 58 # Variable c_int '58'
UINTPTR_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
-MNCC_ALERT_IND = 267 # Variable c_int '267'
-MNCC_ALERT_REQ = 266 # Variable c_int '266'
-MNCC_MODIFY_IND = 283 # Variable c_int '283'
-MNCC_CALL_CONF_IND = 263 # Variable c_int '263'
-_POSIX_C_SOURCE = 200809 # Variable c_long '200809l'
+IPV6_ROUTER_ALERT = 22 # Variable c_int '22'
+__SIZEOF_PTHREAD_BARRIERATTR_T = 4 # Variable c_int '4'
INT16_MIN = -32768 # Variable c_int '-0x00000000000008000'
-_ISOC11_SOURCE = 1 # Variable c_int '1'
MNCC_RETRIEVE_REJ = 292 # Variable c_int '292'
-INT8_MAX = 127 # Variable c_int '127'
-INT16_MAX = 32767 # Variable c_int '32767'
+SO_TXTIME = 61 # Variable c_int '61'
+UINT8_WIDTH = 8 # Variable c_int '8'
+IN_CLASSC_NET = 4294967040L # Variable c_uint '4294967040u'
INT_LEAST64_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
-__USE_SVID = 1 # Variable c_int '1'
-__USE_UNIX98 = 1 # Variable c_int '1'
-__USE_MISC = 1 # Variable c_int '1'
-__GLIBC__ = 2 # Variable c_int '2'
-MNCC_DISC_IND = 271 # Variable c_int '271'
-_DEFAULT_SOURCE = 1 # Variable c_int '1'
+PF_INET = 2 # Variable c_int '2'
+IPV6_MULTICAST_HOPS = 18 # Variable c_int '18'
+PF_IPX = 4 # Variable c_int '4'
MNCC_FACILITY_REQ = 275 # Variable c_int '275'
-INT8_MIN = -128 # Variable c_int '-0x00000000000000080'
+PF_INET6 = 10 # Variable c_int '10'
MNCC_RETRIEVE_IND = 290 # Variable c_int '290'
-INTPTR_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
-UINT_LEAST64_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
+SOL_DECNET = 261 # Variable c_int '261'
+PF_KCM = 41 # Variable c_int '41'
MNCC_F_CONNECTED = 16 # Variable c_int '16'
-UINT_FAST64_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
+IN_CLASSB_NET = 4294901760L # Variable c_uint '4294901760u'
_STDINT_H = 1 # Variable c_int '1'
-MNCC_STOP_DTMF_IND = 280 # Variable c_int '280'
-__USE_FORTIFY_LEVEL = 2 # Variable c_int '2'
-PTRDIFF_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
-MNCC_F_CCCAP = 2048 # Variable c_int '2048'
-MNCC_MODIFY_CNF = 285 # Variable c_int '285'
-INT32_MIN = -2147483648 # Variable c_int '-0x00000000080000000'
+__PTHREAD_MUTEX_HAVE_PREV = 1 # Variable c_int '1'
+PF_KEY = 15 # Variable c_int '15'
+IPV6_UNICAST_IF = 76 # Variable c_int '76'
+IP_PMTUDISC_OMIT = 5 # Variable c_int '5'
+_BITS_BYTESWAP_H = 1 # Variable c_int '1'
+MCAST_EXCLUDE = 0 # Variable c_int '0'
+IPV6_PMTUDISC_DONT = 0 # Variable c_int '0'
+SO_ATTACH_REUSEPORT_EBPF = 52 # Variable c_int '52'
UINT16_MAX = 65535 # Variable c_int '65535'
MNCC_F_KEYPAD = 4096 # Variable c_int '4096'
-INT_LEAST32_MAX = 2147483647 # Variable c_int '2147483647'
-UINT_LEAST8_MAX = 255 # Variable c_int '255'
-INT_LEAST64_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
-__USE_LARGEFILE = 1 # Variable c_int '1'
-__USE_EXTERN_INLINES = 1 # Variable c_int '1'
-PTRDIFF_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
+PF_IEEE802154 = 36 # Variable c_int '36'
+SO_TIMESTAMPING_OLD = 37 # Variable c_int '37'
+IPV6_CHECKSUM = 7 # Variable c_int '7'
+MNCC_USERINFO_IND = 294 # Variable c_int '294'
UINT_FAST32_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
-_FEATURES_H = 1 # Variable c_int '1'
-GSM_MAX_SSVERSION = 128 # Variable c_int '128'
-MNCC_REJ_IND = 296 # Variable c_int '296'
-MNCC_START_DTMF_RSP = 278 # Variable c_int '278'
+SO_SNDTIMEO_NEW = 67 # Variable c_int '67'
+IPV6_PMTUDISC_OMIT = 5 # Variable c_int '5'
SIG_ATOMIC_MIN = -2147483648 # Variable c_int '-0x00000000080000000'
__USE_POSIX199506 = 1 # Variable c_int '1'
-MNCC_MODIFY_REQ = 282 # Variable c_int '282'
+IPV6_PATHMTU = 61 # Variable c_int '61'
+__BIG_ENDIAN = 4321 # Variable c_int '4321'
MNCC_F_FACILITY = 512 # Variable c_int '512'
-SIG_ATOMIC_MAX = 2147483647 # Variable c_int '2147483647'
-INT_FAST32_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
-MNCC_CALL_PROC_REQ = 264 # Variable c_int '264'
-MNCC_SETUP_COMPL_REQ = 261 # Variable c_int '261'
-MNCC_MODIFY_REJ = 286 # Variable c_int '286'
+PF_NETLINK = 16 # Variable c_int '16'
+__USE_XOPEN2K8XSI = 1 # Variable c_int '1'
+__INO_T_MATCHES_INO64_T = 1 # Variable c_int '1'
+SO_PEERCRED = 17 # Variable c_int '17'
+PF_MAX = 45 # Variable c_int '45'
+SO_RCVBUFFORCE = 33 # Variable c_int '33'
GSM_TCHF_FRAME = 768 # Variable c_int '768'
-INT_FAST16_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
-MNCC_START_DTMF_IND = 277 # Variable c_int '277'
-_XOPEN_SOURCE_EXTENDED = 1 # Variable c_int '1'
-MNCC_SETUP_IND = 258 # Variable c_int '258'
-MNCC_NOTIFY_REQ = 268 # Variable c_int '268'
-UINT_FAST16_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
+SO_SECURITY_AUTHENTICATION = 22 # Variable c_int '22'
+SO_SECURITY_ENCRYPTION_NETWORK = 24 # Variable c_int '24'
+SO_RCVTIMEO_OLD = 20 # Variable c_int '20'
+__STATFS_MATCHES_STATFS64 = 1 # Variable c_int '1'
+SO_NOFCS = 43 # Variable c_int '43'
+FIOSETOWN = 35073 # Variable c_int '35073'
INT_LEAST16_MIN = -32768 # Variable c_int '-0x00000000000008000'
-__WORDSIZE = 64 # Variable c_int '64'
-MNCC_FRAME_DROP = 514 # Variable c_int '514'
+IP_UNBLOCK_SOURCE = 37 # Variable c_int '37'
_SYS_CDEFS_H = 1 # Variable c_int '1'
-INT_FAST8_MIN = -128 # Variable c_int '-0x00000000000000080'
-MNCC_RETRIEVE_CNF = 291 # Variable c_int '291'
-MNCC_F_EMERGENCY = 256 # Variable c_int '256'
-_LARGEFILE64_SOURCE = 1 # Variable c_int '1'
MNCC_MODIFY_RSP = 284 # Variable c_int '284'
-_XOPEN_SOURCE = 700 # Variable c_int '700'
MNCC_SETUP_RSP = 259 # Variable c_int '259'
+SO_PROTOCOL = 38 # Variable c_int '38'
SIZE_MAX = 18446744073709551615L # Variable c_ulong '-1ul'
-INT_FAST8_MAX = 127 # Variable c_int '127'
-WINT_MIN = 0L # Variable c_uint '0u'
-__USE_ISOC95 = 1 # Variable c_int '1'
-MNCC_FRAME_RECV = 513 # Variable c_int '513'
UINT_LEAST16_MAX = 65535 # Variable c_int '65535'
-INTPTR_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
-GSM_TCHF_FRAME_EFR = 769 # Variable c_int '769'
-__USE_ISOC99 = 1 # Variable c_int '1'
-_BITS_WCHAR_H = 1 # Variable c_int '1'
-MNCC_F_CALLING = 4 # Variable c_int '4'
+SOL_KCM = 281 # Variable c_int '281'
+SO_TIMESTAMP_OLD = 29 # Variable c_int '29'
+SO_ATTACH_FILTER = 26 # Variable c_int '26'
INT_FAST32_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
-MNCC_F_SSVERSION = 1024 # Variable c_int '1024'
MNCC_F_BEARER_CAP = 1 # Variable c_int '1'
-__USE_ISOC11 = 1 # Variable c_int '1'
-WINT_MAX = 4294967295L # Variable c_uint '4294967295u'
-_BSD_SOURCE = 1 # Variable c_int '1'
+IPV6_RTHDR_LOOSE = 0 # Variable c_int '0'
+PF_LLC = 26 # Variable c_int '26'
+MCAST_UNBLOCK_SOURCE = 44 # Variable c_int '44'
+_BITS_TIME64_H = 1 # Variable c_int '1'
_LARGEFILE_SOURCE = 1 # Variable c_int '1'
-GSM_BAD_FRAME = 1023 # Variable c_int '1023'
-int8_t = c_int8
-int16_t = c_int16
-int32_t = c_int32
-int64_t = c_int64
-uint8_t = c_uint8
-uint64_t = c_uint64
-int_least8_t = c_byte
-int_least16_t = c_short
-int_least32_t = c_int
-int_least64_t = c_long
-uint_least8_t = c_ubyte
-uint_least16_t = c_ushort
-uint_least32_t = c_uint
-uint_least64_t = c_ulong
+_STRUCT_TIMESPEC = 1 # Variable c_int '1'
+PF_ECONET = 19 # Variable c_int '19'
+__USE_XOPEN2KXSI = 1 # Variable c_int '1'
+__LITTLE_ENDIAN = 1234 # Variable c_int '1234'
+__have_pthread_attr_t = 1 # Variable c_int '1'
+MNCC_F_CAUSE = 32 # Variable c_int '32'
+SO_ATTACH_BPF = 50 # Variable c_int '50'
+PF_RDS = 21 # Variable c_int '21'
+UINT16_WIDTH = 16 # Variable c_int '16'
+INT64_MAX = 9223372036854775807 # Variable c_long '9223372036854775807l'
+__USE_XOPEN2K8 = 1 # Variable c_int '1'
+IP_HDRINCL = 3 # Variable c_int '3'
+IPV6_HDRINCL = 36 # Variable c_int '36'
+GSM_TCH_FRAME_AMR = 771 # Variable c_int '771'
+IP_PMTUDISC_PROBE = 3 # Variable c_int '3'
+SO_MAX_PACING_RATE = 47 # Variable c_int '47'
+_BITS_UINTN_IDENTITY_H = 1 # Variable c_int '1'
+_SS_PADSIZE = 118L # Variable c_ulong '118ul'
+IP_IPSEC_POLICY = 16 # Variable c_int '16'
+MNCC_SOCK_VERSION = 7 # Variable c_int '7'
+SCM_TIMESTAMPING_OPT_STATS = 54 # Variable c_int '54'
+MNCC_START_DTMF_REJ = 279 # Variable c_int '279'
+IPV6_RTHDR_TYPE_0 = 0 # Variable c_int '0'
+_SYS_SELECT_H = 1 # Variable c_int '1'
+SO_PEERSEC = 31 # Variable c_int '31'
+MCAST_BLOCK_SOURCE = 43 # Variable c_int '43'
+SOL_BLUETOOTH = 274 # Variable c_int '274'
+_ISOC95_SOURCE = 1 # Variable c_int '1'
+SO_SNDBUFFORCE = 32 # Variable c_int '32'
+_ISOC99_SOURCE = 1 # Variable c_int '1'
+MCAST_INCLUDE = 1 # Variable c_int '1'
+INADDR_LOOPBACK = 2130706433L # Variable c_uint '2130706433u'
+PF_PACKET = 17 # Variable c_int '17'
+PF_ATMPVC = 8 # Variable c_int '8'
+__clock_t_defined = 1 # Variable c_int '1'
+IP_PKTOPTIONS = 9 # Variable c_int '9'
+__SYSCALL_WORDSIZE = 64 # Variable c_int '64'
+__USE_MISC = 1 # Variable c_int '1'
+SO_DETACH_FILTER = 27 # Variable c_int '27'
+MNCC_SOCKET_HELLO = 1024 # Variable c_int '1024'
+__sigset_t_defined = 1 # Variable c_int '1'
+__timer_t_defined = 1 # Variable c_int '1'
+IPV6_LEAVE_GROUP = 21 # Variable c_int '21'
+INT32_WIDTH = 32 # Variable c_int '32'
+SO_SELECT_ERR_QUEUE = 45 # Variable c_int '45'
+MCAST_MSFILTER = 48 # Variable c_int '48'
+__BIT_TYPES_DEFINED__ = 1 # Variable c_int '1'
+SO_BPF_EXTENSIONS = 48 # Variable c_int '48'
+IP_DEFAULT_MULTICAST_TTL = 1 # Variable c_int '1'
+INADDR_NONE = 4294967295L # Variable c_uint '4294967295u'
+IPV6_V6ONLY = 26 # Variable c_int '26'
+SOMAXCONN = 4096 # Variable c_int '4096'
+SO_RXQ_OVFL = 40 # Variable c_int '40'
+IPV6_RECVDSTOPTS = 58 # Variable c_int '58'
+IPV6_MTU = 24 # Variable c_int '24'
+_ISOC2X_SOURCE = 1 # Variable c_int '1'
+SO_TIMESTAMP_NEW = 63 # Variable c_int '63'
+IP_CHECKSUM = 23 # Variable c_int '23'
+_SS_SIZE = 128 # Variable c_int '128'
+_BITS_SOCKADDR_H = 1 # Variable c_int '1'
+MNCC_FRAME_RECV = 513 # Variable c_int '513'
+IPV6_ROUTER_ALERT_ISOLATE = 30 # Variable c_int '30'
+INADDR_UNSPEC_GROUP = 3758096384L # Variable c_uint '3758096384u'
+SOL_RAW = 255 # Variable c_int '255'
+_ISOC11_SOURCE = 1 # Variable c_int '1'
+IPV6_TRANSPARENT = 75 # Variable c_int '75'
+IPV6_2292HOPOPTS = 3 # Variable c_int '3'
+INT16_MAX = 32767 # Variable c_int '32767'
+__SIZEOF_PTHREAD_MUTEX_T = 40 # Variable c_int '40'
+__USE_UNIX98 = 1 # Variable c_int '1'
+PF_ASH = 18 # Variable c_int '18'
+IPV6_2292HOPLIMIT = 8 # Variable c_int '8'
+IN_LOOPBACKNET = 127 # Variable c_int '127'
+UINT_FAST8_WIDTH = 8 # Variable c_int '8'
+INADDR_MAX_LOCAL_GROUP = 3758096639L # Variable c_uint '3758096639u'
+SOL_IP = 0 # Variable c_int '0'
+IP_XFRM_POLICY = 17 # Variable c_int '17'
+SO_PEERGROUPS = 59 # Variable c_int '59'
+IN_CLASSA_NSHIFT = 24 # Variable c_int '24'
+PF_BRIDGE = 7 # Variable c_int '7'
+PF_XDP = 44 # Variable c_int '44'
+INT_LEAST32_MIN = -2147483648 # Variable c_int '-0x00000000080000000'
+INADDR_ANY = 0L # Variable c_uint '0u'
+_THREAD_MUTEX_INTERNAL_H = 1 # Variable c_int '1'
+UINT_LEAST8_MAX = 255 # Variable c_int '255'
+MNCC_HOLD_IND = 287 # Variable c_int '287'
+_BITS_PTHREADTYPES_ARCH_H = 1 # Variable c_int '1'
+PF_PHONET = 35 # Variable c_int '35'
+IPV6_RECVPATHMTU = 60 # Variable c_int '60'
+IPV6_ADDR_PREFERENCES = 72 # Variable c_int '72'
+GSM_MAX_SSVERSION = 128 # Variable c_int '128'
+MNCC_ALERT_REQ = 266 # Variable c_int '266'
+MNCC_START_DTMF_RSP = 278 # Variable c_int '278'
+INET6_ADDRSTRLEN = 46 # Variable c_int '46'
+IPV6_JOIN_ANYCAST = 27 # Variable c_int '27'
+SIG_ATOMIC_MAX = 2147483647 # Variable c_int '2147483647'
+SO_WIFI_STATUS = 41 # Variable c_int '41'
+IP_RETOPTS = 7 # Variable c_int '7'
+IPV6_JOIN_GROUP = 20 # Variable c_int '20'
+SO_REUSEPORT = 15 # Variable c_int '15'
+INT_FAST32_MIN = -9223372036854775808 # Variable c_long '-0x08000000000000000l'
+SO_COOKIE = 57 # Variable c_int '57'
+IPV6_MULTICAST_ALL = 29 # Variable c_int '29'
+SOL_X25 = 262 # Variable c_int '262'
+MNCC_SETUP_IND = 258 # Variable c_int '258'
+PF_ATMSVC = 20 # Variable c_int '20'
+MNCC_NOTIFY_REQ = 268 # Variable c_int '268'
+MNCC_STOP_DTMF_IND = 280 # Variable c_int '280'
+__SIZEOF_PTHREAD_RWLOCKATTR_T = 8 # Variable c_int '8'
+__PDP_ENDIAN = 3412 # Variable c_int '3412'
+SOL_NETLINK = 270 # Variable c_int '270'
+IP_NODEFRAG = 22 # Variable c_int '22'
+IPV6_PMTUDISC_INTERFACE = 4 # Variable c_int '4'
+IP_TRANSPARENT = 19 # Variable c_int '19'
+_LARGEFILE64_SOURCE = 1 # Variable c_int '1'
+__OFF_T_MATCHES_OFF64_T = 1 # Variable c_int '1'
+IPV6_XFRM_POLICY = 35 # Variable c_int '35'
+_SIGSET_NWORDS = 16L # Variable c_ulong '16ul'
+PF_WANPIPE = 25 # Variable c_int '25'
+IPV6_RECVTCLASS = 66 # Variable c_int '66'
+SO_DOMAIN = 39 # Variable c_int '39'
+IP_MULTICAST_IF = 32 # Variable c_int '32'
+INT_LEAST32_WIDTH = 32 # Variable c_int '32'
+SO_RCVTIMEO_NEW = 66 # Variable c_int '66'
+__USE_ISOC11 = 1 # Variable c_int '1'
+SO_PASSSEC = 34 # Variable c_int '34'
+__timeval_defined = 1 # Variable c_int '1'
+_NETINET_IN_H = 1 # Variable c_int '1'
+SIOCSPGRP = 35074 # Variable c_int '35074'
+__kernel_long_t = c_long
+__kernel_ulong_t = c_ulong
+__kernel_ino_t = __kernel_ulong_t
+__kernel_mode_t = c_uint
+__kernel_pid_t = c_int
+__kernel_ipc_pid_t = c_int
+__kernel_uid_t = c_uint
+__kernel_gid_t = c_uint
+__kernel_suseconds_t = __kernel_long_t
+__kernel_daddr_t = c_int
+__kernel_uid32_t = c_uint
+__kernel_gid32_t = c_uint
+__kernel_size_t = __kernel_ulong_t
+__kernel_ssize_t = __kernel_long_t
+__kernel_ptrdiff_t = __kernel_long_t
+class __kernel_fsid_t(Structure):
+ pass
+__kernel_fsid_t._fields_ = [
+ ('val', c_int * 2),
+]
+__kernel_off_t = __kernel_long_t
+__kernel_loff_t = c_longlong
+__kernel_old_time_t = __kernel_long_t
+__kernel_time_t = __kernel_long_t
+__kernel_time64_t = c_longlong
+__kernel_clock_t = __kernel_long_t
+__kernel_timer_t = c_int
+__kernel_clockid_t = c_int
+__kernel_caddr_t = STRING
+__kernel_uid16_t = c_ushort
+__kernel_gid16_t = c_ushort
+__kernel_old_uid_t = c_ushort
+__kernel_old_gid_t = c_ushort
+__kernel_old_dev_t = c_ulong
+class ip_opts(Structure):
+ pass
+class in_addr(Structure):
+ pass
+in_addr_t = uint32_t
+in_addr._fields_ = [
+ ('s_addr', in_addr_t),
+]
+ip_opts._fields_ = [
+ ('ip_dst', in_addr),
+ ('ip_opts', c_char * 40),
+]
+class ip_mreqn(Structure):
+ pass
+ip_mreqn._fields_ = [
+ ('imr_multiaddr', in_addr),
+ ('imr_address', in_addr),
+ ('imr_ifindex', c_int),
+]
+class in_pktinfo(Structure):
+ pass
+in_pktinfo._fields_ = [
+ ('ipi_ifindex', c_int),
+ ('ipi_spec_dst', in_addr),
+ ('ipi_addr', in_addr),
+]
+pthread_t = c_ulong
+pthread_key_t = c_uint
+pthread_once_t = c_int
+class pthread_attr_t(Union):
+ pass
+pthread_spinlock_t = c_int
+__socklen_t = c_uint
+socklen_t = __socklen_t
+class sockaddr(Structure):
+ pass
+sockaddr._fields_ = [
+ ('sa_family', sa_family_t),
+ ('sa_data', c_char * 14),
+]
+
+# values for unnamed enumeration
+class msghdr(Structure):
+ pass
+class iovec(Structure):
+ pass
+size_t = c_ulong
+msghdr._fields_ = [
+ ('msg_name', c_void_p),
+ ('msg_namelen', socklen_t),
+ ('msg_iov', POINTER(iovec)),
+ ('msg_iovlen', size_t),
+ ('msg_control', c_void_p),
+ ('msg_controllen', size_t),
+ ('msg_flags', c_int),
+]
+class cmsghdr(Structure):
+ pass
+cmsghdr._fields_ = [
+ ('cmsg_len', size_t),
+ ('cmsg_level', c_int),
+ ('cmsg_type', c_int),
+ ('__cmsg_data', c_ubyte * 0),
+]
+
+# values for unnamed enumeration
+class ucred(Structure):
+ pass
+__pid_t = c_int
+pid_t = __pid_t
+__uid_t = c_uint
+uid_t = __uid_t
+__gid_t = c_uint
+gid_t = __gid_t
+ucred._fields_ = [
+ ('pid', pid_t),
+ ('uid', uid_t),
+ ('gid', gid_t),
+]
+class linger(Structure):
+ pass
+linger._fields_ = [
+ ('l_onoff', c_int),
+ ('l_linger', c_int),
+]
+
+# values for enumeration '__socket_type'
+__socket_type = c_int # enum
+__int8_t = c_byte
+int8_t = __int8_t
+__int16_t = c_short
+int16_t = __int16_t
+__int32_t = c_int
+int32_t = __int32_t
+__int64_t = c_long
+int64_t = __int64_t
+__uint8_t = c_ubyte
+uint8_t = __uint8_t
+__uint16_t = c_ushort
+uint16_t = __uint16_t
+__uint64_t = c_ulong
+uint64_t = __uint64_t
+class __pthread_mutex_s(Structure):
+ pass
+class __pthread_internal_list(Structure):
+ pass
+__pthread_internal_list._fields_ = [
+ ('__prev', POINTER(__pthread_internal_list)),
+ ('__next', POINTER(__pthread_internal_list)),
+]
+__pthread_list_t = __pthread_internal_list
+__pthread_mutex_s._fields_ = [
+ ('__lock', c_int),
+ ('__count', c_uint),
+ ('__owner', c_int),
+ ('__nusers', c_uint),
+ ('__kind', c_int),
+ ('__spins', c_short),
+ ('__elision', c_short),
+ ('__list', __pthread_list_t),
+]
+class __pthread_rwlock_arch_t(Structure):
+ pass
+__pthread_rwlock_arch_t._fields_ = [
+ ('__readers', c_uint),
+ ('__writers', c_uint),
+ ('__wrphase_futex', c_uint),
+ ('__writers_futex', c_uint),
+ ('__pad3', c_uint),
+ ('__pad4', c_uint),
+ ('__cur_writer', c_int),
+ ('__shared', c_int),
+ ('__rwelision', c_byte),
+ ('__pad1', c_ubyte * 7),
+ ('__pad2', c_ulong),
+ ('__flags', c_uint),
+]
+class __pthread_internal_slist(Structure):
+ pass
+__pthread_internal_slist._fields_ = [
+ ('__next', POINTER(__pthread_internal_slist)),
+]
+__pthread_slist_t = __pthread_internal_slist
+class __pthread_cond_s(Structure):
+ pass
+class N16__pthread_cond_s3DOT_3E(Union):
+ pass
+class N16__pthread_cond_s3DOT_33DOT_4E(Structure):
+ pass
+N16__pthread_cond_s3DOT_33DOT_4E._fields_ = [
+ ('__low', c_uint),
+ ('__high', c_uint),
+]
+N16__pthread_cond_s3DOT_3E._fields_ = [
+ ('__wseq', c_ulonglong),
+ ('__wseq32', N16__pthread_cond_s3DOT_33DOT_4E),
+]
+class N16__pthread_cond_s3DOT_5E(Union):
+ pass
+class N16__pthread_cond_s3DOT_53DOT_6E(Structure):
+ pass
+N16__pthread_cond_s3DOT_53DOT_6E._fields_ = [
+ ('__low', c_uint),
+ ('__high', c_uint),
+]
+N16__pthread_cond_s3DOT_5E._fields_ = [
+ ('__g1_start', c_ulonglong),
+ ('__g1_start32', N16__pthread_cond_s3DOT_53DOT_6E),
+]
+__pthread_cond_s._anonymous_ = ['_0', '_1']
+__pthread_cond_s._fields_ = [
+ ('_0', N16__pthread_cond_s3DOT_3E),
+ ('_1', N16__pthread_cond_s3DOT_5E),
+ ('__g_refs', c_uint * 2),
+ ('__g_size', c_uint * 2),
+ ('__g1_orig_size', c_uint),
+ ('__wrefs', c_uint),
+ ('__g_signals', c_uint * 2),
+]
+__tss_t = c_uint
+__thrd_t = c_ulong
+class __once_flag(Structure):
+ pass
+__once_flag._fields_ = [
+ ('__data', c_int),
+]
+__u_char = c_ubyte
+__u_short = c_ushort
+__u_int = c_uint
+__u_long = c_ulong
+__int_least8_t = __int8_t
+__uint_least8_t = __uint8_t
+__int_least16_t = __int16_t
+__uint_least16_t = __uint16_t
+__int_least32_t = __int32_t
+__uint_least32_t = __uint32_t
+__int_least64_t = __int64_t
+__uint_least64_t = __uint64_t
+__quad_t = c_long
+__u_quad_t = c_ulong
+__intmax_t = c_long
+__uintmax_t = c_ulong
+__dev_t = c_ulong
+__ino_t = c_ulong
+__ino64_t = c_ulong
+__mode_t = c_uint
+__nlink_t = c_ulong
+__off_t = c_long
+__off64_t = c_long
+class __fsid_t(Structure):
+ pass
+__fsid_t._fields_ = [
+ ('__val', c_int * 2),
+]
+__clock_t = c_long
+__rlim_t = c_ulong
+__rlim64_t = c_ulong
+__id_t = c_uint
+__time_t = c_long
+__useconds_t = c_uint
+__suseconds_t = c_long
+__suseconds64_t = c_long
+__daddr_t = c_int
+__key_t = c_int
+__clockid_t = c_int
+__timer_t = c_void_p
+__blksize_t = c_long
+__blkcnt_t = c_long
+__blkcnt64_t = c_long
+__fsblkcnt_t = c_ulong
+__fsblkcnt64_t = c_ulong
+__fsfilcnt_t = c_ulong
+__fsfilcnt64_t = c_ulong
+__fsword_t = c_long
+__ssize_t = c_long
+__syscall_slong_t = c_long
+__syscall_ulong_t = c_ulong
+__loff_t = __off64_t
+__caddr_t = STRING
+__intptr_t = c_long
+__sig_atomic_t = c_int
+class __sigset_t(Structure):
+ pass
+__sigset_t._fields_ = [
+ ('__val', c_ulong * 16),
+]
+clock_t = __clock_t
+clockid_t = __clockid_t
+sigset_t = __sigset_t
+iovec._fields_ = [
+ ('iov_base', c_void_p),
+ ('iov_len', size_t),
+]
+class osockaddr(Structure):
+ pass
+osockaddr._fields_ = [
+ ('sa_family', c_ushort),
+ ('sa_data', c_ubyte * 14),
+]
+class timespec(Structure):
+ pass
+timespec._fields_ = [
+ ('tv_sec', __time_t),
+ ('tv_nsec', __syscall_slong_t),
+]
+class timeval(Structure):
+ pass
+timeval._fields_ = [
+ ('tv_sec', __time_t),
+ ('tv_usec', __suseconds_t),
+]
+time_t = __time_t
+timer_t = __timer_t
+class __kernel_fd_set(Structure):
+ pass
+__kernel_fd_set._fields_ = [
+ ('fds_bits', c_ulong * 16),
+]
+__kernel_sighandler_t = CFUNCTYPE(None, c_int)
+__kernel_key_t = c_int
+__kernel_mqd_t = c_int
+
+# values for unnamed enumeration
+
+# values for unnamed enumeration
+in_port_t = uint16_t
+
+# values for unnamed enumeration
+class in6_addr(Structure):
+ pass
+class N8in6_addr4DOT_24E(Union):
+ pass
+N8in6_addr4DOT_24E._fields_ = [
+ ('__u6_addr8', uint8_t * 16),
+ ('__u6_addr16', uint16_t * 8),
+ ('__u6_addr32', uint32_t * 4),
+]
+in6_addr._fields_ = [
+ ('__in6_u', N8in6_addr4DOT_24E),
+]
+class sockaddr_in(Structure):
+ pass
+sockaddr_in._fields_ = [
+ ('sin_family', sa_family_t),
+ ('sin_port', in_port_t),
+ ('sin_addr', in_addr),
+ ('sin_zero', c_ubyte * 8),
+]
+class sockaddr_in6(Structure):
+ pass
+sockaddr_in6._fields_ = [
+ ('sin6_family', sa_family_t),
+ ('sin6_port', in_port_t),
+ ('sin6_flowinfo', uint32_t),
+ ('sin6_addr', in6_addr),
+ ('sin6_scope_id', uint32_t),
+]
+class ip_mreq(Structure):
+ pass
+ip_mreq._fields_ = [
+ ('imr_multiaddr', in_addr),
+ ('imr_interface', in_addr),
+]
+class ip_mreq_source(Structure):
+ pass
+ip_mreq_source._fields_ = [
+ ('imr_multiaddr', in_addr),
+ ('imr_interface', in_addr),
+ ('imr_sourceaddr', in_addr),
+]
+class ipv6_mreq(Structure):
+ pass
+ipv6_mreq._fields_ = [
+ ('ipv6mr_multiaddr', in6_addr),
+ ('ipv6mr_interface', c_uint),
+]
+class group_req(Structure):
+ pass
+group_req._fields_ = [
+ ('gr_interface', uint32_t),
+ ('gr_group', sockaddr_storage),
+]
+class group_source_req(Structure):
+ pass
+group_source_req._fields_ = [
+ ('gsr_interface', uint32_t),
+ ('gsr_group', sockaddr_storage),
+ ('gsr_source', sockaddr_storage),
+]
+class ip_msfilter(Structure):
+ pass
+ip_msfilter._fields_ = [
+ ('imsf_multiaddr', in_addr),
+ ('imsf_interface', in_addr),
+ ('imsf_fmode', uint32_t),
+ ('imsf_numsrc', uint32_t),
+ ('imsf_slist', in_addr * 1),
+]
+class group_filter(Structure):
+ pass
+group_filter._fields_ = [
+ ('gf_interface', uint32_t),
+ ('gf_group', sockaddr_storage),
+ ('gf_fmode', uint32_t),
+ ('gf_numsrc', uint32_t),
+ ('gf_slist', sockaddr_storage * 1),
+]
+class in6_pktinfo(Structure):
+ pass
+in6_pktinfo._fields_ = [
+ ('ipi6_addr', in6_addr),
+ ('ipi6_ifindex', c_uint),
+]
+class ip6_mtuinfo(Structure):
+ pass
+ip6_mtuinfo._fields_ = [
+ ('ip6m_addr', sockaddr_in6),
+ ('ip6m_mtu', uint32_t),
+]
+int_least8_t = __int_least8_t
+int_least16_t = __int_least16_t
+int_least32_t = __int_least32_t
+int_least64_t = __int_least64_t
+uint_least8_t = __uint_least8_t
+uint_least16_t = __uint_least16_t
+uint_least32_t = __uint_least32_t
+uint_least64_t = __uint_least64_t
int_fast8_t = c_byte
int_fast16_t = c_long
int_fast32_t = c_long
@@ -442,116 +1334,396 @@ uint_fast32_t = c_ulong
uint_fast64_t = c_ulong
intptr_t = c_long
uintptr_t = c_ulong
-intmax_t = c_long
-uintmax_t = c_ulong
-__all__ = ['GSM48_BCAP_SA_X28_DP_UN', 'GSM48_BCAP_ITCAP_OTHER',
- 'GSM48_BCAP_UR_9600', '_POSIX_C_SOURCE', '_ATFILE_SOURCE',
- 'MNCC_SETUP_CNF', 'GSM48_BCAP_PAR_ONE', 'GSM_TCHH_FRAME',
- 'GSM48_BCAP_RRQ_DUAL_FR', '__USE_ATFILE', 'INT_LEAST8_MAX',
- 'MNCC_F_CAUSE', 'INT32_MIN', 'MNCC_SETUP_RSP',
- '__GNU_LIBRARY__', 'MNCC_REL_CNF', 'WINT_MIN',
- 'MNCC_LCHAN_MODIFY', '__USE_XOPEN', 'MNCC_REL_REQ',
- 'MNCC_RTP_CREATE', 'MNCC_REJ_IND', '__USE_XOPEN2KXSI',
- 'GSM48_BCAP_TMOD_PACKET', 'UINT_FAST16_MAX',
- 'MNCC_PROGRESS_REQ', 'uint8_t', '__USE_POSIX2',
+intmax_t = __intmax_t
+uintmax_t = __uintmax_t
+__fd_mask = c_long
+class fd_set(Structure):
+ pass
+fd_set._fields_ = [
+ ('fds_bits', __fd_mask * 16),
+]
+fd_mask = __fd_mask
+
+# values for unnamed enumeration
+class mmsghdr(Structure):
+ pass
+mmsghdr._fields_ = [
+ ('msg_hdr', msghdr),
+ ('msg_len', c_uint),
+]
+u_char = __u_char
+u_short = __u_short
+u_int = __u_int
+u_long = __u_long
+quad_t = __quad_t
+u_quad_t = __u_quad_t
+fsid_t = __fsid_t
+loff_t = __loff_t
+ino_t = __ino_t
+ino64_t = __ino64_t
+dev_t = __dev_t
+mode_t = __mode_t
+nlink_t = __nlink_t
+off_t = __off_t
+off64_t = __off64_t
+id_t = __id_t
+ssize_t = __ssize_t
+daddr_t = __daddr_t
+caddr_t = __caddr_t
+key_t = __key_t
+useconds_t = __useconds_t
+suseconds_t = __suseconds_t
+ulong = c_ulong
+ushort = c_ushort
+uint = c_uint
+u_int8_t = __uint8_t
+u_int16_t = __uint16_t
+u_int32_t = __uint32_t
+u_int64_t = __uint64_t
+register_t = c_long
+blksize_t = __blksize_t
+blkcnt_t = __blkcnt_t
+fsblkcnt_t = __fsblkcnt_t
+fsfilcnt_t = __fsfilcnt_t
+blkcnt64_t = __blkcnt64_t
+fsblkcnt64_t = __fsblkcnt64_t
+fsfilcnt64_t = __fsfilcnt64_t
+pthread_attr_t._fields_ = [
+ ('__size', c_char * 56),
+ ('__align', c_long),
+]
+__all__ = ['gsm_mncc_number', 'GSM48_BCAP_ITCAP_OTHER',
+ 'SOL_PPPOL2TP', 'MNCC_SETUP_CNF', '__pthread_mutex_s',
+ 'socklen_t', 'int_fast32_t', 'INT_FAST64_WIDTH',
+ 'SO_RCVBUF', 'MNCC_REL_CNF', 'MSG_DONTROUTE',
+ 'IPV6_FREEBIND', '_ATFILE_SOURCE', 'IP_RECVFRAGSIZE',
+ '__kernel_gid16_t', 'MNCC_RTP_CREATE', 'SO_PASSCRED',
+ 'GSM48_BCAP_TMOD_PACKET', '__once_flag', 'uint8_t',
+ 'gsm_mncc_progress', 'IP_PASSSEC', '__kernel_size_t',
+ 'MNCC_FACILITY_IND', 'IPV6_DSTOPTS',
+ 'GSM48_BCAP_ITCAP_RESERVED', 'IPPORT_ROUTESERVER',
+ '__SIZEOF_PTHREAD_CONDATTR_T', 'SOL_AAL',
+ 'SO_TIMESTAMPING_NEW', '__kernel_daddr_t',
+ '_BITS_PTHREADTYPES_COMMON_H', '__pthread_internal_list',
+ 'INT_FAST16_MIN', 'MSG_CTRUNC', 'IPPROTO_RSVP',
+ 'GSM_MNCC_BCAP_UNR_DIG', 'SO_OOBINLINE', 'IP_RECVERR',
+ 'IN_CLASSA_HOST', 'SOCK_RDM', 'IPPROTO_AH',
+ '__time_t_defined', 'INT_LEAST16_MAX', '__NFDBITS',
+ 'in_port_t', 'MSG_RST', 'IPPORT_MTP', 'IPPORT_TTYLINK',
+ 'GSM48_BCAP_TR_RLP', 'IPV6_RECVFRAGSIZE', '_POSIX_SOURCE',
+ 'uint_fast16_t', 'in_pktinfo', 'PF_ISDN',
+ 'SO_SELECT_ERR_QUEUE', '__ssize_t', '__kernel_loff_t',
+ 'N16__pthread_cond_s3DOT_33DOT_4E', 'fsfilcnt_t',
+ '__off_t', 'INT_LEAST8_MIN', 'MNCC_REL_IND', '__uint64_t',
+ 'INT_FAST64_MIN', 'timespec', 'INT16_WIDTH', '__off64_t',
+ 'SOL_CAIF', 'SO_MARK', 'IPV6_HOPLIMIT', 'ucred',
+ 'MSG_NOSIGNAL', '__USE_POSIX199309', 'MNCC_RTP_CONNECT',
+ '__clockid_t', 'INT_LEAST16_WIDTH', 'osockaddr',
+ 'IPPROTO_RAW', 'SOL_IUCV', 'SO_BROADCAST',
+ 'GSM48_BCAP_SA_I440_I450', '__GLIBC_USE_DEPRECATED_SCANF',
+ 'id_t', 'MSG_TRYHARD', '__USE_ISOCXX11', 'SO_DEBUG',
+ 'MNCC_CALL_CONF_IND', 'PF_SECURITY', 'MNCC_F_USERUSER',
+ 'in_addr', 'IP_MULTICAST_ALL', 'SOCK_CLOEXEC', 'PF_ALG',
+ '__SIZEOF_PTHREAD_BARRIER_T', 'INTMAX_WIDTH',
+ 'IPPROTO_ENCAP', 'IPPROTO_ESP', 'GSM_MNCC_BCAP_SPEECH',
+ 'IP_DEFAULT_MULTICAST_TTL', 'SHUT_RD', 'SOL_RDS',
+ 'PF_IUCV', 'ip_mreq_source', 'MCAST_JOIN_SOURCE_GROUP',
+ 'SCM_RIGHTS', 'INADDR_NONE', 'IPV6_RECVPATHMTU',
+ 'IPV6_RTHDR', '__kernel_fsid_t', 'GSM48_BCAP_PAR_ZERO',
+ 'IPV6_V6ONLY', '__kernel_sighandler_t',
+ '_BITS_ENDIANNESS_H', 'uint_fast8_t', 'IPV6_PMTUDISC_DO',
+ 'IP_MTU', 'GSM48_BCAP_RA_OTHER', 'IPPROTO_TCP', 'INT8_MAX',
+ '__osockaddr_defined', '__USE_KERNEL_IPV6_DEFS',
+ 'gsm48_bcap_rrq', '__int16_t', 'ipv6_mreq',
+ 'SO_INCOMING_NAPI_ID', 'timer_t', '__GLIBC_USE_LIB_EXT2',
+ 'INET_ADDRSTRLEN', 'SO_DETACH_REUSEPORT_BPF',
+ 'MNCC_USERINFO_REQ', 'u_quad_t',
+ 'N16__pthread_cond_s3DOT_3E', '__kernel_old_uid_t',
+ '__loff_t', 'INADDR_BROADCAST', 'IPV6_RECVDSTOPTS',
+ 'gsm48_bcap_transp', '__pthread_cond_s', 'INTPTR_MIN',
+ '__int32_t', 'PF_MPLS', 'uint_least32_t', 'IPPROTO_MPTCP',
+ '__BIG_ENDIAN', '_ENDIAN_H', 'INADDR_ALLSNOOPERS_GROUP',
+ '__kernel_uid16_t', 'FIOGETOWN', 'MCAST_JOIN_GROUP',
+ '__USE_FORTIFY_LEVEL', '__int8_t', 'IPV6_ORIGDSTADDR',
+ '__fsblkcnt64_t', 'PTRDIFF_MAX', '__USE_XOPEN2K8',
+ 'MSG_EOR', 'INT32_MIN', '__kernel_time64_t', 'MSG_SYN',
+ '__USE_XOPEN_EXTENDED', 'IPPROTO_MH', 'MNCC_F_FACILITY',
+ 'INT_LEAST32_MAX', 'pid_t', 'IP_PKTINFO', 'linger',
+ 'UINT32_WIDTH', '__fsfilcnt64_t', 'PF_BLUETOOTH',
+ 'PF_IRDA', 'SO_DONTROUTE', 'pthread_key_t',
+ 'IPV6_2292RTHDR', 'MNCC_REJ_IND', 'IPPORT_TFTP',
+ 'PF_APPLETALK', 'group_req', 'SO_TYPE', 'IPPORT_NETSTAT',
+ 'off_t', 'IPV6_PMTUDISC_PROBE', 'GSM48_BCAP_UR_300',
+ '__fsblkcnt_t', 'PF_VSOCK', 'MNCC_SETUP_COMPL_REQ',
+ 'IPV6_DONTFRAG', 'SOL_PACKET', 'MNCC_START_DTMF_IND',
+ 'sa_family_t', 'UINT_FAST16_MAX',
+ 'N16__pthread_cond_s3DOT_53DOT_6E', '__WORDSIZE',
+ 'GSM_TCHF_FRAME', 'MNCC_FRAME_DROP', 'SOL_RXRPC',
+ 'INT_FAST8_MIN', 'time_t', '_XOPEN_SOURCE', 'u_short',
+ 'SO_KEEPALIVE', 'cmsghdr', 'WINT_MIN', 'key_t',
+ '__USE_ISOC95', 'IN_CLASSA_MAX', 'MNCC_ALERT_IND',
+ 'PF_X25', 'IPPORT_CMDSERVER', 'sockaddr_in6',
+ 'IN_CLASSC_NSHIFT', 'IP_PMTUDISC_DO', '__GLIBC__',
+ 'SO_LOCK_FILTER', 'N8in6_addr4DOT_24E', '__USE_ISOC99',
+ 'IP_UNICAST_IF', 'PF_AX25', 'MNCC_F_SSVERSION',
+ '__pthread_internal_slist', 'SO_PASSSEC',
+ 'IPV6_MULTICAST_LOOP', '__kernel_uid_t', 'SOL_TLS',
+ 'ip_mreq', '__clock_t', 'IPV6_HOPOPTS', 'SOL_LLC',
+ '__fsfilcnt_t', 'PF_WANPIPE', 'IPV6_RECVERR',
+ 'INT_LEAST8_MAX', 'IPPORT_RESERVED', 'SOL_NETBEUI',
+ 'SO_BUSY_POLL', '__sig_atomic_t', '__time_t',
+ 'IN_CLASSB_HOST', 'size_t', '__USE_XOPEN', 'PF_ROSE',
+ 'IPV6_ADDRFORM', 'SOCK_SEQPACKET', 'MNCC_PROGRESS_REQ',
+ 'PF_SMC', '__USE_POSIX2', 'MNCC_NOTIFY_IND',
+ 'INT_LEAST64_WIDTH', 'GSM48_BCAP_TR_RLP_PREF',
+ '__iovec_defined', 'blkcnt_t', 'IPV6_RECVRTHDR',
+ '__syscall_slong_t', 'blkcnt64_t', '__timer_t', 'SOL_IRDA',
+ 'MNCC_LCHAN_MODIFY', 'GSM_MAX_FACILITY', 'INT64_WIDTH',
+ 'IP_PMTUDISC', 'GSM48_BCAP_SA_X21', 'uint_fast64_t',
+ 'SO_TIMESTAMPNS_NEW', 'SO_PRIORITY', 'UINT64_MAX',
+ 'MSG_TRUNC', 'u_char', 'IN_CLASSB_MAX', 'SO_LINGER',
+ 'uid_t', '__USE_ATFILE', 'INTMAX_MAX', 'u_int16_t',
+ 'PF_CAIF', 'IP_MAX_MEMBERSHIPS', 'quad_t',
+ '__GLIBC_USE_IEC_60559_FUNCS_EXT', 'UINT_LEAST16_WIDTH',
+ 'INTMAX_MIN', 'MSG_OOB', 'GSM48_BCAP_UR_12000',
+ 'GSM48_BCAP_PAR_EVEN', 'SO_SECURITY_ENCRYPTION_NETWORK',
+ 'IP_RECVOPTS', 'UINT_LEAST8_WIDTH', 'UINT_FAST8_MAX',
+ 'IPPROTO_IP', 'N19gsm_mncc_bearer_cap4DOT_25E',
+ 'IP_RECVTOS', 'GSM48_BCAP_UR_1200', 'pthread_spinlock_t',
+ 'GSM48_BCAP_MT_V26ter', '__kernel_fd_set',
+ 'IPPORT_USERRESERVED', 'MCAST_LEAVE_SOURCE_GROUP',
+ 'SO_PEERNAME', '__BITS_PER_LONG', '_BITS_STDINT_INTN_H',
+ 'INT_FAST64_MAX', 'SOCK_STREAM', '__fd_mask',
+ 'IPV6_RECVPKTINFO', 'MNCC_BRIDGE',
+ 'GSM48_BCAP_CODING_GSM_STD', 'clock_t', 'MNCC_F_CALLED',
+ 'IPV6_RTHDR_STRICT', 'IPPROTO_PUP', 'int_fast64_t',
+ 'IPV6_RECVHOPOPTS', 'WINT_MAX', '_BITS_WCHAR_H',
+ '__GLIBC_MINOR__', '__GLIBC_USE_IEC_60559_BFP_EXT_C2X',
+ 'IPV6_IPSEC_POLICY', 'SO_ZEROCOPY',
+ '__SOCKADDR_COMMON_SIZE', '__clockid_t_defined',
+ 'SO_ACCEPTCONN', 'IPPORT_SUPDUP', 'IP_MULTICAST_LOOP',
+ 'IPV6_AUTOFLOWLABEL', 'IPPORT_DISCARD',
+ 'GSM48_BCAP_PAR_ODD', 'uint_least8_t', 'GSM48_BCAP_RA_X31',
+ 'gsm_mncc_bearer_cap', 'IPV6_MINHOPCOUNT', 'fd_mask',
+ 'IP_OPTIONS', 'SO_RCVLOWAT', 'SHUT_RDWR',
+ 'INT_FAST8_WIDTH', '__WORDSIZE_TIME64_COMPAT32',
+ 'gsm_data_frame', 'IN_CLASSB_NSHIFT', '_SYS_TYPES_H',
+ 'SO_MEMINFO', 'PF_NETBEUI', '__HAVE_GENERIC_SELECTION',
+ 'IP_TOS', 'GSM48_BCAP_MT_NONE', '__kernel_ulong_t',
+ 'N8gsm_mncc4DOT_27E', 'IP_BIND_ADDRESS_NO_PORT',
+ 'MSG_WAITALL', '__USE_GNU',
+ '__GLIBC_USE_IEC_60559_FUNCS_EXT_C2X', '__pthread_list_t',
+ 'INT8_MIN', 'pthread_attr_t', 'GSM48_BCAP_RA_NONE',
+ '__ino_t', 'SIOCGSTAMP_OLD', '__rlim64_t', 'ino_t',
+ 'MNCC_MODIFY_IND', 'SOL_IPV6', 'GSM48_BCAP_SV_EFR',
+ '_POSIX_C_SOURCE', 'IPPROTO_ICMP', 'MNCC_F_SIGNAL',
+ 'IPPROTO_HOPOPTS', 'IPPORT_DAYTIME', 'gsm48_bcap_itcap',
+ '__blksize_t', '__SIZEOF_PTHREAD_MUTEXATTR_T',
+ 'SO_SNDTIMEO_OLD', '__pthread_slist_t',
+ 'IPV6_2292PKTOPTIONS', 'UINT_LEAST64_WIDTH',
+ 'MNCC_DISC_IND', '_DEFAULT_SOURCE', 'IPPROTO_IDP',
+ 'SO_CNX_ADVICE', 'gsm_mncc_useruser', 'SOCK_DGRAM',
+ 'PF_UNSPEC', 'GSM48_BCAP_RA_V110_X30', 'ino64_t',
+ 'IPPORT_WHOSERVER', 'UINT_LEAST64_MAX', 'IP_BLOCK_SOURCE',
+ 'gsm48_bcap_coding', 'UINT_FAST64_MAX',
+ 'IP_PMTUDISC_INTERFACE', '__uint8_t', 'nlink_t',
+ '__SIZEOF_PTHREAD_RWLOCK_T', 'IP_XFRM_POLICY',
+ '_THREAD_SHARED_TYPES_H', 'SOL_PNPIPE', 'IP_TTL',
+ '__caddr_t', '_SYS_SOCKET_H', '__blkcnt64_t', 'PF_TIPC',
+ 'MNCC_MODIFY_CNF', 'gsm_mncc_rtp', 'GSM_MNCC_BCAP_AUDIO',
+ '__kernel_suseconds_t', 'GSM48_BCAP_RRQ_FR_ONLY',
+ '__USE_POSIX199506', '__int_least64_t',
+ 'IPPORT_NAMESERVER', 'INT_LEAST64_MIN', '__USE_LARGEFILE',
+ '__SIZEOF_PTHREAD_COND_T', 'PTRDIFF_MIN', '_FEATURES_H',
+ 'GSM_MNCC_BCAP_OTHER_ITC', '__kernel_long_t', 'int16_t',
+ 'MSG_BATCH', 'SIG_ATOMIC_WIDTH', 'SOL_ATM',
+ 'MNCC_MODIFY_REQ', '_BITS_TYPES_H',
+ 'IP_DEFAULT_MULTICAST_LOOP', '__kernel_ptrdiff_t',
+ 'IN_CLASSA_NSHIFT', 'group_filter', 'IP_MSFILTER',
+ 'GSM48_BCAP_TMOD_CIRCUIT', 'PF_DECnet', '__u_int',
+ '__kernel_ipc_pid_t', 'INT_LEAST8_WIDTH', 'IP_MINTTL',
+ 'MSG_DONTWAIT', 'MNCC_MODIFY_REJ', 'PF_QIPCRTR',
+ '__kernel_off_t', 'IP_PMTUDISC_DONT', 'GSM48_BCAP_IR_8k',
+ 'intptr_t', 'GSM48_BCAP_ITCAP_SPEECH',
+ '_XOPEN_SOURCE_EXTENDED', 'SIOCGSTAMPNS_OLD', '__int64_t',
+ 'IN_LOOPBACKNET', '_BITS_TIME64_H', 'PF_LOCAL',
+ 'IPPROTO_SCTP', '__u_char', '__id_t', '__gid_t',
+ 'MNCC_RETRIEVE_CNF', 'MNCC_F_EMERGENCY', 'IPPROTO_MTP',
+ 'ssize_t', 'ulong', 'GSM48_BCAP_ITCAP_UNR_DIG_INF',
+ 'MNCC_REJ_REQ', 'IPV6_TCLASS', 'INT_FAST8_MAX',
+ 'UINT64_WIDTH', 'SO_BINDTOIFINDEX', '__int_least8_t',
+ 'MSG_MORE', 'SOL_SOCKET', 'INTPTR_MAX',
+ 'GSM48_BCAP_SV_AMR_H', 'IPV6_2292DSTOPTS',
+ 'MNCC_F_CALLING', 'fsblkcnt_t', 'IPPROTO_UDP',
+ 'GSM48_BCAP_SV_AMR_F', 'MNCC_CALL_PROC_REQ', 'suseconds_t',
+ 'IPPORT_RJE', 'IPPORT_ECHO', '__quad_t', 'SIOCGPGRP',
+ '_BITS_STDINT_UINTN_H', 'dev_t', '__uid_t',
+ 'IP_ADD_MEMBERSHIP', 'GSM_BAD_FRAME',
+ '__GLIBC_USE_DEPRECATED_GETS',
+ 'GSM48_BCAP_ITCAP_3k1_AUDIO', '__uint16_t', 'PF_NETROM',
+ '__glibc_c99_flexarr_available', 'GSM48_BCAP_PAR_ONE',
+ 'IPPROTO_TP', 'GSM48_BCAP_RRQ_DUAL_FR', 'IPPROTO_ETHERNET',
+ 'GSM48_BCAP_UR_9600', 'PF_ECONET', '__GNU_LIBRARY__',
+ '_BITS_TYPESIZES_H', '__kernel_gid32_t', 'mode_t',
+ 'IP_RECVTTL', '__USE_LARGEFILE64', '__kernel_old_time_t',
+ 'MNCC_STOP_DTMF_RSP', 'SO_ERROR', 'IPPORT_TELNET', 'uint',
+ 'MCAST_LEAVE_GROUP', '_LARGEFILE_SOURCE',
+ 'IPV6_RECVHOPLIMIT', 'uintptr_t', 'UINT8_MAX',
+ '__kernel_mode_t', 'SOCK_DCCP', 'IP_ORIGDSTADDR',
+ 'UINTMAX_MAX', '__LITTLE_ENDIAN', 'PF_XDP',
+ '__kernel_old_dev_t', '__kernel_pid_t', 'int_fast8_t',
+ 'GSM_TCHF_FRAME_EFR', 'IN_CLASSA_NET', '__tss_t',
+ 'SOL_TIPC', 'IPV6_MULTICAST_IF', 'IPPROTO_UDPLITE',
+ 'MNCC_SETUP_COMPL_IND', 'INT32_MAX', 'GSM48_BCAP_IR_16k',
+ 'gsm48_bcap_speech_ver', 'IP_DROP_SOURCE_MEMBERSHIP',
+ 'INT64_MIN', 'IPPROTO_MAX', 'ip_mreqn', 'MNCC_HOLD_IND',
+ 'IP_ADD_SOURCE_MEMBERSHIP', 'MNCC_HOLD_CNF', 'SOL_NFC',
+ '__thrd_t', 'SO_REUSEADDR', '__fsid_t', 'SO_BINDTODEVICE',
+ 'GSM48_BCAP_SA_X32', 'PF_PPPOX', 'SO_BSDCOMPAT',
+ 'int_fast16_t', '__kernel_clockid_t', 'IPPORT_WHOIS',
+ '__RLIM_T_MATCHES_RLIM64_T', '__kernel_old_gid_t',
+ 'IN_CLASSC_HOST', 'PF_RXRPC', 'sockaddr_in',
+ '__LDOUBLE_REDIRECTS_TO_FLOAT128_ABI', 'UINT_LEAST32_MAX',
+ '__sigset_t', '_BITS_PTHREADTYPES_ARCH_H',
+ 'GSM48_BCAP_TR_TRANSP', 'SO_SNDBUF', '__suseconds64_t',
+ 'SO_PEEK_OFF', 'ip6_mtuinfo', 'SOCK_NONBLOCK',
+ 'WINT_WIDTH', 'UINT32_MAX', 'MNCC_F_PROGRESS',
+ 'MNCC_HOLD_REJ', 'IPPROTO_ICMPV6', 'IPV6_UNICAST_HOPS',
+ 'MNCC_REL_REQ', 'SO_ATTACH_REUSEPORT_CBPF',
+ 'GSM48_BCAP_PAR_NONE', 'INT64_MAX', 'MSG_ERRQUEUE',
+ '__USE_XOPEN2K', 'MNCC_SETUP_REQ', 'IPV6_MTU_DISCOVER',
+ 'IPV6_RTHDRDSTOPTS', 'IPPROTO_IGMP', 'IP_FREEBIND',
+ 'IP_DROP_MEMBERSHIP', 'INT8_WIDTH', '__FD_SETSIZE',
+ 'INT_LEAST16_MIN', 'GSM48_BCAP_MT_V22bis', 'SIOCATMARK',
+ 'IPV6_PKTINFO', 'IPPROTO_IPV6', 'UINTMAX_WIDTH', 'PF_CAN',
+ 'MNCC_RTP_FREE', 'PF_SNA', 'uint64_t', 'IP_HDRINCL',
+ 'SOL_DCCP', 'SO_NO_CHECK', '__uint_least8_t', '__blkcnt_t',
+ 'gsm_mncc_cccap', 'clockid_t', '__GLIBC_USE_ISOC2X',
+ 'SOL_ICMPV6', 'UINTPTR_MAX', 'IPV6_ROUTER_ALERT',
+ 'IPPROTO_DCCP', 'msghdr', 'gsm48_bcap_user_rate',
+ 'uint16_t', '__kernel_mqd_t', 'GSM48_BCAP_SV_FR',
+ '__SIZEOF_PTHREAD_BARRIERATTR_T', 'INT16_MIN',
+ 'IP_PMTUDISC_PROBE', 'SHUT_WR', 'IP_ROUTER_ALERT',
+ 'int32_t', 'off64_t', 'GSM_MAX_USERUSER', 'UINT8_WIDTH',
+ 'IN_CLASSC_NET', 'INT_LEAST64_MAX',
+ 'GSM48_BCAP_SA_X28_DP_IN', 'GSM_MNCC_BCAP_FAX_G3',
+ 'PF_INET', 'IPV6_MULTICAST_HOPS', '__intptr_t', 'PF_IPX',
+ 'MNCC_FACILITY_REQ', 'PF_INET6', 'group_source_req',
+ 'MNCC_RETRIEVE_IND', 'SOL_DECNET', 'PF_KCM', 'in6_addr',
+ 'IPPROTO_EGP', 'MNCC_F_CONNECTED', 'IN_CLASSB_NET',
+ 'gsm48_bcap_tmod', 'GSM48_BCAP_SV_AMR_OHW',
+ 'sockaddr_storage', '__PTHREAD_MUTEX_HAVE_PREV',
+ 'SIG_ATOMIC_MAX', 'IPV6_UNICAST_IF', 'IP_PMTUDISC_OMIT',
+ '_BITS_BYTESWAP_H', 'MCAST_EXCLUDE', 'IPV6_PMTUDISC_DONT',
+ 'GSM48_BCAP_SV_HR', 'gsm48_bcap_sig_access', '__dev_t',
+ 'GSM48_BCAP_ITCAP_FAX_G3', 'IP_RETOPTS', 'u_int8_t',
+ 'UINT16_MAX', 'GSM48_BCAP_MT_V32', 'SOL_ALG',
+ '_SS_PADSIZE', 'PF_IEEE802154', '__suseconds_t',
+ 'SO_TIMESTAMPING_OLD', 'u_long', 'SO_REUSEPORT',
+ 'MNCC_USERINFO_IND', 'UINT_FAST32_MAX', 'IP_IPSEC_POLICY',
+ 'gsm_mncc_hello', 'SO_SNDTIMEO_NEW', 'SO_TXTIME',
+ 'IPV6_PMTUDISC_OMIT', 'SIG_ATOMIC_MIN', 'ushort',
+ 'SOL_XDP', 'IPV6_PATHMTU', 'gsm_mncc_facility',
+ 'GSM_MNCC_BCAP_RESERVED', 'PF_NETLINK', 'uintmax_t',
+ '__INO_T_MATCHES_INO64_T', 'SO_PEERCRED', 'PF_MAX',
+ 'SO_RCVBUFFORCE', 'IPV6_2292PKTINFO', 'IP_TRANSPARENT',
+ 'UINT_FAST64_WIDTH', 'SO_SECURITY_AUTHENTICATION',
+ 'pthread_t', '__rlim_t', 'INT_FAST16_MAX',
+ 'SO_RCVTIMEO_OLD', '__STATFS_MATCHES_STATFS64', 'SO_NOFCS',
+ 'IPPROTO_DSTOPTS', 'FIOSETOWN', '__USE_XOPEN2K8XSI',
+ 'IP_UNBLOCK_SOURCE', 'fsblkcnt64_t', '__intmax_t',
+ 'uint_least16_t', 'MSG_WAITFORONE', 'SO_SNDLOWAT',
+ '_SYS_CDEFS_H', 'ip_opts', '__pthread_rwlock_arch_t',
+ 'MNCC_MODIFY_RSP', '__kernel_uid32_t', 'IPPROTO_ROUTING',
+ '__SIZEOF_PTHREAD_ATTR_T', 'SO_PROTOCOL', 'SIZE_MAX',
+ 'caddr_t', 'UINT_LEAST16_MAX', 'SOL_KCM',
+ 'SO_TIMESTAMP_OLD', 'SO_ATTACH_FILTER',
+ 'GSM48_BCAP_SA_X28_NDP', '__int_least16_t',
+ 'UINT_LEAST32_WIDTH', '__uintmax_t', 'SO_INCOMING_CPU',
+ 'in_addr_t', 'INT_FAST32_MAX', 'SOL_X25',
+ 'MNCC_F_BEARER_CAP', 'in6_pktinfo', 'IPV6_RTHDR_LOOSE',
+ 'PF_LLC', 'MCAST_UNBLOCK_SOURCE', 'GSM_TCHH_FRAME',
+ 'uint32_t', 'gsm48_bcap_ra', 'gsm48_bcap_interm_rate',
+ '__have_pthread_attr_t', '_STRUCT_TIMESPEC',
+ 'GSM48_BCAP_SA_X28_DP_UN', 'IPPROTO_MPLS',
+ '__USE_XOPEN2KXSI', 'gsm_mncc', 'IPV6_LEAVE_ANYCAST',
+ '__GLIBC_USE_IEC_60559_BFP_EXT', 'MSG_PEEK',
+ 'MNCC_F_CAUSE', 'SO_ATTACH_BPF', 'pthread_once_t',
+ 'PF_RDS', 'PF_ATMSVC', '__kernel_ino_t', 'UINT16_WIDTH',
+ 'timeval', 'MNCC_RETRIEVE_REJ', 'IP_MTU_DISCOVER',
+ 'mmsghdr', '__uint32_t', 'INADDR_ALLRTRS_GROUP',
+ '__uint_least16_t', 'IPPROTO_IPIP', 'IPV6_HDRINCL',
'GSM_TCH_FRAME_AMR', 'GSM48_BCAP_SV_AMR_OFW',
- 'GSM48_BCAP_MT_UNDEF', 'INT_LEAST16_MIN',
- 'MNCC_SETUP_COMPL_IND', 'uint_least16_t',
- 'MNCC_FACILITY_IND', 'GSM48_BCAP_ITCAP_RESERVED',
- 'GSM_MAX_FACILITY', 'UINT8_MAX', 'UINTMAX_MAX',
- 'GSM48_BCAP_SA_X21', '_LARGEFILE_SOURCE', 'INT_FAST16_MIN',
- 'MNCC_F_KEYPAD', 'GSM_MNCC_BCAP_UNR_DIG', 'UINT64_MAX',
- 'gsm_mncc_ssversion', 'int32_t', 'GSM48_BCAP_TR_TR_PREF',
+ 'GSM48_BCAP_MT_UNDEF', 'IPPORT_EXECSERVER',
+ 'SO_MAX_PACING_RATE', '_BITS_UINTN_IDENTITY_H',
+ '__ino64_t', '__u_quad_t', 'IPPROTO_COMP', '__mode_t',
+ 'IPV6_AUTHHDR', '__u_short', 'loff_t', 'IPPROTO_FRAGMENT',
+ 'iovec', 'blksize_t', '__kernel_time_t', '__int_least32_t',
+ 'N16__pthread_cond_s3DOT_5E', 'SO_PEERSEC',
+ 'gsm_mncc_ssversion', 'u_int32_t',
+ 'SCM_TIMESTAMPING_OPT_STATS', 'GSM48_BCAP_TR_TR_PREF',
'MNCC_START_DTMF_REJ', 'GSM48_BCAP_MT_AUTO_1',
- 'INT_LEAST16_MAX', 'N19gsm_mncc_bearer_cap3DOT_0E',
- 'MNCC_SOCK_VERSION', 'INTMAX_MIN', 'INT32_MAX',
- 'GSM48_BCAP_IR_16k', 'GSM48_BCAP_UR_12000',
- 'GSM48_BCAP_PAR_EVEN', 'int_least16_t',
- 'gsm48_bcap_speech_ver', 'GSM48_BCAP_TR_RLP',
- 'MNCC_USERINFO_IND', '_POSIX_SOURCE', '_ISOC95_SOURCE',
- 'uint_fast16_t', 'INT64_MIN', '_ISOC99_SOURCE',
- 'uint_least8_t', 'UINT_FAST8_MAX', '__USE_POSIX',
- '__USE_SVID', 'MNCC_HOLD_CNF', 'INT_LEAST8_MIN',
- 'INTMAX_MAX', 'GSM48_BCAP_UR_1200', 'GSM48_BCAP_MT_V26ter',
- 'MNCC_F_SIGNAL', 'GSM48_BCAP_SA_X32', 'INT_FAST64_MIN',
- 'MNCC_MODIFY_RSP', 'gsm_mncc_cause', 'INT_LEAST64_MIN',
- 'MNCC_HOLD_IND', 'GSM48_BCAP_CODING_GSM_STD',
- 'GSM48_BCAP_UR_2400', 'uintmax_t', 'MNCC_F_CALLED',
- 'UINT_LEAST32_MAX', '__USE_POSIX199309',
- 'MNCC_RTP_CONNECT', 'GSM48_BCAP_TR_TRANSP',
- '__SYSCALL_WORDSIZE', '__GLIBC_MINOR__', 'int_least8_t',
- 'MNCC_SOCKET_HELLO', 'UINT32_MAX', 'MNCC_F_PROGRESS',
- 'MNCC_HOLD_REJ', 'GSM48_BCAP_SA_I440_I450', 'int64_t',
- 'GSM_MAX_USERUSER', 'GSM48_BCAP_PAR_ODD',
- 'GSM48_BCAP_PAR_NONE', 'INT64_MAX', 'MNCC_F_FACILITY',
- 'MNCC_SETUP_REQ', 'MNCC_CALL_CONF_IND',
- 'GSM48_BCAP_RA_X31', 'gsm_mncc_bearer_cap',
- 'MNCC_F_USERUSER', 'gsm_mncc_number', '_SVID_SOURCE',
- '__USE_XOPEN2K', '__WORDSIZE_TIME64_COMPAT32',
- 'gsm_data_frame', 'GSM48_BCAP_UR_1200_75',
- 'GSM48_BCAP_MT_V22bis', 'GSM_MNCC_BCAP_SPEECH',
- 'MNCC_USERINFO_REQ', 'MNCC_RTP_FREE', '__USE_GNU',
- '__USE_BSD', 'MNCC_REL_IND', 'gsm_mncc_cccap', 'INT8_MIN',
- 'GSM48_BCAP_PAR_ZERO', 'MNCC_F_REDIRECTING', 'UINTPTR_MAX',
- 'GSM48_BCAP_RA_NONE', 'GSM48_BCAP_RRQ_DUAL_HR',
- 'UINT_LEAST16_MAX', 'gsm48_bcap_user_rate', 'uint16_t',
- 'MNCC_MODIFY_IND', 'uint_fast8_t',
- 'gsm48_bcap_interm_rate', 'gsm_mncc', 'INT16_MIN',
- '_ISOC11_SOURCE', 'MNCC_RETRIEVE_REJ', 'INT8_MAX',
- 'GSM48_BCAP_TR_RLP_PREF', 'gsm48_bcap_rrq',
- 'uint_least64_t', 'INT16_MAX', 'GSM48_BCAP_UR_4800',
- 'INT_LEAST64_MAX', 'GSM48_BCAP_SA_X28_DP_IN',
- 'GSM_MNCC_BCAP_FAX_G3', 'MNCC_STOP_DTMF_RSP', '__USE_MISC',
- 'INTPTR_MAX', 'MNCC_DISC_IND', '_DEFAULT_SOURCE',
- 'MNCC_FACILITY_REQ', 'gsm_mncc_useruser', '__USE_XOPEN2K8',
- 'MNCC_RETRIEVE_IND', 'GSM48_BCAP_RA_V110_X30',
- 'gsm_mncc_progress', 'gsm48_bcap_transp', 'INTPTR_MIN',
- '__USE_ISOC99', 'UINT_LEAST64_MAX', 'GSM48_BCAP_SV_AMR_FW',
- 'GSM_MNCC_BCAP_AUDIO', 'int_least64_t',
- 'gsm48_bcap_coding', 'UINT_FAST64_MAX', 'uintptr_t',
- 'INT_FAST64_MAX', 'gsm48_bcap_tmod',
- 'GSM48_BCAP_SV_AMR_OHW', 'MNCC_STOP_DTMF_IND',
- '__USE_FORTIFY_LEVEL', 'gsm48_bcap_parity', 'int8_t',
- 'PTRDIFF_MAX', 'GSM48_BCAP_SV_HR', 'gsm48_bcap_sig_access',
- 'MNCC_F_CCCAP', 'int_fast8_t', 'MNCC_MODIFY_CNF',
- 'gsm_mncc_rtp', 'INT_LEAST32_MIN',
- 'GSM48_BCAP_ITCAP_FAX_G3', 'int_fast64_t',
- 'gsm_mncc_bridge', 'uint_least32_t', 'UINT16_MAX',
- 'GSM48_BCAP_MT_V32', '__USE_XOPEN_EXTENDED',
- 'GSM48_BCAP_RRQ_FR_ONLY', '__USE_UNIX98',
- 'UINT_LEAST8_MAX', 'uint_fast64_t', 'MNCC_DISC_REQ',
- '__USE_LARGEFILE', '__USE_EXTERN_INLINES', 'PTRDIFF_MIN',
- 'UINT_FAST32_MAX', '_FEATURES_H',
- 'GSM_MNCC_BCAP_OTHER_ITC', 'int16_t', 'gsm_mncc_hello',
- 'uint64_t', 'INT_FAST32_MAX', 'GSM_MAX_SSVERSION',
- 'MNCC_ALERT_REQ', 'GSM48_BCAP_RA_OTHER',
- 'MNCC_START_DTMF_RSP', 'SIG_ATOMIC_MIN',
- '__USE_POSIX199506', 'MNCC_MODIFY_REQ',
- 'gsm_mncc_facility', 'GSM_MNCC_BCAP_RESERVED',
- 'SIG_ATOMIC_MAX', 'intptr_t', 'SIZE_MAX', 'uint_fast32_t',
- 'GSM48_BCAP_TMOD_CIRCUIT', 'INT_FAST32_MIN',
- '__USE_ISOC11', '__USE_LARGEFILE64',
- 'gsm48_bcap_modem_type', 'int_fast16_t',
- 'GSM48_BCAP_UR_300', 'MNCC_SETUP_COMPL_REQ',
- 'MNCC_MODIFY_REJ', '_STDINT_H', 'int_fast32_t',
- 'INT_FAST16_MAX', 'GSM48_BCAP_MT_V21', 'GSM48_BCAP_IR_8k',
- 'GSM48_BCAP_MT_V23', 'MNCC_START_DTMF_IND',
- 'GSM48_BCAP_ITCAP_SPEECH', '_XOPEN_SOURCE_EXTENDED',
- 'MNCC_SETUP_IND', 'MNCC_NOTIFY_REQ', 'MNCC_NOTIFY_IND',
- '__USE_XOPEN2K8XSI', '__WORDSIZE', 'GSM_TCHF_FRAME',
- 'MNCC_FRAME_DROP', '_SYS_CDEFS_H', 'INT_FAST8_MIN',
- 'MNCC_RETRIEVE_CNF', 'MNCC_F_EMERGENCY',
- '_LARGEFILE64_SOURCE', 'INT_LEAST32_MAX', '_XOPEN_SOURCE',
- 'MNCC_F_CONNECTED', 'GSM48_BCAP_ITCAP_UNR_DIG_INF',
- 'MNCC_REJ_REQ', 'INT_FAST8_MAX', 'GSM48_BCAP_MT_NONE',
- '__USE_ISOC95', 'MNCC_FRAME_RECV', 'MNCC_ALERT_IND',
- 'GSM48_BCAP_SV_EFR', 'intmax_t', 'GSM48_BCAP_SV_AMR_OH',
- 'gsm48_bcap_itcap', '__GLIBC__', 'GSM_TCHF_FRAME_EFR',
- 'GSM48_BCAP_SA_X28_NDP', '_BITS_WCHAR_H',
- 'N8gsm_mncc3DOT_2E', 'GSM48_BCAP_SV_AMR_H',
- 'int_least32_t', 'GSM48_BCAP_MT_V22', 'MNCC_F_CALLING',
- 'MNCC_BRIDGE', 'MNCC_F_SSVERSION', 'MNCC_F_BEARER_CAP',
- 'GSM48_BCAP_SV_AMR_F', 'MNCC_CALL_PROC_REQ', 'WINT_MAX',
- '_BSD_SOURCE', 'uint32_t', 'gsm48_bcap_ra',
- 'GSM48_BCAP_SV_FR', 'GSM_BAD_FRAME',
- 'GSM48_BCAP_ITCAP_3k1_AUDIO']
+ 'register_t', '__KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64',
+ '_SYS_SELECT_H', 'MNCC_SOCK_VERSION', 'MCAST_BLOCK_SOURCE',
+ 'SOL_BLUETOOTH', 'IPPORT_SMTP', '_ISOC95_SOURCE',
+ 'SO_SNDBUFFORCE', '_ISOC99_SOURCE', '__nlink_t',
+ 'MCAST_INCLUDE', '__kernel_ssize_t', 'MNCC_SETUP_RSP',
+ 'SOCK_RAW', 'fd_set', 'PF_PACKET', 'PF_ATMPVC',
+ 'IPPORT_EFSSERVER', 'gsm_mncc_cause', '__kernel_caddr_t',
+ '__clock_t_defined', '__pid_t', 'GSM48_BCAP_UR_2400',
+ 'INADDR_ALLHOSTS_GROUP', '__socket_type', 'IP_PKTOPTIONS',
+ 'PF_NFC', '__SYSCALL_WORDSIZE', 'gid_t', 'IPPROTO_BEETPH',
+ '__USE_MISC', 'MSG_CMSG_CLOEXEC', 'MNCC_SOCKET_HELLO',
+ '__sigset_t_defined', '__kernel_clock_t', 'fsfilcnt64_t',
+ '__timer_t_defined', 'int64_t', 'IPV6_LEAVE_GROUP',
+ '__syscall_ulong_t', 'INT32_WIDTH', 'int_least16_t',
+ 'SO_TIMESTAMPNS_OLD', 'MCAST_MSFILTER',
+ '__BIT_TYPES_DEFINED__', 'SO_BPF_EXTENSIONS',
+ 'SO_DETACH_FILTER', '__USE_POSIX', 'GSM48_BCAP_UR_1200_75',
+ 'SCM_CREDENTIALS', 'SOMAXCONN', 'SO_RXQ_OVFL', 'sockaddr',
+ 'WCHAR_WIDTH', 'IPPORT_FINGER', 'u_int', 'IPV6_MTU',
+ '_ISOC2X_SOURCE', 'SO_TIMESTAMP_NEW', 'IP_CHECKSUM',
+ 'MNCC_F_KEYPAD', '_SS_SIZE', '_BITS_SOCKADDR_H',
+ 'MNCC_F_REDIRECTING', 'IP_PMTUDISC_WANT', '__kernel_gid_t',
+ 'GSM48_BCAP_RRQ_DUAL_HR', 'IPV6_ROUTER_ALERT_ISOLATE',
+ '__kernel_key_t', 'IPPROTO_GRE', 'INADDR_UNSPEC_GROUP',
+ 'SOL_RAW', '_ISOC11_SOURCE', 'ip_msfilter',
+ 'IPV6_TRANSPARENT', 'IPV6_2292HOPOPTS', 'uint_least64_t',
+ 'INT16_MAX', 'MSG_CONFIRM', 'GSM48_BCAP_UR_4800',
+ 'INADDR_LOOPBACK', '__u_long', '__SIZEOF_PTHREAD_MUTEX_T',
+ '__USE_UNIX98', 'PF_ASH', 'IPV6_2292HOPLIMIT',
+ 'IPPORT_BIFFUDP', 'SCM_TIMESTAMPING_PKTINFO',
+ 'UINT_FAST8_WIDTH', '__uint_least32_t', 'u_int64_t',
+ 'INADDR_MAX_LOCAL_GROUP', '__daddr_t', 'SOL_IP',
+ '__uint_least64_t', 'GSM48_BCAP_SV_AMR_FW',
+ 'IPPORT_TIMESERVER', 'IPPORT_FTP', 'SOCK_PACKET',
+ 'SO_DOMAIN', 'IPV6_NEXTHOP', '__fsword_t', 'PF_BRIDGE',
+ 'gsm48_bcap_parity', 'int8_t', 'INT_LEAST32_MIN',
+ 'IPPORT_SYSTAT', 'gsm_mncc_bridge', 'IPV6_RTHDR_TYPE_0',
+ 'int_least64_t', 'INADDR_ANY', '_THREAD_MUTEX_INTERNAL_H',
+ 'UINT_LEAST8_MAX', 'MSG_PROXY', 'MNCC_DISC_REQ', 'MSG_FIN',
+ '__GLIBC_USE_IEC_60559_TYPES_EXT', '__useconds_t',
+ 'useconds_t', 'PF_PHONET', 'IPV6_PMTUDISC_WANT',
+ 'IPV6_ADDR_PREFERENCES', 'GSM_MAX_SSVERSION',
+ 'MNCC_ALERT_REQ', 'MNCC_START_DTMF_RSP',
+ 'INET6_ADDRSTRLEN', 'IPV6_JOIN_ANYCAST',
+ 'IPPORT_LOGINSERVER', 'sigset_t', 'MSG_ZEROCOPY', 'PF_KEY',
+ 'SO_WIFI_STATUS', 'IP_MULTICAST_TTL', 'IPV6_JOIN_GROUP',
+ 'IPV6_CHECKSUM', 'INT_FAST32_MIN', 'gsm48_bcap_modem_type',
+ 'SO_COOKIE', '__kernel_timer_t', '_STDINT_H',
+ 'IPV6_MULTICAST_ALL', 'GSM48_BCAP_MT_V21',
+ 'GSM48_BCAP_MT_V22', 'GSM48_BCAP_MT_V23', 'MNCC_SETUP_IND',
+ '_BITS_ENDIAN_H', 'MNCC_NOTIFY_REQ', 'daddr_t',
+ 'MNCC_STOP_DTMF_IND', '__SIZEOF_PTHREAD_RWLOCKATTR_T',
+ '__PDP_ENDIAN', 'SOL_NETLINK', 'IP_NODEFRAG',
+ 'IPV6_PMTUDISC_INTERFACE', 'PF_IB', '__key_t', 'fsid_t',
+ '_LARGEFILE64_SOURCE', '__OFF_T_MATCHES_OFF64_T',
+ 'IPV6_XFRM_POLICY', 'SO_SECURITY_ENCRYPTION_TRANSPORT',
+ '_SIGSET_NWORDS', 'MNCC_FRAME_RECV', 'MSG_FASTOPEN',
+ 'intmax_t', 'SIOCSPGRP', 'IPV6_RECVTCLASS',
+ 'SO_PEERGROUPS', 'IP_MULTICAST_IF', 'int_least32_t',
+ 'uint_fast32_t', 'INT_LEAST32_WIDTH', 'IPPROTO_PIM',
+ 'IPPROTO_NONE', '__socklen_t', 'SO_RCVTIMEO_NEW',
+ 'SO_ATTACH_REUSEPORT_EBPF', '__USE_ISOC11', 'MNCC_F_CCCAP',
+ '__timeval_defined', '_NETINET_IN_H',
+ 'GSM48_BCAP_SV_AMR_OH', 'int_least8_t']
diff --git a/mncc.xml b/mncc.xml
index dd8be28..eb4f0fa 100644
--- a/mncc.xml
+++ b/mncc.xml
@@ -1,150 +1,158 @@
<?xml version="1.0"?>
<GCC_XML cvs_revision="1.135">
- <Namespace id="_1" name="::" members="_3 _4 _5 _6 _7 _8 _10 _11 _12 _13 _14 _15 _16 _17 _18 _19 _20 _21 _22 _23 _24 _25 _26 _27 _28 _29 _30 _31 _32 _33 _34 _35 _36 _37 _38 _39 _40 _41 _42 _43 _44 _45 _46 _47 _49 _50 _51 _52 _53 _54 _55 _56 _57 _58 _59 _60 _61 _62 _63 _64 _65 _66 _67 _68 _69 _70 _71 _72 _73 _74 _75 _76 _77 _78 _79 _80 _82 _83 _84 _85 _86 _87 _88 _89 _90 _91 _92 _94 _95 _96 _97 _98 _99 _100 _101 _102 _103 _104 _105 _106 _107 _108 _109 _110 _111 _112 _113 _114 _115 _116 _117 _118 _119 _120 _121 _122 _123 _124 _125 _126 _127 _128 _129 _130 _131 _132 _133 _134 _135 _136 _137 _138 _139 _140 _141 _142 _143 _144 _145 _146 _147 _149 _150 _151 _152 _153 _154 _155 _156 _157 _158 _159 _160 _161 _162 _163 _164 _165 _166 _167 _168 _169 _170 _171 _172 _173 _174 _175 _176 _177 _178 _179 _180 _181 _182 _183 _184 _186 _187 _188 _189 _190 _191 _192 _193 _194 _195 _196 _197 _198 _199 _200 _201 _202 _203 _204 _205 _206 _207 _208 _209 _210 _211 _212 _213 _2 _214 _215 _216 _217 _218 _219 _220 _221 _222 _223 _224 _225 _226 _227 _228 _229 _230 _231 _232 _233 _234 _235 _236 _237 _238 _239 _240 _241 _242 _243 _244 _245 _246 _247 _248 _249 _250 _251 _252 _253 _254 _255 _256 _257 _258 _259 _260 _261 _262 _263 _264 _266 _267 _268 _269 _270 _271 _272 _273 _274 _275 _277 _278 _279 _280 _281 _282 _283 _284 _285 _286 _287 _288 _289 _290 _291 _292 _293 _294 _295 _296 _297 _298 _299 _300 _301 _302 _303 _304 _305 _306 _307 _308 _309 _310 _311 _312 _313 _314 _315 _316 _317 _318 _319 _320 _321 _322 _323 _324 _325 _326 _327 _328 _329 _330 _331 _332 _333 _334 _335 _336 _337 _338 _339 _340 _341 _342 _343 _344 _345 _346 _347 _348 _349 _350 _351 _352 _353 _354 _355 _356 _357 _358 _359 _360 _361 _362 _363 _364 _365 _366 _367 " mangled="_Z2::" demangled="::"/>
+ <Namespace id="_1" name="::" members="_3 _4 _5 _6 _7 _8 _9 _10 _11 _12 _13 _14 _15 _17 _19 _20 _21 _22 _23 _24 _25 _26 _27 _28 _29 _31 _33 _34 _35 _36 _37 _38 _39 _40 _41 _42 _43 _44 _45 _47 _48 _49 _50 _51 _52 _53 _54 _55 _56 _57 _58 _60 _61 _62 _64 _65 _66 _67 _68 _69 _70 _71 _72 _73 _74 _75 _76 _77 _78 _79 _80 _81 _82 _83 _84 _85 _86 _87 _88 _89 _90 _91 _92 _93 _94 _95 _96 _97 _98 _99 _100 _101 _102 _103 _104 _105 _106 _107 _108 _109 _110 _111 _112 _113 _114 _115 _117 _118 _120 _121 _122 _123 _124 _125 _126 _127 _128 _129 _130 _131 _132 _133 _134 _135 _136 _137 _138 _139 _140 _141 _142 _143 _145 _146 _147 _148 _149 _150 _151 _152 _153 _155 _156 _157 _158 _159 _161 _162 _163 _164 _165 _166 _167 _168 _169 _170 _172 _173 _174 _175 _176 _177 _178 _179 _180 _181 _182 _183 _184 _185 _186 _187 _188 _189 _190 _191 _192 _193 _194 _195 _196 _197 _198 _199 _200 _201 _202 _203 _204 _205 _206 _207 _208 _209 _210 _211 _212 _213 _214 _215 _216 _217 _218 _219 _220 _221 _223 _224 _225 _226 _227 _228 _229 _230 _231 _232 _234 _235 _236 _237 _238 _239 _240 _241 _243 _244 _245 _246 _247 _248 _249 _250 _251 _252 _253 _254 _255 _256 _257 _258 _259 _260 _261 _262 _264 _265 _266 _267 _268 _269 _270 _271 _272 _273 _274 _275 _276 _277 _278 _279 _280 _281 _282 _283 _284 _285 _286 _287 _288 _289 _290 _291 _292 _293 _294 _295 _296 _297 _298 _299 _300 _301 _302 _303 _304 _305 _306 _307 _308 _309 _310 _311 _312 _313 _314 _315 _316 _317 _318 _319 _320 _321 _322 _323 _324 _325 _326 _328 _329 _330 _331 _332 _333 _334 _335 _336 _337 _338 _339 _340 _341 _342 _343 _344 _345 _346 _347 _348 _349 _350 _351 _352 _353 _354 _355 _356 _357 _358 _359 _360 _361 _362 _363 _364 _365 _366 _367 _368 _369 _370 _371 _372 _373 _374 _375 _376 _377 _378 _379 _380 _381 _382 _383 _384 _385 _386 _387 _388 _389 _390 _391 _392 _393 _394 _395 _396 _397 _398 _399 _400 _401 _403 _404 _405 _406 _407 _408 _409 _410 _411 _412 _413 _414 _415 _416 _417 _418 _419 _420 _421 _422 _423 _424 _425 _426 _427 _428 _429 _430 _431 _432 _433 _434 _435 _436 _438 _440 _441 _442 _443 _444 _445 _446 _447 _448 _449 _450 _451 _452 _453 _454 _455 _456 _457 _458 _459 _460 _461 _462 _463 _464 _465 _466 _467 _468 _469 _470 _471 _472 _473 _474 _475 _476 _477 _478 _480 _481 _482 _2 _483 _484 _485 _486 _263 _63 _437 _160 _30 _487 _488 _489 _490 _491 _492 _493 _494 _495 _496 _497 _498 _499 _500 _501 _502 _503 _504 _505 _506 _507 _508 _509 _510 _511 _512 _513 _514 _515 _516 _517 _518 _519 _520 _521 _522 _523 _524 _525 _526 _527 _528 _529 _530 _531 _532 _533 _534 _535 _536 _537 _538 _539 _540 _541 _542 _543 _544 _545 _546 _547 _548 _549 _550 _551 _552 _553 _554 _555 _556 _557 _558 _559 _560 _561 _562 _563 _564 _565 _566 _567 _568 _569 _570 _571 _572 _573 _574 _575 _576 _577 _578 _579 _580 _581 _582 _583 _439 _584 _585 _586 _587 _588 _589 _590 _591 _592 _593 _594 _595 _596 _598 _597 _599 _600 _601 _602 _603 _604 _605 _606 _607 _608 _609 _610 _611 _612 _613 _614 _615 _616 _618 _619 _620 _621 _622 _623 _624 _625 _626 _627 _628 _629 _630 _631 _632 _633 _634 _635 _636 _637 _638 _639 _640 _641 _642 _643 _644 _645 _646 _647 _648 _649 _650 _651 _652 _653 _654 _655 _656 _657 _658 _659 _660 _661 _662 _663 _664 _233 _665 _666 _667 _668 _669 _242 _670 _671 _672 _673 _674 _675 _676 _327 _677 _678 _679 _680 _681 _682 _683 _684 _685 _686 _687 _688 _689 _690 _691 _692 _693 _694 _695 _696 _697 _698 _699 _700 _701 _702 _703 _704 _705 _706 _707 _708 _709 _710 _711 _712 _713 _714 _715 _716 _717 _718 _719 _720 _721 _722 _723 _724 _725 _726 _727 _728 _729 _730 _731 _732 _733 _734 _735 _736 _737 _738 _739 _740 _741 _742 _743 _744 _745 _746 _747 _748 _749 _750 _751 _752 _753 _754 _755 _756 _757 _758 _759 _760 _761 _762 _763 _764 _402 _765 _617 _766 _767 _768 _769 _770 _771 _772 _773 _774 _775 _776 _777 _778 _779 _780 _781 _782 _783 _784 _785 _786 _787 _788 _789 _790 _791 _792 _793 _794 _795 _796 _797 _798 _799 _800 _801 _802 _803 _804 _805 _806 _807 _808 _809 _810 _811 _812 _813 _814 _815 _816 _817 _818 _819 _820 _821 _822 _823 _824 _825 _826 _827 _828 _829 _830 _831 _832 _833 _834 _835 _836 _837 _838 _839 _840 _841 _842 _843 _844 _845 _846 _847 _848 _849 _850 _851 _852 _853 _854 _855 _856 _857 _858 _859 _860 _861 _862 _863 _864 _865 _866 _867 _868 _869 _870 _871 _872 _873 _874 _875 _876 _877 _878 _879 _880 _881 _882 _883 _884 _885 _886 " mangled="_Z2::" demangled="::"/>
<Namespace id="_2" name="std" context="_1" members="" mangled="_Z3std" demangled="std"/>
- <Function id="_3" name="__builtin_nans" returns="_368" context="_1" location="f0:21" file="f0" line="21" extern="1" attributes="nothrow const nonnull">
- <Argument name="str" type="_369" location="f0:21" file="f0" line="21"/>
- </Function>
- <Variable id="_4" name="cpp_sym_MNCC_HOLD_IND" type="_93c" init="287" context="_1" location="f1:42" file="f1" line="42" static="1"/>
- <Function id="_5" name="__builtin_acosf" returns="_371" context="_1" mangled="acosf" location="f0:25" file="f0" line="25" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:25" file="f0" line="25"/>
- </Function>
- <Function id="_6" name="__builtin_acosl" returns="_372" context="_1" mangled="acosl" location="f0:26" file="f0" line="26" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:26" file="f0" line="26"/>
- </Function>
- <Variable id="_7" name="cpp_sym___USE_XOPEN2K8" type="_93c" init="1" context="_1" location="f1:71" file="f1" line="71" static="1"/>
- <Function id="_8" name="__builtin_va_arg_pack" returns="_373" context="_1" location="f0:147" file="f0" line="147" extern="1">
- <Ellipsis/>
- </Function>
- <FundamentalType id="_9" name="long unsigned int" size="64" align="64"/>
- <Typedef id="_10" name="uint_least64_t" type="_9" context="_1" location="f2:80" file="f2" line="80"/>
- <Variable id="_11" name="cpp_sym_GSM_TCHF_FRAME" type="_93c" init="768" context="_1" location="f1:131" file="f1" line="131" static="1"/>
- <Function id="_12" name="__builtin_log10" returns="_368" context="_1" mangled="log10" location="f0:63" file="f0" line="63" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:63" file="f0" line="63"/>
- </Function>
- <Function id="_13" name="__builtin_popcountll" returns="_93" context="_1" location="f0:101" file="f0" line="101" extern="1" attributes="nothrow const">
- <Argument type="_374" location="f0:101" file="f0" line="101"/>
- </Function>
- <Function id="_14" name="__builtin_clogf" returns="_375" context="_1" mangled="clogf" location="f0:111" file="f0" line="111" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:111" file="f0" line="111"/>
- </Function>
- <Function id="_15" name="__builtin_clogl" returns="_376" context="_1" mangled="clogl" location="f0:113" file="f0" line="113" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:113" file="f0" line="113"/>
- </Function>
- <Variable id="_16" name="cpp_sym_INTMAX_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:34" file="f1" line="34" static="1"/>
- <Function id="_17" name="__builtin_cexpf" returns="_375" context="_1" mangled="cexpf" location="f0:108" file="f0" line="108" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:108" file="f0" line="108"/>
- </Function>
- <Function id="_18" name="__builtin_cexpl" returns="_376" context="_1" mangled="cexpl" location="f0:110" file="f0" line="110" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:110" file="f0" line="110"/>
- </Function>
- <Variable id="_19" name="cpp_sym_SIG_ATOMIC_MAX" type="_93c" init="2147483647" context="_1" location="f1:126" file="f1" line="126" static="1"/>
- <Function id="_20" name="__builtin_isless" returns="_373" context="_1" location="f0:141" file="f0" line="141" extern="1" attributes="nothrow const">
- <Ellipsis/>
- </Function>
- <Variable id="_21" name="cpp_sym_INT_LEAST32_MAX" type="_93c" init="2147483647" context="_1" location="f1:111" file="f1" line="111" static="1"/>
- <Variable id="_22" name="cpp_sym___SYSCALL_WORDSIZE" type="_93c" init="64" context="_1" location="f1:57" file="f1" line="57" static="1"/>
- <Function id="_23" name="__builtin_isnormal" returns="_373" context="_1" location="f0:145" file="f0" line="145" extern="1">
- <Ellipsis/>
- </Function>
- <Variable id="_24" name="cpp_sym__ISOC95_SOURCE" type="_93c" init="1" context="_1" location="f1:39" file="f1" line="39" static="1"/>
- <Variable id="_25" name="cpp_sym_MNCC_SOCKET_HELLO" type="_93c" init="1024" context="_1" location="f1:59" file="f1" line="59" static="1"/>
- <Variable id="_26" name="cpp_sym_MNCC_SETUP_COMPL_IND" type="_93c" init="262" context="_1" location="f1:32" file="f1" line="32" static="1"/>
- <Struct id="_27" name="gsm_mncc_cccap" context="_1" mangled="14gsm_mncc_cccap" demangled="gsm_mncc_cccap" location="f3:182" file="f3" line="182" artificial="1" size="64" align="32" members="_378 _379 _380 _381 _382 _383 " bases=""/>
- <Function id="_28" name="__builtin_asinf" returns="_371" context="_1" mangled="asinf" location="f0:28" file="f0" line="28" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:28" file="f0" line="28"/>
- </Function>
- <Function id="_29" name="__builtin_asinl" returns="_372" context="_1" mangled="asinl" location="f0:29" file="f0" line="29" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:29" file="f0" line="29"/>
- </Function>
- <Function id="_30" name="__builtin_popcount" returns="_93" context="_1" location="f0:99" file="f0" line="99" extern="1" attributes="nothrow const">
- <Argument type="_93" location="f0:99" file="f0" line="99"/>
- </Function>
- <Variable id="_31" name="cpp_sym___USE_POSIX" type="_93c" init="1" context="_1" location="f1:43" file="f1" line="43" static="1"/>
- <Variable id="_32" name="cpp_sym_MNCC_START_DTMF_IND" type="_93c" init="277" context="_1" location="f1:133" file="f1" line="133" static="1"/>
- <Variable id="_33" name="cpp_sym_SIG_ATOMIC_MIN" type="_93c" init="-0x00000000080000000" context="_1" location="f1:122" file="f1" line="122" static="1"/>
- <Variable id="_34" name="cpp_sym__LARGEFILE_SOURCE" type="_93c" init="1" context="_1" location="f1:166" file="f1" line="166" static="1"/>
- <Function id="_35" name="__builtin_nansf" returns="_371" context="_1" location="f0:22" file="f0" line="22" extern="1" attributes="nothrow const nonnull">
- <Argument name="str" type="_369" location="f0:22" file="f0" line="22"/>
- </Function>
- <Function id="_36" name="__builtin_nansl" returns="_372" context="_1" location="f0:23" file="f0" line="23" extern="1" attributes="nothrow const nonnull">
- <Argument name="str" type="_369" location="f0:23" file="f0" line="23"/>
- </Function>
- <Function id="_37" name="__builtin_floorf" returns="_371" context="_1" mangled="floorf" location="f0:52" file="f0" line="52" extern="1" attributes="nothrow const">
- <Argument type="_371" location="f0:52" file="f0" line="52"/>
- </Function>
- <Function id="_38" name="__builtin_floorl" returns="_372" context="_1" mangled="floorl" location="f0:53" file="f0" line="53" extern="1" attributes="nothrow const">
- <Argument type="_372" location="f0:53" file="f0" line="53"/>
- </Function>
- <Variable id="_39" name="cpp_sym_MNCC_F_CAUSE" type="_93c" init="32" context="_1" location="f1:7" file="f1" line="7" static="1"/>
- <Function id="_40" name="__builtin_ctanf" returns="_375" context="_1" mangled="ctanf" location="f0:123" file="f0" line="123" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:123" file="f0" line="123"/>
- </Function>
- <Function id="_41" name="__builtin_ctanh" returns="_384" context="_1" mangled="ctanh" location="f0:127" file="f0" line="127" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:127" file="f0" line="127"/>
- </Function>
- <Function id="_42" name="__builtin_ctanl" returns="_376" context="_1" mangled="ctanl" location="f0:125" file="f0" line="125" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:125" file="f0" line="125"/>
- </Function>
- <Variable id="_43" name="cpp_sym_UINT16_MAX" type="_93c" init="65535" context="_1" location="f1:109" file="f1" line="109" static="1"/>
- <Function id="_44" name="__builtin_carg" returns="_368" context="_1" mangled="carg" location="f0:94" file="f0" line="94" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:94" file="f0" line="94"/>
- </Function>
- <Function id="_45" name="__builtin_clog" returns="_384" context="_1" mangled="clog" location="f0:112" file="f0" line="112" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:112" file="f0" line="112"/>
- </Function>
- <Function id="_46" name="__builtin_logf" returns="_371" context="_1" mangled="logf" location="f0:66" file="f0" line="66" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:66" file="f0" line="66"/>
- </Function>
- <Function id="_47" name="__builtin_logl" returns="_372" context="_1" mangled="logl" location="f0:67" file="f0" line="67" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:67" file="f0" line="67"/>
- </Function>
- <FundamentalType id="_48" name="long int" size="64" align="64"/>
- <Typedef id="_49" name="int_fast64_t" type="_48" context="_1" location="f2:94" file="f2" line="94"/>
- <Function id="_50" name="__builtin_fabs" returns="_368" context="_1" mangled="fabs" location="f0:48" file="f0" line="48" extern="1" attributes="nothrow const">
- <Argument type="_368" location="f0:48" file="f0" line="48"/>
- </Function>
- <Function id="_51" name="__builtin_expf" returns="_371" context="_1" mangled="expf" location="f0:46" file="f0" line="46" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:46" file="f0" line="46"/>
- </Function>
- <Function id="_52" name="__builtin_expl" returns="_372" context="_1" mangled="expl" location="f0:47" file="f0" line="47" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:47" file="f0" line="47"/>
- </Function>
- <Variable id="_53" name="cpp_sym_UINT_LEAST8_MAX" type="_93c" init="255" context="_1" location="f1:112" file="f1" line="112" static="1"/>
- <Variable id="_54" name="cpp_sym_MNCC_SETUP_COMPL_REQ" type="_93c" init="261" context="_1" location="f1:129" file="f1" line="129" static="1"/>
- <Variable id="_55" name="cpp_sym_MNCC_F_FACILITY" type="_93c" init="512" context="_1" location="f1:125" file="f1" line="125" static="1"/>
- <Function id="_56" name="__builtin_isunordered" returns="_373" context="_1" location="f0:146" file="f0" line="146" extern="1" attributes="nothrow const">
- <Ellipsis/>
- </Function>
- <Typedef id="_57" name="int_fast32_t" type="_48" context="_1" location="f2:93" file="f2" line="93"/>
- <Variable id="_58" name="cpp_sym_MNCC_RETRIEVE_IND" type="_93c" init="290" context="_1" location="f1:97" file="f1" line="97" static="1"/>
- <Variable id="_59" name="cpp_sym_MNCC_ALERT_REQ" type="_93c" init="266" context="_1" location="f1:79" file="f1" line="79" static="1"/>
- <Struct id="_60" name="gsm_mncc_facility" context="_1" mangled="17gsm_mncc_facility" demangled="gsm_mncc_facility" location="f3:172" file="f3" line="172" artificial="1" size="1056" align="32" members="_385 _386 _387 _388 _389 _390 " bases=""/>
- <Variable id="_61" name="cpp_sym__STDINT_H" type="_93c" init="1" context="_1" location="f1:102" file="f1" line="102" static="1"/>
- <Function id="_62" name="__builtin_csqrt" returns="_384" context="_1" mangled="csqrt" location="f0:121" file="f0" line="121" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:121" file="f0" line="121"/>
- </Function>
- <Variable id="_63" name="cpp_sym_MNCC_F_SSVERSION" type="_93c" init="1024" context="_1" location="f1:161" file="f1" line="161" static="1"/>
- <Function id="_64" name="__builtin_sin" returns="_368" context="_1" mangled="sin" location="f0:75" file="f0" line="75" extern="1" attributes="nothrow pure no vops">
- <Argument type="_368" location="f0:75" file="f0" line="75"/>
- </Function>
- <Function id="_65" name="__builtin_ldexpf" returns="_371" context="_1" mangled="ldexpf" location="f0:60" file="f0" line="60" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:60" file="f0" line="60"/>
- <Argument type="_93" location="f0:60" file="f0" line="60"/>
- </Function>
- <Function id="_66" name="__builtin_ldexpl" returns="_372" context="_1" mangled="ldexpl" location="f0:61" file="f0" line="61" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:61" file="f0" line="61"/>
- <Argument type="_93" location="f0:61" file="f0" line="61"/>
- </Function>
- <Variable id="_67" name="cpp_sym_MNCC_STOP_DTMF_IND" type="_93c" init="280" context="_1" location="f1:103" file="f1" line="103" static="1"/>
- <Function id="_68" name="__builtin_isinf_sign" returns="_373" context="_1" location="f0:140" file="f0" line="140" extern="1">
- <Ellipsis/>
- </Function>
- <Variable id="_69" name="cpp_sym_GSM_MAX_FACILITY" type="_93c" init="128" context="_1" location="f1:23" file="f1" line="23" static="1"/>
- <Function id="_70" name="__builtin_islessequal" returns="_373" context="_1" location="f0:142" file="f0" line="142" extern="1" attributes="nothrow const">
- <Ellipsis/>
- </Function>
- <Enumeration id="_71" name="gsm48_bcap_sig_access" context="_1" location="f3:46" file="f3" line="46" artificial="1" size="32" align="32">
+ <Variable id="_3" name="cpp_sym_UINT_LEAST8_WIDTH" type="_46c" init="8" context="_1" location="f0:160" file="f0" line="160" static="1"/>
+ <Variable id="_4" name="cpp_sym_SOL_ALG" type="_46c" init="279" context="_1" location="f0:24" file="f0" line="24" static="1"/>
+ <Variable id="_5" name="cpp_sym___time_t_defined" type="_46c" init="1" context="_1" location="f0:29" file="f0" line="29" static="1"/>
+ <Variable id="_6" name="cpp_sym_MNCC_HOLD_IND" type="_46c" init="287" context="_1" location="f0:504" file="f0" line="504" static="1"/>
+ <Variable id="_7" name="cpp_sym_SO_DETACH_FILTER" type="_46c" init="27" context="_1" location="f0:457" file="f0" line="457" static="1"/>
+ <Struct id="_8" name="timeval" context="_1" mangled="7timeval" demangled="timeval" location="f1:9" file="f1" line="9" artificial="1" size="128" align="64" members="_888 _889 _890 _891 _892 _893 " bases=""/>
+ <Variable id="_9" name="cpp_sym_IP_PMTUDISC" type="_46c" init="10" context="_1" location="f0:147" file="f0" line="147" static="1"/>
+ <Variable id="_10" name="cpp_sym___USE_XOPEN2K8" type="_46c" init="1" context="_1" location="f0:429" file="f0" line="429" static="1"/>
+ <Variable id="_11" name="cpp_sym_INADDR_ALLSNOOPERS_GROUP" type="_32c" init="3758096490u" context="_1" location="f0:78" file="f0" line="78" static="1"/>
+ <Variable id="_12" name="cpp_sym_SOL_IPV6" type="_46c" init="41" context="_1" location="f0:210" file="f0" line="210" static="1"/>
+ <Variable id="_13" name="cpp_sym_IPV6_RECVHOPLIMIT" type="_46c" init="51" context="_1" location="f0:290" file="f0" line="290" static="1"/>
+ <Function id="_14" name="recv" returns="_528" context="_1" location="f2:145" file="f2" line="145" extern="1">
+ <Argument name="__fd" type="_46" location="f2:145" file="f2" line="145"/>
+ <Argument name="__buf" type="_222" location="f2:145" file="f2" line="145"/>
+ <Argument name="__n" type="_547" location="f2:145" file="f2" line="145"/>
+ <Argument name="__flags" type="_46" location="f2:145" file="f2" line="145"/>
+ </Function>
+ <Variable id="_15" name="cpp_sym_INADDR_NONE" type="_32c" init="4294967295u" context="_1" location="f0:468" file="f0" line="468" static="1"/>
+ <FundamentalType id="_16" name="long int" size="64" align="64"/>
+ <Typedef id="_17" name="blksize_t" type="_845" context="_1" location="f3:185" file="f3" line="185"/>
+ <FundamentalType id="_18" name="long unsigned int" size="64" align="64"/>
+ <Typedef id="_19" name="uint_least64_t" type="_687" context="_1" location="f4:52" file="f4" line="52"/>
+ <Variable id="_20" name="cpp_sym_GSM_TCHF_FRAME" type="_46c" init="768" context="_1" location="f0:394" file="f0" line="394" static="1"/>
+ <Struct id="_21" name="in6_pktinfo" context="_1" mangled="11in6_pktinfo" demangled="in6_pktinfo" location="f5:542" file="f5" line="542" artificial="1" size="160" align="32" members="_895 _896 _897 _898 _899 _900 " bases=""/>
+ <Variable id="_22" name="cpp_sym_UINT_LEAST32_WIDTH" type="_46c" init="32" context="_1" location="f0:254" file="f0" line="254" static="1"/>
+ <Function id="_23" name="__bswap_16" returns="_172" static="1" context="_1" location="f6:34" file="f6" line="34" endline="37" inline="1">
+ <Argument name="__bsx" type="_172" location="f6:34" file="f6" line="34"/>
+ </Function>
+ <Variable id="_24" name="cpp_sym_IP_MAX_MEMBERSHIPS" type="_46c" init="20" context="_1" location="f0:157" file="f0" line="157" static="1"/>
+ <Variable id="_25" name="cpp_sym_IPV6_PMTUDISC_INTERFACE" type="_46c" init="4" context="_1" location="f0:531" file="f0" line="531" static="1"/>
+ <Variable id="_26" name="cpp_sym_IP_PMTUDISC_DO" type="_46c" init="2" context="_1" location="f0:115" file="f0" line="115" static="1"/>
+ <Variable id="_27" name="cpp_sym_IPV6_HOPOPTS" type="_46c" init="54" context="_1" location="f0:124" file="f0" line="124" static="1"/>
+ <Variable id="_28" name="cpp_sym_INTMAX_MIN" type="_16c" init="-0x08000000000000000l" context="_1" location="f0:158" file="f0" line="158" static="1"/>
+ <Variable id="_29" name="cpp_sym___SIZEOF_PTHREAD_ATTR_T" type="_46c" init="56" context="_1" location="f0:188" file="f0" line="188" static="1"/>
+ <Union id="_30" name="pthread_condattr_t" context="_1" mangled="18pthread_condattr_t" demangled="pthread_condattr_t" location="f7:45" file="f7" line="45" size="32" align="32" members="_902 _903 _904 _905 _906 _907 " bases=""/>
+ <Variable id="_31" name="cpp_sym_SIG_ATOMIC_MAX" type="_46c" init="2147483647" context="_1" location="f0:514" file="f0" line="514" static="1"/>
+ <FundamentalType id="_32" name="unsigned int" size="32" align="32"/>
+ <Typedef id="_33" name="__kernel_uid32_t" type="_32" context="_1" location="f8:49" file="f8" line="49"/>
+ <Typedef id="_34" name="__int_least64_t" type="_529" context="_1" location="f9:58" file="f9" line="58"/>
+ <Variable id="_35" name="cpp_sym_IPV6_RECVPKTINFO" type="_46c" init="49" context="_1" location="f0:170" file="f0" line="170" static="1"/>
+ <Variable id="_36" name="cpp_sym_SOL_ATM" type="_46c" init="264" context="_1" location="f0:226" file="f0" line="226" static="1"/>
+ <Variable id="_37" name="cpp_sym_PF_IRDA" type="_46c" init="23" context="_1" location="f0:90" file="f0" line="90" static="1"/>
+ <Struct id="_38" name="__pthread_cond_s" context="_1" mangled="16__pthread_cond_s" demangled="__pthread_cond_s" location="f10:93" file="f10" line="93" artificial="1" size="384" align="64" members="_908 _909 _910 _911 _912 _913 _914 _915 _916 _917 _918 _919 _920 " bases=""/>
+ <Function id="_39" name="__bswap_64" returns="_79" static="1" context="_1" location="f6:70" file="f6" line="70" endline="73" inline="1">
+ <Argument name="__bsx" type="_79" location="f6:70" file="f6" line="70"/>
+ </Function>
+ <Variable id="_40" name="cpp_sym_PTRDIFF_MIN" type="_16c" init="-0x08000000000000000l" context="_1" location="f0:238" file="f0" line="238" static="1"/>
+ <Variable id="_41" name="cpp_sym_IP_MTU" type="_46c" init="14" context="_1" location="f0:65" file="f0" line="65" static="1"/>
+ <Variable id="_42" name="cpp_sym_PF_INET" type="_46c" init="2" context="_1" location="f0:355" file="f0" line="355" static="1"/>
+ <Variable id="_43" name="cpp_sym_INT_LEAST32_MAX" type="_46c" init="2147483647" context="_1" location="f0:86" file="f0" line="86" static="1"/>
+ <Variable id="_44" name="cpp_sym___SYSCALL_WORDSIZE" type="_46c" init="64" context="_1" location="f0:455" file="f0" line="455" static="1"/>
+ <Typedef id="_45" name="__kernel_size_t" type="_181" context="_1" location="f8:72" file="f8" line="72"/>
+ <FundamentalType id="_46" name="int" size="32" align="32"/>
+ <Typedef id="_47" name="__kernel_daddr_t" type="_46" context="_1" location="f8:45" file="f8" line="45"/>
+ <Variable id="_48" name="cpp_sym_MCAST_UNBLOCK_SOURCE" type="_46c" init="44" context="_1" location="f0:416" file="f0" line="416" static="1"/>
+ <Variable id="_49" name="cpp_sym_IP_CHECKSUM" type="_46c" init="23" context="_1" location="f0:476" file="f0" line="476" static="1"/>
+ <Function id="_50" name="recvmsg" returns="_528" context="_1" location="f2:191" file="f2" line="191" extern="1">
+ <Argument name="__fd" type="_46" location="f2:191" file="f2" line="191"/>
+ <Argument name="__message" type="_921" location="f2:191" file="f2" line="191"/>
+ <Argument name="__flags" type="_46" location="f2:191" file="f2" line="191"/>
+ </Function>
+ <Variable id="_51" name="cpp_sym__ISOC95_SOURCE" type="_46c" init="1" context="_1" location="f0:446" file="f0" line="446" static="1"/>
+ <Variable id="_52" name="cpp_sym_MNCC_SETUP_COMPL_IND" type="_46c" init="262" context="_1" location="f0:299" file="f0" line="299" static="1"/>
+ <Struct id="_53" name="gsm_mncc_cccap" context="_1" mangled="14gsm_mncc_cccap" demangled="gsm_mncc_cccap" location="f11:199" file="f11" line="199" artificial="1" size="64" align="32" members="_922 _923 _924 _925 _926 _927 " bases=""/>
+ <Variable id="_54" name="cpp_sym_SO_ACCEPTCONN" type="_46c" init="30" context="_1" location="f0:184" file="f0" line="184" static="1"/>
+ <Variable id="_55" name="cpp_sym_IPV6_HDRINCL" type="_46c" init="36" context="_1" location="f0:431" file="f0" line="431" static="1"/>
+ <Variable id="_56" name="cpp_sym_INT64_WIDTH" type="_46c" init="64" context="_1" location="f0:146" file="f0" line="146" static="1"/>
+ <Variable id="_57" name="cpp_sym_IP_MULTICAST_LOOP" type="_46c" init="34" context="_1" location="f0:185" file="f0" line="185" static="1"/>
+ <Variable id="_58" name="cpp_sym___USE_POSIX" type="_46c" init="1" context="_1" location="f0:162" file="f0" line="162" static="1"/>
+ <FundamentalType id="_59" name="long long int" size="64" align="64"/>
+ <Typedef id="_60" name="__kernel_loff_t" type="_59" context="_1" location="f8:88" file="f8" line="88"/>
+ <Function id="_61" name="htons" returns="_391" throw="" context="_1" location="f5:385" file="f5" line="385" extern="1" attributes="const">
+ <Argument name="__hostshort" type="_391" location="f5:385" file="f5" line="385"/>
+ </Function>
+ <Variable id="_62" name="cpp_sym_PF_SMC" type="_46c" init="43" context="_1" location="f0:137" file="f0" line="137" static="1"/>
+ <Struct id="_63" name="__sigset_t" context="_1" mangled="10__sigset_t" demangled="__sigset_t" location="f12:8" file="f12" line="8" size="1024" align="64" members="_928 _929 _930 _931 _932 " bases=""/>
+ <Typedef id="_64" name="sigset_t" type="_63" context="_1" location="f13:7" file="f13" line="7"/>
+ <Typedef id="_65" name="__kernel_ssize_t" type="_180" context="_1" location="f8:73" file="f8" line="73"/>
+ <Struct id="_66" name="__pthread_internal_slist" context="_1" mangled="24__pthread_internal_slist" demangled="__pthread_internal_slist" location="f10:56" file="f10" line="56" artificial="1" size="64" align="64" members="_933 _934 _935 _936 _937 " bases=""/>
+ <Struct id="_67" name="gsm_mncc_useruser" context="_1" mangled="17gsm_mncc_useruser" demangled="gsm_mncc_useruser" location="f11:178" file="f11" line="178" artificial="1" size="1088" align="32" members="_938 _939 _940 _941 _942 _943 " bases=""/>
+ <Variable id="_68" name="cpp_sym_PF_SNA" type="_46c" init="22" context="_1" location="f0:341" file="f0" line="341" static="1"/>
+ <Struct id="_69" name="ip6_mtuinfo" context="_1" mangled="11ip6_mtuinfo" demangled="ip6_mtuinfo" location="f5:549" file="f5" line="549" artificial="1" size="256" align="32" members="_944 _945 _946 _947 _948 _949 " bases=""/>
+ <Typedef id="_70" name="blkcnt64_t" type="_374" context="_1" location="f3:219" file="f3" line="219"/>
+ <Struct id="_71" name="gsm_mncc" context="_1" mangled="8gsm_mncc" demangled="gsm_mncc" location="f11:291" file="f11" line="291" artificial="1" size="14880" align="32" members="_950 _951 _952 _953 _954 _955 _956 _957 _958 _959 _960 _961 _962 _963 _964 _965 _966 _967 _968 _969 _970 _971 _972 _973 _974 _975 _976 _977 _978 " bases=""/>
+ <Variable id="_72" name="cpp_sym_MNCC_F_CAUSE" type="_46c" init="32" context="_1" location="f0:424" file="f0" line="424" static="1"/>
+ <Variable id="_73" name="cpp_sym__BITS_UINTN_IDENTITY_H" type="_46c" init="1" context="_1" location="f0:435" file="f0" line="435" static="1"/>
+ <Variable id="_74" name="cpp_sym_IP_MTU_DISCOVER" type="_46c" init="10" context="_1" location="f0:207" file="f0" line="207" static="1"/>
+ <Variable id="_75" name="cpp_sym_UINT16_MAX" type="_46c" init="65535" context="_1" location="f0:374" file="f0" line="374" static="1"/>
+ <Typedef id="_76" name="u_int" type="_450" context="_1" location="f3:35" file="f3" line="35"/>
+ <Struct id="_77" name="ipv6_mreq" context="_1" mangled="9ipv6_mreq" demangled="ipv6_mreq" location="f5:294" file="f5" line="294" artificial="1" size="160" align="32" members="_979 _980 _981 _982 _983 _984 " bases=""/>
+ <Variable id="_78" name="cpp_sym_MNCC_START_DTMF_IND" type="_46c" init="277" context="_1" location="f0:101" file="f0" line="101" static="1"/>
+ <Typedef id="_79" name="__uint64_t" type="_18" context="_1" location="f9:45" file="f9" line="45"/>
+ <Typedef id="_80" name="__id_t" type="_32" context="_1" location="f9:159" file="f9" line="159"/>
+ <Variable id="_81" name="cpp_sym___GLIBC_USE_IEC_60559_BFP_EXT_C2X" type="_46c" init="1" context="_1" location="f0:303" file="f0" line="303" static="1"/>
+ <Variable id="_82" name="cpp_sym_SIG_ATOMIC_MIN" type="_46c" init="-0x00000000080000000" context="_1" location="f0:383" file="f0" line="383" static="1"/>
+ <Variable id="_83" name="cpp_sym_SIOCGSTAMP_OLD" type="_46c" init="35078" context="_1" location="f0:208" file="f0" line="208" static="1"/>
+ <Variable id="_84" name="cpp_sym_IPV6_UNICAST_IF" type="_46c" init="76" context="_1" location="f0:368" file="f0" line="368" static="1"/>
+ <Variable id="_85" name="cpp_sym_INT_FAST64_WIDTH" type="_46c" init="64" context="_1" location="f0:4" file="f0" line="4" static="1"/>
+ <Typedef id="_86" name="time_t" type="_485" context="_1" location="f14:7" file="f14" line="7"/>
+ <Typedef id="_87" name="clock_t" type="_877" context="_1" location="f15:7" file="f15" line="7"/>
+ <Variable id="_88" name="cpp_sym_SIOCSPGRP" type="_46c" init="35074" context="_1" location="f0:547" file="f0" line="547" static="1"/>
+ <Variable id="_89" name="cpp_sym_SO_PEERNAME" type="_46c" init="28" context="_1" location="f0:166" file="f0" line="166" static="1"/>
+ <Typedef id="_90" name="__sig_atomic_t" type="_46" context="_1" location="f9:215" file="f9" line="215"/>
+ <Typedef id="_91" name="__intptr_t" type="_16" context="_1" location="f9:207" file="f9" line="207"/>
+ <Typedef id="_92" name="int_fast64_t" type="_16" context="_1" location="f4:62" file="f4" line="62"/>
+ <Variable id="_93" name="cpp_sym_SO_REUSEADDR" type="_46c" init="2" context="_1" location="f0:308" file="f0" line="308" static="1"/>
+ <Struct id="_94" name="ip_mreq" context="_1" mangled="7ip_mreq" demangled="ip_mreq" location="f5:270" file="f5" line="270" artificial="1" size="64" align="32" members="_985 _986 _987 _988 _989 _990 " bases=""/>
+ <Variable id="_95" name="cpp_sym_SO_SNDLOWAT" type="_46c" init="19" context="_1" location="f0:304" file="f0" line="304" static="1"/>
+ <Variable id="_96" name="cpp_sym_MNCC_SETUP_COMPL_REQ" type="_46c" init="261" context="_1" location="f0:98" file="f0" line="98" static="1"/>
+ <Variable id="_97" name="cpp_sym_IP_PMTUDISC_DONT" type="_46c" init="0" context="_1" location="f0:253" file="f0" line="253" static="1"/>
+ <Typedef id="_98" name="__suseconds_t" type="_16" context="_1" location="f9:162" file="f9" line="162"/>
+ <Variable id="_99" name="cpp_sym_MNCC_F_FACILITY" type="_46c" init="512" context="_1" location="f0:387" file="f0" line="387" static="1"/>
+ <Function id="_100" name="shutdown" returns="_46" throw="" context="_1" location="f2:250" file="f2" line="250" extern="1">
+ <Argument name="__fd" type="_46" location="f2:250" file="f2" line="250"/>
+ <Argument name="__how" type="_46" location="f2:250" file="f2" line="250"/>
+ </Function>
+ <Typedef id="_101" name="clockid_t" type="_536" context="_1" location="f16:7" file="f16" line="7"/>
+ <Typedef id="_102" name="int_fast32_t" type="_16" context="_1" location="f4:61" file="f4" line="61"/>
+ <Variable id="_103" name="cpp_sym_MNCC_RETRIEVE_IND" type="_46c" init="290" context="_1" location="f0:360" file="f0" line="360" static="1"/>
+ <Variable id="_104" name="cpp_sym_SCM_TIMESTAMPING_OPT_STATS" type="_46c" init="54" context="_1" location="f0:439" file="f0" line="439" static="1"/>
+ <Variable id="_105" name="cpp_sym_MNCC_ALERT_REQ" type="_46c" init="266" context="_1" location="f0:510" file="f0" line="510" static="1"/>
+ <Typedef id="_106" name="fsblkcnt64_t" type="_522" context="_1" location="f3:220" file="f3" line="220"/>
+ <Typedef id="_107" name="__kernel_pid_t" type="_46" context="_1" location="f8:28" file="f8" line="28"/>
+ <Typedef id="_108" name="__socklen_t" type="_32" context="_1" location="f9:210" file="f9" line="210"/>
+ <Variable id="_109" name="cpp_sym___GLIBC_USE_DEPRECATED_GETS" type="_46c" init="0" context="_1" location="f0:279" file="f0" line="279" static="1"/>
+ <Variable id="_110" name="cpp_sym_IP_RETOPTS" type="_46c" init="7" context="_1" location="f0:516" file="f0" line="516" static="1"/>
+ <Struct id="_111" name="gsm_mncc_facility" context="_1" mangled="17gsm_mncc_facility" demangled="gsm_mncc_facility" location="f11:189" file="f11" line="189" artificial="1" size="1056" align="32" members="_991 _992 _993 _994 _995 _996 " bases=""/>
+ <Variable id="_112" name="cpp_sym___SIZEOF_PTHREAD_MUTEX_T" type="_46c" init="40" context="_1" location="f0:487" file="f0" line="487" static="1"/>
+ <Variable id="_113" name="cpp_sym_IP_XFRM_POLICY" type="_46c" init="17" context="_1" location="f0:495" file="f0" line="495" static="1"/>
+ <Variable id="_114" name="cpp_sym__STDINT_H" type="_46c" init="1" context="_1" location="f0:365" file="f0" line="365" static="1"/>
+ <Variable id="_115" name="cpp_sym__LARGEFILE_SOURCE" type="_46c" init="1" context="_1" location="f0:418" file="f0" line="418" static="1"/>
+ <FundamentalType id="_116" name="short int" size="16" align="16"/>
+ <Typedef id="_117" name="__int16_t" type="_116" context="_1" location="f9:39" file="f9" line="39"/>
+ <Variable id="_118" name="cpp_sym_MNCC_F_SSVERSION" type="_46c" init="1024" context="_1" location="f0:121" file="f0" line="121" static="1"/>
+ <PointerType id="_119" type="_997" size="64" align="64"/>
+ <Typedef id="_120" name="__kernel_sighandler_t" type="_119" context="_1" location="f17:30" file="f17" line="30"/>
+ <Variable id="_121" name="cpp_sym_IPV6_LEAVE_GROUP" type="_46c" init="21" context="_1" location="f0:461" file="f0" line="461" static="1"/>
+ <Variable id="_122" name="cpp_sym_UINTMAX_WIDTH" type="_46c" init="64" context="_1" location="f0:338" file="f0" line="338" static="1"/>
+ <Variable id="_123" name="cpp_sym_IPV6_RTHDRDSTOPTS" type="_46c" init="55" context="_1" location="f0:331" file="f0" line="331" static="1"/>
+ <Typedef id="_124" name="__loff_t" type="_702" context="_1" location="f9:203" file="f9" line="203"/>
+ <Variable id="_125" name="cpp_sym_MNCC_STOP_DTMF_IND" type="_46c" init="280" context="_1" location="f0:526" file="f0" line="526" static="1"/>
+ <Variable id="_126" name="cpp_sym__SS_SIZE" type="_46c" init="128" context="_1" location="f0:477" file="f0" line="477" static="1"/>
+ <Variable id="_127" name="cpp_sym___RLIM_T_MATCHES_RLIM64_T" type="_46c" init="1" context="_1" location="f0:312" file="f0" line="312" static="1"/>
+ <Typedef id="_128" name="__rlim64_t" type="_18" context="_1" location="f9:158" file="f9" line="158"/>
+ <Variable id="_129" name="cpp_sym_GSM_MAX_FACILITY" type="_46c" init="128" context="_1" location="f0:145" file="f0" line="145" static="1"/>
+ <Variable id="_130" name="cpp_sym_PF_ALG" type="_46c" init="38" context="_1" location="f0:55" file="f0" line="55" static="1"/>
+ <Typedef id="_131" name="useconds_t" type="_282" context="_1" location="f3:134" file="f3" line="134"/>
+ <Variable id="_132" name="cpp_sym_PF_MPLS" type="_46c" init="28" context="_1" location="f0:76" file="f0" line="76" static="1"/>
+ <Variable id="_133" name="cpp_sym_SO_ZEROCOPY" type="_46c" init="60" context="_1" location="f0:181" file="f0" line="181" static="1"/>
+ <Variable id="_134" name="cpp_sym___SOCKADDR_COMMON_SIZE" type="_18c" init="2ul" context="_1" location="f0:182" file="f0" line="182" static="1"/>
+ <Enumeration id="_135" name="gsm48_bcap_sig_access" context="_1" location="f11:63" file="f11" line="63" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_SA_I440_I450" init="1"/>
<EnumValue name="GSM48_BCAP_SA_X21" init="2"/>
<EnumValue name="GSM48_BCAP_SA_X28_DP_IN" init="3"/>
@@ -152,181 +160,279 @@
<EnumValue name="GSM48_BCAP_SA_X28_NDP" init="5"/>
<EnumValue name="GSM48_BCAP_SA_X32" init="6"/>
</Enumeration>
- <Variable id="_72" name="cpp_sym_UINT_LEAST64_MAX" type="_9c" init="-1ul" context="_1" location="f1:99" file="f1" line="99" static="1"/>
- <Function id="_73" name="__builtin_tanf" returns="_371" context="_1" mangled="tanf" location="f0:85" file="f0" line="85" extern="1" attributes="nothrow pure no vops">
- <Argument type="_371" location="f0:85" file="f0" line="85"/>
- </Function>
- <Function id="_74" name="__builtin_tanh" returns="_368" context="_1" mangled="tanh" location="f0:86" file="f0" line="86" extern="1" attributes="nothrow pure no vops">
- <Argument type="_368" location="f0:86" file="f0" line="86"/>
- </Function>
- <Function id="_75" name="__builtin_tanl" returns="_372" context="_1" mangled="tanl" location="f0:89" file="f0" line="89" extern="1" attributes="nothrow pure no vops">
- <Argument type="_372" location="f0:89" file="f0" line="89"/>
- </Function>
- <Variable id="_76" name="cpp_sym___WORDSIZE_TIME64_COMPAT32" type="_93c" init="1" context="_1" location="f1:70" file="f1" line="70" static="1"/>
- <Function id="_77" name="__builtin_ceil" returns="_368" context="_1" mangled="ceil" location="f0:36" file="f0" line="36" extern="1" attributes="nothrow const">
- <Argument type="_368" location="f0:36" file="f0" line="36"/>
- </Function>
- <Function id="_78" name="__builtin_fmodf" returns="_371" context="_1" mangled="fmodf" location="f0:54" file="f0" line="54" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:54" file="f0" line="54"/>
- <Argument type="_371" location="f0:54" file="f0" line="54"/>
- </Function>
- <Function id="_79" name="__builtin_fmodl" returns="_372" context="_1" mangled="fmodl" location="f0:55" file="f0" line="55" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:55" file="f0" line="55"/>
- <Argument type="_372" location="f0:55" file="f0" line="55"/>
- </Function>
- <Variable id="_80" name="cpp_sym___USE_XOPEN2K" type="_93c" init="1" context="_1" location="f1:69" file="f1" line="69" static="1"/>
- <FundamentalType id="_81" name="signed char" size="8" align="8"/>
- <Typedef id="_82" name="int_least8_t" type="_81" context="_1" location="f2:65" file="f2" line="65"/>
- <Struct id="_83" name="gsm_data_frame" context="_1" mangled="14gsm_data_frame" demangled="gsm_data_frame" location="f3:313" file="f3" line="313" artificial="1" size="64" align="32" members="_392 _393 _394 _395 _396 _397 _398 " bases=""/>
- <Function id="_84" name="__builtin_return" returns="_399" context="_1" location="f0:13" file="f0" line="13" extern="1" attributes="nothrow noreturn">
- <Argument name="RESULT" type="_400" location="f0:13" file="f0" line="13"/>
- </Function>
- <Variable id="_85" name="cpp_sym_MNCC_FACILITY_REQ" type="_93c" init="275" context="_1" location="f1:95" file="f1" line="95" static="1"/>
- <Variable id="_86" name="cpp_sym_MNCC_REL_IND" type="_93c" init="273" context="_1" location="f1:46" file="f1" line="46" static="1"/>
- <Struct id="_87" name="gsm_mncc_ssversion" context="_1" mangled="18gsm_mncc_ssversion" demangled="gsm_mncc_ssversion" location="f3:177" file="f3" line="177" artificial="1" size="1056" align="32" members="_401 _402 _403 _404 _405 _406 " bases=""/>
- <Function id="_88" name="__builtin_sqrt" returns="_368" context="_1" mangled="sqrt" location="f0:81" file="f0" line="81" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:81" file="f0" line="81"/>
- </Function>
- <Function id="_89" name="__builtin_cpow" returns="_384" context="_1" mangled="cpow" location="f0:130" file="f0" line="130" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:130" file="f0" line="130"/>
- <Argument type="_384" location="f0:130" file="f0" line="130"/>
- </Function>
- <Function id="_90" name="__builtin_coshf" returns="_371" context="_1" mangled="coshf" location="f0:42" file="f0" line="42" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:42" file="f0" line="42"/>
- </Function>
- <Function id="_91" name="__builtin_coshl" returns="_372" context="_1" mangled="coshl" location="f0:43" file="f0" line="43" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:43" file="f0" line="43"/>
- </Function>
- <Variable id="_92" name="cpp_sym__XOPEN_SOURCE_EXTENDED" type="_93c" init="1" context="_1" location="f1:134" file="f1" line="134" static="1"/>
- <FundamentalType id="_93" name="int" size="32" align="32"/>
- <Typedef id="_94" name="int_least32_t" type="_93" context="_1" location="f2:67" file="f2" line="67"/>
- <Function id="_95" name="__builtin_cexp" returns="_384" context="_1" mangled="cexp" location="f0:109" file="f0" line="109" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:109" file="f0" line="109"/>
- </Function>
- <Variable id="_96" name="cpp_sym_MNCC_SOCK_VERSION" type="_93c" init="6" context="_1" location="f1:33" file="f1" line="33" static="1"/>
- <Function id="_97" name="__builtin_atan2" returns="_368" context="_1" mangled="atan2" location="f0:31" file="f0" line="31" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:31" file="f0" line="31"/>
- <Argument type="_368" location="f0:31" file="f0" line="31"/>
- </Function>
- <Function id="_98" name="__builtin_memchr" returns="_400" context="_1" location="f0:12" file="f0" line="12" extern="1">
- <Argument type="_407" location="f0:12" file="f0" line="12"/>
- <Argument type="_93" location="f0:12" file="f0" line="12"/>
- <Argument type="_148" location="f0:12" file="f0" line="12"/>
- </Function>
- <Function id="_99" name="__builtin_atanf" returns="_371" context="_1" mangled="atanf" location="f0:34" file="f0" line="34" extern="1" attributes="nothrow pure no vops">
- <Argument type="_371" location="f0:34" file="f0" line="34"/>
- </Function>
- <Function id="_100" name="__builtin_atanl" returns="_372" context="_1" mangled="atanl" location="f0:35" file="f0" line="35" extern="1" attributes="nothrow pure no vops">
- <Argument type="_372" location="f0:35" file="f0" line="35"/>
- </Function>
- <Function id="_101" name="__builtin_ctan" returns="_384" context="_1" mangled="ctan" location="f0:124" file="f0" line="124" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:124" file="f0" line="124"/>
- </Function>
- <Function id="_102" name="__builtin_log" returns="_368" context="_1" mangled="log" location="f0:62" file="f0" line="62" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:62" file="f0" line="62"/>
- </Function>
- <Variable id="_103" name="cpp_sym___USE_ISOC99" type="_93c" init="1" context="_1" location="f1:157" file="f1" line="157" static="1"/>
- <Variable id="_104" name="cpp_sym_INT16_MAX" type="_93c" init="32767" context="_1" location="f1:87" file="f1" line="87" static="1"/>
- <Enumeration id="_105" name="gsm48_bcap_ra" context="_1" location="f3:38" file="f3" line="38" artificial="1" size="32" align="32">
+ <Variable id="_136" name="cpp_sym_UINT_LEAST64_MAX" type="_18c" init="-1ul" context="_1" location="f0:223" file="f0" line="223" static="1"/>
+ <Variable id="_137" name="cpp_sym_PF_LLC" type="_46c" init="26" context="_1" location="f0:415" file="f0" line="415" static="1"/>
+ <Variable id="_138" name="cpp_sym_IP_PMTUDISC_PROBE" type="_46c" init="3" context="_1" location="f0:433" file="f0" line="433" static="1"/>
+ <Variable id="_139" name="cpp_sym_IP_PMTUDISC_INTERFACE" type="_46c" init="4" context="_1" location="f0:59" file="f0" line="59" static="1"/>
+ <Variable id="_140" name="cpp_sym___WORDSIZE_TIME64_COMPAT32" type="_46c" init="1" context="_1" location="f0:193" file="f0" line="193" static="1"/>
+ <Variable id="_141" name="cpp_sym___USE_XOPEN2K" type="_46c" init="1" context="_1" location="f0:333" file="f0" line="333" static="1"/>
+ <Variable id="_142" name="in6addr_loopback" type="_237c" context="_1" location="f5:233" file="f5" line="233" extern="1"/>
+ <Struct id="_143" name="in_pktinfo" context="_1" mangled="10in_pktinfo" demangled="in_pktinfo" location="f18:158" file="f18" line="158" artificial="1" size="96" align="32" members="_1000 _1001 _1002 _1003 _1004 _1005 _1006 " bases=""/>
+ <FundamentalType id="_144" name="signed char" size="8" align="8"/>
+ <Typedef id="_145" name="int_least8_t" type="_634" context="_1" location="f4:43" file="f4" line="43"/>
+ <Variable id="_146" name="cpp_sym_SO_BROADCAST" type="_46c" init="6" context="_1" location="f0:48" file="f0" line="48" static="1"/>
+ <Variable id="_147" name="cpp_sym_PF_ASH" type="_46c" init="18" context="_1" location="f0:489" file="f0" line="489" static="1"/>
+ <Variable id="_148" name="cpp_sym_IP_PKTOPTIONS" type="_46c" init="9" context="_1" location="f0:454" file="f0" line="454" static="1"/>
+ <Typedef id="_149" name="__kernel_mode_t" type="_32" context="_1" location="f8:24" file="f8" line="24"/>
+ <Typedef id="_150" name="__thrd_t" type="_18" context="_1" location="f10:120" file="f10" line="120"/>
+ <Variable id="_151" name="cpp_sym___LDOUBLE_REDIRECTS_TO_FLOAT128_ABI" type="_46c" init="0" context="_1" location="f0:316" file="f0" line="316" static="1"/>
+ <Typedef id="_152" name="__uint_least32_t" type="_413" context="_1" location="f9:57" file="f9" line="57"/>
+ <Function id="_153" name="htonl" returns="_322" throw="" context="_1" location="f5:383" file="f5" line="383" extern="1" attributes="const">
+ <Argument name="__hostlong" type="_322" location="f5:383" file="f5" line="383"/>
+ </Function>
+ <FundamentalType id="_154" name="unsigned char" size="8" align="8"/>
+ <Typedef id="_155" name="__uint_least8_t" type="_594" context="_1" location="f9:53" file="f9" line="53"/>
+ <Struct id="_156" name="cmsghdr" context="_1" mangled="7cmsghdr" demangled="cmsghdr" location="f19:276" file="f19" line="276" artificial="1" size="128" align="64" members="_1007 _1008 _1009 _1010 _1011 _1012 _1013 _1014 " bases=""/>
+ <Variable id="_157" name="cpp_sym_IPV6_UNICAST_HOPS" type="_46c" init="16" context="_1" location="f0:325" file="f0" line="325" static="1"/>
+ <Variable id="_158" name="cpp_sym_IPV6_ADDRFORM" type="_46c" init="1" context="_1" location="f0:134" file="f0" line="134" static="1"/>
+ <Struct id="_159" name="gsm_data_frame" context="_1" mangled="14gsm_data_frame" demangled="gsm_data_frame" location="f11:330" file="f11" line="330" artificial="1" size="64" align="32" members="_1015 _1016 _1017 _1018 _1019 _1020 _1021 " bases=""/>
+ <Union id="_160" name="pthread_mutexattr_t" context="_1" mangled="19pthread_mutexattr_t" demangled="pthread_mutexattr_t" location="f7:36" file="f7" line="36" size="32" align="32" members="_1022 _1023 _1024 _1025 _1026 _1027 " bases=""/>
+ <Typedef id="_161" name="u_char" type="_571" context="_1" location="f3:33" file="f3" line="33"/>
+ <Variable id="_162" name="cpp_sym__BITS_ENDIAN_H" type="_46c" init="1" context="_1" location="f0:220" file="f0" line="220" static="1"/>
+ <Variable id="_163" name="cpp_sym_IP_HDRINCL" type="_46c" init="3" context="_1" location="f0:430" file="f0" line="430" static="1"/>
+ <Variable id="_164" name="cpp_sym_INTMAX_WIDTH" type="_46c" init="64" context="_1" location="f0:57" file="f0" line="57" static="1"/>
+ <Variable id="_165" name="cpp_sym_MNCC_FACILITY_REQ" type="_46c" init="275" context="_1" location="f0:358" file="f0" line="358" static="1"/>
+ <Variable id="_166" name="cpp_sym_UINT32_WIDTH" type="_46c" init="32" context="_1" location="f0:88" file="f0" line="88" static="1"/>
+ <Variable id="_167" name="cpp_sym_MNCC_REL_IND" type="_46c" init="273" context="_1" location="f0:37" file="f0" line="37" static="1"/>
+ <Variable id="_168" name="cpp_sym_MCAST_INCLUDE" type="_46c" init="1" context="_1" location="f0:449" file="f0" line="449" static="1"/>
+ <Struct id="_169" name="gsm_mncc_ssversion" context="_1" mangled="18gsm_mncc_ssversion" demangled="gsm_mncc_ssversion" location="f11:194" file="f11" line="194" artificial="1" size="1056" align="32" members="_1028 _1029 _1030 _1031 _1032 _1033 " bases=""/>
+ <Variable id="_170" name="cpp_sym___SIZEOF_PTHREAD_RWLOCKATTR_T" type="_46c" init="8" context="_1" location="f0:527" file="f0" line="527" static="1"/>
+ <FundamentalType id="_171" name="short unsigned int" size="16" align="16"/>
+ <Typedef id="_172" name="__uint16_t" type="_171" context="_1" location="f9:40" file="f9" line="40"/>
+ <Struct id="_173" name="fd_set" context="_1" mangled="6fd_set" demangled="fd_set" location="f20:70" file="f20" line="70" size="1024" align="64" members="_1034 _1035 _1036 _1037 _1038 " bases=""/>
+ <Variable id="_174" name="cpp_sym_SOL_IP" type="_46c" init="0" context="_1" location="f0:494" file="f0" line="494" static="1"/>
+ <Function id="_175" name="accept" returns="_46" context="_1" location="f2:233" file="f2" line="233" extern="1">
+ <Argument name="__fd" type="_46" location="f2:233" file="f2" line="233"/>
+ <Argument name="__addr" type="_1039r" location="f2:233" file="f2" line="233"/>
+ <Argument name="__addr_len" type="_1041r" location="f2:233" file="f2" line="233"/>
+ </Function>
+ <Variable id="_176" name="cpp_sym_IPV6_RECVTCLASS" type="_46c" init="66" context="_1" location="f0:538" file="f0" line="538" static="1"/>
+ <Variable id="_177" name="cpp_sym_SO_PRIORITY" type="_46c" init="12" context="_1" location="f0:150" file="f0" line="150" static="1"/>
+ <Variable id="_178" name="cpp_sym_UINT32_MAX" type="_32c" init="4294967295u" context="_1" location="f0:322" file="f0" line="322" static="1"/>
+ <Typedef id="_179" name="__kernel_mqd_t" type="_46" context="_1" location="f17:34" file="f17" line="34"/>
+ <Typedef id="_180" name="__kernel_long_t" type="_16" context="_1" location="f8:15" file="f8" line="15"/>
+ <Typedef id="_181" name="__kernel_ulong_t" type="_18" context="_1" location="f8:16" file="f8" line="16"/>
+ <Struct id="_182" name="iovec" context="_1" mangled="5iovec" demangled="iovec" location="f21:27" file="f21" line="27" artificial="1" size="128" align="64" members="_1043 _1044 _1045 _1046 _1047 _1048 " bases=""/>
+ <Struct id="_183" name="ip_msfilter" context="_1" mangled="11ip_msfilter" demangled="ip_msfilter" location="f5:329" file="f5" line="329" artificial="1" size="160" align="32" members="_1049 _1050 _1051 _1052 _1053 _1054 _1055 _1056 _1057 " bases=""/>
+ <Function id="_184" name="inet6_opt_finish" returns="_46" throw="" context="_1" location="f5:580" file="f5" line="580" extern="1">
+ <Argument name="__extbuf" type="_222" location="f5:580" file="f5" line="580"/>
+ <Argument name="__extlen" type="_516" location="f5:580" file="f5" line="580"/>
+ <Argument name="__offset" type="_46" location="f5:580" file="f5" line="580"/>
+ </Function>
+ <Variable id="_185" name="cpp_sym_SOL_X25" type="_46c" init="262" context="_1" location="f0:522" file="f0" line="522" static="1"/>
+ <Variable id="_186" name="cpp_sym_IPV6_MINHOPCOUNT" type="_46c" init="73" context="_1" location="f0:189" file="f0" line="189" static="1"/>
+ <Variable id="_187" name="cpp_sym___NFDBITS" type="_46c" init="64" context="_1" location="f0:31" file="f0" line="31" static="1"/>
+ <Variable id="_188" name="cpp_sym__XOPEN_SOURCE_EXTENDED" type="_46c" init="1" context="_1" location="f0:255" file="f0" line="255" static="1"/>
+ <Variable id="_189" name="cpp_sym__BITS_SOCKADDR_H" type="_46c" init="1" context="_1" location="f0:478" file="f0" line="478" static="1"/>
+ <Typedef id="_190" name="int_least32_t" type="_363" context="_1" location="f4:45" file="f4" line="45"/>
+ <Variable id="_191" name="cpp_sym_SO_SECURITY_ENCRYPTION_TRANSPORT" type="_46c" init="23" context="_1" location="f0:330" file="f0" line="330" static="1"/>
+ <Variable id="_192" name="cpp_sym_IN_CLASSB_NSHIFT" type="_46c" init="16" context="_1" location="f0:195" file="f0" line="195" static="1"/>
+ <Variable id="_193" name="cpp_sym_MCAST_MSFILTER" type="_46c" init="48" context="_1" location="f0:464" file="f0" line="464" static="1"/>
+ <Variable id="_194" name="cpp_sym_SO_MARK" type="_46c" init="36" context="_1" location="f0:41" file="f0" line="41" static="1"/>
+ <Variable id="_195" name="cpp_sym_SOL_TLS" type="_46c" init="282" context="_1" location="f0:123" file="f0" line="123" static="1"/>
+ <Variable id="_196" name="cpp_sym_IPV6_MULTICAST_HOPS" type="_46c" init="18" context="_1" location="f0:356" file="f0" line="356" static="1"/>
+ <Variable id="_197" name="cpp_sym__SYS_TYPES_H" type="_46c" init="1" context="_1" location="f0:196" file="f0" line="196" static="1"/>
+ <Variable id="_198" name="cpp_sym_MNCC_SOCK_VERSION" type="_46c" init="7" context="_1" location="f0:438" file="f0" line="438" static="1"/>
+ <Typedef id="_199" name="uid_t" type="_576" context="_1" location="f3:79" file="f3" line="79"/>
+ <Function id="_200" name="sendmmsg" returns="_46" context="_1" location="f2:183" file="f2" line="183" extern="1">
+ <Argument name="__fd" type="_46" location="f2:183" file="f2" line="183"/>
+ <Argument name="__vmessages" type="_1058" location="f2:183" file="f2" line="183"/>
+ <Argument name="__vlen" type="_32" location="f2:183" file="f2" line="183"/>
+ <Argument name="__flags" type="_46" location="f2:183" file="f2" line="183"/>
+ </Function>
+ <Variable id="_201" name="cpp_sym_FIOGETOWN" type="_46c" init="35075" context="_1" location="f0:79" file="f0" line="79" static="1"/>
+ <Variable id="_202" name="cpp_sym_PF_ATMSVC" type="_46c" init="20" context="_1" location="f0:524" file="f0" line="524" static="1"/>
+ <Variable id="_203" name="cpp_sym___HAVE_GENERIC_SELECTION" type="_46c" init="0" context="_1" location="f0:199" file="f0" line="199" static="1"/>
+ <Variable id="_204" name="cpp_sym_INT_LEAST32_WIDTH" type="_46c" init="32" context="_1" location="f0:541" file="f0" line="541" static="1"/>
+ <Typedef id="_205" name="ino64_t" type="_525" context="_1" location="f3:54" file="f3" line="54"/>
+ <Typedef id="_206" name="uint" type="_32" context="_1" location="f3:150" file="f3" line="150"/>
+ <Typedef id="_207" name="pthread_spinlock_t" type="_46v" context="_1" location="f7:103" file="f7" line="103"/>
+ <Typedef id="_208" name="__mode_t" type="_32" context="_1" location="f9:150" file="f9" line="150"/>
+ <Variable id="_209" name="cpp_sym_IP_TTL" type="_46c" init="2" context="_1" location="f0:230" file="f0" line="230" static="1"/>
+ <Variable id="_210" name="cpp_sym_PF_DECnet" type="_46c" init="12" context="_1" location="f0:248" file="f0" line="248" static="1"/>
+ <Variable id="_211" name="cpp_sym___GLIBC_USE_DEPRECATED_SCANF" type="_46c" init="0" context="_1" location="f0:49" file="f0" line="49" static="1"/>
+ <Variable id="_212" name="cpp_sym_SOL_PACKET" type="_46c" init="263" context="_1" location="f0:100" file="f0" line="100" static="1"/>
+ <Variable id="_213" name="cpp_sym___USE_ISOC99" type="_46c" init="1" context="_1" location="f0:118" file="f0" line="118" static="1"/>
+ <Function id="_214" name="__cmsg_nxthdr" returns="_1060" throw="" context="_1" location="f19:306" file="f19" line="306" extern="1">
+ <Argument name="__mhdr" type="_921" location="f19:306" file="f19" line="306"/>
+ <Argument name="__cmsg" type="_1060" location="f19:306" file="f19" line="306"/>
+ </Function>
+ <Variable id="_215" name="cpp_sym_IP_MULTICAST_ALL" type="_46c" init="49" context="_1" location="f0:54" file="f0" line="54" static="1"/>
+ <Typedef id="_216" name="gid_t" type="_591" context="_1" location="f3:64" file="f3" line="64"/>
+ <Variable id="_217" name="cpp_sym_INT16_MAX" type="_46c" init="32767" context="_1" location="f0:486" file="f0" line="486" static="1"/>
+ <Struct id="_218" name="linger" context="_1" mangled="6linger" demangled="linger" location="f19:362" file="f19" line="362" artificial="1" size="64" align="32" members="_1061 _1062 _1063 _1064 _1065 _1066 " bases=""/>
+ <Variable id="_219" name="cpp_sym_IPV6_MULTICAST_IF" type="_46c" init="17" context="_1" location="f0:297" file="f0" line="297" static="1"/>
+ <Enumeration id="_220" name="gsm48_bcap_ra" context="_1" location="f11:55" file="f11" line="55" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_RA_NONE" init="0"/>
<EnumValue name="GSM48_BCAP_RA_V110_X30" init="1"/>
<EnumValue name="GSM48_BCAP_RA_X31" init="2"/>
<EnumValue name="GSM48_BCAP_RA_OTHER" init="3"/>
</Enumeration>
- <Variable id="_106" name="cpp_sym_INT_FAST32_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:160" file="f1" line="160" static="1"/>
- <Variable id="_107" name="cpp_sym___USE_BSD" type="_93c" init="1" context="_1" location="f1:75" file="f1" line="75" static="1"/>
- <Variable id="_108" name="cpp_sym_UINT_FAST8_MAX" type="_93c" init="255" context="_1" location="f1:67" file="f1" line="67" static="1"/>
- <Variable id="_109" name="cpp_sym_INT_LEAST32_MIN" type="_93c" init="-0x00000000080000000" context="_1" location="f1:8" file="f1" line="8" static="1"/>
- <Variable id="_110" name="cpp_sym_MNCC_F_SIGNAL" type="_93c" init="8192" context="_1" location="f1:47" file="f1" line="47" static="1"/>
- <Function id="_111" name="__builtin_isfinite" returns="_373" context="_1" location="f0:136" file="f0" line="136" extern="1">
- <Ellipsis/>
- </Function>
- <Variable id="_112" name="cpp_sym___USE_ISOC95" type="_93c" init="1" context="_1" location="f1:152" file="f1" line="152" static="1"/>
- <Function id="_113" name="__builtin_asin" returns="_368" context="_1" mangled="asin" location="f0:27" file="f0" line="27" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:27" file="f0" line="27"/>
- </Function>
- <Variable id="_114" name="cpp_sym_INT16_MIN" type="_93c" init="-0x00000000000008000" context="_1" location="f1:83" file="f1" line="83" static="1"/>
- <Variable id="_115" name="cpp_sym_MNCC_LCHAN_MODIFY" type="_93c" init="515" context="_1" location="f1:22" file="f1" line="22" static="1"/>
- <Function id="_116" name="__builtin_frexp" returns="_368" context="_1" mangled="frexp" location="f0:56" file="f0" line="56" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:56" file="f0" line="56"/>
- <Argument type="_408" location="f0:56" file="f0" line="56"/>
- </Function>
- <Variable id="_117" name="cpp_sym_INT_FAST32_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:127" file="f1" line="127" static="1"/>
- <Variable id="_118" name="cpp_sym_SIZE_MAX" type="_9c" init="-1ul" context="_1" location="f1:149" file="f1" line="149" static="1"/>
- <Function id="_119" name="__builtin_isgreaterequal" returns="_373" context="_1" location="f0:138" file="f0" line="138" extern="1" attributes="nothrow const">
- <Ellipsis/>
- </Function>
- <Variable id="_120" name="cpp_sym_MNCC_SETUP_IND" type="_93c" init="258" context="_1" location="f1:135" file="f1" line="135" static="1"/>
- <Variable id="_121" name="cpp_sym_WINT_MAX" type="_148c" init="4294967295u" context="_1" location="f1:164" file="f1" line="164" static="1"/>
- <Typedef id="_122" name="uint_fast16_t" type="_9" context="_1" location="f2:105" file="f2" line="105"/>
- <Variable id="_123" name="cpp_sym___USE_XOPEN_EXTENDED" type="_93c" init="1" context="_1" location="f1:27" file="f1" line="27" static="1"/>
- <Function id="_124" name="__builtin_log10f" returns="_371" context="_1" mangled="log10f" location="f0:64" file="f0" line="64" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:64" file="f0" line="64"/>
- </Function>
- <Function id="_125" name="__builtin_log10l" returns="_372" context="_1" mangled="log10l" location="f0:65" file="f0" line="65" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:65" file="f0" line="65"/>
- </Function>
- <Variable id="_126" name="cpp_sym__ISOC99_SOURCE" type="_93c" init="1" context="_1" location="f1:41" file="f1" line="41" static="1"/>
- <Variable id="_127" name="cpp_sym_MNCC_MODIFY_RSP" type="_93c" init="284" context="_1" location="f1:146" file="f1" line="146" static="1"/>
- <Variable id="_128" name="cpp_sym_WINT_MIN" type="_148c" init="0u" context="_1" location="f1:151" file="f1" line="151" static="1"/>
- <Variable id="_129" name="cpp_sym_MNCC_REJ_IND" type="_93c" init="296" context="_1" location="f1:120" file="f1" line="120" static="1"/>
- <Function id="_130" name="__builtin_ctzl" returns="_93" context="_1" location="f0:97" file="f0" line="97" extern="1" attributes="nothrow const">
- <Argument type="_48" location="f0:97" file="f0" line="97"/>
- </Function>
- <Variable id="_131" name="cpp_sym_MNCC_F_BEARER_CAP" type="_93c" init="1" context="_1" location="f1:162" file="f1" line="162" static="1"/>
- <Struct id="_132" name="gsm_mncc_progress" context="_1" mangled="17gsm_mncc_progress" demangled="gsm_mncc_progress" location="f3:166" file="f3" line="166" artificial="1" size="96" align="32" members="_410 _411 _412 _413 _414 _415 _416 " bases=""/>
- <Struct id="_133" name="gsm_mncc_cause" context="_1" mangled="14gsm_mncc_cause" demangled="gsm_mncc_cause" location="f3:151" file="f3" line="151" artificial="1" size="448" align="32" members="_417 _418 _419 _420 _421 _422 _423 _424 _425 _426 _427 " bases=""/>
- <Function id="_134" name="__builtin_powif" returns="_371" context="_1" location="f0:73" file="f0" line="73" extern="1" attributes="nothrow pure no vops">
- <Argument type="_371" location="f0:73" file="f0" line="73"/>
- <Argument type="_93" location="f0:73" file="f0" line="73"/>
- </Function>
- <Function id="_135" name="__builtin_powil" returns="_372" context="_1" location="f0:74" file="f0" line="74" extern="1" attributes="nothrow pure no vops">
- <Argument type="_372" location="f0:74" file="f0" line="74"/>
- <Argument type="_93" location="f0:74" file="f0" line="74"/>
- </Function>
- <Function id="_136" name="__builtin_modff" returns="_371" context="_1" mangled="modff" location="f0:68" file="f0" line="68" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:68" file="f0" line="68"/>
- <Argument type="_428" location="f0:68" file="f0" line="68"/>
- </Function>
- <Function id="_137" name="__builtin_exp" returns="_368" context="_1" mangled="exp" location="f0:45" file="f0" line="45" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:45" file="f0" line="45"/>
- </Function>
- <Function id="_138" name="__builtin_modfl" returns="_372" context="_1" mangled="modfl" location="f0:69" file="f0" line="69" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:69" file="f0" line="69"/>
- <Argument type="_429" location="f0:69" file="f0" line="69"/>
- </Function>
- <Function id="_139" name="__builtin_prefetch" returns="_399" context="_1" location="f0:17" file="f0" line="17" extern="1" attributes="no vops">
- <Argument name="ADDR" type="_407" location="f0:17" file="f0" line="17"/>
- <Ellipsis/>
- </Function>
- <Variable id="_140" name="cpp_sym__POSIX_C_SOURCE" type="_48c" init="200809l" context="_1" location="f1:82" file="f1" line="82" static="1"/>
- <Enumeration id="_141" name="gsm48_bcap_transp" context="_1" location="f3:82" file="f3" line="82" artificial="1" size="32" align="32">
+ <Variable id="_221" name="cpp_sym_INT_FAST32_MAX" type="_16c" init="9223372036854775807l" context="_1" location="f0:412" file="f0" line="412" static="1"/>
+ <PointerType id="_222" type="_1067" size="64" align="64"/>
+ <Typedef id="_223" name="timer_t" type="_701" context="_1" location="f22:7" file="f22" line="7"/>
+ <Variable id="_224" name="cpp_sym_UINT_FAST8_MAX" type="_46c" init="255" context="_1" location="f0:161" file="f0" line="161" static="1"/>
+ <Typedef id="_225" name="__kernel_gid32_t" type="_32" context="_1" location="f8:50" file="f8" line="50"/>
+ <Variable id="_226" name="cpp_sym_INT_LEAST32_MIN" type="_46c" init="-0x00000000080000000" context="_1" location="f0:500" file="f0" line="500" static="1"/>
+ <Variable id="_227" name="cpp_sym_SO_PEERCRED" type="_46c" init="17" context="_1" location="f0:391" file="f0" line="391" static="1"/>
+ <Variable id="_228" name="cpp_sym_PF_CAIF" type="_46c" init="37" context="_1" location="f0:156" file="f0" line="156" static="1"/>
+ <Function id="_229" name="inet6_opt_get_val" returns="_46" throw="" context="_1" location="f5:590" file="f5" line="590" extern="1">
+ <Argument name="__databuf" type="_222" location="f5:590" file="f5" line="590"/>
+ <Argument name="__offset" type="_46" location="f5:590" file="f5" line="590"/>
+ <Argument name="__val" type="_222" location="f5:590" file="f5" line="590"/>
+ <Argument name="__vallen" type="_516" location="f5:590" file="f5" line="590"/>
+ </Function>
+ <Variable id="_230" name="cpp_sym___GLIBC_USE_IEC_60559_BFP_EXT" type="_46c" init="1" context="_1" location="f0:307" file="f0" line="307" static="1"/>
+ <Variable id="_231" name="cpp_sym_IN_CLASSC_HOST" type="_32c" init="255u" context="_1" location="f0:314" file="f0" line="314" static="1"/>
+ <Variable id="_232" name="cpp_sym_MNCC_F_SIGNAL" type="_46c" init="8192" context="_1" location="f0:213" file="f0" line="213" static="1"/>
+ <Union id="_233" name="pthread_cond_t" context="_1" mangled="14pthread_cond_t" demangled="pthread_cond_t" location="f7:80" file="f7" line="80" size="384" align="64" members="_1068 _1069 _1070 _1071 _1072 _1073 _1074 " bases=""/>
+ <Variable id="_234" name="cpp_sym___FD_SETSIZE" type="_46c" init="1024" context="_1" location="f0:334" file="f0" line="334" static="1"/>
+ <Variable id="_235" name="cpp_sym_IPV6_ROUTER_ALERT_ISOLATE" type="_46c" init="30" context="_1" location="f0:480" file="f0" line="480" static="1"/>
+ <Function id="_236" name="inet6_rth_getaddr" returns="_1075" throw="" context="_1" location="f5:601" file="f5" line="601" extern="1">
+ <Argument name="__bp" type="_1076" location="f5:601" file="f5" line="601"/>
+ <Argument name="__index" type="_46" location="f5:601" file="f5" line="601"/>
+ </Function>
+ <Struct id="_237" name="in6_addr" context="_1" mangled="8in6_addr" demangled="in6_addr" location="f5:217" file="f5" line="217" artificial="1" size="128" align="32" members="_1077 _1078 _1079 _1080 _1081 _1082 " bases=""/>
+ <Variable id="_238" name="cpp_sym_IP_FREEBIND" type="_46c" init="15" context="_1" location="f0:332" file="f0" line="332" static="1"/>
+ <Variable id="_239" name="cpp_sym___USE_ISOC95" type="_46c" init="1" context="_1" location="f0:111" file="f0" line="111" static="1"/>
+ <Variable id="_240" name="cpp_sym_SOL_XDP" type="_46c" init="283" context="_1" location="f0:13" file="f0" line="13" static="1"/>
+ <Variable id="_241" name="cpp_sym_INT16_MIN" type="_46c" init="-0x00000000000008000" context="_1" location="f0:349" file="f0" line="349" static="1"/>
+ <Union id="_242" name="pthread_barrier_t" context="_1" mangled="17pthread_barrier_t" demangled="pthread_barrier_t" location="f7:112" file="f7" line="112" size="256" align="64" members="_1083 _1084 _1085 _1086 _1087 _1088 " bases=""/>
+ <Variable id="_243" name="cpp_sym___OFF_T_MATCHES_OFF64_T" type="_46c" init="1" context="_1" location="f0:534" file="f0" line="534" static="1"/>
+ <Variable id="_244" name="cpp_sym_INT_FAST16_MIN" type="_16c" init="-0x08000000000000000l" context="_1" location="f0:23" file="f0" line="23" static="1"/>
+ <Variable id="_245" name="cpp_sym_MNCC_LCHAN_MODIFY" type="_46c" init="515" context="_1" location="f0:143" file="f0" line="143" static="1"/>
+ <Variable id="_246" name="cpp_sym_SO_TIMESTAMP_OLD" type="_46c" init="29" context="_1" location="f0:410" file="f0" line="410" static="1"/>
+ <Typedef id="_247" name="u_int8_t" type="_594" context="_1" location="f3:158" file="f3" line="158"/>
+ <Function id="_248" name="sockatmark" returns="_46" throw="" context="_1" location="f2:255" file="f2" line="255" extern="1">
+ <Argument name="__fd" type="_46" location="f2:255" file="f2" line="255"/>
+ </Function>
+ <Variable id="_249" name="cpp_sym_INT_FAST32_MIN" type="_16c" init="-0x08000000000000000l" context="_1" location="f0:519" file="f0" line="519" static="1"/>
+ <Variable id="_250" name="cpp_sym_PF_BLUETOOTH" type="_46c" init="31" context="_1" location="f0:89" file="f0" line="89" static="1"/>
+ <Function id="_251" name="getpeername" returns="_46" throw="" context="_1" location="f2:131" file="f2" line="131" extern="1">
+ <Argument name="__fd" type="_46" location="f2:131" file="f2" line="131"/>
+ <Argument name="__addr" type="_1039r" location="f2:131" file="f2" line="131"/>
+ <Argument name="__len" type="_1041r" location="f2:131" file="f2" line="131"/>
+ </Function>
+ <Function id="_252" name="inet6_option_find" returns="_46" throw="" context="_1" location="f5:571" file="f5" line="571" extern="1" attributes="__deprecated__">
+ <Argument name="__cmsg" type="_1089" location="f5:571" file="f5" line="571"/>
+ <Argument name="__tptrp" type="_1090" location="f5:571" file="f5" line="571"/>
+ <Argument name="__type" type="_46" location="f5:571" file="f5" line="571"/>
+ </Function>
+ <Function id="_253" name="accept4" returns="_46" context="_1" location="f2:241" file="f2" line="241" extern="1">
+ <Argument name="__fd" type="_46" location="f2:241" file="f2" line="241"/>
+ <Argument name="__addr" type="_1039r" location="f2:241" file="f2" line="241"/>
+ <Argument name="__addr_len" type="_1041r" location="f2:241" file="f2" line="241"/>
+ <Argument name="__flags" type="_46" location="f2:241" file="f2" line="241"/>
+ </Function>
+ <Variable id="_254" name="cpp_sym_SIZE_MAX" type="_18c" init="-1ul" context="_1" location="f0:407" file="f0" line="407" static="1"/>
+ <Variable id="_255" name="cpp_sym_IPV6_JOIN_ANYCAST" type="_46c" init="27" context="_1" location="f0:513" file="f0" line="513" static="1"/>
+ <Variable id="_256" name="cpp_sym_MNCC_SETUP_IND" type="_46c" init="258" context="_1" location="f0:523" file="f0" line="523" static="1"/>
+ <Variable id="_257" name="cpp_sym_SO_DONTROUTE" type="_46c" init="5" context="_1" location="f0:91" file="f0" line="91" static="1"/>
+ <Variable id="_258" name="cpp_sym_SO_DETACH_REUSEPORT_BPF" type="_46c" init="68" context="_1" location="f0:72" file="f0" line="72" static="1"/>
+ <Variable id="_259" name="cpp_sym_WINT_MAX" type="_32c" init="4294967295u" context="_1" location="f0:274" file="f0" line="274" static="1"/>
+ <Variable id="_260" name="cpp_sym_IPV6_PMTUDISC_OMIT" type="_46c" init="5" context="_1" location="f0:382" file="f0" line="382" static="1"/>
+ <Variable id="_261" name="cpp_sym_PF_WANPIPE" type="_46c" init="25" context="_1" location="f0:537" file="f0" line="537" static="1"/>
+ <Variable id="_262" name="cpp_sym_SO_SNDTIMEO_OLD" type="_46c" init="21" context="_1" location="f0:215" file="f0" line="215" static="1"/>
+ <Struct id="_263" name="__fsid_t" context="_1" mangled="8__fsid_t" demangled="__fsid_t" location="f9:155" file="f9" line="155" size="64" align="32" members="_1091 _1092 _1093 _1094 _1095 " bases=""/>
+ <Typedef id="_264" name="fsid_t" type="_263" context="_1" location="f3:39" file="f3" line="39"/>
+ <Variable id="_265" name="cpp_sym_PF_X25" type="_46c" init="9" context="_1" location="f0:25" file="f0" line="25" static="1"/>
+ <Variable id="_266" name="cpp_sym_INT32_WIDTH" type="_46c" init="32" context="_1" location="f0:462" file="f0" line="462" static="1"/>
+ <Struct id="_267" name="ip_mreq_source" context="_1" mangled="14ip_mreq_source" demangled="ip_mreq_source" location="f5:279" file="f5" line="279" artificial="1" size="96" align="32" members="_1096 _1097 _1098 _1099 _1100 _1101 _1102 " bases=""/>
+ <Variable id="_268" name="cpp_sym_IPV6_RTHDR_LOOSE" type="_46c" init="0" context="_1" location="f0:414" file="f0" line="414" static="1"/>
+ <Typedef id="_269" name="uint_fast16_t" type="_18" context="_1" location="f4:73" file="f4" line="73"/>
+ <Variable id="_270" name="cpp_sym_SO_RCVBUFFORCE" type="_46c" init="33" context="_1" location="f0:393" file="f0" line="393" static="1"/>
+ <Variable id="_271" name="cpp_sym_IPV6_AUTHHDR" type="_46c" init="10" context="_1" location="f0:326" file="f0" line="326" static="1"/>
+ <Variable id="_272" name="cpp_sym_UINT8_WIDTH" type="_46c" init="8" context="_1" location="f0:352" file="f0" line="352" static="1"/>
+ <Variable id="_273" name="cpp_sym_IP_RECVFRAGSIZE" type="_46c" init="25" context="_1" location="f0:9" file="f0" line="9" static="1"/>
+ <Variable id="_274" name="cpp_sym_SO_INCOMING_CPU" type="_46c" init="49" context="_1" location="f0:152" file="f0" line="152" static="1"/>
+ <Typedef id="_275" name="__int8_t" type="_144" context="_1" location="f9:37" file="f9" line="37"/>
+ <Variable id="_276" name="cpp_sym_SOL_IUCV" type="_46c" init="277" context="_1" location="f0:47" file="f0" line="47" static="1"/>
+ <Function id="_277" name="sendmsg" returns="_528" context="_1" location="f2:174" file="f2" line="174" extern="1">
+ <Argument name="__fd" type="_46" location="f2:174" file="f2" line="174"/>
+ <Argument name="__message" type="_1103" location="f2:174" file="f2" line="174"/>
+ <Argument name="__flags" type="_46" location="f2:174" file="f2" line="174"/>
+ </Function>
+ <Variable id="_278" name="cpp_sym___timeval_defined" type="_46c" init="1" context="_1" location="f0:545" file="f0" line="545" static="1"/>
+ <Typedef id="_279" name="u_short" type="_662" context="_1" location="f3:34" file="f3" line="34"/>
+ <Variable id="_280" name="cpp_sym_PF_ISDN" type="_46c" init="34" context="_1" location="f0:35" file="f0" line="35" static="1"/>
+ <Variable id="_281" name="cpp_sym___USE_XOPEN_EXTENDED" type="_46c" init="1" context="_1" location="f0:85" file="f0" line="85" static="1"/>
+ <Typedef id="_282" name="__useconds_t" type="_32" context="_1" location="f9:161" file="f9" line="161"/>
+ <Variable id="_283" name="cpp_sym__ISOC99_SOURCE" type="_46c" init="1" context="_1" location="f0:448" file="f0" line="448" static="1"/>
+ <Variable id="_284" name="cpp_sym_IP_DROP_MEMBERSHIP" type="_46c" init="36" context="_1" location="f0:328" file="f0" line="328" static="1"/>
+ <Variable id="_285" name="cpp_sym__LARGEFILE64_SOURCE" type="_46c" init="1" context="_1" location="f0:533" file="f0" line="533" static="1"/>
+ <Variable id="_286" name="cpp_sym_IPV6_FREEBIND" type="_46c" init="78" context="_1" location="f0:7" file="f0" line="7" static="1"/>
+ <Variable id="_287" name="cpp_sym_WCHAR_WIDTH" type="_46c" init="32" context="_1" location="f0:74" file="f0" line="74" static="1"/>
+ <Variable id="_288" name="cpp_sym_WINT_MIN" type="_32c" init="0u" context="_1" location="f0:110" file="f0" line="110" static="1"/>
+ <Variable id="_289" name="cpp_sym_MNCC_REJ_IND" type="_46c" init="296" context="_1" location="f0:93" file="f0" line="93" static="1"/>
+ <Typedef id="_290" name="fsfilcnt_t" type="_443" context="_1" location="f3:200" file="f3" line="200"/>
+ <Variable id="_291" name="cpp_sym_SO_SNDTIMEO_NEW" type="_46c" init="67" context="_1" location="f0:381" file="f0" line="381" static="1"/>
+ <Struct id="_292" name="ip_opts" context="_1" mangled="7ip_opts" demangled="ip_opts" location="f18:143" file="f18" line="143" artificial="1" size="352" align="32" members="_1104 _1105 _1106 _1107 _1108 _1109 " bases=""/>
+ <Variable id="_293" name="cpp_sym_MNCC_F_BEARER_CAP" type="_46c" init="1" context="_1" location="f0:413" file="f0" line="413" static="1"/>
+ <Typedef id="_294" name="dev_t" type="_357" context="_1" location="f3:59" file="f3" line="59"/>
+ <Variable id="_295" name="cpp_sym_PF_SECURITY" type="_46c" init="14" context="_1" location="f0:12" file="f0" line="12" static="1"/>
+ <Typedef id="_296" name="__ino_t" type="_18" context="_1" location="f9:148" file="f9" line="148"/>
+ <Variable id="_297" name="cpp_sym__BITS_PTHREADTYPES_COMMON_H" type="_46c" init="1" context="_1" location="f0:22" file="f0" line="22" static="1"/>
+ <Function id="_298" name="inet6_opt_init" returns="_46" throw="" context="_1" location="f5:575" file="f5" line="575" extern="1">
+ <Argument name="__extbuf" type="_222" location="f5:575" file="f5" line="575"/>
+ <Argument name="__extlen" type="_516" location="f5:575" file="f5" line="575"/>
+ </Function>
+ <Variable id="_299" name="cpp_sym_PF_IPX" type="_46c" init="4" context="_1" location="f0:357" file="f0" line="357" static="1"/>
+ <Variable id="_300" name="cpp_sym_UINT_LEAST16_WIDTH" type="_46c" init="16" context="_1" location="f0:214" file="f0" line="214" static="1"/>
+ <Struct id="_301" name="gsm_mncc_progress" context="_1" mangled="17gsm_mncc_progress" demangled="gsm_mncc_progress" location="f11:183" file="f11" line="183" artificial="1" size="96" align="32" members="_1110 _1111 _1112 _1113 _1114 _1115 _1116 " bases=""/>
+ <Struct id="_302" name="gsm_mncc_cause" context="_1" mangled="14gsm_mncc_cause" demangled="gsm_mncc_cause" location="f11:168" file="f11" line="168" artificial="1" size="448" align="32" members="_1117 _1118 _1119 _1120 _1121 _1122 _1123 _1124 _1125 _1126 _1127 " bases=""/>
+ <Variable id="_303" name="cpp_sym_IPV6_RECVPATHMTU" type="_46c" init="60" context="_1" location="f0:507" file="f0" line="507" static="1"/>
+ <Variable id="_304" name="cpp_sym___sigset_t_defined" type="_46c" init="1" context="_1" location="f0:459" file="f0" line="459" static="1"/>
+ <Variable id="_305" name="cpp_sym_IP_ADD_MEMBERSHIP" type="_46c" init="35" context="_1" location="f0:277" file="f0" line="277" static="1"/>
+ <Variable id="_306" name="cpp_sym_SO_NO_CHECK" type="_46c" init="11" context="_1" location="f0:343" file="f0" line="343" static="1"/>
+ <Function id="_307" name="__uint64_identity" returns="_79" static="1" context="_1" location="f23:45" file="f23" line="45" endline="47" inline="1">
+ <Argument name="__x" type="_79" location="f23:45" file="f23" line="45"/>
+ </Function>
+ <Variable id="_308" name="cpp_sym_MNCC_F_CALLED" type="_46c" init="2" context="_1" location="f0:173" file="f0" line="173" static="1"/>
+ <Variable id="_309" name="cpp_sym__POSIX_C_SOURCE" type="_16c" init="200809l" context="_1" location="f0:212" file="f0" line="212" static="1"/>
+ <Variable id="_310" name="cpp_sym_IP_MULTICAST_IF" type="_46c" init="32" context="_1" location="f0:540" file="f0" line="540" static="1"/>
+ <Typedef id="_311" name="__kernel_timer_t" type="_46" context="_1" location="f8:93" file="f8" line="93"/>
+ <Enumeration id="_312" name="gsm48_bcap_transp" context="_1" location="f11:99" file="f11" line="99" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_TR_TRANSP" init="0"/>
<EnumValue name="GSM48_BCAP_TR_RLP" init="1"/>
<EnumValue name="GSM48_BCAP_TR_TR_PREF" init="2"/>
<EnumValue name="GSM48_BCAP_TR_RLP_PREF" init="3"/>
</Enumeration>
- <Variable id="_142" name="cpp_sym_MNCC_HOLD_CNF" type="_93c" init="288" context="_1" location="f1:44" file="f1" line="44" static="1"/>
- <Enumeration id="_143" name="gsm48_bcap_coding" context="_1" location="f3:26" file="f3" line="26" artificial="1" size="32" align="32">
+ <Variable id="_313" name="cpp_sym_INTPTR_MAX" type="_16c" init="9223372036854775807l" context="_1" location="f0:267" file="f0" line="267" static="1"/>
+ <Typedef id="_314" name="quad_t" type="_726" context="_1" location="f3:37" file="f3" line="37"/>
+ <Typedef id="_315" name="u_long" type="_727" context="_1" location="f3:36" file="f3" line="36"/>
+ <Variable id="_316" name="cpp_sym_IPV6_RTHDR" type="_46c" init="57" context="_1" location="f0:62" file="f0" line="62" static="1"/>
+ <Variable id="_317" name="cpp_sym__BITS_TYPESIZES_H" type="_46c" init="1" context="_1" location="f0:284" file="f0" line="284" static="1"/>
+ <Typedef id="_318" name="off_t" type="_490" context="_1" location="f3:85" file="f3" line="85"/>
+ <Enumeration id="_319" name="gsm48_bcap_coding" context="_1" location="f11:43" file="f11" line="43" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_CODING_GSM_STD" init="0"/>
</Enumeration>
- <Function id="_144" name="__builtin_tan" returns="_368" context="_1" mangled="tan" location="f0:84" file="f0" line="84" extern="1" attributes="nothrow pure no vops">
- <Argument type="_368" location="f0:84" file="f0" line="84"/>
- </Function>
- <Variable id="_145" name="cpp_sym_INT_FAST8_MAX" type="_93c" init="127" context="_1" location="f1:150" file="f1" line="150" static="1"/>
- <Function id="_146" name="__builtin_fabsf" returns="_371" context="_1" mangled="fabsf" location="f0:49" file="f0" line="49" extern="1" attributes="nothrow const">
- <Argument type="_371" location="f0:49" file="f0" line="49"/>
- </Function>
- <Function id="_147" name="__builtin_fabsl" returns="_372" context="_1" mangled="fabsl" location="f0:50" file="f0" line="50" extern="1" attributes="nothrow const">
- <Argument type="_372" location="f0:50" file="f0" line="50"/>
- </Function>
- <FundamentalType id="_148" name="unsigned int" size="32" align="32"/>
- <Typedef id="_149" name="uint32_t" type="_148" context="_1" location="f2:51" file="f2" line="51"/>
- <Variable id="_150" name="cpp_sym___USE_LARGEFILE" type="_93c" init="1" context="_1" location="f1:114" file="f1" line="114" static="1"/>
- <Variable id="_151" name="cpp_sym_UINTMAX_MAX" type="_9c" init="-1ul" context="_1" location="f1:25" file="f1" line="25" static="1"/>
- <Variable id="_152" name="cpp_sym_MNCC_USERINFO_IND" type="_93c" init="294" context="_1" location="f1:37" file="f1" line="37" static="1"/>
- <Variable id="_153" name="cpp_sym___USE_UNIX98" type="_93c" init="1" context="_1" location="f1:90" file="f1" line="90" static="1"/>
- <Enumeration id="_154" name="gsm48_bcap_modem_type" context="_1" location="f3:90" file="f3" line="90" artificial="1" size="32" align="32">
+ <Function id="_320" name="setsockopt" returns="_46" throw="" context="_1" location="f2:216" file="f2" line="216" extern="1">
+ <Argument name="__fd" type="_46" location="f2:216" file="f2" line="216"/>
+ <Argument name="__level" type="_46" location="f2:216" file="f2" line="216"/>
+ <Argument name="__optname" type="_46" location="f2:216" file="f2" line="216"/>
+ <Argument name="__optval" type="_1076" location="f2:216" file="f2" line="216"/>
+ <Argument name="__optlen" type="_516" location="f2:216" file="f2" line="216"/>
+ </Function>
+ <Variable id="_321" name="cpp_sym_INT_FAST8_MAX" type="_46c" init="127" context="_1" location="f0:263" file="f0" line="263" static="1"/>
+ <Typedef id="_322" name="uint32_t" type="_413" context="_1" location="f24:26" file="f24" line="26"/>
+ <Variable id="_323" name="cpp_sym_SO_BUSY_POLL" type="_46c" init="46" context="_1" location="f0:130" file="f0" line="130" static="1"/>
+ <Typedef id="_324" name="u_int32_t" type="_413" context="_1" location="f3:160" file="f3" line="160"/>
+ <Variable id="_325" name="cpp_sym_PF_INET6" type="_46c" init="10" context="_1" location="f0:359" file="f0" line="359" static="1"/>
+ <Variable id="_326" name="cpp_sym___PTHREAD_MUTEX_HAVE_PREV" type="_46c" init="1" context="_1" location="f0:366" file="f0" line="366" static="1"/>
+ <Struct id="_327" name="__kernel_fd_set" context="_1" mangled="15__kernel_fd_set" demangled="__kernel_fd_set" location="f17:27" file="f17" line="27" size="1024" align="64" members="_1128 _1129 _1130 _1131 _1132 " bases=""/>
+ <Variable id="_328" name="cpp_sym_IPV6_HOPLIMIT" type="_46c" init="52" context="_1" location="f0:42" file="f0" line="42" static="1"/>
+ <Variable id="_329" name="cpp_sym___USE_LARGEFILE" type="_46c" init="1" context="_1" location="f0:236" file="f0" line="236" static="1"/>
+ <Variable id="_330" name="cpp_sym_UINTMAX_MAX" type="_18c" init="-1ul" context="_1" location="f0:95" file="f0" line="95" static="1"/>
+ <Variable id="_331" name="cpp_sym___SIZEOF_PTHREAD_BARRIERATTR_T" type="_46c" init="4" context="_1" location="f0:348" file="f0" line="348" static="1"/>
+ <Variable id="_332" name="cpp_sym_MNCC_RETRIEVE_CNF" type="_46c" init="291" context="_1" location="f0:258" file="f0" line="258" static="1"/>
+ <Variable id="_333" name="cpp_sym_MNCC_USERINFO_IND" type="_46c" init="294" context="_1" location="f0:379" file="f0" line="379" static="1"/>
+ <Variable id="_334" name="cpp_sym_PF_APPLETALK" type="_46c" init="5" context="_1" location="f0:94" file="f0" line="94" static="1"/>
+ <Variable id="_335" name="cpp_sym___USE_UNIX98" type="_46c" init="1" context="_1" location="f0:488" file="f0" line="488" static="1"/>
+ <Function id="_336" name="inet6_rth_add" returns="_46" throw="" context="_1" location="f5:597" file="f5" line="597" extern="1">
+ <Argument name="__bp" type="_222" location="f5:597" file="f5" line="597"/>
+ <Argument name="__addr" type="_1133" location="f5:597" file="f5" line="597"/>
+ </Function>
+ <Enumeration id="_337" name="gsm48_bcap_modem_type" context="_1" location="f11:107" file="f11" line="107" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_MT_NONE" init="0"/>
<EnumValue name="GSM48_BCAP_MT_V21" init="1"/>
<EnumValue name="GSM48_BCAP_MT_V22" init="2"/>
@@ -337,25 +443,61 @@
<EnumValue name="GSM48_BCAP_MT_UNDEF" init="7"/>
<EnumValue name="GSM48_BCAP_MT_AUTO_1" init="8"/>
</Enumeration>
- <Variable id="_155" name="cpp_sym_GSM_BAD_FRAME" type="_93c" init="1023" context="_1" location="f1:167" file="f1" line="167" static="1"/>
- <Variable id="_156" name="cpp_sym___GLIBC__" type="_93c" init="2" context="_1" location="f1:92" file="f1" line="92" static="1"/>
- <Enumeration id="_157" name="gsm48_bcap_rrq" context="_1" location="f3:31" file="f3" line="31" artificial="1" size="32" align="32">
+ <Variable id="_338" name="cpp_sym_FIOSETOWN" type="_46c" init="35073" context="_1" location="f0:400" file="f0" line="400" static="1"/>
+ <Variable id="_339" name="cpp_sym_GSM_BAD_FRAME" type="_46c" init="1023" context="_1" location="f0:278" file="f0" line="278" static="1"/>
+ <Variable id="_340" name="cpp_sym_IPV6_RECVERR" type="_46c" init="25" context="_1" location="f0:126" file="f0" line="126" static="1"/>
+ <Typedef id="_341" name="__pid_t" type="_46" context="_1" location="f9:154" file="f9" line="154"/>
+ <Variable id="_342" name="cpp_sym___GLIBC__" type="_46c" init="2" context="_1" location="f0:116" file="f0" line="116" static="1"/>
+ <Variable id="_343" name="cpp_sym_IN_CLASSA_NSHIFT" type="_46c" init="24" context="_1" location="f0:497" file="f0" line="497" static="1"/>
+ <Variable id="_344" name="cpp_sym_IP_BLOCK_SOURCE" type="_46c" init="38" context="_1" location="f0:224" file="f0" line="224" static="1"/>
+ <Enumeration id="_345" name="gsm48_bcap_rrq" context="_1" location="f11:48" file="f11" line="48" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_RRQ_FR_ONLY" init="1"/>
<EnumValue name="GSM48_BCAP_RRQ_DUAL_HR" init="2"/>
<EnumValue name="GSM48_BCAP_RRQ_DUAL_FR" init="3"/>
</Enumeration>
- <Variable id="_158" name="cpp_sym_UINT8_MAX" type="_93c" init="255" context="_1" location="f1:24" file="f1" line="24" static="1"/>
- <Variable id="_159" name="cpp_sym_INT_FAST64_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:49" file="f1" line="49" static="1"/>
- <Variable id="_160" name="cpp_sym_UINT_FAST32_MAX" type="_9c" init="-1ul" context="_1" location="f1:117" file="f1" line="117" static="1"/>
- <Typedef id="_161" name="uint_least32_t" type="_148" context="_1" location="f2:78" file="f2" line="78"/>
- <Function id="_162" name="__builtin_inf" returns="_368" context="_1" location="f0:18" file="f0" line="18" extern="1" attributes="nothrow const"/>
- <Variable id="_163" name="cpp_sym_INT_LEAST64_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:113" file="f1" line="113" static="1"/>
- <Variable id="_164" name="cpp_sym_MNCC_MODIFY_IND" type="_93c" init="283" context="_1" location="f1:80" file="f1" line="80" static="1"/>
- <Namespace id="_165" name="__cxxabiv1" context="_1" members="" mangled="_Z10__cxxabiv1" demangled="__cxxabiv1"/>
- <Variable id="_166" name="cpp_sym_MNCC_FRAME_DROP" type="_93c" init="514" context="_1" location="f1:140" file="f1" line="140" static="1"/>
- <Variable id="_167" name="cpp_sym___USE_POSIX2" type="_93c" init="1" context="_1" location="f1:17" file="f1" line="17" static="1"/>
- <Variable id="_168" name="cpp_sym___USE_XOPEN" type="_93c" init="1" context="_1" location="f1:11" file="f1" line="11" static="1"/>
- <Enumeration id="_169" name="gsm48_bcap_user_rate" context="_1" location="f3:56" file="f3" line="56" artificial="1" size="32" align="32">
+ <Variable id="_346" name="cpp_sym_UINT8_MAX" type="_46c" init="255" context="_1" location="f0:128" file="f0" line="128" static="1"/>
+ <Variable id="_347" name="cpp_sym___GLIBC_USE_IEC_60559_FUNCS_EXT_C2X" type="_46c" init="1" context="_1" location="f0:204" file="f0" line="204" static="1"/>
+ <Variable id="_348" name="cpp_sym_INT_FAST64_MAX" type="_16c" init="9223372036854775807l" context="_1" location="f0:169" file="f0" line="169" static="1"/>
+ <Variable id="_349" name="cpp_sym_UINT_FAST32_MAX" type="_18c" init="-1ul" context="_1" location="f0:380" file="f0" line="380" static="1"/>
+ <Struct id="_350" name="__pthread_internal_list" context="_1" mangled="23__pthread_internal_list" demangled="__pthread_internal_list" location="f10:50" file="f10" line="50" artificial="1" size="128" align="64" members="_1134 _1135 _1136 _1137 _1138 _1139 " bases=""/>
+ <Typedef id="_351" name="uint_least32_t" type="_152" context="_1" location="f4:51" file="f4" line="51"/>
+ <Function id="_352" name="getsockopt" returns="_46" throw="" context="_1" location="f2:210" file="f2" line="210" extern="1">
+ <Argument name="__fd" type="_46" location="f2:210" file="f2" line="210"/>
+ <Argument name="__level" type="_46" location="f2:210" file="f2" line="210"/>
+ <Argument name="__optname" type="_46" location="f2:210" file="f2" line="210"/>
+ <Argument name="__optval" type="_222r" location="f2:210" file="f2" line="210"/>
+ <Argument name="__optlen" type="_1041r" location="f2:210" file="f2" line="210"/>
+ </Function>
+ <Variable id="_353" name="cpp_sym_SO_SECURITY_AUTHENTICATION" type="_46c" init="22" context="_1" location="f0:395" file="f0" line="395" static="1"/>
+ <Variable id="_354" name="cpp_sym_PF_NETLINK" type="_46c" init="16" context="_1" location="f0:388" file="f0" line="388" static="1"/>
+ <Variable id="_355" name="cpp_sym_INT_LEAST64_MIN" type="_16c" init="-0x08000000000000000l" context="_1" location="f0:235" file="f0" line="235" static="1"/>
+ <Variable id="_356" name="cpp_sym__NETINET_IN_H" type="_46c" init="1" context="_1" location="f0:546" file="f0" line="546" static="1"/>
+ <Typedef id="_357" name="__dev_t" type="_18" context="_1" location="f9:145" file="f9" line="145"/>
+ <Variable id="_358" name="cpp_sym_MNCC_MODIFY_IND" type="_46c" init="283" context="_1" location="f0:209" file="f0" line="209" static="1"/>
+ <Namespace id="_359" name="__cxxabiv1" context="_1" members="" mangled="_Z10__cxxabiv1" demangled="__cxxabiv1"/>
+ <Function id="_360" name="__bswap_32" returns="_413" static="1" context="_1" location="f6:49" file="f6" line="49" endline="52" inline="1">
+ <Argument name="__bsx" type="_413" location="f6:49" file="f6" line="49"/>
+ </Function>
+ <Variable id="_361" name="cpp_sym_MNCC_FRAME_DROP" type="_46c" init="514" context="_1" location="f0:105" file="f0" line="105" static="1"/>
+ <Variable id="_362" name="cpp_sym___USE_POSIX2" type="_46c" init="1" context="_1" location="f0:138" file="f0" line="138" static="1"/>
+ <Typedef id="_363" name="__int_least32_t" type="_882" context="_1" location="f9:56" file="f9" line="56"/>
+ <Struct id="_364" name="sockaddr" context="_1" mangled="8sockaddr" demangled="sockaddr" location="f19:179" file="f19" line="179" artificial="1" size="128" align="16" members="_1141 _1142 _1143 _1144 _1145 _1146 " bases=""/>
+ <Typedef id="_365" name="__tss_t" type="_32" context="_1" location="f10:119" file="f10" line="119"/>
+ <Function id="_366" name="send" returns="_528" context="_1" location="f2:138" file="f2" line="138" extern="1">
+ <Argument name="__fd" type="_46" location="f2:138" file="f2" line="138"/>
+ <Argument name="__buf" type="_1076" location="f2:138" file="f2" line="138"/>
+ <Argument name="__n" type="_547" location="f2:138" file="f2" line="138"/>
+ <Argument name="__flags" type="_46" location="f2:138" file="f2" line="138"/>
+ </Function>
+ <Variable id="_367" name="cpp_sym_SO_LINGER" type="_46c" init="13" context="_1" location="f0:154" file="f0" line="154" static="1"/>
+ <Struct id="_368" name="timespec" context="_1" mangled="8timespec" demangled="timespec" location="f25:11" file="f25" line="11" artificial="1" size="128" align="64" members="_1147 _1148 _1149 _1150 _1151 _1152 " bases=""/>
+ <Variable id="_369" name="cpp_sym_UINT_FAST8_WIDTH" type="_46c" init="8" context="_1" location="f0:492" file="f0" line="492" static="1"/>
+ <Variable id="_370" name="cpp_sym_IPV6_2292RTHDR" type="_46c" init="5" context="_1" location="f0:60" file="f0" line="60" static="1"/>
+ <Variable id="_371" name="cpp_sym__THREAD_SHARED_TYPES_H" type="_46c" init="1" context="_1" location="f0:228" file="f0" line="228" static="1"/>
+ <Struct id="_372" name="mmsghdr" context="_1" mangled="7mmsghdr" demangled="mmsghdr" location="f2:91" file="f2" line="91" artificial="1" size="512" align="64" members="_1153 _1154 _1155 _1156 _1157 _1158 " bases=""/>
+ <Variable id="_373" name="cpp_sym___USE_XOPEN" type="_46c" init="1" context="_1" location="f0:132" file="f0" line="132" static="1"/>
+ <Typedef id="_374" name="__blkcnt64_t" type="_16" context="_1" location="f9:181" file="f9" line="181"/>
+ <Enumeration id="_375" name="gsm48_bcap_user_rate" context="_1" location="f11:73" file="f11" line="73" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_UR_300" init="1"/>
<EnumValue name="GSM48_BCAP_UR_1200" init="2"/>
<EnumValue name="GSM48_BCAP_UR_2400" init="3"/>
@@ -364,153 +506,258 @@
<EnumValue name="GSM48_BCAP_UR_12000" init="6"/>
<EnumValue name="GSM48_BCAP_UR_1200_75" init="7"/>
</Enumeration>
- <Variable id="_170" name="cpp_sym_INT_FAST64_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:48" file="f1" line="48" static="1"/>
- <Function id="_171" name="__builtin_frame_address" returns="_400" context="_1" location="f0:15" file="f0" line="15" extern="1">
- <Argument name="LEVEL" type="_148" location="f0:15" file="f0" line="15"/>
- </Function>
- <Variable id="_172" name="cpp_sym__SYS_CDEFS_H" type="_93c" init="1" context="_1" location="f1:141" file="f1" line="141" static="1"/>
- <Variable id="_173" name="cpp_sym_MNCC_HOLD_REJ" type="_93c" init="289" context="_1" location="f1:62" file="f1" line="62" static="1"/>
- <Function id="_174" name="__builtin_cabs" returns="_368" context="_1" mangled="cabs" location="f0:91" file="f0" line="91" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:91" file="f0" line="91"/>
- </Function>
- <Variable id="_175" name="cpp_sym___USE_SVID" type="_93c" init="1" context="_1" location="f1:89" file="f1" line="89" static="1"/>
- <Variable id="_176" name="cpp_sym_INT32_MAX" type="_93c" init="2147483647" context="_1" location="f1:35" file="f1" line="35" static="1"/>
- <Function id="_177" name="__builtin_atan2f" returns="_371" context="_1" mangled="atan2f" location="f0:32" file="f0" line="32" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:32" file="f0" line="32"/>
- <Argument type="_371" location="f0:32" file="f0" line="32"/>
- </Function>
- <Function id="_178" name="__builtin_atan2l" returns="_372" context="_1" mangled="atan2l" location="f0:33" file="f0" line="33" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:33" file="f0" line="33"/>
- <Argument type="_372" location="f0:33" file="f0" line="33"/>
- </Function>
- <Variable id="_179" name="cpp_sym_MNCC_RETRIEVE_CNF" type="_93c" init="291" context="_1" location="f1:143" file="f1" line="143" static="1"/>
- <Typedef id="_180" name="int_fast8_t" type="_81" context="_1" location="f2:90" file="f2" line="90"/>
- <Function id="_181" name="__builtin_isinf" returns="_373" context="_1" mangled="isinf" location="f0:139" file="f0" line="139" extern="1" attributes="nothrow const">
- <Ellipsis/>
- </Function>
- <Variable id="_182" name="cpp_sym_PTRDIFF_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:105" file="f1" line="105" static="1"/>
- <Function id="_183" name="__builtin_fpclassify" returns="_373" context="_1" location="f0:135" file="f0" line="135" extern="1">
- <Ellipsis/>
- </Function>
- <Enumeration id="_184" name="gsm48_bcap_tmod" context="_1" location="f3:20" file="f3" line="20" artificial="1" size="32" align="32">
+ <Variable id="_376" name="cpp_sym_INT8_WIDTH" type="_46c" init="8" context="_1" location="f0:135" file="f0" line="135" static="1"/>
+ <Variable id="_377" name="cpp_sym_IN_CLASSC_NSHIFT" type="_46c" init="8" context="_1" location="f0:114" file="f0" line="114" static="1"/>
+ <Variable id="_378" name="cpp_sym___clockid_t_defined" type="_46c" init="1" context="_1" location="f0:183" file="f0" line="183" static="1"/>
+ <Variable id="_379" name="cpp_sym_SOL_NETLINK" type="_46c" init="270" context="_1" location="f0:529" file="f0" line="529" static="1"/>
+ <Variable id="_380" name="cpp_sym_PF_ATMPVC" type="_46c" init="8" context="_1" location="f0:452" file="f0" line="452" static="1"/>
+ <Variable id="_381" name="cpp_sym_SOL_ICMPV6" type="_46c" init="58" context="_1" location="f0:345" file="f0" line="345" static="1"/>
+ <Typedef id="_382" name="__kernel_ino_t" type="_181" context="_1" location="f8:20" file="f8" line="20"/>
+ <Variable id="_383" name="cpp_sym_MNCC_F_EMERGENCY" type="_46c" init="256" context="_1" location="f0:259" file="f0" line="259" static="1"/>
+ <Variable id="_384" name="cpp_sym_SO_NOFCS" type="_46c" init="43" context="_1" location="f0:399" file="f0" line="399" static="1"/>
+ <Variable id="_385" name="cpp_sym_INT_FAST64_MIN" type="_16c" init="-0x08000000000000000l" context="_1" location="f0:38" file="f0" line="38" static="1"/>
+ <Variable id="_386" name="cpp_sym_IPV6_ORIGDSTADDR" type="_46c" init="74" context="_1" location="f0:18" file="f0" line="18" static="1"/>
+ <Variable id="_387" name="cpp_sym_SO_KEEPALIVE" type="_46c" init="9" context="_1" location="f0:109" file="f0" line="109" static="1"/>
+ <Variable id="_388" name="cpp_sym_SOL_PNPIPE" type="_46c" init="275" context="_1" location="f0:229" file="f0" line="229" static="1"/>
+ <Variable id="_389" name="cpp_sym_IN_CLASSB_MAX" type="_46c" init="65536" context="_1" location="f0:153" file="f0" line="153" static="1"/>
+ <Typedef id="_390" name="fsblkcnt_t" type="_534" context="_1" location="f3:196" file="f3" line="196"/>
+ <Typedef id="_391" name="uint16_t" type="_172" context="_1" location="f24:25" file="f24" line="25"/>
+ <Variable id="_392" name="cpp_sym_IN_CLASSA_MAX" type="_46c" init="128" context="_1" location="f0:112" file="f0" line="112" static="1"/>
+ <Function id="_393" name="recvfrom" returns="_528" context="_1" location="f2:165" file="f2" line="165" extern="1">
+ <Argument name="__fd" type="_46" location="f2:165" file="f2" line="165"/>
+ <Argument name="__buf" type="_222r" location="f2:165" file="f2" line="165"/>
+ <Argument name="__n" type="_547" location="f2:165" file="f2" line="165"/>
+ <Argument name="__flags" type="_46" location="f2:165" file="f2" line="165"/>
+ <Argument name="__addr" type="_1039r" location="f2:165" file="f2" line="165"/>
+ <Argument name="__addr_len" type="_1041r" location="f2:165" file="f2" line="165"/>
+ </Function>
+ <Variable id="_394" name="cpp_sym_MNCC_HOLD_REJ" type="_46c" init="289" context="_1" location="f0:324" file="f0" line="324" static="1"/>
+ <Typedef id="_395" name="__kernel_clockid_t" type="_46" context="_1" location="f8:94" file="f8" line="94"/>
+ <Variable id="_396" name="cpp_sym__ISOC2X_SOURCE" type="_46c" init="1" context="_1" location="f0:474" file="f0" line="474" static="1"/>
+ <Function id="_397" name="bind" returns="_46" throw="" context="_1" location="f2:113" file="f2" line="113" extern="1">
+ <Argument name="__fd" type="_46" location="f2:113" file="f2" line="113"/>
+ <Argument name="__addr" type="_1159" location="f2:113" file="f2" line="113"/>
+ <Argument name="__len" type="_516" location="f2:113" file="f2" line="113"/>
+ </Function>
+ <Variable id="_398" name="cpp_sym_IP_NODEFRAG" type="_46c" init="22" context="_1" location="f0:530" file="f0" line="530" static="1"/>
+ <Variable id="_399" name="cpp_sym_SO_OOBINLINE" type="_46c" init="10" context="_1" location="f0:119" file="f0" line="119" static="1"/>
+ <Typedef id="_400" name="__pthread_slist_t" type="_66" context="_1" location="f10:58" file="f10" line="58"/>
+ <Typedef id="_401" name="__kernel_time64_t" type="_59" context="_1" location="f8:91" file="f8" line="91"/>
+ <Union id="_402" name="pthread_barrierattr_t" context="_1" mangled="21pthread_barrierattr_t" demangled="pthread_barrierattr_t" location="f7:118" file="f7" line="118" size="32" align="32" members="_1160 _1161 _1162 _1163 _1164 _1165 " bases=""/>
+ <Variable id="_403" name="cpp_sym_INET6_ADDRSTRLEN" type="_46c" init="46" context="_1" location="f0:512" file="f0" line="512" static="1"/>
+ <Variable id="_404" name="cpp_sym_IPV6_RECVRTHDR" type="_46c" init="56" context="_1" location="f0:141" file="f0" line="141" static="1"/>
+ <Function id="_405" name="sendto" returns="_528" context="_1" location="f2:154" file="f2" line="154" extern="1">
+ <Argument name="__fd" type="_46" location="f2:154" file="f2" line="154"/>
+ <Argument name="__buf" type="_1076" location="f2:154" file="f2" line="154"/>
+ <Argument name="__n" type="_547" location="f2:154" file="f2" line="154"/>
+ <Argument name="__flags" type="_46" location="f2:154" file="f2" line="154"/>
+ <Argument name="__addr" type="_1159" location="f2:154" file="f2" line="154"/>
+ <Argument name="__addr_len" type="_516" location="f2:154" file="f2" line="154"/>
+ </Function>
+ <Function id="_406" name="pselect" returns="_46" context="_1" location="f20:117" file="f20" line="117" extern="1">
+ <Argument name="__nfds" type="_46" location="f20:117" file="f20" line="117"/>
+ <Argument name="__readfds" type="_1166r" location="f20:117" file="f20" line="117"/>
+ <Argument name="__writefds" type="_1166r" location="f20:117" file="f20" line="117"/>
+ <Argument name="__exceptfds" type="_1166r" location="f20:117" file="f20" line="117"/>
+ <Argument name="__timeout" type="_1168r" location="f20:117" file="f20" line="117"/>
+ <Argument name="__sigmask" type="_1170r" location="f20:117" file="f20" line="117"/>
+ </Function>
+ <Variable id="_407" name="cpp_sym__ENDIAN_H" type="_46c" init="1" context="_1" location="f0:77" file="f0" line="77" static="1"/>
+ <Variable id="_408" name="cpp_sym_IPV6_2292HOPLIMIT" type="_46c" init="8" context="_1" location="f0:490" file="f0" line="490" static="1"/>
+ <Variable id="_409" name="cpp_sym_IP_PMTUDISC_WANT" type="_46c" init="1" context="_1" location="f0:164" file="f0" line="164" static="1"/>
+ <Variable id="_410" name="cpp_sym_IP_BIND_ADDRESS_NO_PORT" type="_46c" init="24" context="_1" location="f0:202" file="f0" line="202" static="1"/>
+ <Variable id="_411" name="cpp_sym_MNCC_HOLD_CNF" type="_46c" init="288" context="_1" location="f0:305" file="f0" line="305" static="1"/>
+ <Variable id="_412" name="cpp_sym_IPV6_AUTOFLOWLABEL" type="_46c" init="70" context="_1" location="f0:186" file="f0" line="186" static="1"/>
+ <Typedef id="_413" name="__uint32_t" type="_32" context="_1" location="f9:42" file="f9" line="42"/>
+ <Variable id="_414" name="cpp_sym_INT32_MAX" type="_46c" init="2147483647" context="_1" location="f0:234" file="f0" line="234" static="1"/>
+ <Typedef id="_415" name="int_fast8_t" type="_144" context="_1" location="f4:58" file="f4" line="58"/>
+ <Variable id="_416" name="cpp_sym_SO_ERROR" type="_46c" init="4" context="_1" location="f0:288" file="f0" line="288" static="1"/>
+ <Variable id="_417" name="cpp_sym_PTRDIFF_MAX" type="_16c" init="9223372036854775807l" context="_1" location="f0:82" file="f0" line="82" static="1"/>
+ <Variable id="_418" name="cpp_sym_SO_ATTACH_FILTER" type="_46c" init="26" context="_1" location="f0:411" file="f0" line="411" static="1"/>
+ <Enumeration id="_419" name="gsm48_bcap_tmod" context="_1" location="f11:37" file="f11" line="37" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_TMOD_CIRCUIT" init="0"/>
<EnumValue name="GSM48_BCAP_TMOD_PACKET" init="1"/>
</Enumeration>
- <FundamentalType id="_185" name="short int" size="16" align="16"/>
- <Typedef id="_186" name="int16_t" type="_185" context="_1" location="f2:37" file="f2" line="37"/>
- <Variable id="_187" name="cpp_sym_MNCC_START_DTMF_REJ" type="_93c" init="279" context="_1" location="f1:30" file="f1" line="30" static="1"/>
- <Typedef id="_188" name="int_fast16_t" type="_48" context="_1" location="f2:92" file="f2" line="92"/>
- <Function id="_189" name="__builtin_ccoshf" returns="_375" context="_1" mangled="ccoshf" location="f0:105" file="f0" line="105" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:105" file="f0" line="105"/>
- </Function>
- <Function id="_190" name="__builtin_ccoshl" returns="_376" context="_1" mangled="ccoshl" location="f0:107" file="f0" line="107" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:107" file="f0" line="107"/>
- </Function>
- <Variable id="_191" name="cpp_sym_PTRDIFF_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:116" file="f1" line="116" static="1"/>
- <Variable id="_192" name="cpp_sym_UINT_LEAST16_MAX" type="_93c" init="65535" context="_1" location="f1:154" file="f1" line="154" static="1"/>
- <Function id="_193" name="__builtin_atan" returns="_368" context="_1" mangled="atan" location="f0:30" file="f0" line="30" extern="1" attributes="nothrow pure no vops">
- <Argument type="_368" location="f0:30" file="f0" line="30"/>
- </Function>
- <Function id="_194" name="__builtin_sinhf" returns="_371" context="_1" mangled="sinhf" location="f0:78" file="f0" line="78" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:78" file="f0" line="78"/>
- </Function>
- <Function id="_195" name="__builtin_sinhl" returns="_372" context="_1" mangled="sinhl" location="f0:79" file="f0" line="79" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:79" file="f0" line="79"/>
- </Function>
- <Function id="_196" name="__builtin_sqrtf" returns="_371" context="_1" mangled="sqrtf" location="f0:82" file="f0" line="82" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:82" file="f0" line="82"/>
- </Function>
- <Function id="_197" name="__builtin_sqrtl" returns="_372" context="_1" mangled="sqrtl" location="f0:83" file="f0" line="83" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:83" file="f0" line="83"/>
- </Function>
- <Function id="_198" name="__builtin_frexpf" returns="_371" context="_1" mangled="frexpf" location="f0:57" file="f0" line="57" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:57" file="f0" line="57"/>
- <Argument type="_408" location="f0:57" file="f0" line="57"/>
- </Function>
- <Function id="_199" name="__builtin_frexpl" returns="_372" context="_1" mangled="frexpl" location="f0:58" file="f0" line="58" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:58" file="f0" line="58"/>
- <Argument type="_408" location="f0:58" file="f0" line="58"/>
- </Function>
- <Function id="_200" name="__builtin_cpowf" returns="_375" context="_1" mangled="cpowf" location="f0:129" file="f0" line="129" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:129" file="f0" line="129"/>
- <Argument type="_375" location="f0:129" file="f0" line="129"/>
- </Function>
- <Function id="_201" name="__builtin_cpowl" returns="_376" context="_1" mangled="cpowl" location="f0:131" file="f0" line="131" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:131" file="f0" line="131"/>
- <Argument type="_376" location="f0:131" file="f0" line="131"/>
- </Function>
- <Variable id="_202" name="cpp_sym_MNCC_REL_CNF" type="_93c" init="274" context="_1" location="f1:10" file="f1" line="10" static="1"/>
- <Variable id="_203" name="cpp_sym___USE_XOPEN2KXSI" type="_93c" init="1" context="_1" location="f1:14" file="f1" line="14" static="1"/>
- <Variable id="_204" name="cpp_sym_MNCC_RTP_FREE" type="_93c" init="518" context="_1" location="f1:73" file="f1" line="73" static="1"/>
- <Typedef id="_205" name="uint_fast64_t" type="_9" context="_1" location="f2:107" file="f2" line="107"/>
- <Variable id="_206" name="cpp_sym_UINT_FAST64_MAX" type="_9c" init="-1ul" context="_1" location="f1:101" file="f1" line="101" static="1"/>
- <Variable id="_207" name="cpp_sym_MNCC_RETRIEVE_REJ" type="_93c" init="292" context="_1" location="f1:85" file="f1" line="85" static="1"/>
- <Variable id="_208" name="cpp_sym___GLIBC_MINOR__" type="_93c" init="19" context="_1" location="f1:58" file="f1" line="58" static="1"/>
- <Variable id="_209" name="cpp_sym__FEATURES_H" type="_93c" init="1" context="_1" location="f1:118" file="f1" line="118" static="1"/>
- <Variable id="_210" name="cpp_sym_MNCC_DISC_IND" type="_93c" init="271" context="_1" location="f1:93" file="f1" line="93" static="1"/>
- <Variable id="_211" name="cpp_sym_MNCC_START_DTMF_RSP" type="_93c" init="278" context="_1" location="f1:121" file="f1" line="121" static="1"/>
- <Function id="_212" name="__builtin_bswap64" returns="_9" context="_1" location="f0:158" file="f0" line="158" extern="1">
- <Argument name="_data" type="_9" location="f0:158" file="f0" line="158"/>
- </Function>
- <Variable id="_213" name="cpp_sym_MNCC_F_CALLED" type="_93c" init="2" context="_1" location="f1:52" file="f1" line="52" static="1"/>
- <Variable id="_214" name="cpp_sym_UINT32_MAX" type="_148c" init="4294967295u" context="_1" location="f1:60" file="f1" line="60" static="1"/>
- <Enumeration id="_215" name="._1" context="_1" location="f3:187" file="f3" line="187" artificial="1" size="32" align="32">
- <EnumValue name="GSM_MNCC_BCAP_SPEECH" init="0"/>
- <EnumValue name="GSM_MNCC_BCAP_UNR_DIG" init="1"/>
- <EnumValue name="GSM_MNCC_BCAP_AUDIO" init="2"/>
- <EnumValue name="GSM_MNCC_BCAP_FAX_G3" init="3"/>
- <EnumValue name="GSM_MNCC_BCAP_OTHER_ITC" init="5"/>
- <EnumValue name="GSM_MNCC_BCAP_RESERVED" init="7"/>
- </Enumeration>
- <Variable id="_216" name="cpp_sym___USE_POSIX199506" type="_93c" init="1" context="_1" location="f1:123" file="f1" line="123" static="1"/>
- <Variable id="_217" name="cpp_sym___USE_LARGEFILE64" type="_93c" init="1" context="_1" location="f1:54" file="f1" line="54" static="1"/>
- <Variable id="_218" name="cpp_sym___USE_EXTERN_INLINES" type="_93c" init="1" context="_1" location="f1:115" file="f1" line="115" static="1"/>
- <Variable id="_219" name="cpp_sym_MNCC_DISC_REQ" type="_93c" init="270" context="_1" location="f1:50" file="f1" line="50" static="1"/>
- <Function id="_220" name="__builtin_tanhf" returns="_371" context="_1" mangled="tanhf" location="f0:87" file="f0" line="87" extern="1" attributes="nothrow pure no vops">
- <Argument type="_371" location="f0:87" file="f0" line="87"/>
- </Function>
- <Variable id="_221" name="cpp_sym_GSM_TCHF_FRAME_EFR" type="_93c" init="769" context="_1" location="f1:156" file="f1" line="156" static="1"/>
- <Function id="_222" name="__builtin_tanhl" returns="_372" context="_1" mangled="tanhl" location="f0:88" file="f0" line="88" extern="1" attributes="nothrow pure no vops">
- <Argument type="_372" location="f0:88" file="f0" line="88"/>
- </Function>
- <Function id="_223" name="__builtin_cabsf" returns="_371" context="_1" mangled="cabsf" location="f0:90" file="f0" line="90" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:90" file="f0" line="90"/>
- </Function>
- <Function id="_224" name="__builtin_cabsl" returns="_372" context="_1" mangled="cabsl" location="f0:92" file="f0" line="92" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:92" file="f0" line="92"/>
- </Function>
- <Typedef id="_225" name="int_least16_t" type="_185" context="_1" location="f2:66" file="f2" line="66"/>
- <Function id="_226" name="__builtin_powf" returns="_371" context="_1" mangled="powf" location="f0:70" file="f0" line="70" extern="1" attributes="nothrow">
- <Argument type="_371" location="f0:70" file="f0" line="70"/>
- <Argument type="_371" location="f0:70" file="f0" line="70"/>
- </Function>
- <Function id="_227" name="__builtin_powi" returns="_368" context="_1" location="f0:72" file="f0" line="72" extern="1" attributes="nothrow pure no vops">
- <Argument type="_368" location="f0:72" file="f0" line="72"/>
- <Argument type="_93" location="f0:72" file="f0" line="72"/>
- </Function>
- <Function id="_228" name="__builtin_powl" returns="_372" context="_1" mangled="powl" location="f0:71" file="f0" line="71" extern="1" attributes="nothrow">
- <Argument type="_372" location="f0:71" file="f0" line="71"/>
- <Argument type="_372" location="f0:71" file="f0" line="71"/>
- </Function>
- <Struct id="_229" name="gsm_mncc_bridge" context="_1" mangled="15gsm_mncc_bridge" demangled="gsm_mncc_bridge" location="f3:345" file="f3" line="345" artificial="1" size="96" align="32" members="_430 _431 _432 _433 _434 _435 " bases=""/>
- <Variable id="_230" name="cpp_sym___USE_GNU" type="_93c" init="1" context="_1" location="f1:74" file="f1" line="74" static="1"/>
- <Variable id="_231" name="cpp_sym_UINTPTR_MAX" type="_9c" init="-1ul" context="_1" location="f1:77" file="f1" line="77" static="1"/>
- <Typedef id="_232" name="uintptr_t" type="_9" context="_1" location="f2:122" file="f2" line="122"/>
- <Variable id="_233" name="cpp_sym_MNCC_STOP_DTMF_RSP" type="_93c" init="281" context="_1" location="f1:15" file="f1" line="15" static="1"/>
- <Variable id="_234" name="cpp_sym_MNCC_USERINFO_REQ" type="_93c" init="293" context="_1" location="f1:72" file="f1" line="72" static="1"/>
- <Struct id="_235" name="gsm_mncc_useruser" context="_1" mangled="17gsm_mncc_useruser" demangled="gsm_mncc_useruser" location="f3:161" file="f3" line="161" artificial="1" size="1088" align="32" members="_436 _437 _438 _439 _440 _441 " bases=""/>
- <Variable id="_236" name="cpp_sym_MNCC_F_USERUSER" type="_93c" init="64" context="_1" location="f1:66" file="f1" line="66" static="1"/>
- <Function id="_237" name="__builtin_ccos" returns="_384" context="_1" mangled="ccos" location="f0:103" file="f0" line="103" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:103" file="f0" line="103"/>
- </Function>
- <Variable id="_238" name="cpp_sym_MNCC_BRIDGE" type="_93c" init="512" context="_1" location="f1:51" file="f1" line="51" static="1"/>
- <Variable id="_239" name="cpp_sym_GSM_MAX_USERUSER" type="_93c" init="128" context="_1" location="f1:63" file="f1" line="63" static="1"/>
- <Typedef id="_240" name="intptr_t" type="_48" context="_1" location="f2:119" file="f2" line="119"/>
- <Struct id="_241" name="gsm_mncc_bearer_cap" context="_1" mangled="19gsm_mncc_bearer_cap" demangled="gsm_mncc_bearer_cap" location="f3:122" file="f3" line="122" artificial="1" size="736" align="32" members="_442 _443 _444 _445 _446 _447 _448 _449 _450 _451 _452 _453 " bases=""/>
- <Variable id="_242" name="cpp_sym_INT_LEAST64_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:88" file="f1" line="88" static="1"/>
- <Variable id="_243" name="cpp_sym_MNCC_SETUP_CNF" type="_93c" init="260" context="_1" location="f1:4" file="f1" line="4" static="1"/>
- <Variable id="_244" name="cpp_sym__ATFILE_SOURCE" type="_93c" init="1" context="_1" location="f1:3" file="f1" line="3" static="1"/>
- <Enumeration id="_245" name="gsm48_bcap_speech_ver" context="_1" location="f3:104" file="f3" line="104" artificial="1" size="32" align="32">
+ <Variable id="_420" name="cpp_sym_UINT_LEAST8_MAX" type="_46c" init="255" context="_1" location="f0:503" file="f0" line="503" static="1"/>
+ <Variable id="_421" name="cpp_sym_IPV6_JOIN_GROUP" type="_46c" init="20" context="_1" location="f0:517" file="f0" line="517" static="1"/>
+ <Variable id="_422" name="cpp_sym_IPV6_MTU" type="_46c" init="24" context="_1" location="f0:473" file="f0" line="473" static="1"/>
+ <Variable id="_423" name="cpp_sym___PDP_ENDIAN" type="_46c" init="3412" context="_1" location="f0:528" file="f0" line="528" static="1"/>
+ <Typedef id="_424" name="blkcnt_t" type="_445" context="_1" location="f3:192" file="f3" line="192"/>
+ <Variable id="_425" name="cpp_sym_SOL_IRDA" type="_46c" init="266" context="_1" location="f0:142" file="f0" line="142" static="1"/>
+ <Variable id="_426" name="cpp_sym_MNCC_START_DTMF_REJ" type="_46c" init="279" context="_1" location="f0:440" file="f0" line="440" static="1"/>
+ <Typedef id="_427" name="__daddr_t" type="_46" context="_1" location="f9:165" file="f9" line="165"/>
+ <Typedef id="_428" name="int_fast16_t" type="_16" context="_1" location="f4:60" file="f4" line="60"/>
+ <Function id="_429" name="setipv4sourcefilter" returns="_46" throw="" context="_1" location="f5:617" file="f5" line="617" extern="1">
+ <Argument name="__s" type="_46" location="f5:617" file="f5" line="617"/>
+ <Argument name="__interface_addr" type="_679" location="f5:617" file="f5" line="617"/>
+ <Argument name="__group" type="_679" location="f5:617" file="f5" line="617"/>
+ <Argument name="__fmode" type="_322" location="f5:617" file="f5" line="617"/>
+ <Argument name="__numsrc" type="_322" location="f5:617" file="f5" line="617"/>
+ <Argument name="__slist" type="_1172" location="f5:617" file="f5" line="617"/>
+ </Function>
+ <Variable id="_430" name="cpp_sym_PF_ROSE" type="_46c" init="11" context="_1" location="f0:133" file="f0" line="133" static="1"/>
+ <Typedef id="_431" name="__kernel_uid16_t" type="_171" context="_1" location="f8:96" file="f8" line="96"/>
+ <Typedef id="_432" name="__kernel_time_t" type="_180" context="_1" location="f8:90" file="f8" line="90"/>
+ <Variable id="_433" name="cpp_sym__BITS_STDINT_INTN_H" type="_46c" init="1" context="_1" location="f0:168" file="f0" line="168" static="1"/>
+ <Typedef id="_434" name="ulong" type="_18" context="_1" location="f3:148" file="f3" line="148"/>
+ <Variable id="_435" name="cpp_sym_PF_AX25" type="_46c" init="3" context="_1" location="f0:120" file="f0" line="120" static="1"/>
+ <Variable id="_436" name="cpp_sym_UINT16_WIDTH" type="_46c" init="16" context="_1" location="f0:427" file="f0" line="427" static="1"/>
+ <Struct id="_437" name="__once_flag" context="_1" mangled="11__once_flag" demangled="__once_flag" location="f10:125" file="f10" line="125" size="32" align="32" members="_1173 _1174 _1175 _1176 _1177 " bases=""/>
+ <Variable id="_438" name="cpp_sym_IP_RECVERR" type="_46c" init="11" context="_1" location="f0:27" file="f0" line="27" static="1"/>
+ <Union id="_439" name="pthread_rwlockattr_t" context="_1" mangled="20pthread_rwlockattr_t" demangled="pthread_rwlockattr_t" location="f7:97" file="f7" line="97" size="64" align="64" members="_1178 _1179 _1180 _1181 _1182 _1183 " bases=""/>
+ <Variable id="_440" name="cpp_sym_SOL_LLC" type="_46c" init="268" context="_1" location="f0:125" file="f0" line="125" static="1"/>
+ <Variable id="_441" name="cpp_sym_IP_MINTTL" type="_46c" init="21" context="_1" location="f0:250" file="f0" line="250" static="1"/>
+ <Typedef id="_442" name="__ssize_t" type="_16" context="_1" location="f9:194" file="f9" line="194"/>
+ <Typedef id="_443" name="__fsfilcnt_t" type="_18" context="_1" location="f9:188" file="f9" line="188"/>
+ <Variable id="_444" name="cpp_sym_PF_NETROM" type="_46c" init="6" context="_1" location="f0:280" file="f0" line="280" static="1"/>
+ <Typedef id="_445" name="__blkcnt_t" type="_16" context="_1" location="f9:180" file="f9" line="180"/>
+ <Variable id="_446" name="cpp_sym___GLIBC_USE_IEC_60559_FUNCS_EXT" type="_46c" init="1" context="_1" location="f0:309" file="f0" line="309" static="1"/>
+ <Variable id="_447" name="cpp_sym_IPV6_RECVFRAGSIZE" type="_46c" init="77" context="_1" location="f0:33" file="f0" line="33" static="1"/>
+ <Variable id="_448" name="cpp_sym_IPV6_PKTINFO" type="_46c" init="50" context="_1" location="f0:337" file="f0" line="337" static="1"/>
+ <Variable id="_449" name="cpp_sym_IP_DEFAULT_MULTICAST_LOOP" type="_46c" init="1" context="_1" location="f0:245" file="f0" line="245" static="1"/>
+ <Typedef id="_450" name="__u_int" type="_32" context="_1" location="f9:33" file="f9" line="33"/>
+ <Function id="_451" name="bindresvport6" returns="_46" throw="" context="_1" location="f5:511" file="f5" line="511" extern="1">
+ <Argument name="__sockfd" type="_46" location="f5:511" file="f5" line="511"/>
+ <Argument name="__sock_in" type="_1184" location="f5:511" file="f5" line="511"/>
+ </Function>
+ <Variable id="_452" name="cpp_sym_SO_REUSEPORT" type="_46c" init="15" context="_1" location="f0:518" file="f0" line="518" static="1"/>
+ <Typedef id="_453" name="fsfilcnt64_t" type="_553" context="_1" location="f3:221" file="f3" line="221"/>
+ <Variable id="_454" name="cpp_sym_IP_MULTICAST_TTL" type="_46c" init="33" context="_1" location="f0:272" file="f0" line="272" static="1"/>
+ <Variable id="_455" name="cpp_sym_IPV6_RECVDSTOPTS" type="_46c" init="58" context="_1" location="f0:472" file="f0" line="472" static="1"/>
+ <Variable id="_456" name="cpp_sym_SIG_ATOMIC_WIDTH" type="_46c" init="32" context="_1" location="f0:241" file="f0" line="241" static="1"/>
+ <Variable id="_457" name="cpp_sym_IPV6_DONTFRAG" type="_46c" init="62" context="_1" location="f0:99" file="f0" line="99" static="1"/>
+ <Variable id="_458" name="cpp_sym_MNCC_REL_CNF" type="_46c" init="274" context="_1" location="f0:6" file="f0" line="6" static="1"/>
+ <Typedef id="_459" name="__kernel_ipc_pid_t" type="_46" context="_1" location="f8:32" file="f8" line="32"/>
+ <Variable id="_460" name="cpp_sym_MNCC_RTP_FREE" type="_46c" init="518" context="_1" location="f0:340" file="f0" line="340" static="1"/>
+ <Typedef id="_461" name="uint_fast64_t" type="_18" context="_1" location="f4:75" file="f4" line="75"/>
+ <Variable id="_462" name="cpp_sym_UINT_FAST64_MAX" type="_18c" init="-1ul" context="_1" location="f0:225" file="f0" line="225" static="1"/>
+ <Variable id="_463" name="cpp_sym_MNCC_RETRIEVE_REJ" type="_46c" init="292" context="_1" location="f0:350" file="f0" line="350" static="1"/>
+ <Variable id="_464" name="cpp_sym___GLIBC_MINOR__" type="_46c" init="32" context="_1" location="f0:178" file="f0" line="178" static="1"/>
+ <Typedef id="_465" name="__fsword_t" type="_16" context="_1" location="f9:192" file="f9" line="192"/>
+ <Typedef id="_466" name="__kernel_clock_t" type="_180" context="_1" location="f8:92" file="f8" line="92"/>
+ <Variable id="_467" name="cpp_sym_INADDR_BROADCAST" type="_32c" init="4294967295u" context="_1" location="f0:73" file="f0" line="73" static="1"/>
+ <Variable id="_468" name="cpp_sym_MCAST_EXCLUDE" type="_46c" init="0" context="_1" location="f0:371" file="f0" line="371" static="1"/>
+ <Variable id="_469" name="cpp_sym__FEATURES_H" type="_46c" init="1" context="_1" location="f0:239" file="f0" line="239" static="1"/>
+ <Variable id="_470" name="in6addr_any" type="_237c" context="_1" location="f5:232" file="f5" line="232" extern="1"/>
+ <Variable id="_471" name="cpp_sym_MNCC_DISC_IND" type="_46c" init="271" context="_1" location="f0:218" file="f0" line="218" static="1"/>
+ <Variable id="_472" name="cpp_sym_INT_LEAST16_WIDTH" type="_46c" init="16" context="_1" location="f0:45" file="f0" line="45" static="1"/>
+ <Variable id="_473" name="cpp_sym_MNCC_START_DTMF_RSP" type="_46c" init="278" context="_1" location="f0:511" file="f0" line="511" static="1"/>
+ <Variable id="_474" name="cpp_sym_PF_TIPC" type="_46c" init="30" context="_1" location="f0:232" file="f0" line="232" static="1"/>
+ <Variable id="_475" name="cpp_sym_SIOCATMARK" type="_46c" init="35077" context="_1" location="f0:336" file="f0" line="336" static="1"/>
+ <Typedef id="_476" name="__uint_least16_t" type="_172" context="_1" location="f9:55" file="f9" line="55"/>
+ <Function id="_477" name="setsourcefilter" returns="_46" throw="" context="_1" location="f5:632" file="f5" line="632" extern="1">
+ <Argument name="__s" type="_46" location="f5:632" file="f5" line="632"/>
+ <Argument name="__interface_addr" type="_322" location="f5:632" file="f5" line="632"/>
+ <Argument name="__group" type="_1159" location="f5:632" file="f5" line="632"/>
+ <Argument name="__grouplen" type="_516" location="f5:632" file="f5" line="632"/>
+ <Argument name="__fmode" type="_322" location="f5:632" file="f5" line="632"/>
+ <Argument name="__numsrc" type="_322" location="f5:632" file="f5" line="632"/>
+ <Argument name="__slist" type="_1185" location="f5:632" file="f5" line="632"/>
+ </Function>
+ <Variable id="_478" name="cpp_sym_MNCC_REL_REQ" type="_46c" init="272" context="_1" location="f0:286" file="f0" line="286" static="1"/>
+ <PointerType id="_479" type="_1186" size="64" align="64"/>
+ <Typedef id="_480" name="__kernel_caddr_t" type="_479" context="_1" location="f8:95" file="f8" line="95"/>
+ <Variable id="_481" name="cpp_sym_INADDR_ANY" type="_32c" init="0u" context="_1" location="f0:501" file="f0" line="501" static="1"/>
+ <Variable id="_482" name="cpp_sym___SIZEOF_PTHREAD_BARRIER_T" type="_46c" init="32" context="_1" location="f0:56" file="f0" line="56" static="1"/>
+ <Struct id="_483" name="sockaddr_storage" context="_1" mangled="16sockaddr_storage" demangled="sockaddr_storage" location="f19:192" file="f19" line="192" artificial="1" size="1024" align="64" members="_1187 _1188 _1189 _1190 _1191 _1192 _1193 " bases=""/>
+ <Variable id="_484" name="cpp_sym_SO_DEBUG" type="_46c" init="1" context="_1" location="f0:192" file="f0" line="192" static="1"/>
+ <Typedef id="_485" name="__time_t" type="_16" context="_1" location="f9:160" file="f9" line="160"/>
+ <Variable id="_486" name="cpp_sym_PF_PHONET" type="_46c" init="35" context="_1" location="f0:506" file="f0" line="506" static="1"/>
+ <Variable id="_487" name="cpp_sym___USE_POSIX199506" type="_46c" init="1" context="_1" location="f0:384" file="f0" line="384" static="1"/>
+ <Variable id="_488" name="cpp_sym___USE_LARGEFILE64" type="_46c" init="1" context="_1" location="f0:206" file="f0" line="206" static="1"/>
+ <Function id="_489" name="inet6_rth_segments" returns="_46" throw="" context="_1" location="f5:599" file="f5" line="599" extern="1">
+ <Argument name="__bp" type="_1076" location="f5:599" file="f5" line="599"/>
+ </Function>
+ <Typedef id="_490" name="__off_t" type="_16" context="_1" location="f9:152" file="f9" line="152"/>
+ <Variable id="_491" name="cpp_sym_SO_COOKIE" type="_46c" init="57" context="_1" location="f0:520" file="f0" line="520" static="1"/>
+ <Typedef id="_492" name="suseconds_t" type="_98" context="_1" location="f3:138" file="f3" line="138"/>
+ <Variable id="_493" name="cpp_sym_IN_CLASSC_NET" type="_32c" init="4294967040u" context="_1" location="f0:353" file="f0" line="353" static="1"/>
+ <Variable id="_494" name="cpp_sym_SO_RCVTIMEO_NEW" type="_46c" init="66" context="_1" location="f0:542" file="f0" line="542" static="1"/>
+ <Function id="_495" name="isfdtype" returns="_46" throw="" context="_1" location="f2:263" file="f2" line="263" extern="1">
+ <Argument name="__fd" type="_46" location="f2:263" file="f2" line="263"/>
+ <Argument name="__fdtype" type="_46" location="f2:263" file="f2" line="263"/>
+ </Function>
+ <Variable id="_496" name="cpp_sym___clock_t_defined" type="_46c" init="1" context="_1" location="f0:453" file="f0" line="453" static="1"/>
+ <Variable id="_497" name="cpp_sym_IPV6_2292PKTINFO" type="_46c" init="2" context="_1" location="f0:148" file="f0" line="148" static="1"/>
+ <Variable id="_498" name="cpp_sym_SO_PASSCRED" type="_46c" init="16" context="_1" location="f0:11" file="f0" line="11" static="1"/>
+ <Typedef id="_499" name="pid_t" type="_341" context="_1" location="f3:97" file="f3" line="97"/>
+ <Variable id="_500" name="cpp_sym_GSM_TCHF_FRAME_EFR" type="_46c" init="769" context="_1" location="f0:294" file="f0" line="294" static="1"/>
+ <Variable id="_501" name="cpp_sym_SO_BSDCOMPAT" type="_46c" init="14" context="_1" location="f0:311" file="f0" line="311" static="1"/>
+ <Function id="_502" name="inet6_rth_init" returns="_222" throw="" context="_1" location="f5:596" file="f5" line="596" extern="1">
+ <Argument name="__bp" type="_222" location="f5:596" file="f5" line="596"/>
+ <Argument name="__bp_len" type="_516" location="f5:596" file="f5" line="596"/>
+ <Argument name="__type" type="_46" location="f5:596" file="f5" line="596"/>
+ <Argument name="__segments" type="_46" location="f5:596" file="f5" line="596"/>
+ </Function>
+ <Variable id="_503" name="cpp_sym_PF_UNSPEC" type="_46c" init="0" context="_1" location="f0:205" file="f0" line="205" static="1"/>
+ <Typedef id="_504" name="int_least16_t" type="_690" context="_1" location="f4:44" file="f4" line="44"/>
+ <Variable id="_505" name="cpp_sym_SOL_DCCP" type="_46c" init="269" context="_1" location="f0:342" file="f0" line="342" static="1"/>
+ <Variable id="_506" name="cpp_sym___GLIBC_USE_ISOC2X" type="_46c" init="1" context="_1" location="f0:344" file="f0" line="344" static="1"/>
+ <Struct id="_507" name="gsm_mncc_bridge" context="_1" mangled="15gsm_mncc_bridge" demangled="gsm_mncc_bridge" location="f11:361" file="f11" line="361" artificial="1" size="96" align="32" members="_1194 _1195 _1196 _1197 _1198 _1199 " bases=""/>
+ <Function id="_508" name="listen" returns="_46" throw="" context="_1" location="f2:222" file="f2" line="222" extern="1">
+ <Argument name="__fd" type="_46" location="f2:222" file="f2" line="222"/>
+ <Argument name="__n" type="_46" location="f2:222" file="f2" line="222"/>
+ </Function>
+ <Struct id="_509" name="ip_mreqn" context="_1" mangled="8ip_mreqn" demangled="ip_mreqn" location="f18:150" file="f18" line="150" artificial="1" size="96" align="32" members="_1200 _1201 _1202 _1203 _1204 _1205 _1206 " bases=""/>
+ <Typedef id="_510" name="daddr_t" type="_427" context="_1" location="f3:114" file="f3" line="114"/>
+ <Variable id="_511" name="cpp_sym_WINT_WIDTH" type="_46c" init="32" context="_1" location="f0:321" file="f0" line="321" static="1"/>
+ <Typedef id="_512" name="caddr_t" type="_886" context="_1" location="f3:115" file="f3" line="115"/>
+ <Variable id="_513" name="cpp_sym_SO_ATTACH_REUSEPORT_EBPF" type="_46c" init="52" context="_1" location="f0:373" file="f0" line="373" static="1"/>
+ <Variable id="_514" name="cpp_sym___USE_GNU" type="_46c" init="1" context="_1" location="f0:203" file="f0" line="203" static="1"/>
+ <Typedef id="_515" name="int16_t" type="_117" context="_1" location="f26:25" file="f26" line="25"/>
+ <Typedef id="_516" name="socklen_t" type="_108" context="_1" location="f19:33" file="f19" line="33"/>
+ <Variable id="_517" name="cpp_sym_UINTPTR_MAX" type="_18c" init="-1ul" context="_1" location="f0:346" file="f0" line="346" static="1"/>
+ <Typedef id="_518" name="__kernel_old_dev_t" type="_18" context="_1" location="f27:15" file="f27" line="15"/>
+ <Variable id="_519" name="cpp_sym_IP_RECVTOS" type="_46c" init="13" context="_1" location="f0:163" file="f0" line="163" static="1"/>
+ <Variable id="_520" name="cpp_sym_SOL_DECNET" type="_46c" init="261" context="_1" location="f0:361" file="f0" line="361" static="1"/>
+ <Variable id="_521" name="cpp_sym_SO_TIMESTAMPING_NEW" type="_46c" init="65" context="_1" location="f0:21" file="f0" line="21" static="1"/>
+ <Typedef id="_522" name="__fsblkcnt64_t" type="_18" context="_1" location="f9:185" file="f9" line="185"/>
+ <Typedef id="_523" name="uintptr_t" type="_18" context="_1" location="f4:90" file="f4" line="90"/>
+ <Variable id="_524" name="cpp_sym_UINT64_WIDTH" type="_46c" init="64" context="_1" location="f0:264" file="f0" line="264" static="1"/>
+ <Typedef id="_525" name="__ino64_t" type="_18" context="_1" location="f9:149" file="f9" line="149"/>
+ <Variable id="_526" name="cpp_sym_MNCC_STOP_DTMF_RSP" type="_46c" init="281" context="_1" location="f0:287" file="f0" line="287" static="1"/>
+ <Struct id="_527" name="group_filter" context="_1" mangled="12group_filter" demangled="group_filter" location="f5:350" file="f5" line="350" artificial="1" size="2176" align="64" members="_1207 _1208 _1209 _1210 _1211 _1212 _1213 _1214 _1215 " bases=""/>
+ <Typedef id="_528" name="ssize_t" type="_442" context="_1" location="f3:108" file="f3" line="108"/>
+ <Typedef id="_529" name="__int64_t" type="_16" context="_1" location="f9:44" file="f9" line="44"/>
+ <Variable id="_530" name="cpp_sym_MNCC_USERINFO_REQ" type="_46c" init="293" context="_1" location="f0:201" file="f0" line="201" static="1"/>
+ <Variable id="_531" name="cpp_sym___USE_XOPEN2KXSI" type="_46c" init="1" context="_1" location="f0:421" file="f0" line="421" static="1"/>
+ <Variable id="_532" name="cpp_sym_IPV6_V6ONLY" type="_46c" init="26" context="_1" location="f0:469" file="f0" line="469" static="1"/>
+ <Variable id="_533" name="cpp_sym_SOL_RAW" type="_46c" init="255" context="_1" location="f0:482" file="f0" line="482" static="1"/>
+ <Typedef id="_534" name="__fsblkcnt_t" type="_18" context="_1" location="f9:184" file="f9" line="184"/>
+ <Variable id="_535" name="cpp_sym_MNCC_F_USERUSER" type="_46c" init="64" context="_1" location="f0:53" file="f0" line="53" static="1"/>
+ <Typedef id="_536" name="__clockid_t" type="_46" context="_1" location="f9:169" file="f9" line="169"/>
+ <Variable id="_537" name="cpp_sym_SOL_SOCKET" type="_46c" init="1" context="_1" location="f0:266" file="f0" line="266" static="1"/>
+ <Variable id="_538" name="cpp_sym_IP_RECVTTL" type="_46c" init="12" context="_1" location="f0:285" file="f0" line="285" static="1"/>
+ <Variable id="_539" name="cpp_sym_UINT_LEAST16_MAX" type="_46c" init="65535" context="_1" location="f0:408" file="f0" line="408" static="1"/>
+ <Variable id="_540" name="cpp_sym_SOL_RDS" type="_46c" init="276" context="_1" location="f0:58" file="f0" line="58" static="1"/>
+ <Variable id="_541" name="cpp_sym_GSM_MAX_USERUSER" type="_46c" init="128" context="_1" location="f0:187" file="f0" line="187" static="1"/>
+ <Variable id="_542" name="cpp_sym_INADDR_ALLRTRS_GROUP" type="_32c" init="3758096386u" context="_1" location="f0:335" file="f0" line="335" static="1"/>
+ <Variable id="_543" name="cpp_sym___USE_ISOCXX11" type="_46c" init="1" context="_1" location="f0:51" file="f0" line="51" static="1"/>
+ <Variable id="_544" name="cpp_sym_IPV6_TRANSPARENT" type="_46c" init="75" context="_1" location="f0:484" file="f0" line="484" static="1"/>
+ <Typedef id="_545" name="intptr_t" type="_16" context="_1" location="f4:87" file="f4" line="87"/>
+ <Variable id="_546" name="cpp_sym_IPV6_MULTICAST_LOOP" type="_46c" init="19" context="_1" location="f0:122" file="f0" line="122" static="1"/>
+ <Typedef id="_547" name="size_t" type="_18" context="_1" location="f28:216" file="f28" line="216"/>
+ <Variable id="_548" name="cpp_sym_INT64_MIN" type="_16c" init="-0x08000000000000000l" context="_1" location="f0:179" file="f0" line="179" static="1"/>
+ <Variable id="_549" name="cpp_sym__SYS_CDEFS_H" type="_46c" init="1" context="_1" location="f0:403" file="f0" line="403" static="1"/>
+ <Variable id="_550" name="cpp_sym_IPV6_2292HOPOPTS" type="_46c" init="3" context="_1" location="f0:485" file="f0" line="485" static="1"/>
+ <Variable id="_551" name="cpp_sym_IP_ADD_SOURCE_MEMBERSHIP" type="_46c" init="39" context="_1" location="f0:50" file="f0" line="50" static="1"/>
+ <Struct id="_552" name="gsm_mncc_bearer_cap" context="_1" mangled="19gsm_mncc_bearer_cap" demangled="gsm_mncc_bearer_cap" location="f11:139" file="f11" line="139" artificial="1" size="736" align="32" members="_1216 _1217 _1218 _1219 _1220 _1221 _1222 _1223 _1224 _1225 _1226 _1227 " bases=""/>
+ <Typedef id="_553" name="__fsfilcnt64_t" type="_18" context="_1" location="f9:189" file="f9" line="189"/>
+ <Typedef id="_554" name="__kernel_gid16_t" type="_171" context="_1" location="f8:97" file="f8" line="97"/>
+ <Variable id="_555" name="cpp_sym_INT_FAST8_WIDTH" type="_46c" init="8" context="_1" location="f0:52" file="f0" line="52" static="1"/>
+ <Variable id="_556" name="cpp_sym_IP_PKTINFO" type="_46c" init="8" context="_1" location="f0:87" file="f0" line="87" static="1"/>
+ <Variable id="_557" name="cpp_sym_SO_RCVLOWAT" type="_46c" init="18" context="_1" location="f0:191" file="f0" line="191" static="1"/>
+ <Variable id="_558" name="cpp_sym_INT_LEAST64_MAX" type="_16c" init="9223372036854775807l" context="_1" location="f0:354" file="f0" line="354" static="1"/>
+ <Variable id="_559" name="cpp_sym_IP_DROP_SOURCE_MEMBERSHIP" type="_46c" init="40" context="_1" location="f0:302" file="f0" line="302" static="1"/>
+ <Variable id="_560" name="cpp_sym_MNCC_SETUP_CNF" type="_46c" init="260" context="_1" location="f0:3" file="f0" line="3" static="1"/>
+ <Variable id="_561" name="cpp_sym_SO_WIFI_STATUS" type="_46c" init="41" context="_1" location="f0:515" file="f0" line="515" static="1"/>
+ <Variable id="_562" name="cpp_sym__ATFILE_SOURCE" type="_46c" init="1" context="_1" location="f0:8" file="f0" line="8" static="1"/>
+ <Struct id="_563" name="sockaddr_in" context="_1" mangled="11sockaddr_in" demangled="sockaddr_in" location="f5:243" file="f5" line="243" artificial="1" size="128" align="32" members="_1228 _1229 _1230 _1231 _1232 _1233 _1234 _1235 " bases=""/>
+ <Variable id="_564" name="cpp_sym_IPV6_ROUTER_ALERT" type="_46c" init="22" context="_1" location="f0:347" file="f0" line="347" static="1"/>
+ <Typedef id="_565" name="loff_t" type="_124" context="_1" location="f3:42" file="f3" line="42"/>
+ <Variable id="_566" name="cpp_sym_SO_TXTIME" type="_46c" init="61" context="_1" location="f0:351" file="f0" line="351" static="1"/>
+ <Variable id="_567" name="cpp_sym_IN_CLASSB_NET" type="_32c" init="4294901760u" context="_1" location="f0:364" file="f0" line="364" static="1"/>
+ <Enumeration id="_568" name="gsm48_bcap_speech_ver" context="_1" location="f11:121" file="f11" line="121" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_SV_FR" init="0"/>
<EnumValue name="GSM48_BCAP_SV_HR" init="1"/>
<EnumValue name="GSM48_BCAP_SV_EFR" init="2"/>
@@ -521,118 +768,291 @@
<EnumValue name="GSM48_BCAP_SV_AMR_FW" init="8"/>
<EnumValue name="GSM48_BCAP_SV_AMR_OH" init="11"/>
</Enumeration>
- <Function id="_246" name="__builtin_expect" returns="_48" context="_1" location="f0:16" file="f0" line="16" extern="1" attributes="nothrow const">
- <Argument name="EXP" type="_48" location="f0:16" file="f0" line="16"/>
- <Argument name="C" type="_48" location="f0:16" file="f0" line="16"/>
- </Function>
- <Variable id="_247" name="cpp_sym___USE_XOPEN2K8XSI" type="_93c" init="1" context="_1" location="f1:19" file="f1" line="19" static="1"/>
- <Function id="_248" name="__builtin_popcountl" returns="_93" context="_1" location="f0:100" file="f0" line="100" extern="1" attributes="nothrow const">
- <Argument type="_48" location="f0:100" file="f0" line="100"/>
- </Function>
- <Variable id="_249" name="cpp_sym___USE_ISOC11" type="_93c" init="1" context="_1" location="f1:163" file="f1" line="163" static="1"/>
- <Variable id="_250" name="cpp_sym_MNCC_ALERT_IND" type="_93c" init="267" context="_1" location="f1:78" file="f1" line="78" static="1"/>
- <Typedef id="_251" name="uintmax_t" type="_9" context="_1" location="f2:135" file="f2" line="135"/>
- <Variable id="_252" name="cpp_sym_UINT64_MAX" type="_9c" init="-1ul" context="_1" location="f1:28" file="f1" line="28" static="1"/>
- <Variable id="_253" name="cpp_sym___USE_POSIX199309" type="_93c" init="1" context="_1" location="f1:20" file="f1" line="20" static="1"/>
- <Variable id="_254" name="cpp_sym__BSD_SOURCE" type="_93c" init="1" context="_1" location="f1:165" file="f1" line="165" static="1"/>
- <Typedef id="_255" name="int64_t" type="_48" context="_1" location="f2:40" file="f2" line="40"/>
- <Variable id="_256" name="cpp_sym_MNCC_SETUP_REQ" type="_93c" init="257" context="_1" location="f1:65" file="f1" line="65" static="1"/>
- <Variable id="_257" name="cpp_sym_MNCC_F_CONNECTED" type="_93c" init="16" context="_1" location="f1:100" file="f1" line="100" static="1"/>
- <Struct id="_258" name="gsm_mncc_rtp" context="_1" mangled="12gsm_mncc_rtp" demangled="gsm_mncc_rtp" location="f3:335" file="f3" line="335" artificial="1" size="8384" align="32" members="_454 _455 _456 _457 _458 _459 _460 _461 _462 _463 _464 " bases=""/>
- <Typedef id="_259" name="int32_t" type="_93" context="_1" location="f2:38" file="f2" line="38"/>
- <Variable id="_260" name="cpp_sym_INT_LEAST16_MAX" type="_93c" init="32767" context="_1" location="f1:31" file="f1" line="31" static="1"/>
- <Variable id="_261" name="cpp_sym__SVID_SOURCE" type="_93c" init="1" context="_1" location="f1:6" file="f1" line="6" static="1"/>
- <Variable id="_262" name="cpp_sym_INTPTR_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:155" file="f1" line="155" static="1"/>
- <Function id="_263" name="__builtin_inff" returns="_371" context="_1" location="f0:19" file="f0" line="19" extern="1" attributes="nothrow const"/>
- <Function id="_264" name="__builtin_infl" returns="_372" context="_1" location="f0:20" file="f0" line="20" extern="1" attributes="nothrow const"/>
- <FundamentalType id="_265" name="short unsigned int" size="16" align="16"/>
- <Typedef id="_266" name="uint16_t" type="_265" context="_1" location="f2:49" file="f2" line="49"/>
- <Variable id="_267" name="cpp_sym_MNCC_FACILITY_IND" type="_93c" init="276" context="_1" location="f1:21" file="f1" line="21" static="1"/>
- <Typedef id="_268" name="intmax_t" type="_48" context="_1" location="f2:134" file="f2" line="134"/>
- <Struct id="_269" name="gsm_mncc" context="_1" mangled="8gsm_mncc" demangled="gsm_mncc" location="f3:274" file="f3" line="274" artificial="1" size="14880" align="32" members="_465 _466 _467 _468 _469 _470 _471 _472 _473 _474 _475 _476 _477 _478 _479 _480 _481 _482 _483 _484 _485 _486 _487 _488 _489 _490 _491 _492 _493 " bases=""/>
- <Variable id="_270" name="cpp_sym_MNCC_REJ_REQ" type="_93c" init="295" context="_1" location="f1:68" file="f1" line="68" static="1"/>
- <Variable id="_271" name="cpp_sym_MNCC_F_KEYPAD" type="_93c" init="4096" context="_1" location="f1:110" file="f1" line="110" static="1"/>
- <Variable id="_272" name="cpp_sym_INT32_MIN" type="_93c" init="-0x00000000080000000" context="_1" location="f1:108" file="f1" line="108" static="1"/>
- <Variable id="_273" name="cpp_sym_MNCC_MODIFY_CNF" type="_93c" init="285" context="_1" location="f1:107" file="f1" line="107" static="1"/>
- <Function id="_274" name="__builtin_cos" returns="_368" context="_1" mangled="cos" location="f0:39" file="f0" line="39" extern="1" attributes="nothrow pure no vops">
- <Argument type="_368" location="f0:39" file="f0" line="39"/>
- </Function>
- <Variable id="_275" name="cpp_sym_INT_FAST16_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:132" file="f1" line="132" static="1"/>
- <FundamentalType id="_276" name="unsigned char" size="8" align="8"/>
- <Typedef id="_277" name="uint_fast8_t" type="_276" context="_1" location="f2:103" file="f2" line="103"/>
- <Variable id="_278" name="cpp_sym_MNCC_NOTIFY_REQ" type="_93c" init="268" context="_1" location="f1:136" file="f1" line="136" static="1"/>
- <Variable id="_279" name="cpp_sym_INT_LEAST16_MIN" type="_93c" init="-0x00000000000008000" context="_1" location="f1:138" file="f1" line="138" static="1"/>
- <Variable id="_280" name="cpp_sym_MNCC_SETUP_RSP" type="_93c" init="259" context="_1" location="f1:148" file="f1" line="148" static="1"/>
- <Variable id="_281" name="cpp_sym_INTPTR_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:98" file="f1" line="98" static="1"/>
- <Variable id="_282" name="cpp_sym___USE_MISC" type="_93c" init="1" context="_1" location="f1:91" file="f1" line="91" static="1"/>
- <Typedef id="_283" name="uint_least16_t" type="_265" context="_1" location="f2:77" file="f2" line="77"/>
- <Variable id="_284" name="cpp_sym_MNCC_F_CCCAP" type="_93c" init="2048" context="_1" location="f1:106" file="f1" line="106" static="1"/>
- <Function id="_285" name="__builtin_ctz" returns="_93" context="_1" location="f0:96" file="f0" line="96" extern="1" attributes="nothrow const">
- <Argument type="_93" location="f0:96" file="f0" line="96"/>
- </Function>
- <Variable id="_286" name="cpp_sym_MNCC_RTP_CREATE" type="_93c" init="516" context="_1" location="f1:13" file="f1" line="13" static="1"/>
- <Function id="_287" name="__builtin_return_address" returns="_400" context="_1" location="f0:14" file="f0" line="14" extern="1">
- <Argument name="LEVEL" type="_148" location="f0:14" file="f0" line="14"/>
- </Function>
- <Typedef id="_288" name="uint8_t" type="_276" context="_1" location="f2:48" file="f2" line="48"/>
- <Function id="_289" name="__builtin_isnan" returns="_373" context="_1" mangled="isnan" location="f0:144" file="f0" line="144" extern="1" attributes="nothrow const">
- <Ellipsis/>
- </Function>
- <Variable id="_290" name="cpp_sym_MNCC_F_CALLING" type="_93c" init="4" context="_1" location="f1:159" file="f1" line="159" static="1"/>
- <Variable id="_291" name="cpp_sym_MNCC_CALL_PROC_REQ" type="_93c" init="264" context="_1" location="f1:128" file="f1" line="128" static="1"/>
- <Variable id="_292" name="cpp_sym_INT_FAST16_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:26" file="f1" line="26" static="1"/>
- <Variable id="_293" name="cpp_sym_MNCC_FRAME_RECV" type="_93c" init="513" context="_1" location="f1:153" file="f1" line="153" static="1"/>
- <Function id="_294" name="__builtin_csinhf" returns="_375" context="_1" mangled="csinhf" location="f0:117" file="f0" line="117" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:117" file="f0" line="117"/>
- </Function>
- <Function id="_295" name="__builtin_csinhl" returns="_376" context="_1" mangled="csinhl" location="f0:119" file="f0" line="119" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:119" file="f0" line="119"/>
- </Function>
- <Function id="_296" name="__builtin_csqrtf" returns="_375" context="_1" mangled="csqrtf" location="f0:120" file="f0" line="120" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:120" file="f0" line="120"/>
- </Function>
- <Function id="_297" name="__builtin_csqrtl" returns="_376" context="_1" mangled="csqrtl" location="f0:122" file="f0" line="122" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:122" file="f0" line="122"/>
- </Function>
- <Variable id="_298" name="cpp_sym_MNCC_PROGRESS_REQ" type="_93c" init="265" context="_1" location="f1:16" file="f1" line="16" static="1"/>
- <Typedef id="_299" name="int_least64_t" type="_48" context="_1" location="f2:69" file="f2" line="69"/>
- <Typedef id="_300" name="int8_t" type="_81" context="_1" location="f2:36" file="f2" line="36"/>
- <Variable id="_301" name="cpp_sym__ISOC11_SOURCE" type="_93c" init="1" context="_1" location="f1:84" file="f1" line="84" static="1"/>
- <Variable id="_302" name="cpp_sym_MNCC_MODIFY_REJ" type="_93c" init="286" context="_1" location="f1:130" file="f1" line="130" static="1"/>
- <Enumeration id="_303" name="gsm48_bcap_interm_rate" context="_1" location="f3:76" file="f3" line="76" artificial="1" size="32" align="32">
+ <Function id="_569" name="socket" returns="_46" throw="" context="_1" location="f2:102" file="f2" line="102" extern="1">
+ <Argument name="__domain" type="_46" location="f2:102" file="f2" line="102"/>
+ <Argument name="__type" type="_46" location="f2:102" file="f2" line="102"/>
+ <Argument name="__protocol" type="_46" location="f2:102" file="f2" line="102"/>
+ </Function>
+ <Variable id="_570" name="cpp_sym_SO_TIMESTAMPNS_NEW" type="_46c" init="64" context="_1" location="f0:149" file="f0" line="149" static="1"/>
+ <Typedef id="_571" name="__u_char" type="_154" context="_1" location="f9:31" file="f9" line="31"/>
+ <Variable id="_572" name="cpp_sym_UINT_LEAST64_WIDTH" type="_46c" init="64" context="_1" location="f0:217" file="f0" line="217" static="1"/>
+ <Variable id="_573" name="cpp_sym_INT_LEAST64_WIDTH" type="_46c" init="64" context="_1" location="f0:139" file="f0" line="139" static="1"/>
+ <Struct id="_574" name="group_req" context="_1" mangled="9group_req" demangled="group_req" location="f5:306" file="f5" line="306" artificial="1" size="1088" align="64" members="_1236 _1237 _1238 _1239 _1240 _1241 " bases=""/>
+ <Variable id="_575" name="cpp_sym_MCAST_JOIN_SOURCE_GROUP" type="_46c" init="46" context="_1" location="f0:61" file="f0" line="61" static="1"/>
+ <Typedef id="_576" name="__uid_t" type="_32" context="_1" location="f9:146" file="f9" line="146"/>
+ <Variable id="_577" name="cpp_sym_IPV6_ADDR_PREFERENCES" type="_46c" init="72" context="_1" location="f0:508" file="f0" line="508" static="1"/>
+ <Typedef id="_578" name="__kernel_off_t" type="_180" context="_1" location="f8:87" file="f8" line="87"/>
+ <Struct id="_579" name="group_source_req" context="_1" mangled="16group_source_req" demangled="group_source_req" location="f5:315" file="f5" line="315" artificial="1" size="2112" align="64" members="_1242 _1243 _1244 _1245 _1246 _1247 _1248 " bases=""/>
+ <Variable id="_580" name="cpp_sym_INADDR_UNSPEC_GROUP" type="_32c" init="3758096384u" context="_1" location="f0:481" file="f0" line="481" static="1"/>
+ <Variable id="_581" name="cpp_sym_SO_PROTOCOL" type="_46c" init="38" context="_1" location="f0:406" file="f0" line="406" static="1"/>
+ <Struct id="_582" name="__pthread_mutex_s" context="_1" mangled="17__pthread_mutex_s" demangled="__pthread_mutex_s" location="f29:23" file="f29" line="23" artificial="1" size="320" align="64" members="_1249 _1250 _1251 _1252 _1253 _1254 _1255 _1256 _1257 _1258 _1259 _1260 " bases=""/>
+ <Variable id="_583" name="cpp_sym_PF_NFC" type="_46c" init="39" context="_1" location="f0:292" file="f0" line="292" static="1"/>
+ <Function id="_584" name="inet6_option_alloc" returns="_1261" throw="" context="_1" location="f5:565" file="f5" line="565" extern="1" attributes="__deprecated__">
+ <Argument name="__cmsg" type="_1060" location="f5:565" file="f5" line="565"/>
+ <Argument name="__datalen" type="_46" location="f5:565" file="f5" line="565"/>
+ <Argument name="__multx" type="_46" location="f5:565" file="f5" line="565"/>
+ <Argument name="__plusy" type="_46" location="f5:565" file="f5" line="565"/>
+ </Function>
+ <Variable id="_585" name="cpp_sym_SO_CNX_ADVICE" type="_46c" init="53" context="_1" location="f0:221" file="f0" line="221" static="1"/>
+ <Function id="_586" name="inet6_opt_set_val" returns="_46" throw="" context="_1" location="f5:582" file="f5" line="582" extern="1">
+ <Argument name="__databuf" type="_222" location="f5:582" file="f5" line="582"/>
+ <Argument name="__offset" type="_46" location="f5:582" file="f5" line="582"/>
+ <Argument name="__val" type="_222" location="f5:582" file="f5" line="582"/>
+ <Argument name="__vallen" type="_516" location="f5:582" file="f5" line="582"/>
+ </Function>
+ <Variable id="_587" name="cpp_sym___USE_XOPEN2K8XSI" type="_46c" init="1" context="_1" location="f0:389" file="f0" line="389" static="1"/>
+ <Variable id="_588" name="cpp_sym___USE_ISOC11" type="_46c" init="1" context="_1" location="f0:543" file="f0" line="543" static="1"/>
+ <Variable id="_589" name="cpp_sym_SO_PEERGROUPS" type="_46c" init="59" context="_1" location="f0:496" file="f0" line="496" static="1"/>
+ <Variable id="_590" name="cpp_sym_IPV6_PMTUDISC_DO" type="_46c" init="2" context="_1" location="f0:64" file="f0" line="64" static="1"/>
+ <Typedef id="_591" name="__gid_t" type="_32" context="_1" location="f9:147" file="f9" line="147"/>
+ <Variable id="_592" name="cpp_sym_IPV6_RTHDR_STRICT" type="_46c" init="1" context="_1" location="f0:174" file="f0" line="174" static="1"/>
+ <Variable id="_593" name="cpp_sym___glibc_c99_flexarr_available" type="_46c" init="1" context="_1" location="f0:281" file="f0" line="281" static="1"/>
+ <Typedef id="_594" name="__uint8_t" type="_154" context="_1" location="f9:38" file="f9" line="38"/>
+ <Variable id="_595" name="cpp_sym__BITS_BYTESWAP_H" type="_46c" init="1" context="_1" location="f0:370" file="f0" line="370" static="1"/>
+ <Variable id="_596" name="cpp_sym_SOL_NFC" type="_46c" init="280" context="_1" location="f0:306" file="f0" line="306" static="1"/>
+ <Union id="_597" name="pthread_attr_t" context="_1" mangled="14pthread_attr_t" demangled="pthread_attr_t" location="f7:57" file="f7" line="57" artificial="1" size="448" align="64" members="_1262 _1263 _1264 _1265 _1266 _1267 " bases=""/>
+ <Typedef id="_598" name="pthread_attr_t" type="_597" context="_1" location="f7:62" file="f7" line="62"/>
+ <Typedef id="_599" name="uintmax_t" type="_735" context="_1" location="f4:102" file="f4" line="102"/>
+ <Variable id="_600" name="cpp_sym_INET_ADDRSTRLEN" type="_46c" init="16" context="_1" location="f0:71" file="f0" line="71" static="1"/>
+ <Variable id="_601" name="cpp_sym__SYS_SOCKET_H" type="_46c" init="1" context="_1" location="f0:231" file="f0" line="231" static="1"/>
+ <Variable id="_602" name="cpp_sym_SO_LOCK_FILTER" type="_46c" init="44" context="_1" location="f0:117" file="f0" line="117" static="1"/>
+ <Variable id="_603" name="cpp_sym___GLIBC_USE_LIB_EXT2" type="_46c" init="1" context="_1" location="f0:70" file="f0" line="70" static="1"/>
+ <Variable id="_604" name="cpp_sym__BITS_TIME64_H" type="_46c" init="1" context="_1" location="f0:417" file="f0" line="417" static="1"/>
+ <Function id="_605" name="inet6_rth_space" returns="_516" throw="" context="_1" location="f5:594" file="f5" line="594" extern="1">
+ <Argument name="__type" type="_46" location="f5:594" file="f5" line="594"/>
+ <Argument name="__segments" type="_46" location="f5:594" file="f5" line="594"/>
+ </Function>
+ <Variable id="_606" name="cpp_sym_PF_XDP" type="_46c" init="44" context="_1" location="f0:499" file="f0" line="499" static="1"/>
+ <Variable id="_607" name="cpp_sym__BITS_STDINT_UINTN_H" type="_46c" init="1" context="_1" location="f0:276" file="f0" line="276" static="1"/>
+ <Variable id="_608" name="cpp_sym_SO_ATTACH_BPF" type="_46c" init="50" context="_1" location="f0:425" file="f0" line="425" static="1"/>
+ <Function id="_609" name="recvmmsg" returns="_46" context="_1" location="f2:201" file="f2" line="201" extern="1">
+ <Argument name="__fd" type="_46" location="f2:201" file="f2" line="201"/>
+ <Argument name="__vmessages" type="_1058" location="f2:201" file="f2" line="201"/>
+ <Argument name="__vlen" type="_32" location="f2:201" file="f2" line="201"/>
+ <Argument name="__flags" type="_46" location="f2:201" file="f2" line="201"/>
+ <Argument name="__tmo" type="_1268" location="f2:201" file="f2" line="201"/>
+ </Function>
+ <Function id="_610" name="socketpair" returns="_46" throw="" context="_1" location="f2:109" file="f2" line="109" extern="1">
+ <Argument name="__domain" type="_46" location="f2:109" file="f2" line="109"/>
+ <Argument name="__type" type="_46" location="f2:109" file="f2" line="109"/>
+ <Argument name="__protocol" type="_46" location="f2:109" file="f2" line="109"/>
+ <Argument name="__fds" type="_1269" location="f2:109" file="f2" line="109"/>
+ </Function>
+ <Function id="_611" name="inet6_option_init" returns="_46" throw="" context="_1" location="f5:559" file="f5" line="559" extern="1" attributes="__deprecated__">
+ <Argument name="__bp" type="_222" location="f5:559" file="f5" line="559"/>
+ <Argument name="__cmsgp" type="_1270" location="f5:559" file="f5" line="559"/>
+ <Argument name="__type" type="_46" location="f5:559" file="f5" line="559"/>
+ </Function>
+ <Variable id="_612" name="cpp_sym_PF_MAX" type="_46c" init="45" context="_1" location="f0:392" file="f0" line="392" static="1"/>
+ <Variable id="_613" name="cpp_sym_SOL_KCM" type="_46c" init="281" context="_1" location="f0:409" file="f0" line="409" static="1"/>
+ <Variable id="_614" name="cpp_sym_UINT64_MAX" type="_18c" init="-1ul" context="_1" location="f0:151" file="f0" line="151" static="1"/>
+ <Function id="_615" name="ntohl" returns="_322" throw="" context="_1" location="f5:379" file="f5" line="379" extern="1" attributes="const">
+ <Argument name="__netlong" type="_322" location="f5:379" file="f5" line="379"/>
+ </Function>
+ <Function id="_616" name="ntohs" returns="_391" throw="" context="_1" location="f5:381" file="f5" line="381" extern="1" attributes="const">
+ <Argument name="__netshort" type="_391" location="f5:381" file="f5" line="381"/>
+ </Function>
+ <Struct id="_617" name="__kernel_fsid_t" context="_1" mangled="15__kernel_fsid_t" demangled="__kernel_fsid_t" location="f8:81" file="f8" line="81" size="64" align="32" members="_1271 _1272 _1273 _1274 _1275 " bases=""/>
+ <Variable id="_618" name="cpp_sym_SOL_CAIF" type="_46c" init="278" context="_1" location="f0:40" file="f0" line="40" static="1"/>
+ <Variable id="_619" name="cpp_sym___USE_POSIX199309" type="_46c" init="1" context="_1" location="f0:43" file="f0" line="43" static="1"/>
+ <Typedef id="_620" name="__key_t" type="_46" context="_1" location="f9:166" file="f9" line="166"/>
+ <Typedef id="_621" name="int64_t" type="_529" context="_1" location="f26:27" file="f26" line="27"/>
+ <Function id="_622" name="inet6_opt_next" returns="_46" throw="" context="_1" location="f5:585" file="f5" line="585" extern="1">
+ <Argument name="__extbuf" type="_222" location="f5:585" file="f5" line="585"/>
+ <Argument name="__extlen" type="_516" location="f5:585" file="f5" line="585"/>
+ <Argument name="__offset" type="_46" location="f5:585" file="f5" line="585"/>
+ <Argument name="__typep" type="_1261" location="f5:585" file="f5" line="585"/>
+ <Argument name="__lenp" type="_1041" location="f5:585" file="f5" line="585"/>
+ <Argument name="__databufp" type="_1276" location="f5:585" file="f5" line="585"/>
+ </Function>
+ <Variable id="_623" name="cpp_sym_MNCC_SETUP_REQ" type="_46c" init="257" context="_1" location="f0:329" file="f0" line="329" static="1"/>
+ <Variable id="_624" name="cpp_sym_SIOCGPGRP" type="_46c" init="35076" context="_1" location="f0:275" file="f0" line="275" static="1"/>
+ <Function id="_625" name="getipv4sourcefilter" returns="_46" throw="" context="_1" location="f5:610" file="f5" line="610" extern="1">
+ <Argument name="__s" type="_46" location="f5:610" file="f5" line="610"/>
+ <Argument name="__interface_addr" type="_679" location="f5:610" file="f5" line="610"/>
+ <Argument name="__group" type="_679" location="f5:610" file="f5" line="610"/>
+ <Argument name="__fmode" type="_1277" location="f5:610" file="f5" line="610"/>
+ <Argument name="__numsrc" type="_1277" location="f5:610" file="f5" line="610"/>
+ <Argument name="__slist" type="_1278" location="f5:610" file="f5" line="610"/>
+ </Function>
+ <Variable id="_626" name="cpp_sym_INT_LEAST8_WIDTH" type="_46c" init="8" context="_1" location="f0:249" file="f0" line="249" static="1"/>
+ <Variable id="_627" name="cpp_sym_IN_CLASSA_NET" type="_32c" init="4278190080u" context="_1" location="f0:295" file="f0" line="295" static="1"/>
+ <Variable id="_628" name="cpp_sym_MNCC_F_CONNECTED" type="_46c" init="16" context="_1" location="f0:363" file="f0" line="363" static="1"/>
+ <Variable id="_629" name="cpp_sym_PF_PPPOX" type="_46c" init="24" context="_1" location="f0:310" file="f0" line="310" static="1"/>
+ <Struct id="_630" name="gsm_mncc_rtp" context="_1" mangled="12gsm_mncc_rtp" demangled="gsm_mncc_rtp" location="f11:352" file="f11" line="352" artificial="1" size="9344" align="64" members="_1279 _1280 _1281 _1282 _1283 _1284 _1285 _1286 _1287 _1288 " bases=""/>
+ <Variable id="_631" name="cpp_sym___have_pthread_attr_t" type="_46c" init="1" context="_1" location="f0:423" file="f0" line="423" static="1"/>
+ <Typedef id="_632" name="u_int64_t" type="_79" context="_1" location="f3:161" file="f3" line="161"/>
+ <Typedef id="_633" name="int32_t" type="_882" context="_1" location="f26:26" file="f26" line="26"/>
+ <Typedef id="_634" name="__int_least8_t" type="_275" context="_1" location="f9:52" file="f9" line="52"/>
+ <Typedef id="_635" name="register_t" type="_16" context="_1" location="f3:164" file="f3" line="164"/>
+ <Variable id="_636" name="cpp_sym_SOMAXCONN" type="_46c" init="4096" context="_1" location="f0:470" file="f0" line="470" static="1"/>
+ <Variable id="_637" name="cpp_sym_INT_LEAST16_MAX" type="_46c" init="32767" context="_1" location="f0:30" file="f0" line="30" static="1"/>
+ <Typedef id="_638" name="in_addr_t" type="_322" context="_1" location="f5:30" file="f5" line="30"/>
+ <Variable id="_639" name="cpp_sym___USE_KERNEL_IPV6_DEFS" type="_46c" init="0" context="_1" location="f0:68" file="f0" line="68" static="1"/>
+ <Variable id="_640" name="cpp_sym_INADDR_ALLHOSTS_GROUP" type="_32c" init="3758096385u" context="_1" location="f0:260" file="f0" line="260" static="1"/>
+ <Typedef id="_641" name="__kernel_uid_t" type="_32" context="_1" location="f8:36" file="f8" line="36"/>
+ <Variable id="_642" name="cpp_sym_MNCC_FACILITY_IND" type="_46c" init="276" context="_1" location="f0:16" file="f0" line="16" static="1"/>
+ <Typedef id="_643" name="u_int16_t" type="_172" context="_1" location="f3:159" file="f3" line="159"/>
+ <Variable id="_644" name="cpp_sym_IP_UNICAST_IF" type="_46c" init="50" context="_1" location="f0:26" file="f0" line="26" static="1"/>
+ <Variable id="_645" name="cpp_sym_SO_SELECT_ERR_QUEUE" type="_46c" init="45" context="_1" location="f0:463" file="f0" line="463" static="1"/>
+ <Variable id="_646" name="cpp_sym_IP_UNBLOCK_SOURCE" type="_46c" init="37" context="_1" location="f0:402" file="f0" line="402" static="1"/>
+ <Variable id="_647" name="cpp_sym_IPV6_PMTUDISC_PROBE" type="_46c" init="3" context="_1" location="f0:96" file="f0" line="96" static="1"/>
+ <Function id="_648" name="connect" returns="_46" context="_1" location="f2:126" file="f2" line="126" extern="1">
+ <Argument name="__fd" type="_46" location="f2:126" file="f2" line="126"/>
+ <Argument name="__addr" type="_1159" location="f2:126" file="f2" line="126"/>
+ <Argument name="__len" type="_516" location="f2:126" file="f2" line="126"/>
+ </Function>
+ <Variable id="_649" name="cpp_sym_MNCC_REJ_REQ" type="_46c" init="295" context="_1" location="f0:261" file="f0" line="261" static="1"/>
+ <Variable id="_650" name="cpp_sym_PF_RDS" type="_46c" init="21" context="_1" location="f0:426" file="f0" line="426" static="1"/>
+ <Typedef id="_651" name="mode_t" type="_208" context="_1" location="f3:69" file="f3" line="69"/>
+ <Variable id="_652" name="cpp_sym__SYS_SELECT_H" type="_46c" init="1" context="_1" location="f0:442" file="f0" line="442" static="1"/>
+ <Variable id="_653" name="cpp_sym_MNCC_F_KEYPAD" type="_46c" init="4096" context="_1" location="f0:375" file="f0" line="375" static="1"/>
+ <Variable id="_654" name="cpp_sym_IPV6_RTHDR_TYPE_0" type="_46c" init="0" context="_1" location="f0:441" file="f0" line="441" static="1"/>
+ <Variable id="_655" name="cpp_sym_IP_ROUTER_ALERT" type="_46c" init="5" context="_1" location="f0:242" file="f0" line="242" static="1"/>
+ <Variable id="_656" name="cpp_sym_INT32_MIN" type="_46c" init="-0x00000000080000000" context="_1" location="f0:84" file="f0" line="84" static="1"/>
+ <Variable id="_657" name="cpp_sym_MNCC_MODIFY_CNF" type="_46c" init="285" context="_1" location="f0:233" file="f0" line="233" static="1"/>
+ <Variable id="_658" name="cpp_sym_PF_NETBEUI" type="_46c" init="13" context="_1" location="f0:198" file="f0" line="198" static="1"/>
+ <Variable id="_659" name="cpp_sym_INT_FAST16_MAX" type="_16c" init="9223372036854775807l" context="_1" location="f0:14" file="f0" line="14" static="1"/>
+ <Typedef id="_660" name="__fd_mask" type="_16" context="_1" location="f20:49" file="f20" line="49"/>
+ <Typedef id="_661" name="uint_fast8_t" type="_154" context="_1" location="f4:71" file="f4" line="71"/>
+ <Typedef id="_662" name="__u_short" type="_171" context="_1" location="f9:32" file="f9" line="32"/>
+ <Variable id="_663" name="cpp_sym_SCM_TIMESTAMPING_PKTINFO" type="_46c" init="58" context="_1" location="f0:194" file="f0" line="194" static="1"/>
+ <Variable id="_664" name="cpp_sym_MNCC_NOTIFY_REQ" type="_46c" init="268" context="_1" location="f0:525" file="f0" line="525" static="1"/>
+ <Variable id="_665" name="cpp_sym_IP_ORIGDSTADDR" type="_46c" init="20" context="_1" location="f0:291" file="f0" line="291" static="1"/>
+ <Variable id="_666" name="cpp_sym_MNCC_SOCKET_HELLO" type="_46c" init="1024" context="_1" location="f0:458" file="f0" line="458" static="1"/>
+ <Typedef id="_667" name="__kernel_gid_t" type="_32" context="_1" location="f8:37" file="f8" line="37"/>
+ <Variable id="_668" name="cpp_sym_INT_LEAST16_MIN" type="_46c" init="-0x00000000000008000" context="_1" location="f0:401" file="f0" line="401" static="1"/>
+ <Variable id="_669" name="cpp_sym_IPV6_XFRM_POLICY" type="_46c" init="35" context="_1" location="f0:535" file="f0" line="535" static="1"/>
+ <Variable id="_670" name="cpp_sym_MNCC_SETUP_RSP" type="_46c" init="259" context="_1" location="f0:405" file="f0" line="405" static="1"/>
+ <Variable id="_671" name="cpp_sym_INTPTR_MIN" type="_16c" init="-0x08000000000000000l" context="_1" location="f0:75" file="f0" line="75" static="1"/>
+ <Enumeration id="_672" name="._16" context="_1" location="f19:200" file="f19" line="200" artificial="1" size="32" align="32">
+ <EnumValue name="MSG_OOB" init="1"/>
+ <EnumValue name="MSG_PEEK" init="2"/>
+ <EnumValue name="MSG_DONTROUTE" init="4"/>
+ <EnumValue name="MSG_TRYHARD" init="4"/>
+ <EnumValue name="MSG_CTRUNC" init="8"/>
+ <EnumValue name="MSG_PROXY" init="16"/>
+ <EnumValue name="MSG_TRUNC" init="32"/>
+ <EnumValue name="MSG_DONTWAIT" init="64"/>
+ <EnumValue name="MSG_EOR" init="128"/>
+ <EnumValue name="MSG_WAITALL" init="256"/>
+ <EnumValue name="MSG_FIN" init="512"/>
+ <EnumValue name="MSG_SYN" init="1024"/>
+ <EnumValue name="MSG_CONFIRM" init="2048"/>
+ <EnumValue name="MSG_RST" init="4096"/>
+ <EnumValue name="MSG_ERRQUEUE" init="8192"/>
+ <EnumValue name="MSG_NOSIGNAL" init="16384"/>
+ <EnumValue name="MSG_MORE" init="32768"/>
+ <EnumValue name="MSG_WAITFORONE" init="65536"/>
+ <EnumValue name="MSG_BATCH" init="262144"/>
+ <EnumValue name="MSG_ZEROCOPY" init="67108864"/>
+ <EnumValue name="MSG_FASTOPEN" init="536870912"/>
+ <EnumValue name="MSG_CMSG_CLOEXEC" init="1073741824"/>
+ </Enumeration>
+ <Variable id="_673" name="cpp_sym_IN_CLASSA_HOST" type="_32c" init="16777215u" context="_1" location="f0:28" file="f0" line="28" static="1"/>
+ <Variable id="_674" name="cpp_sym___SIZEOF_PTHREAD_CONDATTR_T" type="_46c" init="4" context="_1" location="f0:19" file="f0" line="19" static="1"/>
+ <Struct id="_675" name="msghdr" context="_1" mangled="6msghdr" demangled="msghdr" location="f19:258" file="f19" line="258" artificial="1" size="448" align="64" members="_1289 _1290 _1291 _1292 _1293 _1294 _1295 _1296 _1297 _1298 _1299 " bases=""/>
+ <Variable id="_676" name="cpp_sym__SS_PADSIZE" type="_18c" init="118ul" context="_1" location="f0:436" file="f0" line="436" static="1"/>
+ <Variable id="_677" name="cpp_sym___USE_MISC" type="_46c" init="1" context="_1" location="f0:456" file="f0" line="456" static="1"/>
+ <Typedef id="_678" name="uint_least16_t" type="_476" context="_1" location="f4:50" file="f4" line="50"/>
+ <Struct id="_679" name="in_addr" context="_1" mangled="7in_addr" demangled="in_addr" location="f5:32" file="f5" line="32" artificial="1" size="32" align="32" members="_1300 _1301 _1302 _1303 _1304 " bases=""/>
+ <Typedef id="_680" name="__pthread_list_t" type="_350" context="_1" location="f10:53" file="f10" line="53"/>
+ <Variable id="_681" name="cpp_sym_MNCC_F_CCCAP" type="_46c" init="2048" context="_1" location="f0:83" file="f0" line="83" static="1"/>
+ <Typedef id="_682" name="id_t" type="_80" context="_1" location="f3:103" file="f3" line="103"/>
+ <Variable id="_683" name="cpp_sym_SOL_NETBEUI" type="_46c" init="267" context="_1" location="f0:129" file="f0" line="129" static="1"/>
+ <Typedef id="_684" name="uint8_t" type="_594" context="_1" location="f24:24" file="f24" line="24"/>
+ <Variable id="_685" name="cpp_sym_SO_RCVTIMEO_OLD" type="_46c" init="20" context="_1" location="f0:397" file="f0" line="397" static="1"/>
+ <Variable id="_686" name="cpp_sym_MNCC_F_CALLING" type="_46c" init="4" context="_1" location="f0:270" file="f0" line="270" static="1"/>
+ <Typedef id="_687" name="__uint_least64_t" type="_79" context="_1" location="f9:59" file="f9" line="59"/>
+ <Variable id="_688" name="cpp_sym___BIG_ENDIAN" type="_46c" init="4321" context="_1" location="f0:386" file="f0" line="386" static="1"/>
+ <Variable id="_689" name="cpp_sym_MNCC_ALERT_IND" type="_46c" init="267" context="_1" location="f0:113" file="f0" line="113" static="1"/>
+ <Typedef id="_690" name="__int_least16_t" type="_117" context="_1" location="f9:54" file="f9" line="54"/>
+ <Variable id="_691" name="cpp_sym___iovec_defined" type="_46c" init="1" context="_1" location="f0:140" file="f0" line="140" static="1"/>
+ <Variable id="_692" name="cpp_sym_MNCC_CALL_PROC_REQ" type="_46c" init="264" context="_1" location="f0:273" file="f0" line="273" static="1"/>
+ <Typedef id="_693" name="intmax_t" type="_708" context="_1" location="f4:101" file="f4" line="101"/>
+ <Function id="_694" name="inet6_opt_append" returns="_46" throw="" context="_1" location="f5:578" file="f5" line="578" extern="1">
+ <Argument name="__extbuf" type="_222" location="f5:578" file="f5" line="578"/>
+ <Argument name="__extlen" type="_516" location="f5:578" file="f5" line="578"/>
+ <Argument name="__offset" type="_46" location="f5:578" file="f5" line="578"/>
+ <Argument name="__type" type="_684" location="f5:578" file="f5" line="578"/>
+ <Argument name="__len" type="_516" location="f5:578" file="f5" line="578"/>
+ <Argument name="__align" type="_684" location="f5:578" file="f5" line="578"/>
+ <Argument name="__databufp" type="_1276" location="f5:578" file="f5" line="578"/>
+ </Function>
+ <Variable id="_695" name="cpp_sym_SO_RXQ_OVFL" type="_46c" init="40" context="_1" location="f0:471" file="f0" line="471" static="1"/>
+ <Variable id="_696" name="cpp_sym_SO_INCOMING_NAPI_ID" type="_46c" init="56" context="_1" location="f0:69" file="f0" line="69" static="1"/>
+ <Variable id="_697" name="cpp_sym_MNCC_FRAME_RECV" type="_46c" init="513" context="_1" location="f0:479" file="f0" line="479" static="1"/>
+ <Variable id="_698" name="cpp_sym_SO_BINDTOIFINDEX" type="_46c" init="62" context="_1" location="f0:265" file="f0" line="265" static="1"/>
+ <Typedef id="_699" name="pthread_key_t" type="_32" context="_1" location="f7:49" file="f7" line="49"/>
+ <Function id="_700" name="__uint32_identity" returns="_413" static="1" context="_1" location="f23:39" file="f23" line="39" endline="41" inline="1">
+ <Argument name="__x" type="_413" location="f23:39" file="f23" line="39"/>
+ </Function>
+ <Typedef id="_701" name="__timer_t" type="_222" context="_1" location="f9:172" file="f9" line="172"/>
+ <Typedef id="_702" name="__off64_t" type="_16" context="_1" location="f9:153" file="f9" line="153"/>
+ <Typedef id="_703" name="__kernel_key_t" type="_46" context="_1" location="f17:33" file="f17" line="33"/>
+ <Variable id="_704" name="cpp_sym_MCAST_JOIN_GROUP" type="_46c" init="42" context="_1" location="f0:80" file="f0" line="80" static="1"/>
+ <Function id="_705" name="__uint16_identity" returns="_172" static="1" context="_1" location="f23:33" file="f23" line="33" endline="35" inline="1">
+ <Argument name="__x" type="_172" location="f23:33" file="f23" line="33"/>
+ </Function>
+ <Variable id="_706" name="cpp_sym_IP_DEFAULT_MULTICAST_TTL" type="_46c" init="1" context="_1" location="f0:467" file="f0" line="467" static="1"/>
+ <Variable id="_707" name="cpp_sym_PF_BRIDGE" type="_46c" init="7" context="_1" location="f0:498" file="f0" line="498" static="1"/>
+ <Typedef id="_708" name="__intmax_t" type="_16" context="_1" location="f9:72" file="f9" line="72"/>
+ <Variable id="_709" name="cpp_sym_IP_PASSSEC" type="_46c" init="18" context="_1" location="f0:15" file="f0" line="15" static="1"/>
+ <Enumeration id="_710" name="._22" context="_1" location="f5:103" file="f5" line="103" artificial="1" size="32" align="32">
+ <EnumValue name="IPPROTO_HOPOPTS" init="0"/>
+ <EnumValue name="IPPROTO_ROUTING" init="43"/>
+ <EnumValue name="IPPROTO_FRAGMENT" init="44"/>
+ <EnumValue name="IPPROTO_ICMPV6" init="58"/>
+ <EnumValue name="IPPROTO_NONE" init="59"/>
+ <EnumValue name="IPPROTO_DSTOPTS" init="60"/>
+ <EnumValue name="IPPROTO_MH" init="135"/>
+ </Enumeration>
+ <Typedef id="_711" name="u_quad_t" type="_798" context="_1" location="f3:38" file="f3" line="38"/>
+ <Variable id="_712" name="cpp_sym_MNCC_PROGRESS_REQ" type="_46c" init="265" context="_1" location="f0:136" file="f0" line="136" static="1"/>
+ <Typedef id="_713" name="__kernel_suseconds_t" type="_180" context="_1" location="f8:41" file="f8" line="41"/>
+ <Variable id="_714" name="cpp_sym_GSM_TCHH_FRAME" type="_46c" init="770" context="_1" location="f0:282" file="f0" line="282" static="1"/>
+ <Typedef id="_715" name="int_least64_t" type="_34" context="_1" location="f4:46" file="f4" line="46"/>
+ <Variable id="_716" name="cpp_sym_PF_RXRPC" type="_46c" init="33" context="_1" location="f0:315" file="f0" line="315" static="1"/>
+ <Variable id="_717" name="cpp_sym_PF_QIPCRTR" type="_46c" init="42" context="_1" location="f0:252" file="f0" line="252" static="1"/>
+ <Typedef id="_718" name="int8_t" type="_275" context="_1" location="f26:24" file="f26" line="24"/>
+ <Variable id="_719" name="cpp_sym_PF_LOCAL" type="_46c" init="1" context="_1" location="f0:257" file="f0" line="257" static="1"/>
+ <Variable id="_720" name="cpp_sym__ISOC11_SOURCE" type="_46c" init="1" context="_1" location="f0:483" file="f0" line="483" static="1"/>
+ <Variable id="_721" name="cpp_sym_PF_KCM" type="_46c" init="41" context="_1" location="f0:362" file="f0" line="362" static="1"/>
+ <Typedef id="_722" name="__kernel_ptrdiff_t" type="_180" context="_1" location="f8:74" file="f8" line="74"/>
+ <Variable id="_723" name="cpp_sym_MNCC_MODIFY_REJ" type="_46c" init="286" context="_1" location="f0:251" file="f0" line="251" static="1"/>
+ <Enumeration id="_724" name="gsm48_bcap_interm_rate" context="_1" location="f11:93" file="f11" line="93" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_IR_8k" init="2"/>
<EnumValue name="GSM48_BCAP_IR_16k" init="3"/>
</Enumeration>
- <Variable id="_304" name="cpp_sym_MNCC_MODIFY_REQ" type="_93c" init="282" context="_1" location="f1:124" file="f1" line="124" static="1"/>
- <Function id="_305" name="__builtin_floor" returns="_368" context="_1" mangled="floor" location="f0:51" file="f0" line="51" extern="1" attributes="nothrow const">
- <Argument type="_368" location="f0:51" file="f0" line="51"/>
- </Function>
- <Function id="_306" name="__builtin_ldexp" returns="_368" context="_1" mangled="ldexp" location="f0:59" file="f0" line="59" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:59" file="f0" line="59"/>
- <Argument type="_93" location="f0:59" file="f0" line="59"/>
- </Function>
- <Variable id="_307" name="cpp_sym__BITS_WCHAR_H" type="_93c" init="1" context="_1" location="f1:158" file="f1" line="158" static="1"/>
- <Variable id="_308" name="cpp_sym_MNCC_NOTIFY_IND" type="_93c" init="269" context="_1" location="f1:56" file="f1" line="56" static="1"/>
- <Variable id="_309" name="cpp_sym__XOPEN_SOURCE" type="_93c" init="700" context="_1" location="f1:147" file="f1" line="147" static="1"/>
- <Variable id="_310" name="cpp_sym_MNCC_F_EMERGENCY" type="_93c" init="256" context="_1" location="f1:144" file="f1" line="144" static="1"/>
- <Variable id="_311" name="cpp_sym___WORDSIZE" type="_93c" init="64" context="_1" location="f1:139" file="f1" line="139" static="1"/>
- <Function id="_312" name="__builtin_ccosf" returns="_375" context="_1" mangled="ccosf" location="f0:102" file="f0" line="102" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:102" file="f0" line="102"/>
- </Function>
- <Function id="_313" name="__builtin_ccosh" returns="_384" context="_1" mangled="ccosh" location="f0:106" file="f0" line="106" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:106" file="f0" line="106"/>
- </Function>
- <Function id="_314" name="__builtin_ccosl" returns="_376" context="_1" mangled="ccosl" location="f0:104" file="f0" line="104" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:104" file="f0" line="104"/>
- </Function>
- <Function id="_315" name="__builtin_va_arg_pack_len" returns="_93" context="_1" location="f0:148" file="f0" line="148" extern="1">
- <Ellipsis/>
- </Function>
- <Function id="_316" name="__builtin_islessgreater" returns="_373" context="_1" location="f0:143" file="f0" line="143" extern="1" attributes="nothrow const">
- <Ellipsis/>
- </Function>
- <Variable id="_317" name="cpp_sym_GSM_MAX_SSVERSION" type="_93c" init="128" context="_1" location="f1:119" file="f1" line="119" static="1"/>
- <Enumeration id="_318" name="gsm48_bcap_itcap" context="_1" location="f3:10" file="f3" line="10" artificial="1" size="32" align="32">
+ <Variable id="_725" name="cpp_sym_MNCC_MODIFY_REQ" type="_46c" init="282" context="_1" location="f0:243" file="f0" line="243" static="1"/>
+ <Typedef id="_726" name="__quad_t" type="_16" context="_1" location="f9:63" file="f9" line="63"/>
+ <Typedef id="_727" name="__u_long" type="_18" context="_1" location="f9:34" file="f9" line="34"/>
+ <Variable id="_728" name="cpp_sym_SO_SNDBUFFORCE" type="_46c" init="32" context="_1" location="f0:447" file="f0" line="447" static="1"/>
+ <Variable id="_729" name="cpp_sym_PF_KEY" type="_46c" init="15" context="_1" location="f0:367" file="f0" line="367" static="1"/>
+ <Variable id="_730" name="cpp_sym_INT16_WIDTH" type="_46c" init="16" context="_1" location="f0:39" file="f0" line="39" static="1"/>
+ <Typedef id="_731" name="nlink_t" type="_806" context="_1" location="f3:74" file="f3" line="74"/>
+ <Variable id="_732" name="cpp_sym__BITS_WCHAR_H" type="_46c" init="1" context="_1" location="f0:177" file="f0" line="177" static="1"/>
+ <Variable id="_733" name="cpp_sym_MNCC_NOTIFY_IND" type="_46c" init="269" context="_1" location="f0:298" file="f0" line="298" static="1"/>
+ <Typedef id="_734" name="pthread_once_t" type="_46" context="_1" location="f7:53" file="f7" line="53"/>
+ <Typedef id="_735" name="__uintmax_t" type="_18" context="_1" location="f9:73" file="f9" line="73"/>
+ <Variable id="_736" name="cpp_sym__XOPEN_SOURCE" type="_46c" init="700" context="_1" location="f0:108" file="f0" line="108" static="1"/>
+ <Variable id="_737" name="cpp_sym_SO_SNDBUF" type="_46c" init="7" context="_1" location="f0:319" file="f0" line="319" static="1"/>
+ <Variable id="_738" name="cpp_sym_IPV6_CHECKSUM" type="_46c" init="7" context="_1" location="f0:378" file="f0" line="378" static="1"/>
+ <Variable id="_739" name="cpp_sym_IP_RECVOPTS" type="_46c" init="6" context="_1" location="f0:159" file="f0" line="159" static="1"/>
+ <Typedef id="_740" name="__kernel_old_uid_t" type="_171" context="_1" location="f27:11" file="f27" line="11"/>
+ <Struct id="_741" name="__pthread_rwlock_arch_t" context="_1" mangled="23__pthread_rwlock_arch_t" demangled="__pthread_rwlock_arch_t" location="f30:24" file="f30" line="24" artificial="1" size="448" align="64" members="_1305 _1306 _1307 _1308 _1309 _1310 _1311 _1312 _1313 _1314 _1315 _1316 _1317 _1318 _1319 _1320 " bases=""/>
+ <Variable id="_742" name="cpp_sym_PF_IUCV" type="_46c" init="32" context="_1" location="f0:92" file="f0" line="92" static="1"/>
+ <Variable id="_743" name="cpp_sym_IPV6_IPSEC_POLICY" type="_46c" init="34" context="_1" location="f0:180" file="f0" line="180" static="1"/>
+ <Variable id="_744" name="cpp_sym_PF_CAN" type="_46c" init="29" context="_1" location="f0:339" file="f0" line="339" static="1"/>
+ <Variable id="_745" name="cpp_sym___WORDSIZE" type="_46c" init="64" context="_1" location="f0:103" file="f0" line="103" static="1"/>
+ <Variable id="_746" name="cpp_sym___osockaddr_defined" type="_46c" init="1" context="_1" location="f0:67" file="f0" line="67" static="1"/>
+ <Variable id="_747" name="cpp_sym_IN_CLASSB_HOST" type="_32c" init="65535u" context="_1" location="f0:131" file="f0" line="131" static="1"/>
+ <Variable id="_748" name="cpp_sym_PF_ECONET" type="_46c" init="19" context="_1" location="f0:420" file="f0" line="420" static="1"/>
+ <Variable id="_749" name="cpp_sym_IPV6_TCLASS" type="_46c" init="67" context="_1" location="f0:262" file="f0" line="262" static="1"/>
+ <Variable id="_750" name="cpp_sym_IP_PMTUDISC_OMIT" type="_46c" init="5" context="_1" location="f0:369" file="f0" line="369" static="1"/>
+ <Typedef id="_751" name="fd_mask" type="_660" context="_1" location="f20:77" file="f20" line="77"/>
+ <Variable id="_752" name="cpp_sym_GSM_MAX_SSVERSION" type="_46c" init="128" context="_1" location="f0:509" file="f0" line="509" static="1"/>
+ <Enumeration id="_753" name="gsm48_bcap_itcap" context="_1" location="f11:27" file="f11" line="27" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_ITCAP_SPEECH" init="0"/>
<EnumValue name="GSM48_BCAP_ITCAP_UNR_DIG_INF" init="1"/>
<EnumValue name="GSM48_BCAP_ITCAP_3k1_AUDIO" init="2"/>
@@ -640,409 +1060,1434 @@
<EnumValue name="GSM48_BCAP_ITCAP_OTHER" init="5"/>
<EnumValue name="GSM48_BCAP_ITCAP_RESERVED" init="7"/>
</Enumeration>
- <Variable id="_319" name="cpp_sym_INT64_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:64" file="f1" line="64" static="1"/>
- <Function id="_320" name="__builtin_ctanhf" returns="_375" context="_1" mangled="ctanhf" location="f0:126" file="f0" line="126" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:126" file="f0" line="126"/>
- </Function>
- <Function id="_321" name="__builtin_ctanhl" returns="_376" context="_1" mangled="ctanhl" location="f0:128" file="f0" line="128" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:128" file="f0" line="128"/>
- </Function>
- <Variable id="_322" name="cpp_sym__LARGEFILE64_SOURCE" type="_93c" init="1" context="_1" location="f1:145" file="f1" line="145" static="1"/>
- <Variable id="_323" name="cpp_sym_MNCC_RTP_CONNECT" type="_93c" init="517" context="_1" location="f1:55" file="f1" line="55" static="1"/>
- <Variable id="_324" name="cpp_sym___USE_ATFILE" type="_93c" init="1" context="_1" location="f1:29" file="f1" line="29" static="1"/>
- <Function id="_325" name="__builtin_ceilf" returns="_371" context="_1" mangled="ceilf" location="f0:37" file="f0" line="37" extern="1" attributes="nothrow const">
- <Argument type="_371" location="f0:37" file="f0" line="37"/>
- </Function>
- <Function id="_326" name="__builtin_ceill" returns="_372" context="_1" mangled="ceill" location="f0:38" file="f0" line="38" extern="1" attributes="nothrow const">
- <Argument type="_372" location="f0:38" file="f0" line="38"/>
- </Function>
- <Variable id="_327" name="cpp_sym_INT64_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:40" file="f1" line="40" static="1"/>
- <Variable id="_328" name="cpp_sym_UINT_FAST16_MAX" type="_9c" init="-1ul" context="_1" location="f1:137" file="f1" line="137" static="1"/>
- <Function id="_329" name="__builtin_csinf" returns="_375" context="_1" mangled="csinf" location="f0:114" file="f0" line="114" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:114" file="f0" line="114"/>
- </Function>
- <Function id="_330" name="__builtin_csinh" returns="_384" context="_1" mangled="csinh" location="f0:118" file="f0" line="118" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:118" file="f0" line="118"/>
- </Function>
- <Function id="_331" name="__builtin_csinl" returns="_376" context="_1" mangled="csinl" location="f0:116" file="f0" line="116" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:116" file="f0" line="116"/>
- </Function>
- <Struct id="_332" name="gsm_mncc_hello" context="_1" mangled="14gsm_mncc_hello" demangled="gsm_mncc_hello" location="f3:320" file="f3" line="320" artificial="1" size="256" align="32" members="_494 _495 _496 _497 _498 _499 _500 _501 _502 _503 _504 _505 " bases=""/>
- <Function id="_333" name="__builtin_acos" returns="_368" context="_1" mangled="acos" location="f0:24" file="f0" line="24" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:24" file="f0" line="24"/>
- </Function>
- <Function id="_334" name="__builtin_ctzll" returns="_93" context="_1" location="f0:98" file="f0" line="98" extern="1" attributes="nothrow const">
- <Argument type="_374" location="f0:98" file="f0" line="98"/>
- </Function>
- <Typedef id="_335" name="uint_fast32_t" type="_9" context="_1" location="f2:106" file="f2" line="106"/>
- <Function id="_336" name="__builtin_cargf" returns="_371" context="_1" mangled="cargf" location="f0:93" file="f0" line="93" extern="1" attributes="nothrow pure no vops">
- <Argument type="_375" location="f0:93" file="f0" line="93"/>
- </Function>
- <Function id="_337" name="__builtin_cargl" returns="_372" context="_1" mangled="cargl" location="f0:95" file="f0" line="95" extern="1" attributes="nothrow pure no vops">
- <Argument type="_376" location="f0:95" file="f0" line="95"/>
- </Function>
- <Enumeration id="_338" name="gsm48_bcap_parity" context="_1" location="f3:67" file="f3" line="67" artificial="1" size="32" align="32">
+ <Variable id="_754" name="cpp_sym_INADDR_LOOPBACK" type="_32c" init="2130706433u" context="_1" location="f0:450" file="f0" line="450" static="1"/>
+ <Variable id="_755" name="cpp_sym_SO_DOMAIN" type="_46c" init="39" context="_1" location="f0:539" file="f0" line="539" static="1"/>
+ <Variable id="_756" name="cpp_sym_INT64_MAX" type="_16c" init="9223372036854775807l" context="_1" location="f0:428" file="f0" line="428" static="1"/>
+ <Variable id="_757" name="cpp_sym_PF_VSOCK" type="_46c" init="40" context="_1" location="f0:97" file="f0" line="97" static="1"/>
+ <Struct id="_758" name="sockaddr_in6" context="_1" mangled="12sockaddr_in6" demangled="sockaddr_in6" location="f5:258" file="f5" line="258" artificial="1" size="224" align="32" members="_1321 _1322 _1323 _1324 _1325 _1326 _1327 _1328 _1329 " bases=""/>
+ <Variable id="_759" name="cpp_sym_SO_SECURITY_ENCRYPTION_NETWORK" type="_46c" init="24" context="_1" location="f0:396" file="f0" line="396" static="1"/>
+ <Variable id="_760" name="cpp_sym_SO_PEERSEC" type="_46c" init="31" context="_1" location="f0:443" file="f0" line="443" static="1"/>
+ <Variable id="_761" name="cpp_sym_IPV6_RECVHOPOPTS" type="_46c" init="53" context="_1" location="f0:175" file="f0" line="175" static="1"/>
+ <Union id="_762" name="pthread_mutex_t" context="_1" mangled="15pthread_mutex_t" demangled="pthread_mutex_t" location="f7:72" file="f7" line="72" size="320" align="64" members="_1330 _1331 _1332 _1333 _1334 _1335 _1336 " bases=""/>
+ <Union id="_763" name="pthread_rwlock_t" context="_1" mangled="16pthread_rwlock_t" demangled="pthread_rwlock_t" location="f7:91" file="f7" line="91" size="448" align="64" members="_1337 _1338 _1339 _1340 _1341 _1342 _1343 " bases=""/>
+ <Variable id="_764" name="cpp_sym_MCAST_LEAVE_GROUP" type="_46c" init="45" context="_1" location="f0:289" file="f0" line="289" static="1"/>
+ <Enumeration id="_765" name="._17" context="_1" location="f19:332" file="f19" line="332" artificial="1" size="32" align="32">
+ <EnumValue name="SCM_RIGHTS" init="1"/>
+ <EnumValue name="SCM_CREDENTIALS" init="2"/>
+ </Enumeration>
+ <Variable id="_766" name="cpp_sym___INO_T_MATCHES_INO64_T" type="_46c" init="1" context="_1" location="f0:390" file="f0" line="390" static="1"/>
+ <Enumeration id="_767" name="._20" context="_1" location="f2:41" file="f2" line="41" artificial="1" size="32" align="32">
+ <EnumValue name="SHUT_RD" init="0"/>
+ <EnumValue name="SHUT_WR" init="1"/>
+ <EnumValue name="SHUT_RDWR" init="2"/>
+ </Enumeration>
+ <Enumeration id="_768" name="._21" context="_1" location="f5:40" file="f5" line="40" artificial="1" size="32" align="32">
+ <EnumValue name="IPPROTO_IP" init="0"/>
+ <EnumValue name="IPPROTO_ICMP" init="1"/>
+ <EnumValue name="IPPROTO_IGMP" init="2"/>
+ <EnumValue name="IPPROTO_IPIP" init="4"/>
+ <EnumValue name="IPPROTO_TCP" init="6"/>
+ <EnumValue name="IPPROTO_EGP" init="8"/>
+ <EnumValue name="IPPROTO_PUP" init="12"/>
+ <EnumValue name="IPPROTO_UDP" init="17"/>
+ <EnumValue name="IPPROTO_IDP" init="22"/>
+ <EnumValue name="IPPROTO_TP" init="29"/>
+ <EnumValue name="IPPROTO_DCCP" init="33"/>
+ <EnumValue name="IPPROTO_IPV6" init="41"/>
+ <EnumValue name="IPPROTO_RSVP" init="46"/>
+ <EnumValue name="IPPROTO_GRE" init="47"/>
+ <EnumValue name="IPPROTO_ESP" init="50"/>
+ <EnumValue name="IPPROTO_AH" init="51"/>
+ <EnumValue name="IPPROTO_MTP" init="92"/>
+ <EnumValue name="IPPROTO_BEETPH" init="94"/>
+ <EnumValue name="IPPROTO_ENCAP" init="98"/>
+ <EnumValue name="IPPROTO_PIM" init="103"/>
+ <EnumValue name="IPPROTO_COMP" init="108"/>
+ <EnumValue name="IPPROTO_SCTP" init="132"/>
+ <EnumValue name="IPPROTO_UDPLITE" init="136"/>
+ <EnumValue name="IPPROTO_MPLS" init="137"/>
+ <EnumValue name="IPPROTO_ETHERNET" init="143"/>
+ <EnumValue name="IPPROTO_RAW" init="255"/>
+ <EnumValue name="IPPROTO_MPTCP" init="262"/>
+ <EnumValue name="IPPROTO_MAX" init="263"/>
+ </Enumeration>
+ <Variable id="_769" name="cpp_sym_IN_LOOPBACKNET" type="_46c" init="127" context="_1" location="f0:491" file="f0" line="491" static="1"/>
+ <Enumeration id="_770" name="._23" context="_1" location="f5:126" file="f5" line="126" artificial="1" size="32" align="32">
+ <EnumValue name="IPPORT_ECHO" init="7"/>
+ <EnumValue name="IPPORT_DISCARD" init="9"/>
+ <EnumValue name="IPPORT_SYSTAT" init="11"/>
+ <EnumValue name="IPPORT_DAYTIME" init="13"/>
+ <EnumValue name="IPPORT_NETSTAT" init="15"/>
+ <EnumValue name="IPPORT_FTP" init="21"/>
+ <EnumValue name="IPPORT_TELNET" init="23"/>
+ <EnumValue name="IPPORT_SMTP" init="25"/>
+ <EnumValue name="IPPORT_TIMESERVER" init="37"/>
+ <EnumValue name="IPPORT_NAMESERVER" init="42"/>
+ <EnumValue name="IPPORT_WHOIS" init="43"/>
+ <EnumValue name="IPPORT_MTP" init="57"/>
+ <EnumValue name="IPPORT_TFTP" init="69"/>
+ <EnumValue name="IPPORT_RJE" init="77"/>
+ <EnumValue name="IPPORT_FINGER" init="79"/>
+ <EnumValue name="IPPORT_TTYLINK" init="87"/>
+ <EnumValue name="IPPORT_SUPDUP" init="95"/>
+ <EnumValue name="IPPORT_EXECSERVER" init="512"/>
+ <EnumValue name="IPPORT_LOGINSERVER" init="513"/>
+ <EnumValue name="IPPORT_CMDSERVER" init="514"/>
+ <EnumValue name="IPPORT_EFSSERVER" init="520"/>
+ <EnumValue name="IPPORT_BIFFUDP" init="512"/>
+ <EnumValue name="IPPORT_WHOSERVER" init="513"/>
+ <EnumValue name="IPPORT_ROUTESERVER" init="520"/>
+ <EnumValue name="IPPORT_RESERVED" init="1024"/>
+ <EnumValue name="IPPORT_USERRESERVED" init="5000"/>
+ </Enumeration>
+ <Typedef id="_771" name="__kernel_old_gid_t" type="_171" context="_1" location="f27:12" file="f27" line="12"/>
+ <Enumeration id="_772" name="._26" context="_1" location="f11:204" file="f11" line="204" artificial="1" size="32" align="32">
+ <EnumValue name="GSM_MNCC_BCAP_SPEECH" init="0"/>
+ <EnumValue name="GSM_MNCC_BCAP_UNR_DIG" init="1"/>
+ <EnumValue name="GSM_MNCC_BCAP_AUDIO" init="2"/>
+ <EnumValue name="GSM_MNCC_BCAP_FAX_G3" init="3"/>
+ <EnumValue name="GSM_MNCC_BCAP_OTHER_ITC" init="5"/>
+ <EnumValue name="GSM_MNCC_BCAP_RESERVED" init="7"/>
+ </Enumeration>
+ <Variable id="_773" name="cpp_sym_IPV6_PMTUDISC_WANT" type="_46c" init="1" context="_1" location="f0:172" file="f0" line="172" static="1"/>
+ <Variable id="_774" name="cpp_sym_SO_ATTACH_REUSEPORT_CBPF" type="_46c" init="51" context="_1" location="f0:327" file="f0" line="327" static="1"/>
+ <Variable id="_775" name="cpp_sym___LITTLE_ENDIAN" type="_46c" init="1234" context="_1" location="f0:422" file="f0" line="422" static="1"/>
+ <Variable id="_776" name="cpp_sym_SOL_BLUETOOTH" type="_46c" init="274" context="_1" location="f0:445" file="f0" line="445" static="1"/>
+ <Variable id="_777" name="cpp_sym_MCAST_BLOCK_SOURCE" type="_46c" init="43" context="_1" location="f0:444" file="f0" line="444" static="1"/>
+ <Variable id="_778" name="cpp_sym_MNCC_BRIDGE" type="_46c" init="512" context="_1" location="f0:171" file="f0" line="171" static="1"/>
+ <Variable id="_779" name="cpp_sym_SO_MAX_PACING_RATE" type="_46c" init="47" context="_1" location="f0:434" file="f0" line="434" static="1"/>
+ <Variable id="_780" name="cpp_sym_MNCC_MODIFY_RSP" type="_46c" init="284" context="_1" location="f0:404" file="f0" line="404" static="1"/>
+ <Function id="_781" name="inet6_option_space" returns="_46" throw="" context="_1" location="f5:557" file="f5" line="557" extern="1" attributes="__deprecated__">
+ <Argument name="__nbytes" type="_46" location="f5:557" file="f5" line="557"/>
+ </Function>
+ <Variable id="_782" name="cpp_sym_IPV6_DSTOPTS" type="_46c" init="59" context="_1" location="f0:17" file="f0" line="17" static="1"/>
+ <Typedef id="_783" name="ino_t" type="_296" context="_1" location="f3:47" file="f3" line="47"/>
+ <Variable id="_784" name="cpp_sym__BITS_PTHREADTYPES_ARCH_H" type="_46c" init="1" context="_1" location="f0:505" file="f0" line="505" static="1"/>
+ <Variable id="_785" name="cpp_sym_MNCC_RTP_CONNECT" type="_46c" init="517" context="_1" location="f0:44" file="f0" line="44" static="1"/>
+ <Variable id="_786" name="cpp_sym__THREAD_MUTEX_INTERNAL_H" type="_46c" init="1" context="_1" location="f0:502" file="f0" line="502" static="1"/>
+ <Variable id="_787" name="cpp_sym___USE_ATFILE" type="_46c" init="1" context="_1" location="f0:155" file="f0" line="155" static="1"/>
+ <Variable id="_788" name="cpp_sym_SO_PASSSEC" type="_46c" init="34" context="_1" location="f0:544" file="f0" line="544" static="1"/>
+ <Variable id="_789" name="cpp_sym__SIGSET_NWORDS" type="_18c" init="16ul" context="_1" location="f0:536" file="f0" line="536" static="1"/>
+ <Variable id="_790" name="cpp_sym_PF_IB" type="_46c" init="27" context="_1" location="f0:271" file="f0" line="271" static="1"/>
+ <Variable id="_791" name="cpp_sym___GLIBC_USE_IEC_60559_TYPES_EXT" type="_46c" init="1" context="_1" location="f0:318" file="f0" line="318" static="1"/>
+ <Typedef id="_792" name="off64_t" type="_702" context="_1" location="f3:92" file="f3" line="92"/>
+ <Typedef id="_793" name="key_t" type="_620" context="_1" location="f3:121" file="f3" line="121"/>
+ <Variable id="_794" name="cpp_sym_SO_TIMESTAMPING_OLD" type="_46c" init="37" context="_1" location="f0:377" file="f0" line="377" static="1"/>
+ <Variable id="_795" name="cpp_sym___SIZEOF_PTHREAD_RWLOCK_T" type="_46c" init="56" context="_1" location="f0:227" file="f0" line="227" static="1"/>
+ <Variable id="_796" name="cpp_sym_UINT_FAST16_MAX" type="_18c" init="-1ul" context="_1" location="f0:102" file="f0" line="102" static="1"/>
+ <Variable id="_797" name="cpp_sym_INADDR_MAX_LOCAL_GROUP" type="_32c" init="3758096639u" context="_1" location="f0:493" file="f0" line="493" static="1"/>
+ <Typedef id="_798" name="__u_quad_t" type="_18" context="_1" location="f9:64" file="f9" line="64"/>
+ <Struct id="_799" name="gsm_mncc_hello" context="_1" mangled="14gsm_mncc_hello" demangled="gsm_mncc_hello" location="f11:337" file="f11" line="337" artificial="1" size="256" align="32" members="_1344 _1345 _1346 _1347 _1348 _1349 _1350 _1351 _1352 _1353 _1354 _1355 " bases=""/>
+ <Function id="_800" name="inet6_opt_find" returns="_46" throw="" context="_1" location="f5:588" file="f5" line="588" extern="1">
+ <Argument name="__extbuf" type="_222" location="f5:588" file="f5" line="588"/>
+ <Argument name="__extlen" type="_516" location="f5:588" file="f5" line="588"/>
+ <Argument name="__offset" type="_46" location="f5:588" file="f5" line="588"/>
+ <Argument name="__type" type="_684" location="f5:588" file="f5" line="588"/>
+ <Argument name="__lenp" type="_1041" location="f5:588" file="f5" line="588"/>
+ <Argument name="__databufp" type="_1276" location="f5:588" file="f5" line="588"/>
+ </Function>
+ <Typedef id="_801" name="__rlim_t" type="_18" context="_1" location="f9:157" file="f9" line="157"/>
+ <Typedef id="_802" name="__kernel_old_time_t" type="_180" context="_1" location="f8:89" file="f8" line="89"/>
+ <Typedef id="_803" name="uint_fast32_t" type="_18" context="_1" location="f4:74" file="f4" line="74"/>
+ <Enumeration id="_804" name="__socket_type" context="_1" location="f31:24" file="f31" line="24" artificial="1" size="32" align="32">
+ <EnumValue name="SOCK_STREAM" init="1"/>
+ <EnumValue name="SOCK_DGRAM" init="2"/>
+ <EnumValue name="SOCK_RAW" init="3"/>
+ <EnumValue name="SOCK_RDM" init="4"/>
+ <EnumValue name="SOCK_SEQPACKET" init="5"/>
+ <EnumValue name="SOCK_DCCP" init="6"/>
+ <EnumValue name="SOCK_PACKET" init="10"/>
+ <EnumValue name="SOCK_CLOEXEC" init="524288"/>
+ <EnumValue name="SOCK_NONBLOCK" init="2048"/>
+ </Enumeration>
+ <Variable id="_805" name="cpp_sym_SOL_RXRPC" type="_46c" init="272" context="_1" location="f0:106" file="f0" line="106" static="1"/>
+ <Typedef id="_806" name="__nlink_t" type="_18" context="_1" location="f9:151" file="f9" line="151"/>
+ <Variable id="_807" name="cpp_sym_IPV6_MULTICAST_ALL" type="_46c" init="29" context="_1" location="f0:521" file="f0" line="521" static="1"/>
+ <Enumeration id="_808" name="gsm48_bcap_parity" context="_1" location="f11:84" file="f11" line="84" artificial="1" size="32" align="32">
<EnumValue name="GSM48_BCAP_PAR_ODD" init="0"/>
<EnumValue name="GSM48_BCAP_PAR_EVEN" init="2"/>
<EnumValue name="GSM48_BCAP_PAR_NONE" init="3"/>
<EnumValue name="GSM48_BCAP_PAR_ZERO" init="4"/>
<EnumValue name="GSM48_BCAP_PAR_ONE" init="5"/>
</Enumeration>
- <Variable id="_339" name="cpp_sym_MNCC_REL_REQ" type="_93c" init="272" context="_1" location="f1:12" file="f1" line="12" static="1"/>
- <Variable id="_340" name="cpp_sym_MNCC_F_REDIRECTING" type="_93c" init="8" context="_1" location="f1:76" file="f1" line="76" static="1"/>
- <Variable id="_341" name="cpp_sym_GSM_TCH_FRAME_AMR" type="_93c" init="771" context="_1" location="f1:18" file="f1" line="18" static="1"/>
- <Function id="_342" name="__builtin_cosf" returns="_371" context="_1" mangled="cosf" location="f0:40" file="f0" line="40" extern="1" attributes="nothrow pure no vops">
- <Argument type="_371" location="f0:40" file="f0" line="40"/>
- </Function>
- <Function id="_343" name="__builtin_cosh" returns="_368" context="_1" mangled="cosh" location="f0:41" file="f0" line="41" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:41" file="f0" line="41"/>
- </Function>
- <Function id="_344" name="__builtin_cosl" returns="_372" context="_1" mangled="cosl" location="f0:44" file="f0" line="44" extern="1" attributes="nothrow pure no vops">
- <Argument type="_372" location="f0:44" file="f0" line="44"/>
- </Function>
- <Variable id="_345" name="cpp_sym_INT8_MAX" type="_93c" init="127" context="_1" location="f1:86" file="f1" line="86" static="1"/>
- <Variable id="_346" name="cpp_sym__DEFAULT_SOURCE" type="_93c" init="1" context="_1" location="f1:94" file="f1" line="94" static="1"/>
- <Variable id="_347" name="cpp_sym_INT_FAST8_MIN" type="_93c" init="-0x00000000000000080" context="_1" location="f1:142" file="f1" line="142" static="1"/>
- <Variable id="_348" name="cpp_sym___USE_FORTIFY_LEVEL" type="_93c" init="2" context="_1" location="f1:104" file="f1" line="104" static="1"/>
- <Function id="_349" name="__builtin_isgreater" returns="_373" context="_1" location="f0:137" file="f0" line="137" extern="1" attributes="nothrow const">
- <Ellipsis/>
- </Function>
- <Variable id="_350" name="cpp_sym_INT_LEAST8_MAX" type="_93c" init="127" context="_1" location="f1:2" file="f1" line="2" static="1"/>
- <Variable id="_351" name="cpp_sym_MNCC_CALL_CONF_IND" type="_93c" init="263" context="_1" location="f1:81" file="f1" line="81" static="1"/>
- <Struct id="_352" name="gsm_mncc_number" context="_1" mangled="15gsm_mncc_number" demangled="gsm_mncc_number" location="f3:143" file="f3" line="143" artificial="1" size="416" align="32" members="_506 _507 _508 _509 _510 _511 _512 _513 _514 " bases=""/>
- <Function id="_353" name="__builtin_bswap32" returns="_148" context="_1" location="f0:157" file="f0" line="157" extern="1">
- <Argument name="_data" type="_148" location="f0:157" file="f0" line="157"/>
- </Function>
- <Variable id="_354" name="cpp_sym_INT8_MIN" type="_93c" init="-0x00000000000000080" context="_1" location="f1:96" file="f1" line="96" static="1"/>
- <Typedef id="_355" name="uint_least8_t" type="_276" context="_1" location="f2:76" file="f2" line="76"/>
- <Variable id="_356" name="cpp_sym_MNCC_F_PROGRESS" type="_93c" init="128" context="_1" location="f1:61" file="f1" line="61" static="1"/>
- <Variable id="_357" name="cpp_sym___GNU_LIBRARY__" type="_93c" init="6" context="_1" location="f1:9" file="f1" line="9" static="1"/>
- <Function id="_358" name="__builtin_sinf" returns="_371" context="_1" mangled="sinf" location="f0:76" file="f0" line="76" extern="1" attributes="nothrow pure no vops">
- <Argument type="_371" location="f0:76" file="f0" line="76"/>
- </Function>
- <Function id="_359" name="__builtin_sinh" returns="_368" context="_1" mangled="sinh" location="f0:77" file="f0" line="77" extern="1" attributes="nothrow">
- <Argument type="_368" location="f0:77" file="f0" line="77"/>
- </Function>
- <Function id="_360" name="__builtin_sinl" returns="_372" context="_1" mangled="sinl" location="f0:80" file="f0" line="80" extern="1" attributes="nothrow pure no vops">
- <Argument type="_372" location="f0:80" file="f0" line="80"/>
- </Function>
- <Typedef id="_361" name="uint64_t" type="_9" context="_1" location="f2:55" file="f2" line="55"/>
- <Function id="_362" name="__builtin_csin" returns="_384" context="_1" mangled="csin" location="f0:115" file="f0" line="115" extern="1" attributes="nothrow pure no vops">
- <Argument type="_384" location="f0:115" file="f0" line="115"/>
- </Function>
- <Variable id="_363" name="cpp_sym_INT_LEAST8_MIN" type="_93c" init="-0x00000000000000080" context="_1" location="f1:45" file="f1" line="45" static="1"/>
- <Variable id="_364" name="cpp_sym__POSIX_SOURCE" type="_93c" init="1" context="_1" location="f1:38" file="f1" line="38" static="1"/>
- <Variable id="_365" name="cpp_sym_UINT_LEAST32_MAX" type="_148c" init="4294967295u" context="_1" location="f1:53" file="f1" line="53" static="1"/>
- <Variable id="_366" name="cpp_sym_INTMAX_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:36" file="f1" line="36" static="1"/>
- <Variable id="_367" name="cpp_sym_GSM_TCHH_FRAME" type="_93c" init="770" context="_1" location="f1:5" file="f1" line="5" static="1"/>
- <FundamentalType id="_368" name="double" size="64" align="64"/>
- <PointerType id="_369" type="_515c" size="64" align="64"/>
- <CvQualifiedType id="_93c" type="_93" const="1"/>
- <FundamentalType id="_371" name="float" size="32" align="32"/>
- <FundamentalType id="_372" name="long double" size="128" align="128"/>
- <FundamentalType id="_373" name="bool" size="8" align="8"/>
- <FundamentalType id="_374" name="long long int" size="64" align="64"/>
- <FundamentalType id="_375" name="complex float" size="64" align="32"/>
- <FundamentalType id="_376" name="complex long double" size="256" align="128"/>
- <CvQualifiedType id="_48c" type="_48" const="1"/>
- <Field id="_378" name="dtmf" type="_93" offset="0" context="_27" access="public" location="f3:183" file="f3" line="183"/>
- <Field id="_379" name="pcp" type="_93" offset="32" context="_27" access="public" location="f3:184" file="f3" line="184"/>
- <Destructor id="_380" name="gsm_mncc_cccap" artificial="1" throw="" context="_27" access="public" mangled="_ZN14gsm_mncc_cccapD1Ev *INTERNAL* " demangled="gsm_mncc_cccap::~gsm_mncc_cccap()" location="f3:182" file="f3" line="182" endline="182" inline="1">
- </Destructor>
- <OperatorMethod id="_381" name="=" returns="_517" artificial="1" throw="" context="_27" access="public" mangled="_ZN14gsm_mncc_cccapaSERKS_" demangled="gsm_mncc_cccap::operator=(gsm_mncc_cccap const&amp;)" location="f3:182" file="f3" line="182" endline="182" inline="1">
- <Argument type="_518" location="f3:182" file="f3" line="182"/>
- </OperatorMethod>
- <Constructor id="_382" name="gsm_mncc_cccap" artificial="1" throw="" context="_27" access="public" mangled="_ZN14gsm_mncc_cccapC1ERKS_ *INTERNAL* " demangled="gsm_mncc_cccap::gsm_mncc_cccap(gsm_mncc_cccap const&amp;)" location="f3:182" file="f3" line="182" endline="182" inline="1">
- <Argument type="_518" location="f3:182" file="f3" line="182"/>
- </Constructor>
- <Constructor id="_383" name="gsm_mncc_cccap" artificial="1" throw="" context="_27" access="public" mangled="_ZN14gsm_mncc_cccapC1Ev *INTERNAL* " demangled="gsm_mncc_cccap::gsm_mncc_cccap()" location="f3:182" file="f3" line="182" inline="1"/>
- <FundamentalType id="_384" name="complex double" size="128" align="64"/>
- <Field id="_385" name="len" type="_93" offset="0" context="_60" access="public" location="f3:173" file="f3" line="173"/>
- <Field id="_386" name="info" type="_519" offset="32" context="_60" access="public" location="f3:174" file="f3" line="174"/>
- <Destructor id="_387" name="gsm_mncc_facility" artificial="1" throw="" context="_60" access="public" mangled="_ZN17gsm_mncc_facilityD1Ev *INTERNAL* " demangled="gsm_mncc_facility::~gsm_mncc_facility()" location="f3:172" file="f3" line="172" endline="172" inline="1">
- </Destructor>
- <OperatorMethod id="_388" name="=" returns="_520" artificial="1" throw="" context="_60" access="public" mangled="_ZN17gsm_mncc_facilityaSERKS_" demangled="gsm_mncc_facility::operator=(gsm_mncc_facility const&amp;)" location="f3:172" file="f3" line="172" endline="172" inline="1">
- <Argument type="_521" location="f3:172" file="f3" line="172"/>
- </OperatorMethod>
- <Constructor id="_389" name="gsm_mncc_facility" artificial="1" throw="" context="_60" access="public" mangled="_ZN17gsm_mncc_facilityC1ERKS_ *INTERNAL* " demangled="gsm_mncc_facility::gsm_mncc_facility(gsm_mncc_facility const&amp;)" location="f3:172" file="f3" line="172" endline="172" inline="1">
- <Argument type="_521" location="f3:172" file="f3" line="172"/>
- </Constructor>
- <Constructor id="_390" name="gsm_mncc_facility" artificial="1" throw="" context="_60" access="public" mangled="_ZN17gsm_mncc_facilityC1Ev *INTERNAL* " demangled="gsm_mncc_facility::gsm_mncc_facility()" location="f3:172" file="f3" line="172" inline="1"/>
- <CvQualifiedType id="_9c" type="_9" const="1"/>
- <Field id="_392" name="msg_type" type="_149" offset="0" context="_83" access="public" location="f3:314" file="f3" line="314"/>
- <Field id="_393" name="callref" type="_149" offset="32" context="_83" access="public" location="f3:315" file="f3" line="315"/>
- <Field id="_394" name="data" type="_522" offset="64" context="_83" access="public" location="f3:316" file="f3" line="316"/>
- <Destructor id="_395" name="gsm_data_frame" artificial="1" throw="" context="_83" access="public" mangled="_ZN14gsm_data_frameD1Ev *INTERNAL* " demangled="gsm_data_frame::~gsm_data_frame()" location="f3:313" file="f3" line="313" endline="313" inline="1">
- </Destructor>
- <OperatorMethod id="_396" name="=" returns="_523" artificial="1" throw="" context="_83" access="public" mangled="_ZN14gsm_data_frameaSERKS_" demangled="gsm_data_frame::operator=(gsm_data_frame const&amp;)" location="f3:313" file="f3" line="313" endline="313" inline="1">
- <Argument type="_524" location="f3:313" file="f3" line="313"/>
- </OperatorMethod>
- <Constructor id="_397" name="gsm_data_frame" artificial="1" throw="" context="_83" access="public" mangled="_ZN14gsm_data_frameC1ERKS_ *INTERNAL* " demangled="gsm_data_frame::gsm_data_frame(gsm_data_frame const&amp;)" location="f3:313" file="f3" line="313" endline="313" inline="1">
- <Argument type="_524" location="f3:313" file="f3" line="313"/>
- </Constructor>
- <Constructor id="_398" name="gsm_data_frame" artificial="1" throw="" context="_83" access="public" mangled="_ZN14gsm_data_frameC1Ev *INTERNAL* " demangled="gsm_data_frame::gsm_data_frame()" location="f3:313" file="f3" line="313" inline="1"/>
- <FundamentalType id="_399" name="void" align="8"/>
- <PointerType id="_400" type="_399" size="64" align="64"/>
- <Field id="_401" name="len" type="_93" offset="0" context="_87" access="public" location="f3:178" file="f3" line="178"/>
- <Field id="_402" name="info" type="_519" offset="32" context="_87" access="public" location="f3:179" file="f3" line="179"/>
- <Destructor id="_403" name="gsm_mncc_ssversion" artificial="1" throw="" context="_87" access="public" mangled="_ZN18gsm_mncc_ssversionD1Ev *INTERNAL* " demangled="gsm_mncc_ssversion::~gsm_mncc_ssversion()" location="f3:177" file="f3" line="177" endline="177" inline="1">
- </Destructor>
- <OperatorMethod id="_404" name="=" returns="_525" artificial="1" throw="" context="_87" access="public" mangled="_ZN18gsm_mncc_ssversionaSERKS_" demangled="gsm_mncc_ssversion::operator=(gsm_mncc_ssversion const&amp;)" location="f3:177" file="f3" line="177" endline="177" inline="1">
- <Argument type="_526" location="f3:177" file="f3" line="177"/>
- </OperatorMethod>
- <Constructor id="_405" name="gsm_mncc_ssversion" artificial="1" throw="" context="_87" access="public" mangled="_ZN18gsm_mncc_ssversionC1ERKS_ *INTERNAL* " demangled="gsm_mncc_ssversion::gsm_mncc_ssversion(gsm_mncc_ssversion const&amp;)" location="f3:177" file="f3" line="177" endline="177" inline="1">
- <Argument type="_526" location="f3:177" file="f3" line="177"/>
- </Constructor>
- <Constructor id="_406" name="gsm_mncc_ssversion" artificial="1" throw="" context="_87" access="public" mangled="_ZN18gsm_mncc_ssversionC1Ev *INTERNAL* " demangled="gsm_mncc_ssversion::gsm_mncc_ssversion()" location="f3:177" file="f3" line="177" inline="1"/>
- <PointerType id="_407" type="_399c" size="64" align="64"/>
- <PointerType id="_408" type="_93" size="64" align="64"/>
- <CvQualifiedType id="_148c" type="_148" const="1"/>
- <Field id="_410" name="coding" type="_93" offset="0" context="_132" access="public" location="f3:167" file="f3" line="167"/>
- <Field id="_411" name="location" type="_93" offset="32" context="_132" access="public" location="f3:168" file="f3" line="168"/>
- <Field id="_412" name="descr" type="_93" offset="64" context="_132" access="public" location="f3:169" file="f3" line="169"/>
- <Destructor id="_413" name="gsm_mncc_progress" artificial="1" throw="" context="_132" access="public" mangled="_ZN17gsm_mncc_progressD1Ev *INTERNAL* " demangled="gsm_mncc_progress::~gsm_mncc_progress()" location="f3:166" file="f3" line="166" endline="166" inline="1">
- </Destructor>
- <OperatorMethod id="_414" name="=" returns="_528" artificial="1" throw="" context="_132" access="public" mangled="_ZN17gsm_mncc_progressaSERKS_" demangled="gsm_mncc_progress::operator=(gsm_mncc_progress const&amp;)" location="f3:166" file="f3" line="166" endline="166" inline="1">
- <Argument type="_529" location="f3:166" file="f3" line="166"/>
- </OperatorMethod>
- <Constructor id="_415" name="gsm_mncc_progress" artificial="1" throw="" context="_132" access="public" mangled="_ZN17gsm_mncc_progressC1ERKS_ *INTERNAL* " demangled="gsm_mncc_progress::gsm_mncc_progress(gsm_mncc_progress const&amp;)" location="f3:166" file="f3" line="166" endline="166" inline="1">
- <Argument type="_529" location="f3:166" file="f3" line="166"/>
- </Constructor>
- <Constructor id="_416" name="gsm_mncc_progress" artificial="1" throw="" context="_132" access="public" mangled="_ZN17gsm_mncc_progressC1Ev *INTERNAL* " demangled="gsm_mncc_progress::gsm_mncc_progress()" location="f3:166" file="f3" line="166" inline="1"/>
- <Field id="_417" name="location" type="_93" offset="0" context="_133" access="public" location="f3:152" file="f3" line="152"/>
- <Field id="_418" name="coding" type="_93" offset="32" context="_133" access="public" location="f3:153" file="f3" line="153"/>
- <Field id="_419" name="rec" type="_93" offset="64" context="_133" access="public" location="f3:154" file="f3" line="154"/>
- <Field id="_420" name="rec_val" type="_93" offset="96" context="_133" access="public" location="f3:155" file="f3" line="155"/>
- <Field id="_421" name="value" type="_93" offset="128" context="_133" access="public" location="f3:156" file="f3" line="156"/>
- <Field id="_422" name="diag_len" type="_93" offset="160" context="_133" access="public" location="f3:157" file="f3" line="157"/>
- <Field id="_423" name="diag" type="_530" offset="192" context="_133" access="public" location="f3:158" file="f3" line="158"/>
- <Destructor id="_424" name="gsm_mncc_cause" artificial="1" throw="" context="_133" access="public" mangled="_ZN14gsm_mncc_causeD1Ev *INTERNAL* " demangled="gsm_mncc_cause::~gsm_mncc_cause()" location="f3:151" file="f3" line="151" endline="151" inline="1">
- </Destructor>
- <OperatorMethod id="_425" name="=" returns="_531" artificial="1" throw="" context="_133" access="public" mangled="_ZN14gsm_mncc_causeaSERKS_" demangled="gsm_mncc_cause::operator=(gsm_mncc_cause const&amp;)" location="f3:151" file="f3" line="151" endline="151" inline="1">
- <Argument type="_532" location="f3:151" file="f3" line="151"/>
- </OperatorMethod>
- <Constructor id="_426" name="gsm_mncc_cause" artificial="1" throw="" context="_133" access="public" mangled="_ZN14gsm_mncc_causeC1ERKS_ *INTERNAL* " demangled="gsm_mncc_cause::gsm_mncc_cause(gsm_mncc_cause const&amp;)" location="f3:151" file="f3" line="151" endline="151" inline="1">
- <Argument type="_532" location="f3:151" file="f3" line="151"/>
- </Constructor>
- <Constructor id="_427" name="gsm_mncc_cause" artificial="1" throw="" context="_133" access="public" mangled="_ZN14gsm_mncc_causeC1Ev *INTERNAL* " demangled="gsm_mncc_cause::gsm_mncc_cause()" location="f3:151" file="f3" line="151" inline="1"/>
- <PointerType id="_428" type="_371" size="64" align="64"/>
- <PointerType id="_429" type="_372" size="64" align="64"/>
- <Field id="_430" name="msg_type" type="_149" offset="0" context="_229" access="public" location="f3:346" file="f3" line="346"/>
- <Field id="_431" name="callref" type="_533" offset="32" context="_229" access="public" location="f3:347" file="f3" line="347"/>
- <Destructor id="_432" name="gsm_mncc_bridge" artificial="1" throw="" context="_229" access="public" mangled="_ZN15gsm_mncc_bridgeD1Ev *INTERNAL* " demangled="gsm_mncc_bridge::~gsm_mncc_bridge()" location="f3:345" file="f3" line="345" endline="345" inline="1">
- </Destructor>
- <OperatorMethod id="_433" name="=" returns="_534" artificial="1" throw="" context="_229" access="public" mangled="_ZN15gsm_mncc_bridgeaSERKS_" demangled="gsm_mncc_bridge::operator=(gsm_mncc_bridge const&amp;)" location="f3:345" file="f3" line="345" endline="345" inline="1">
- <Argument type="_535" location="f3:345" file="f3" line="345"/>
- </OperatorMethod>
- <Constructor id="_434" name="gsm_mncc_bridge" artificial="1" throw="" context="_229" access="public" mangled="_ZN15gsm_mncc_bridgeC1ERKS_ *INTERNAL* " demangled="gsm_mncc_bridge::gsm_mncc_bridge(gsm_mncc_bridge const&amp;)" location="f3:345" file="f3" line="345" endline="345" inline="1">
- <Argument type="_535" location="f3:345" file="f3" line="345"/>
- </Constructor>
- <Constructor id="_435" name="gsm_mncc_bridge" artificial="1" throw="" context="_229" access="public" mangled="_ZN15gsm_mncc_bridgeC1Ev *INTERNAL* " demangled="gsm_mncc_bridge::gsm_mncc_bridge()" location="f3:345" file="f3" line="345" inline="1"/>
- <Field id="_436" name="proto" type="_93" offset="0" context="_235" access="public" location="f3:162" file="f3" line="162"/>
- <Field id="_437" name="info" type="_536" offset="32" context="_235" access="public" location="f3:163" file="f3" line="163"/>
- <Destructor id="_438" name="gsm_mncc_useruser" artificial="1" throw="" context="_235" access="public" mangled="_ZN17gsm_mncc_useruserD1Ev *INTERNAL* " demangled="gsm_mncc_useruser::~gsm_mncc_useruser()" location="f3:161" file="f3" line="161" endline="161" inline="1">
- </Destructor>
- <OperatorMethod id="_439" name="=" returns="_537" artificial="1" throw="" context="_235" access="public" mangled="_ZN17gsm_mncc_useruseraSERKS_" demangled="gsm_mncc_useruser::operator=(gsm_mncc_useruser const&amp;)" location="f3:161" file="f3" line="161" endline="161" inline="1">
- <Argument type="_538" location="f3:161" file="f3" line="161"/>
- </OperatorMethod>
- <Constructor id="_440" name="gsm_mncc_useruser" artificial="1" throw="" context="_235" access="public" mangled="_ZN17gsm_mncc_useruserC1ERKS_ *INTERNAL* " demangled="gsm_mncc_useruser::gsm_mncc_useruser(gsm_mncc_useruser const&amp;)" location="f3:161" file="f3" line="161" endline="161" inline="1">
- <Argument type="_538" location="f3:161" file="f3" line="161"/>
- </Constructor>
- <Constructor id="_441" name="gsm_mncc_useruser" artificial="1" throw="" context="_235" access="public" mangled="_ZN17gsm_mncc_useruserC1Ev *INTERNAL* " demangled="gsm_mncc_useruser::gsm_mncc_useruser()" location="f3:161" file="f3" line="161" inline="1"/>
- <Field id="_442" name="transfer" type="_93" offset="0" context="_241" access="public" location="f3:123" file="f3" line="123"/>
- <Field id="_443" name="mode" type="_93" offset="32" context="_241" access="public" location="f3:124" file="f3" line="124"/>
- <Field id="_444" name="coding" type="_93" offset="64" context="_241" access="public" location="f3:125" file="f3" line="125"/>
- <Field id="_445" name="radio" type="_93" offset="96" context="_241" access="public" location="f3:126" file="f3" line="126"/>
- <Field id="_446" name="speech_ctm" type="_93" offset="128" context="_241" access="public" location="f3:127" file="f3" line="127"/>
- <Field id="_447" name="speech_ver" type="_539" offset="160" context="_241" access="public" location="f3:128" file="f3" line="128"/>
- <Field id="_448" name="data" type="_449" offset="416" context="_241" access="public" location="f3:140" file="f3" line="140"/>
- <Struct id="_449" context="_241" access="public" mangled="N19gsm_mncc_bearer_cap3._0E" demangled="gsm_mncc_bearer_cap::._0" location="f3:129" file="f3" line="129" artificial="1" size="320" align="32" members="_540 _541 _542 _543 _544 _545 _546 _547 _548 _549 _550 _551 _552 _553 " bases=""/>
- <Destructor id="_450" name="gsm_mncc_bearer_cap" artificial="1" throw="" context="_241" access="public" mangled="_ZN19gsm_mncc_bearer_capD1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::~gsm_mncc_bearer_cap()" location="f3:122" file="f3" line="122" endline="122" inline="1">
- </Destructor>
- <OperatorMethod id="_451" name="=" returns="_554" artificial="1" throw="" context="_241" access="public" mangled="_ZN19gsm_mncc_bearer_capaSERKS_" demangled="gsm_mncc_bearer_cap::operator=(gsm_mncc_bearer_cap const&amp;)" location="f3:122" file="f3" line="122" endline="122" inline="1">
- <Argument type="_555" location="f3:122" file="f3" line="122"/>
- </OperatorMethod>
- <Constructor id="_452" name="gsm_mncc_bearer_cap" artificial="1" throw="" context="_241" access="public" mangled="_ZN19gsm_mncc_bearer_capC1ERKS_ *INTERNAL* " demangled="gsm_mncc_bearer_cap::gsm_mncc_bearer_cap(gsm_mncc_bearer_cap const&amp;)" location="f3:122" file="f3" line="122" endline="122" inline="1">
- <Argument type="_555" location="f3:122" file="f3" line="122"/>
- </Constructor>
- <Constructor id="_453" name="gsm_mncc_bearer_cap" artificial="1" throw="" context="_241" access="public" mangled="_ZN19gsm_mncc_bearer_capC1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::gsm_mncc_bearer_cap()" location="f3:122" file="f3" line="122" inline="1"/>
- <Field id="_454" name="msg_type" type="_149" offset="0" context="_258" access="public" location="f3:336" file="f3" line="336"/>
- <Field id="_455" name="callref" type="_149" offset="32" context="_258" access="public" location="f3:337" file="f3" line="337"/>
- <Field id="_456" name="ip" type="_149" offset="64" context="_258" access="public" location="f3:338" file="f3" line="338"/>
- <Field id="_457" name="port" type="_266" offset="96" context="_258" access="public" location="f3:339" file="f3" line="339"/>
- <Field id="_458" name="payload_type" type="_149" offset="128" context="_258" access="public" location="f3:340" file="f3" line="340"/>
- <Field id="_459" name="payload_msg_type" type="_149" offset="160" context="_258" access="public" location="f3:341" file="f3" line="341"/>
- <Field id="_460" name="sdp" type="_556" offset="192" context="_258" access="public" location="f3:342" file="f3" line="342"/>
- <Destructor id="_461" name="gsm_mncc_rtp" artificial="1" throw="" context="_258" access="public" mangled="_ZN12gsm_mncc_rtpD1Ev *INTERNAL* " demangled="gsm_mncc_rtp::~gsm_mncc_rtp()" location="f3:335" file="f3" line="335" endline="335" inline="1">
- </Destructor>
- <OperatorMethod id="_462" name="=" returns="_557" artificial="1" throw="" context="_258" access="public" mangled="_ZN12gsm_mncc_rtpaSERKS_" demangled="gsm_mncc_rtp::operator=(gsm_mncc_rtp const&amp;)" location="f3:335" file="f3" line="335" endline="335" inline="1">
- <Argument type="_558" location="f3:335" file="f3" line="335"/>
- </OperatorMethod>
- <Constructor id="_463" name="gsm_mncc_rtp" artificial="1" throw="" context="_258" access="public" mangled="_ZN12gsm_mncc_rtpC1ERKS_ *INTERNAL* " demangled="gsm_mncc_rtp::gsm_mncc_rtp(gsm_mncc_rtp const&amp;)" location="f3:335" file="f3" line="335" endline="335" inline="1">
- <Argument type="_558" location="f3:335" file="f3" line="335"/>
- </Constructor>
- <Constructor id="_464" name="gsm_mncc_rtp" artificial="1" throw="" context="_258" access="public" mangled="_ZN12gsm_mncc_rtpC1Ev *INTERNAL* " demangled="gsm_mncc_rtp::gsm_mncc_rtp()" location="f3:335" file="f3" line="335" inline="1"/>
- <Field id="_465" name="msg_type" type="_149" offset="0" context="_269" access="public" location="f3:276" file="f3" line="276"/>
- <Field id="_466" name="callref" type="_149" offset="32" context="_269" access="public" location="f3:277" file="f3" line="277"/>
- <Field id="_467" name="fields" type="_149" offset="64" context="_269" access="public" location="f3:280" file="f3" line="280"/>
- <Field id="_468" name="bearer_cap" type="_241" offset="96" context="_269" access="public" location="f3:283" file="f3" line="283"/>
- <Field id="_469" name="called" type="_352" offset="832" context="_269" access="public" location="f3:284" file="f3" line="284"/>
- <Field id="_470" name="calling" type="_352" offset="1248" context="_269" access="public" location="f3:285" file="f3" line="285"/>
- <Field id="_471" name="redirecting" type="_352" offset="1664" context="_269" access="public" location="f3:286" file="f3" line="286"/>
- <Field id="_472" name="connected" type="_352" offset="2080" context="_269" access="public" location="f3:287" file="f3" line="287"/>
- <Field id="_473" name="cause" type="_133" offset="2496" context="_269" access="public" location="f3:288" file="f3" line="288"/>
- <Field id="_474" name="progress" type="_132" offset="2944" context="_269" access="public" location="f3:289" file="f3" line="289"/>
- <Field id="_475" name="useruser" type="_235" offset="3040" context="_269" access="public" location="f3:290" file="f3" line="290"/>
- <Field id="_476" name="facility" type="_60" offset="4128" context="_269" access="public" location="f3:291" file="f3" line="291"/>
- <Field id="_477" name="cccap" type="_27" offset="5184" context="_269" access="public" location="f3:292" file="f3" line="292"/>
- <Field id="_478" name="ssversion" type="_87" offset="5248" context="_269" access="public" location="f3:293" file="f3" line="293"/>
- <Field id="_479" name="clir" type="_489" offset="6304" context="_269" access="public" location="f3:297" file="f3" line="297"/>
- <Field id="_480" name="signal" type="_93" offset="6368" context="_269" access="public" location="f3:298" file="f3" line="298"/>
- <Field id="_481" name="keypad" type="_93" offset="6400" context="_269" access="public" location="f3:301" file="f3" line="301"/>
- <Field id="_482" name="more" type="_93" offset="6432" context="_269" access="public" location="f3:302" file="f3" line="302"/>
- <Field id="_483" name="notify" type="_93" offset="6464" context="_269" access="public" location="f3:303" file="f3" line="303"/>
- <Field id="_484" name="emergency" type="_93" offset="6496" context="_269" access="public" location="f3:304" file="f3" line="304"/>
- <Field id="_485" name="imsi" type="_559" offset="6528" context="_269" access="public" location="f3:305" file="f3" line="305"/>
- <Field id="_486" name="lchan_type" type="_276" offset="6656" context="_269" access="public" location="f3:307" file="f3" line="307"/>
- <Field id="_487" name="lchan_mode" type="_276" offset="6664" context="_269" access="public" location="f3:308" file="f3" line="308"/>
- <Field id="_488" name="sdp" type="_556" offset="6672" context="_269" access="public" location="f3:310" file="f3" line="310"/>
- <Struct id="_489" context="_269" access="public" mangled="N8gsm_mncc3._2E" demangled="gsm_mncc::._2" location="f3:294" file="f3" line="294" artificial="1" size="64" align="32" members="_560 _561 _562 _563 _564 _565 " bases=""/>
- <Destructor id="_490" name="gsm_mncc" artificial="1" throw="" context="_269" access="public" mangled="_ZN8gsm_mnccD1Ev *INTERNAL* " demangled="gsm_mncc::~gsm_mncc()" location="f3:274" file="f3" line="274" endline="274" inline="1">
- </Destructor>
- <OperatorMethod id="_491" name="=" returns="_566" artificial="1" throw="" context="_269" access="public" mangled="_ZN8gsm_mnccaSERKS_" demangled="gsm_mncc::operator=(gsm_mncc const&amp;)" location="f3:274" file="f3" line="274" endline="274" inline="1">
- <Argument type="_567" location="f3:274" file="f3" line="274"/>
- </OperatorMethod>
- <Constructor id="_492" name="gsm_mncc" artificial="1" throw="" context="_269" access="public" mangled="_ZN8gsm_mnccC1ERKS_ *INTERNAL* " demangled="gsm_mncc::gsm_mncc(gsm_mncc const&amp;)" location="f3:274" file="f3" line="274" endline="274" inline="1">
- <Argument type="_567" location="f3:274" file="f3" line="274"/>
- </Constructor>
- <Constructor id="_493" name="gsm_mncc" artificial="1" throw="" context="_269" access="public" mangled="_ZN8gsm_mnccC1Ev *INTERNAL* " demangled="gsm_mncc::gsm_mncc()" location="f3:274" file="f3" line="274" inline="1"/>
- <Field id="_494" name="msg_type" type="_149" offset="0" context="_332" access="public" location="f3:321" file="f3" line="321"/>
- <Field id="_495" name="version" type="_149" offset="32" context="_332" access="public" location="f3:322" file="f3" line="322"/>
- <Field id="_496" name="mncc_size" type="_149" offset="64" context="_332" access="public" location="f3:325" file="f3" line="325"/>
- <Field id="_497" name="data_frame_size" type="_149" offset="96" context="_332" access="public" location="f3:326" file="f3" line="326"/>
- <Field id="_498" name="called_offset" type="_149" offset="128" context="_332" access="public" location="f3:329" file="f3" line="329"/>
- <Field id="_499" name="signal_offset" type="_149" offset="160" context="_332" access="public" location="f3:330" file="f3" line="330"/>
- <Field id="_500" name="emergency_offset" type="_149" offset="192" context="_332" access="public" location="f3:331" file="f3" line="331"/>
- <Field id="_501" name="lchan_type_offset" type="_149" offset="224" context="_332" access="public" location="f3:332" file="f3" line="332"/>
- <Destructor id="_502" name="gsm_mncc_hello" artificial="1" throw="" context="_332" access="public" mangled="_ZN14gsm_mncc_helloD1Ev *INTERNAL* " demangled="gsm_mncc_hello::~gsm_mncc_hello()" location="f3:320" file="f3" line="320" endline="320" inline="1">
- </Destructor>
- <OperatorMethod id="_503" name="=" returns="_568" artificial="1" throw="" context="_332" access="public" mangled="_ZN14gsm_mncc_helloaSERKS_" demangled="gsm_mncc_hello::operator=(gsm_mncc_hello const&amp;)" location="f3:320" file="f3" line="320" endline="320" inline="1">
- <Argument type="_569" location="f3:320" file="f3" line="320"/>
- </OperatorMethod>
- <Constructor id="_504" name="gsm_mncc_hello" artificial="1" throw="" context="_332" access="public" mangled="_ZN14gsm_mncc_helloC1ERKS_ *INTERNAL* " demangled="gsm_mncc_hello::gsm_mncc_hello(gsm_mncc_hello const&amp;)" location="f3:320" file="f3" line="320" endline="320" inline="1">
- <Argument type="_569" location="f3:320" file="f3" line="320"/>
- </Constructor>
- <Constructor id="_505" name="gsm_mncc_hello" artificial="1" throw="" context="_332" access="public" mangled="_ZN14gsm_mncc_helloC1Ev *INTERNAL* " demangled="gsm_mncc_hello::gsm_mncc_hello()" location="f3:320" file="f3" line="320" inline="1"/>
- <Field id="_506" name="type" type="_93" offset="0" context="_352" access="public" location="f3:144" file="f3" line="144"/>
- <Field id="_507" name="plan" type="_93" offset="32" context="_352" access="public" location="f3:145" file="f3" line="145"/>
- <Field id="_508" name="present" type="_93" offset="64" context="_352" access="public" location="f3:146" file="f3" line="146"/>
- <Field id="_509" name="screen" type="_93" offset="96" context="_352" access="public" location="f3:147" file="f3" line="147"/>
- <Field id="_510" name="number" type="_570" offset="128" context="_352" access="public" location="f3:148" file="f3" line="148"/>
- <Destructor id="_511" name="gsm_mncc_number" artificial="1" throw="" context="_352" access="public" mangled="_ZN15gsm_mncc_numberD1Ev *INTERNAL* " demangled="gsm_mncc_number::~gsm_mncc_number()" location="f3:143" file="f3" line="143" endline="143" inline="1">
- </Destructor>
- <OperatorMethod id="_512" name="=" returns="_571" artificial="1" throw="" context="_352" access="public" mangled="_ZN15gsm_mncc_numberaSERKS_" demangled="gsm_mncc_number::operator=(gsm_mncc_number const&amp;)" location="f3:143" file="f3" line="143" endline="143" inline="1">
- <Argument type="_572" location="f3:143" file="f3" line="143"/>
- </OperatorMethod>
- <Constructor id="_513" name="gsm_mncc_number" artificial="1" throw="" context="_352" access="public" mangled="_ZN15gsm_mncc_numberC1ERKS_ *INTERNAL* " demangled="gsm_mncc_number::gsm_mncc_number(gsm_mncc_number const&amp;)" location="f3:143" file="f3" line="143" endline="143" inline="1">
- <Argument type="_572" location="f3:143" file="f3" line="143"/>
- </Constructor>
- <Constructor id="_514" name="gsm_mncc_number" artificial="1" throw="" context="_352" access="public" mangled="_ZN15gsm_mncc_numberC1Ev *INTERNAL* " demangled="gsm_mncc_number::gsm_mncc_number()" location="f3:143" file="f3" line="143" inline="1"/>
- <ReferenceType id="_517" type="_27" size="64" align="64"/>
- <ReferenceType id="_518" type="_27c" size="64" align="64"/>
- <ArrayType id="_519" min="0" max="127u" type="_515" size="1024" align="8"/>
- <ReferenceType id="_520" type="_60" size="64" align="64"/>
- <ReferenceType id="_521" type="_60c" size="64" align="64"/>
- <ArrayType id="_522" min="0" max="0xffffffffffffffffffffffffffffffffu" type="_276" size="0" align="8"/>
- <ReferenceType id="_523" type="_83" size="64" align="64"/>
- <ReferenceType id="_524" type="_83c" size="64" align="64"/>
- <ReferenceType id="_525" type="_87" size="64" align="64"/>
- <ReferenceType id="_526" type="_87c" size="64" align="64"/>
- <ReferenceType id="_528" type="_132" size="64" align="64"/>
- <ReferenceType id="_529" type="_132c" size="64" align="64"/>
- <ArrayType id="_530" min="0" max="31u" type="_515" size="256" align="8"/>
- <ReferenceType id="_531" type="_133" size="64" align="64"/>
- <ReferenceType id="_532" type="_133c" size="64" align="64"/>
- <ArrayType id="_533" min="0" max="1u" type="_149" size="64" align="32"/>
- <ReferenceType id="_534" type="_229" size="64" align="64"/>
- <ReferenceType id="_535" type="_229c" size="64" align="64"/>
- <ArrayType id="_536" min="0" max="128u" type="_515" size="1032" align="8"/>
- <ReferenceType id="_537" type="_235" size="64" align="64"/>
- <ReferenceType id="_538" type="_235c" size="64" align="64"/>
- <ArrayType id="_539" min="0" max="7u" type="_93" size="256" align="32"/>
- <Field id="_540" name="rate_adaption" type="_105" offset="0" context="_449" access="public" location="f3:130" file="f3" line="130"/>
- <Field id="_541" name="sig_access" type="_71" offset="32" context="_449" access="public" location="f3:131" file="f3" line="131"/>
- <Field id="_542" name="async" type="_93" offset="64" context="_449" access="public" location="f3:132" file="f3" line="132"/>
- <Field id="_543" name="nr_stop_bits" type="_93" offset="96" context="_449" access="public" location="f3:133" file="f3" line="133"/>
- <Field id="_544" name="nr_data_bits" type="_93" offset="128" context="_449" access="public" location="f3:134" file="f3" line="134"/>
- <Field id="_545" name="user_rate" type="_169" offset="160" context="_449" access="public" location="f3:135" file="f3" line="135"/>
- <Field id="_546" name="parity" type="_338" offset="192" context="_449" access="public" location="f3:136" file="f3" line="136"/>
- <Field id="_547" name="interm_rate" type="_303" offset="224" context="_449" access="public" location="f3:137" file="f3" line="137"/>
- <Field id="_548" name="transp" type="_141" offset="256" context="_449" access="public" location="f3:138" file="f3" line="138"/>
- <Field id="_549" name="modem_type" type="_154" offset="288" context="_449" access="public" location="f3:139" file="f3" line="139"/>
- <Destructor id="_550" name="._0" artificial="1" throw="" context="_449" access="public" mangled="_ZN19gsm_mncc_bearer_cap3._0D1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::._0::~._0()" location="f3:129" file="f3" line="129" endline="129" inline="1">
- </Destructor>
- <OperatorMethod id="_551" name="=" returns="_581" artificial="1" throw="" context="_449" access="public" mangled="_ZN19gsm_mncc_bearer_cap3._0aSERKS0_" demangled="gsm_mncc_bearer_cap::._0::operator=(gsm_mncc_bearer_cap::._0 const&amp;)" location="f3:129" file="f3" line="129" endline="129" inline="1">
- <Argument type="_582" location="f3:129" file="f3" line="129"/>
- </OperatorMethod>
- <Constructor id="_552" artificial="1" throw="" context="_449" access="public" mangled="_ZN19gsm_mncc_bearer_cap3._0C1ERKS0_ *INTERNAL* " demangled="gsm_mncc_bearer_cap::._0::._0(gsm_mncc_bearer_cap::._0 const&amp;)" location="f3:129" file="f3" line="129" endline="129" inline="1">
- <Argument type="_582" location="f3:129" file="f3" line="129"/>
- </Constructor>
- <Constructor id="_553" artificial="1" throw="" context="_449" access="public" mangled="_ZN19gsm_mncc_bearer_cap3._0C1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::._0::._0()" location="f3:129" file="f3" line="129" inline="1"/>
- <ReferenceType id="_554" type="_241" size="64" align="64"/>
- <ReferenceType id="_555" type="_241c" size="64" align="64"/>
- <ArrayType id="_556" min="0" max="1023u" type="_515" size="8192" align="8"/>
- <ReferenceType id="_557" type="_258" size="64" align="64"/>
- <ReferenceType id="_558" type="_258c" size="64" align="64"/>
- <ArrayType id="_559" min="0" max="15u" type="_515" size="128" align="8"/>
- <Field id="_560" name="sup" type="_93" offset="0" context="_489" access="public" location="f3:295" file="f3" line="295"/>
- <Field id="_561" name="inv" type="_93" offset="32" context="_489" access="public" location="f3:296" file="f3" line="296"/>
- <Destructor id="_562" name="._2" artificial="1" throw="" context="_489" access="public" mangled="_ZN8gsm_mncc3._2D1Ev *INTERNAL* " demangled="gsm_mncc::._2::~._2()" location="f3:294" file="f3" line="294" endline="294" inline="1">
- </Destructor>
- <OperatorMethod id="_563" name="=" returns="_585" artificial="1" throw="" context="_489" access="public" mangled="_ZN8gsm_mncc3._2aSERKS0_" demangled="gsm_mncc::._2::operator=(gsm_mncc::._2 const&amp;)" location="f3:294" file="f3" line="294" endline="294" inline="1">
- <Argument type="_586" location="f3:294" file="f3" line="294"/>
- </OperatorMethod>
- <Constructor id="_564" artificial="1" throw="" context="_489" access="public" mangled="_ZN8gsm_mncc3._2C1ERKS0_ *INTERNAL* " demangled="gsm_mncc::._2::._2(gsm_mncc::._2 const&amp;)" location="f3:294" file="f3" line="294" endline="294" inline="1">
- <Argument type="_586" location="f3:294" file="f3" line="294"/>
- </Constructor>
- <Constructor id="_565" artificial="1" throw="" context="_489" access="public" mangled="_ZN8gsm_mncc3._2C1Ev *INTERNAL* " demangled="gsm_mncc::._2::._2()" location="f3:294" file="f3" line="294" inline="1"/>
- <ReferenceType id="_566" type="_269" size="64" align="64"/>
- <ReferenceType id="_567" type="_269c" size="64" align="64"/>
- <ReferenceType id="_568" type="_332" size="64" align="64"/>
- <ReferenceType id="_569" type="_332c" size="64" align="64"/>
- <ArrayType id="_570" min="0" max="32u" type="_515" size="264" align="8"/>
- <ReferenceType id="_571" type="_352" size="64" align="64"/>
- <ReferenceType id="_572" type="_352c" size="64" align="64"/>
- <FundamentalType id="_515" name="char" size="8" align="8"/>
- <ReferenceType id="_581" type="_449" size="64" align="64"/>
- <ReferenceType id="_582" type="_449c" size="64" align="64"/>
- <ReferenceType id="_585" type="_489" size="64" align="64"/>
- <ReferenceType id="_586" type="_489c" size="64" align="64"/>
- <CvQualifiedType id="_515c" type="_515" const="1"/>
- <CvQualifiedType id="_399c" type="_399" const="1"/>
- <CvQualifiedType id="_449c" type="_449" const="1"/>
- <CvQualifiedType id="_241c" type="_241" const="1"/>
- <CvQualifiedType id="_352c" type="_352" const="1"/>
- <CvQualifiedType id="_133c" type="_133" const="1"/>
- <CvQualifiedType id="_235c" type="_235" const="1"/>
- <CvQualifiedType id="_132c" type="_132" const="1"/>
- <CvQualifiedType id="_60c" type="_60" const="1"/>
- <CvQualifiedType id="_87c" type="_87" const="1"/>
- <CvQualifiedType id="_27c" type="_27" const="1"/>
- <CvQualifiedType id="_489c" type="_489" const="1"/>
- <CvQualifiedType id="_269c" type="_269" const="1"/>
- <CvQualifiedType id="_83c" type="_83" const="1"/>
- <CvQualifiedType id="_332c" type="_332" const="1"/>
- <CvQualifiedType id="_258c" type="_258" const="1"/>
- <CvQualifiedType id="_229c" type="_229" const="1"/>
- <File id="f0" name="/usr/share/gccxml-0.9/GCC/4.9/gccxml_builtins.h"/>
- <File id="f1" name="/tmp/tmpDIjrv1.cpp"/>
- <File id="f2" name="/usr/include/stdint.h"/>
- <File id="f3" name="/tmp/./mncc.h"/>
- <CPP_DUMP name="functions"><![CDATA[INT16_C(c) c
+ <Struct id="_809" name="osockaddr" context="_1" mangled="9osockaddr" demangled="osockaddr" location="f32:7" file="f32" line="7" artificial="1" size="128" align="16" members="_1356 _1357 _1358 _1359 _1360 _1361 " bases=""/>
+ <Variable id="_810" name="cpp_sym_IPV6_2292DSTOPTS" type="_46c" init="4" context="_1" location="f0:269" file="f0" line="269" static="1"/>
+ <Function id="_811" name="inet6_option_next" returns="_46" throw="" context="_1" location="f5:568" file="f5" line="568" extern="1" attributes="__deprecated__">
+ <Argument name="__cmsg" type="_1089" location="f5:568" file="f5" line="568"/>
+ <Argument name="__tptrp" type="_1090" location="f5:568" file="f5" line="568"/>
+ </Function>
+ <Variable id="_812" name="cpp_sym_MNCC_F_REDIRECTING" type="_46c" init="8" context="_1" location="f0:144" file="f0" line="144" static="1"/>
+ <Variable id="_813" name="cpp_sym___timer_t_defined" type="_46c" init="1" context="_1" location="f0:460" file="f0" line="460" static="1"/>
+ <Variable id="_814" name="cpp_sym_GSM_TCH_FRAME_AMR" type="_46c" init="771" context="_1" location="f0:432" file="f0" line="432" static="1"/>
+ <Typedef id="_815" name="pthread_t" type="_18" context="_1" location="f7:27" file="f7" line="27"/>
+ <Variable id="_816" name="cpp_sym_IPV6_LEAVE_ANYCAST" type="_46c" init="28" context="_1" location="f0:293" file="f0" line="293" static="1"/>
+ <Typedef id="_817" name="__suseconds64_t" type="_16" context="_1" location="f9:163" file="f9" line="163"/>
+ <Variable id="_818" name="cpp_sym_MCAST_LEAVE_SOURCE_GROUP" type="_46c" init="47" context="_1" location="f0:165" file="f0" line="165" static="1"/>
+ <Typedef id="_819" name="ushort" type="_171" context="_1" location="f3:149" file="f3" line="149"/>
+ <Variable id="_820" name="cpp_sym_SO_BINDTODEVICE" type="_46c" init="25" context="_1" location="f0:46" file="f0" line="46" static="1"/>
+ <Variable id="_821" name="cpp_sym_INT8_MAX" type="_46c" init="127" context="_1" location="f0:66" file="f0" line="66" static="1"/>
+ <Struct id="_822" name="ucred" context="_1" mangled="5ucred" demangled="ucred" location="f19:345" file="f19" line="345" artificial="1" size="96" align="32" members="_1362 _1363 _1364 _1365 _1366 _1367 _1368 " bases=""/>
+ <Variable id="_823" name="cpp_sym_IPV6_PMTUDISC_DONT" type="_46c" init="0" context="_1" location="f0:372" file="f0" line="372" static="1"/>
+ <Variable id="_824" name="cpp_sym_SO_TYPE" type="_46c" init="3" context="_1" location="f0:176" file="f0" line="176" static="1"/>
+ <Function id="_825" name="getsourcefilter" returns="_46" throw="" context="_1" location="f5:625" file="f5" line="625" extern="1">
+ <Argument name="__s" type="_46" location="f5:625" file="f5" line="625"/>
+ <Argument name="__interface_addr" type="_322" location="f5:625" file="f5" line="625"/>
+ <Argument name="__group" type="_1159" location="f5:625" file="f5" line="625"/>
+ <Argument name="__grouplen" type="_516" location="f5:625" file="f5" line="625"/>
+ <Argument name="__fmode" type="_1277" location="f5:625" file="f5" line="625"/>
+ <Argument name="__numsrc" type="_1277" location="f5:625" file="f5" line="625"/>
+ <Argument name="__slist" type="_1369" location="f5:625" file="f5" line="625"/>
+ </Function>
+ <Typedef id="_826" name="in_port_t" type="_391" context="_1" location="f5:123" file="f5" line="123"/>
+ <Variable id="_827" name="cpp_sym__DEFAULT_SOURCE" type="_46c" init="1" context="_1" location="f0:219" file="f0" line="219" static="1"/>
+ <Variable id="_828" name="cpp_sym_IP_TOS" type="_46c" init="1" context="_1" location="f0:200" file="f0" line="200" static="1"/>
+ <Variable id="_829" name="cpp_sym_IP_OPTIONS" type="_46c" init="4" context="_1" location="f0:190" file="f0" line="190" static="1"/>
+ <Variable id="_830" name="cpp_sym___SIZEOF_PTHREAD_COND_T" type="_46c" init="48" context="_1" location="f0:237" file="f0" line="237" static="1"/>
+ <Typedef id="_831" name="__syscall_ulong_t" type="_18" context="_1" location="f9:199" file="f9" line="199"/>
+ <Variable id="_832" name="cpp_sym_INT_FAST8_MIN" type="_46c" init="-0x00000000000000080" context="_1" location="f0:107" file="f0" line="107" static="1"/>
+ <Variable id="_833" name="cpp_sym___USE_FORTIFY_LEVEL" type="_46c" init="0" context="_1" location="f0:81" file="f0" line="81" static="1"/>
+ <Variable id="_834" name="cpp_sym___KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64" type="_46c" init="1" context="_1" location="f0:268" file="f0" line="268" static="1"/>
+ <Variable id="_835" name="cpp_sym__BITS_ENDIANNESS_H" type="_46c" init="1" context="_1" location="f0:63" file="f0" line="63" static="1"/>
+ <Variable id="_836" name="cpp_sym__BITS_TYPES_H" type="_46c" init="1" context="_1" location="f0:244" file="f0" line="244" static="1"/>
+ <Function id="_837" name="getsockname" returns="_46" throw="" context="_1" location="f2:117" file="f2" line="117" extern="1">
+ <Argument name="__fd" type="_46" location="f2:117" file="f2" line="117"/>
+ <Argument name="__addr" type="_1039r" location="f2:117" file="f2" line="117"/>
+ <Argument name="__len" type="_1041r" location="f2:117" file="f2" line="117"/>
+ </Function>
+ <Variable id="_838" name="cpp_sym_SO_TIMESTAMPNS_OLD" type="_46c" init="35" context="_1" location="f0:300" file="f0" line="300" static="1"/>
+ <Variable id="_839" name="cpp_sym_SO_PEEK_OFF" type="_46c" init="42" context="_1" location="f0:320" file="f0" line="320" static="1"/>
+ <Function id="_840" name="select" returns="_46" context="_1" location="f20:104" file="f20" line="104" extern="1">
+ <Argument name="__nfds" type="_46" location="f20:104" file="f20" line="104"/>
+ <Argument name="__readfds" type="_1166r" location="f20:104" file="f20" line="104"/>
+ <Argument name="__writefds" type="_1166r" location="f20:104" file="f20" line="104"/>
+ <Argument name="__exceptfds" type="_1166r" location="f20:104" file="f20" line="104"/>
+ <Argument name="__timeout" type="_1370r" location="f20:104" file="f20" line="104"/>
+ </Function>
+ <Variable id="_841" name="cpp_sym_UINT_FAST64_WIDTH" type="_46c" init="64" context="_1" location="f0:104" file="f0" line="104" static="1"/>
+ <Variable id="_842" name="cpp_sym_INT_LEAST8_MAX" type="_46c" init="127" context="_1" location="f0:127" file="f0" line="127" static="1"/>
+ <Variable id="_843" name="cpp_sym_MNCC_CALL_CONF_IND" type="_46c" init="263" context="_1" location="f0:211" file="f0" line="211" static="1"/>
+ <Variable id="_844" name="cpp_sym_IP_MSFILTER" type="_46c" init="41" context="_1" location="f0:247" file="f0" line="247" static="1"/>
+ <Typedef id="_845" name="__blksize_t" type="_16" context="_1" location="f9:175" file="f9" line="175"/>
+ <Variable id="_846" name="cpp_sym_SOL_AAL" type="_46c" init="265" context="_1" location="f0:20" file="f0" line="20" static="1"/>
+ <Variable id="_847" name="cpp_sym___BIT_TYPES_DEFINED__" type="_46c" init="1" context="_1" location="f0:465" file="f0" line="465" static="1"/>
+ <Variable id="_848" name="cpp_sym_SO_BPF_EXTENSIONS" type="_46c" init="48" context="_1" location="f0:466" file="f0" line="466" static="1"/>
+ <Variable id="_849" name="cpp_sym_IP_IPSEC_POLICY" type="_46c" init="16" context="_1" location="f0:437" file="f0" line="437" static="1"/>
+ <Struct id="_850" name="gsm_mncc_number" context="_1" mangled="15gsm_mncc_number" demangled="gsm_mncc_number" location="f11:160" file="f11" line="160" artificial="1" size="416" align="32" members="_1372 _1373 _1374 _1375 _1376 _1377 _1378 _1379 _1380 " bases=""/>
+ <Typedef id="_851" name="__syscall_slong_t" type="_16" context="_1" location="f9:197" file="f9" line="197"/>
+ <Variable id="_852" name="cpp_sym__STRUCT_TIMESPEC" type="_46c" init="1" context="_1" location="f0:419" file="f0" line="419" static="1"/>
+ <Variable id="_853" name="cpp_sym_PF_IEEE802154" type="_46c" init="36" context="_1" location="f0:376" file="f0" line="376" static="1"/>
+ <Variable id="_854" name="cpp_sym___STATFS_MATCHES_STATFS64" type="_46c" init="1" context="_1" location="f0:398" file="f0" line="398" static="1"/>
+ <Variable id="_855" name="cpp_sym_IPV6_MTU_DISCOVER" type="_46c" init="23" context="_1" location="f0:240" file="f0" line="240" static="1"/>
+ <Variable id="_856" name="cpp_sym___BITS_PER_LONG" type="_46c" init="64" context="_1" location="f0:167" file="f0" line="167" static="1"/>
+ <Variable id="_857" name="cpp_sym_INT8_MIN" type="_46c" init="-0x00000000000000080" context="_1" location="f0:222" file="f0" line="222" static="1"/>
+ <Typedef id="_858" name="uint_least8_t" type="_155" context="_1" location="f4:49" file="f4" line="49"/>
+ <Variable id="_859" name="cpp_sym_MNCC_F_PROGRESS" type="_46c" init="128" context="_1" location="f0:323" file="f0" line="323" static="1"/>
+ <Function id="_860" name="inet6_option_append" returns="_46" throw="" context="_1" location="f5:562" file="f5" line="562" extern="1" attributes="__deprecated__">
+ <Argument name="__cmsg" type="_1060" location="f5:562" file="f5" line="562"/>
+ <Argument name="__typep" type="_1381" location="f5:562" file="f5" line="562"/>
+ <Argument name="__multx" type="_46" location="f5:562" file="f5" line="562"/>
+ <Argument name="__plusy" type="_46" location="f5:562" file="f5" line="562"/>
+ </Function>
+ <Variable id="_861" name="cpp_sym_PF_PACKET" type="_46c" init="17" context="_1" location="f0:451" file="f0" line="451" static="1"/>
+ <Typedef id="_862" name="sa_family_t" type="_171" context="_1" location="f33:28" file="f33" line="28"/>
+ <Variable id="_863" name="cpp_sym_SO_MEMINFO" type="_46c" init="55" context="_1" location="f0:197" file="f0" line="197" static="1"/>
+ <Variable id="_864" name="cpp_sym___GNU_LIBRARY__" type="_46c" init="6" context="_1" location="f0:283" file="f0" line="283" static="1"/>
+ <Variable id="_865" name="cpp_sym___SIZEOF_PTHREAD_MUTEXATTR_T" type="_46c" init="4" context="_1" location="f0:32" file="f0" line="32" static="1"/>
+ <Variable id="_866" name="cpp_sym_IPV6_2292PKTOPTIONS" type="_46c" init="6" context="_1" location="f0:216" file="f0" line="216" static="1"/>
+ <Variable id="_867" name="cpp_sym_SIOCGSTAMPNS_OLD" type="_46c" init="35079" context="_1" location="f0:256" file="f0" line="256" static="1"/>
+ <Variable id="_868" name="cpp_sym_IPV6_PATHMTU" type="_46c" init="61" context="_1" location="f0:385" file="f0" line="385" static="1"/>
+ <Variable id="_869" name="cpp_sym_IP_TRANSPARENT" type="_46c" init="19" context="_1" location="f0:532" file="f0" line="532" static="1"/>
+ <Variable id="_870" name="cpp_sym_SO_TIMESTAMP_NEW" type="_46c" init="63" context="_1" location="f0:475" file="f0" line="475" static="1"/>
+ <Variable id="_871" name="cpp_sym_MNCC_DISC_REQ" type="_46c" init="270" context="_1" location="f0:313" file="f0" line="313" static="1"/>
+ <Variable id="_872" name="cpp_sym_MNCC_RTP_CREATE" type="_46c" init="516" context="_1" location="f0:10" file="f0" line="10" static="1"/>
+ <Function id="_873" name="bindresvport" returns="_46" throw="" context="_1" location="f5:507" file="f5" line="507" extern="1">
+ <Argument name="__sockfd" type="_46" location="f5:507" file="f5" line="507"/>
+ <Argument name="__sock_in" type="_1382" location="f5:507" file="f5" line="507"/>
+ </Function>
+ <Variable id="_874" name="cpp_sym_SOL_PPPOL2TP" type="_46c" init="273" context="_1" location="f0:2" file="f0" line="2" static="1"/>
+ <Variable id="_875" name="cpp_sym_IPV6_NEXTHOP" type="_46c" init="9" context="_1" location="f0:246" file="f0" line="246" static="1"/>
+ <Typedef id="_876" name="uint64_t" type="_79" context="_1" location="f24:27" file="f24" line="27"/>
+ <Typedef id="_877" name="__clock_t" type="_16" context="_1" location="f9:156" file="f9" line="156"/>
+ <Variable id="_878" name="cpp_sym_INT_LEAST8_MIN" type="_46c" init="-0x00000000000000080" context="_1" location="f0:36" file="f0" line="36" static="1"/>
+ <Variable id="_879" name="cpp_sym_SO_RCVBUF" type="_46c" init="8" context="_1" location="f0:5" file="f0" line="5" static="1"/>
+ <Variable id="_880" name="cpp_sym__POSIX_SOURCE" type="_46c" init="1" context="_1" location="f0:34" file="f0" line="34" static="1"/>
+ <Variable id="_881" name="cpp_sym_UINT_LEAST32_MAX" type="_32c" init="4294967295u" context="_1" location="f0:317" file="f0" line="317" static="1"/>
+ <Typedef id="_882" name="__int32_t" type="_46" context="_1" location="f9:41" file="f9" line="41"/>
+ <Variable id="_883" name="cpp_sym_INTMAX_MAX" type="_16c" init="9223372036854775807l" context="_1" location="f0:301" file="f0" line="301" static="1"/>
+ <Function id="_884" name="inet6_rth_reverse" returns="_46" throw="" context="_1" location="f5:598" file="f5" line="598" extern="1">
+ <Argument name="__in" type="_1076" location="f5:598" file="f5" line="598"/>
+ <Argument name="__out" type="_222" location="f5:598" file="f5" line="598"/>
+ </Function>
+ <Variable id="_885" name="cpp_sym_SOL_TIPC" type="_46c" init="271" context="_1" location="f0:296" file="f0" line="296" static="1"/>
+ <Typedef id="_886" name="__caddr_t" type="_479" context="_1" location="f9:204" file="f9" line="204"/>
+ <CvQualifiedType id="_46c" type="_46" const="1"/>
+ <Field id="_888" name="tv_sec" type="_485" offset="0" context="_8" access="public" location="f1:10" file="f1" line="10"/>
+ <Field id="_889" name="tv_usec" type="_98" offset="64" context="_8" access="public" location="f1:11" file="f1" line="11"/>
+ <Destructor id="_890" name="timeval" artificial="1" throw="" context="_8" access="public" mangled="_ZN7timevalD1Ev *INTERNAL* " demangled="timeval::~timeval()" location="f1:9" file="f1" line="9" endline="9" inline="1">
+ </Destructor>
+ <OperatorMethod id="_891" name="=" returns="_1383" artificial="1" throw="" context="_8" access="public" mangled="_ZN7timevalaSERKS_" demangled="timeval::operator=(timeval const&amp;)" location="f1:9" file="f1" line="9" endline="9" inline="1">
+ <Argument type="_1384" location="f1:9" file="f1" line="9"/>
+ </OperatorMethod>
+ <Constructor id="_892" name="timeval" artificial="1" throw="" context="_8" access="public" mangled="_ZN7timevalC1ERKS_ *INTERNAL* " demangled="timeval::timeval(timeval const&amp;)" location="f1:9" file="f1" line="9" endline="9" inline="1">
+ <Argument type="_1384" location="f1:9" file="f1" line="9"/>
+ </Constructor>
+ <Constructor id="_893" name="timeval" artificial="1" throw="" context="_8" access="public" mangled="_ZN7timevalC1Ev *INTERNAL* " demangled="timeval::timeval()" location="f1:9" file="f1" line="9" inline="1"/>
+ <CvQualifiedType id="_32c" type="_32" const="1"/>
+ <Field id="_895" name="ipi6_addr" type="_237" offset="0" context="_21" access="public" location="f5:543" file="f5" line="543"/>
+ <Field id="_896" name="ipi6_ifindex" type="_32" offset="128" context="_21" access="public" location="f5:544" file="f5" line="544"/>
+ <Destructor id="_897" name="in6_pktinfo" artificial="1" throw="" context="_21" access="public" mangled="_ZN11in6_pktinfoD1Ev *INTERNAL* " demangled="in6_pktinfo::~in6_pktinfo()" location="f5:542" file="f5" line="542" endline="542" inline="1">
+ </Destructor>
+ <OperatorMethod id="_898" name="=" returns="_1385" artificial="1" throw="" context="_21" access="public" mangled="_ZN11in6_pktinfoaSERKS_" demangled="in6_pktinfo::operator=(in6_pktinfo const&amp;)" location="f5:542" file="f5" line="542" endline="542" inline="1">
+ <Argument type="_1386" location="f5:542" file="f5" line="542"/>
+ </OperatorMethod>
+ <Constructor id="_899" name="in6_pktinfo" artificial="1" throw="" context="_21" access="public" mangled="_ZN11in6_pktinfoC1ERKS_ *INTERNAL* " demangled="in6_pktinfo::in6_pktinfo(in6_pktinfo const&amp;)" location="f5:542" file="f5" line="542" endline="542" inline="1">
+ <Argument type="_1386" location="f5:542" file="f5" line="542"/>
+ </Constructor>
+ <Constructor id="_900" name="in6_pktinfo" artificial="1" throw="" context="_21" access="public" mangled="_ZN11in6_pktinfoC1Ev *INTERNAL* " demangled="in6_pktinfo::in6_pktinfo()" location="f5:542" file="f5" line="542" inline="1"/>
+ <CvQualifiedType id="_16c" type="_16" const="1"/>
+ <Field id="_902" name="__size" type="_1387" offset="0" context="_30" access="public" location="f7:43" file="f7" line="43"/>
+ <Field id="_903" name="__align" type="_46" offset="0" context="_30" access="public" location="f7:44" file="f7" line="44"/>
+ <Destructor id="_904" name="._9" artificial="1" throw="" context="_30" access="public" mangled="_ZN18pthread_condattr_tD1Ev *INTERNAL* " demangled="pthread_condattr_t::~pthread_condattr_t()" location="f7:45" file="f7" line="45" endline="45" inline="1">
+ </Destructor>
+ <OperatorMethod id="_905" name="=" returns="_1388" artificial="1" throw="" context="_30" access="public" mangled="_ZN18pthread_condattr_taSERKS_" demangled="pthread_condattr_t::operator=(pthread_condattr_t const&amp;)" location="f7:45" file="f7" line="45" endline="45" inline="1">
+ <Argument type="_1389" location="f7:42" file="f7" line="42"/>
+ </OperatorMethod>
+ <Constructor id="_906" name="._9" artificial="1" throw="" context="_30" access="public" mangled="_ZN18pthread_condattr_tC1ERKS_ *INTERNAL* " demangled="pthread_condattr_t::pthread_condattr_t(pthread_condattr_t const&amp;)" location="f7:45" file="f7" line="45" endline="45" inline="1">
+ <Argument type="_1389" location="f7:42" file="f7" line="42"/>
+ </Constructor>
+ <Constructor id="_907" name="._9" artificial="1" throw="" context="_30" access="public" mangled="_ZN18pthread_condattr_tC1Ev *INTERNAL* " demangled="pthread_condattr_t::pthread_condattr_t()" location="f7:45" file="f7" line="45" inline="1"/>
+ <Field id="_908" name="" type="_915" offset="0" context="_38" access="public" location="f10:102" file="f10" line="102"/>
+ <Field id="_909" name="" type="_916" offset="64" context="_38" access="public" location="f10:111" file="f10" line="111"/>
+ <Field id="_910" name="__g_refs" type="_1390" offset="128" context="_38" access="public" location="f10:112" file="f10" line="112"/>
+ <Field id="_911" name="__g_size" type="_1390" offset="192" context="_38" access="public" location="f10:113" file="f10" line="113"/>
+ <Field id="_912" name="__g1_orig_size" type="_32" offset="256" context="_38" access="public" location="f10:114" file="f10" line="114"/>
+ <Field id="_913" name="__wrefs" type="_32" offset="288" context="_38" access="public" location="f10:115" file="f10" line="115"/>
+ <Field id="_914" name="__g_signals" type="_1390" offset="320" context="_38" access="public" location="f10:116" file="f10" line="116"/>
+ <Union id="_915" context="_38" access="public" mangled="N16__pthread_cond_s3._3E" demangled="__pthread_cond_s::._3" location="f10:95" file="f10" line="95" artificial="1" size="64" align="64" members="_1391 _1392 _1393 " bases=""/>
+ <Union id="_916" context="_38" access="public" mangled="N16__pthread_cond_s3._5E" demangled="__pthread_cond_s::._5" location="f10:104" file="f10" line="104" artificial="1" size="64" align="64" members="_1394 _1395 _1396 " bases=""/>
+ <Destructor id="_917" name="__pthread_cond_s" artificial="1" throw="" context="_38" access="public" mangled="_ZN16__pthread_cond_sD1Ev *INTERNAL* " demangled="__pthread_cond_s::~__pthread_cond_s()" location="f10:93" file="f10" line="93" endline="93" inline="1">
+ </Destructor>
+ <OperatorMethod id="_918" name="=" returns="_1397" artificial="1" throw="" context="_38" access="public" mangled="_ZN16__pthread_cond_saSERKS_" demangled="__pthread_cond_s::operator=(__pthread_cond_s const&amp;)" location="f10:93" file="f10" line="93" endline="93" inline="1">
+ <Argument type="_1398" location="f10:93" file="f10" line="93"/>
+ </OperatorMethod>
+ <Constructor id="_919" name="__pthread_cond_s" artificial="1" throw="" context="_38" access="public" mangled="_ZN16__pthread_cond_sC1ERKS_ *INTERNAL* " demangled="__pthread_cond_s::__pthread_cond_s(__pthread_cond_s const&amp;)" location="f10:93" file="f10" line="93" endline="93" inline="1">
+ <Argument type="_1398" location="f10:93" file="f10" line="93"/>
+ </Constructor>
+ <Constructor id="_920" name="__pthread_cond_s" artificial="1" throw="" context="_38" access="public" mangled="_ZN16__pthread_cond_sC1Ev *INTERNAL* " demangled="__pthread_cond_s::__pthread_cond_s()" location="f10:93" file="f10" line="93" inline="1"/>
+ <PointerType id="_921" type="_675" size="64" align="64"/>
+ <Field id="_922" name="dtmf" type="_46" offset="0" context="_53" access="public" location="f11:200" file="f11" line="200"/>
+ <Field id="_923" name="pcp" type="_46" offset="32" context="_53" access="public" location="f11:201" file="f11" line="201"/>
+ <Destructor id="_924" name="gsm_mncc_cccap" artificial="1" throw="" context="_53" access="public" mangled="_ZN14gsm_mncc_cccapD1Ev *INTERNAL* " demangled="gsm_mncc_cccap::~gsm_mncc_cccap()" location="f11:199" file="f11" line="199" endline="199" inline="1">
+ </Destructor>
+ <OperatorMethod id="_925" name="=" returns="_1399" artificial="1" throw="" context="_53" access="public" mangled="_ZN14gsm_mncc_cccapaSERKS_" demangled="gsm_mncc_cccap::operator=(gsm_mncc_cccap const&amp;)" location="f11:199" file="f11" line="199" endline="199" inline="1">
+ <Argument type="_1400" location="f11:199" file="f11" line="199"/>
+ </OperatorMethod>
+ <Constructor id="_926" name="gsm_mncc_cccap" artificial="1" throw="" context="_53" access="public" mangled="_ZN14gsm_mncc_cccapC1ERKS_ *INTERNAL* " demangled="gsm_mncc_cccap::gsm_mncc_cccap(gsm_mncc_cccap const&amp;)" location="f11:199" file="f11" line="199" endline="199" inline="1">
+ <Argument type="_1400" location="f11:199" file="f11" line="199"/>
+ </Constructor>
+ <Constructor id="_927" name="gsm_mncc_cccap" artificial="1" throw="" context="_53" access="public" mangled="_ZN14gsm_mncc_cccapC1Ev *INTERNAL* " demangled="gsm_mncc_cccap::gsm_mncc_cccap()" location="f11:199" file="f11" line="199" inline="1"/>
+ <Field id="_928" name="__val" type="_1401" offset="0" context="_63" access="public" location="f12:7" file="f12" line="7"/>
+ <Destructor id="_929" name="._1" artificial="1" throw="" context="_63" access="public" mangled="_ZN10__sigset_tD1Ev *INTERNAL* " demangled="__sigset_t::~__sigset_t()" location="f12:8" file="f12" line="8" endline="8" inline="1">
+ </Destructor>
+ <OperatorMethod id="_930" name="=" returns="_1402" artificial="1" throw="" context="_63" access="public" mangled="_ZN10__sigset_taSERKS_" demangled="__sigset_t::operator=(__sigset_t const&amp;)" location="f12:8" file="f12" line="8" endline="8" inline="1">
+ <Argument type="_1403" location="f12:6" file="f12" line="6"/>
+ </OperatorMethod>
+ <Constructor id="_931" name="._1" artificial="1" throw="" context="_63" access="public" mangled="_ZN10__sigset_tC1ERKS_ *INTERNAL* " demangled="__sigset_t::__sigset_t(__sigset_t const&amp;)" location="f12:8" file="f12" line="8" endline="8" inline="1">
+ <Argument type="_1403" location="f12:6" file="f12" line="6"/>
+ </Constructor>
+ <Constructor id="_932" name="._1" artificial="1" throw="" context="_63" access="public" mangled="_ZN10__sigset_tC1Ev *INTERNAL* " demangled="__sigset_t::__sigset_t()" location="f12:8" file="f12" line="8" inline="1"/>
+ <Field id="_933" name="__next" type="_1404" offset="0" context="_66" access="public" location="f10:57" file="f10" line="57"/>
+ <Destructor id="_934" name="__pthread_internal_slist" artificial="1" throw="" context="_66" access="public" mangled="_ZN24__pthread_internal_slistD1Ev *INTERNAL* " demangled="__pthread_internal_slist::~__pthread_internal_slist()" location="f10:56" file="f10" line="56" endline="56" inline="1">
+ </Destructor>
+ <OperatorMethod id="_935" name="=" returns="_1405" artificial="1" throw="" context="_66" access="public" mangled="_ZN24__pthread_internal_slistaSERKS_" demangled="__pthread_internal_slist::operator=(__pthread_internal_slist const&amp;)" location="f10:56" file="f10" line="56" endline="56" inline="1">
+ <Argument type="_1406" location="f10:56" file="f10" line="56"/>
+ </OperatorMethod>
+ <Constructor id="_936" name="__pthread_internal_slist" artificial="1" throw="" context="_66" access="public" mangled="_ZN24__pthread_internal_slistC1ERKS_ *INTERNAL* " demangled="__pthread_internal_slist::__pthread_internal_slist(__pthread_internal_slist const&amp;)" location="f10:56" file="f10" line="56" endline="56" inline="1">
+ <Argument type="_1406" location="f10:56" file="f10" line="56"/>
+ </Constructor>
+ <Constructor id="_937" name="__pthread_internal_slist" artificial="1" throw="" context="_66" access="public" mangled="_ZN24__pthread_internal_slistC1Ev *INTERNAL* " demangled="__pthread_internal_slist::__pthread_internal_slist()" location="f10:56" file="f10" line="56" inline="1"/>
+ <Field id="_938" name="proto" type="_46" offset="0" context="_67" access="public" location="f11:179" file="f11" line="179"/>
+ <Field id="_939" name="info" type="_1407" offset="32" context="_67" access="public" location="f11:180" file="f11" line="180"/>
+ <Destructor id="_940" name="gsm_mncc_useruser" artificial="1" throw="" context="_67" access="public" mangled="_ZN17gsm_mncc_useruserD1Ev *INTERNAL* " demangled="gsm_mncc_useruser::~gsm_mncc_useruser()" location="f11:178" file="f11" line="178" endline="178" inline="1">
+ </Destructor>
+ <OperatorMethod id="_941" name="=" returns="_1408" artificial="1" throw="" context="_67" access="public" mangled="_ZN17gsm_mncc_useruseraSERKS_" demangled="gsm_mncc_useruser::operator=(gsm_mncc_useruser const&amp;)" location="f11:178" file="f11" line="178" endline="178" inline="1">
+ <Argument type="_1409" location="f11:178" file="f11" line="178"/>
+ </OperatorMethod>
+ <Constructor id="_942" name="gsm_mncc_useruser" artificial="1" throw="" context="_67" access="public" mangled="_ZN17gsm_mncc_useruserC1ERKS_ *INTERNAL* " demangled="gsm_mncc_useruser::gsm_mncc_useruser(gsm_mncc_useruser const&amp;)" location="f11:178" file="f11" line="178" endline="178" inline="1">
+ <Argument type="_1409" location="f11:178" file="f11" line="178"/>
+ </Constructor>
+ <Constructor id="_943" name="gsm_mncc_useruser" artificial="1" throw="" context="_67" access="public" mangled="_ZN17gsm_mncc_useruserC1Ev *INTERNAL* " demangled="gsm_mncc_useruser::gsm_mncc_useruser()" location="f11:178" file="f11" line="178" inline="1"/>
+ <Field id="_944" name="ip6m_addr" type="_758" offset="0" context="_69" access="public" location="f5:550" file="f5" line="550"/>
+ <Field id="_945" name="ip6m_mtu" type="_322" offset="224" context="_69" access="public" location="f5:551" file="f5" line="551"/>
+ <Destructor id="_946" name="ip6_mtuinfo" artificial="1" throw="" context="_69" access="public" mangled="_ZN11ip6_mtuinfoD1Ev *INTERNAL* " demangled="ip6_mtuinfo::~ip6_mtuinfo()" location="f5:549" file="f5" line="549" endline="549" inline="1">
+ </Destructor>
+ <OperatorMethod id="_947" name="=" returns="_1410" artificial="1" throw="" context="_69" access="public" mangled="_ZN11ip6_mtuinfoaSERKS_" demangled="ip6_mtuinfo::operator=(ip6_mtuinfo const&amp;)" location="f5:549" file="f5" line="549" endline="549" inline="1">
+ <Argument type="_1411" location="f5:549" file="f5" line="549"/>
+ </OperatorMethod>
+ <Constructor id="_948" name="ip6_mtuinfo" artificial="1" throw="" context="_69" access="public" mangled="_ZN11ip6_mtuinfoC1ERKS_ *INTERNAL* " demangled="ip6_mtuinfo::ip6_mtuinfo(ip6_mtuinfo const&amp;)" location="f5:549" file="f5" line="549" endline="549" inline="1">
+ <Argument type="_1411" location="f5:549" file="f5" line="549"/>
+ </Constructor>
+ <Constructor id="_949" name="ip6_mtuinfo" artificial="1" throw="" context="_69" access="public" mangled="_ZN11ip6_mtuinfoC1Ev *INTERNAL* " demangled="ip6_mtuinfo::ip6_mtuinfo()" location="f5:549" file="f5" line="549" inline="1"/>
+ <Field id="_950" name="msg_type" type="_322" offset="0" context="_71" access="public" location="f11:293" file="f11" line="293"/>
+ <Field id="_951" name="callref" type="_322" offset="32" context="_71" access="public" location="f11:294" file="f11" line="294"/>
+ <Field id="_952" name="fields" type="_322" offset="64" context="_71" access="public" location="f11:297" file="f11" line="297"/>
+ <Field id="_953" name="bearer_cap" type="_552" offset="96" context="_71" access="public" location="f11:300" file="f11" line="300"/>
+ <Field id="_954" name="called" type="_850" offset="832" context="_71" access="public" location="f11:301" file="f11" line="301"/>
+ <Field id="_955" name="calling" type="_850" offset="1248" context="_71" access="public" location="f11:302" file="f11" line="302"/>
+ <Field id="_956" name="redirecting" type="_850" offset="1664" context="_71" access="public" location="f11:303" file="f11" line="303"/>
+ <Field id="_957" name="connected" type="_850" offset="2080" context="_71" access="public" location="f11:304" file="f11" line="304"/>
+ <Field id="_958" name="cause" type="_302" offset="2496" context="_71" access="public" location="f11:305" file="f11" line="305"/>
+ <Field id="_959" name="progress" type="_301" offset="2944" context="_71" access="public" location="f11:306" file="f11" line="306"/>
+ <Field id="_960" name="useruser" type="_67" offset="3040" context="_71" access="public" location="f11:307" file="f11" line="307"/>
+ <Field id="_961" name="facility" type="_111" offset="4128" context="_71" access="public" location="f11:308" file="f11" line="308"/>
+ <Field id="_962" name="cccap" type="_53" offset="5184" context="_71" access="public" location="f11:309" file="f11" line="309"/>
+ <Field id="_963" name="ssversion" type="_169" offset="5248" context="_71" access="public" location="f11:310" file="f11" line="310"/>
+ <Field id="_964" name="clir" type="_974" offset="6304" context="_71" access="public" location="f11:314" file="f11" line="314"/>
+ <Field id="_965" name="signal" type="_46" offset="6368" context="_71" access="public" location="f11:315" file="f11" line="315"/>
+ <Field id="_966" name="keypad" type="_46" offset="6400" context="_71" access="public" location="f11:318" file="f11" line="318"/>
+ <Field id="_967" name="more" type="_46" offset="6432" context="_71" access="public" location="f11:319" file="f11" line="319"/>
+ <Field id="_968" name="notify" type="_46" offset="6464" context="_71" access="public" location="f11:320" file="f11" line="320"/>
+ <Field id="_969" name="emergency" type="_46" offset="6496" context="_71" access="public" location="f11:321" file="f11" line="321"/>
+ <Field id="_970" name="imsi" type="_1412" offset="6528" context="_71" access="public" location="f11:322" file="f11" line="322"/>
+ <Field id="_971" name="lchan_type" type="_154" offset="6656" context="_71" access="public" location="f11:324" file="f11" line="324"/>
+ <Field id="_972" name="lchan_mode" type="_154" offset="6664" context="_71" access="public" location="f11:325" file="f11" line="325"/>
+ <Field id="_973" name="sdp" type="_1413" offset="6672" context="_71" access="public" location="f11:327" file="f11" line="327"/>
+ <Struct id="_974" context="_71" access="public" mangled="N8gsm_mncc4._27E" demangled="gsm_mncc::._27" location="f11:311" file="f11" line="311" artificial="1" size="64" align="32" members="_1414 _1415 _1416 _1417 _1418 _1419 " bases=""/>
+ <Destructor id="_975" name="gsm_mncc" artificial="1" throw="" context="_71" access="public" mangled="_ZN8gsm_mnccD1Ev *INTERNAL* " demangled="gsm_mncc::~gsm_mncc()" location="f11:291" file="f11" line="291" endline="291" inline="1">
+ </Destructor>
+ <OperatorMethod id="_976" name="=" returns="_1420" artificial="1" throw="" context="_71" access="public" mangled="_ZN8gsm_mnccaSERKS_" demangled="gsm_mncc::operator=(gsm_mncc const&amp;)" location="f11:291" file="f11" line="291" endline="291" inline="1">
+ <Argument type="_1421" location="f11:291" file="f11" line="291"/>
+ </OperatorMethod>
+ <Constructor id="_977" name="gsm_mncc" artificial="1" throw="" context="_71" access="public" mangled="_ZN8gsm_mnccC1ERKS_ *INTERNAL* " demangled="gsm_mncc::gsm_mncc(gsm_mncc const&amp;)" location="f11:291" file="f11" line="291" endline="291" inline="1">
+ <Argument type="_1421" location="f11:291" file="f11" line="291"/>
+ </Constructor>
+ <Constructor id="_978" name="gsm_mncc" artificial="1" throw="" context="_71" access="public" mangled="_ZN8gsm_mnccC1Ev *INTERNAL* " demangled="gsm_mncc::gsm_mncc()" location="f11:291" file="f11" line="291" inline="1"/>
+ <Field id="_979" name="ipv6mr_multiaddr" type="_237" offset="0" context="_77" access="public" location="f5:296" file="f5" line="296"/>
+ <Field id="_980" name="ipv6mr_interface" type="_32" offset="128" context="_77" access="public" location="f5:299" file="f5" line="299"/>
+ <Destructor id="_981" name="ipv6_mreq" artificial="1" throw="" context="_77" access="public" mangled="_ZN9ipv6_mreqD1Ev *INTERNAL* " demangled="ipv6_mreq::~ipv6_mreq()" location="f5:294" file="f5" line="294" endline="294" inline="1">
+ </Destructor>
+ <OperatorMethod id="_982" name="=" returns="_1422" artificial="1" throw="" context="_77" access="public" mangled="_ZN9ipv6_mreqaSERKS_" demangled="ipv6_mreq::operator=(ipv6_mreq const&amp;)" location="f5:294" file="f5" line="294" endline="294" inline="1">
+ <Argument type="_1423" location="f5:294" file="f5" line="294"/>
+ </OperatorMethod>
+ <Constructor id="_983" name="ipv6_mreq" artificial="1" throw="" context="_77" access="public" mangled="_ZN9ipv6_mreqC1ERKS_ *INTERNAL* " demangled="ipv6_mreq::ipv6_mreq(ipv6_mreq const&amp;)" location="f5:294" file="f5" line="294" endline="294" inline="1">
+ <Argument type="_1423" location="f5:294" file="f5" line="294"/>
+ </Constructor>
+ <Constructor id="_984" name="ipv6_mreq" artificial="1" throw="" context="_77" access="public" mangled="_ZN9ipv6_mreqC1Ev *INTERNAL* " demangled="ipv6_mreq::ipv6_mreq()" location="f5:294" file="f5" line="294" inline="1"/>
+ <Field id="_985" name="imr_multiaddr" type="_679" offset="0" context="_94" access="public" location="f5:272" file="f5" line="272"/>
+ <Field id="_986" name="imr_interface" type="_679" offset="32" context="_94" access="public" location="f5:275" file="f5" line="275"/>
+ <Destructor id="_987" name="ip_mreq" artificial="1" throw="" context="_94" access="public" mangled="_ZN7ip_mreqD1Ev *INTERNAL* " demangled="ip_mreq::~ip_mreq()" location="f5:270" file="f5" line="270" endline="270" inline="1">
+ </Destructor>
+ <OperatorMethod id="_988" name="=" returns="_1424" artificial="1" throw="" context="_94" access="public" mangled="_ZN7ip_mreqaSERKS_" demangled="ip_mreq::operator=(ip_mreq const&amp;)" location="f5:270" file="f5" line="270" endline="270" inline="1">
+ <Argument type="_1425" location="f5:270" file="f5" line="270"/>
+ </OperatorMethod>
+ <Constructor id="_989" name="ip_mreq" artificial="1" throw="" context="_94" access="public" mangled="_ZN7ip_mreqC1ERKS_ *INTERNAL* " demangled="ip_mreq::ip_mreq(ip_mreq const&amp;)" location="f5:270" file="f5" line="270" endline="270" inline="1">
+ <Argument type="_1425" location="f5:270" file="f5" line="270"/>
+ </Constructor>
+ <Constructor id="_990" name="ip_mreq" artificial="1" throw="" context="_94" access="public" mangled="_ZN7ip_mreqC1Ev *INTERNAL* " demangled="ip_mreq::ip_mreq()" location="f5:270" file="f5" line="270" inline="1"/>
+ <Field id="_991" name="len" type="_46" offset="0" context="_111" access="public" location="f11:190" file="f11" line="190"/>
+ <Field id="_992" name="info" type="_1426" offset="32" context="_111" access="public" location="f11:191" file="f11" line="191"/>
+ <Destructor id="_993" name="gsm_mncc_facility" artificial="1" throw="" context="_111" access="public" mangled="_ZN17gsm_mncc_facilityD1Ev *INTERNAL* " demangled="gsm_mncc_facility::~gsm_mncc_facility()" location="f11:189" file="f11" line="189" endline="189" inline="1">
+ </Destructor>
+ <OperatorMethod id="_994" name="=" returns="_1427" artificial="1" throw="" context="_111" access="public" mangled="_ZN17gsm_mncc_facilityaSERKS_" demangled="gsm_mncc_facility::operator=(gsm_mncc_facility const&amp;)" location="f11:189" file="f11" line="189" endline="189" inline="1">
+ <Argument type="_1428" location="f11:189" file="f11" line="189"/>
+ </OperatorMethod>
+ <Constructor id="_995" name="gsm_mncc_facility" artificial="1" throw="" context="_111" access="public" mangled="_ZN17gsm_mncc_facilityC1ERKS_ *INTERNAL* " demangled="gsm_mncc_facility::gsm_mncc_facility(gsm_mncc_facility const&amp;)" location="f11:189" file="f11" line="189" endline="189" inline="1">
+ <Argument type="_1428" location="f11:189" file="f11" line="189"/>
+ </Constructor>
+ <Constructor id="_996" name="gsm_mncc_facility" artificial="1" throw="" context="_111" access="public" mangled="_ZN17gsm_mncc_facilityC1Ev *INTERNAL* " demangled="gsm_mncc_facility::gsm_mncc_facility()" location="f11:189" file="f11" line="189" inline="1"/>
+ <CvQualifiedType id="_18c" type="_18" const="1"/>
+ <CvQualifiedType id="_237c" type="_237" const="1"/>
+ <Field id="_1000" name="ipi_ifindex" type="_46" offset="0" context="_143" access="public" location="f18:159" file="f18" line="159"/>
+ <Field id="_1001" name="ipi_spec_dst" type="_679" offset="32" context="_143" access="public" location="f18:160" file="f18" line="160"/>
+ <Field id="_1002" name="ipi_addr" type="_679" offset="64" context="_143" access="public" location="f18:161" file="f18" line="161"/>
+ <Destructor id="_1003" name="in_pktinfo" artificial="1" throw="" context="_143" access="public" mangled="_ZN10in_pktinfoD1Ev *INTERNAL* " demangled="in_pktinfo::~in_pktinfo()" location="f18:158" file="f18" line="158" endline="158" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1004" name="=" returns="_1429" artificial="1" throw="" context="_143" access="public" mangled="_ZN10in_pktinfoaSERKS_" demangled="in_pktinfo::operator=(in_pktinfo const&amp;)" location="f18:158" file="f18" line="158" endline="158" inline="1">
+ <Argument type="_1430" location="f18:158" file="f18" line="158"/>
+ </OperatorMethod>
+ <Constructor id="_1005" name="in_pktinfo" artificial="1" throw="" context="_143" access="public" mangled="_ZN10in_pktinfoC1ERKS_ *INTERNAL* " demangled="in_pktinfo::in_pktinfo(in_pktinfo const&amp;)" location="f18:158" file="f18" line="158" endline="158" inline="1">
+ <Argument type="_1430" location="f18:158" file="f18" line="158"/>
+ </Constructor>
+ <Constructor id="_1006" name="in_pktinfo" artificial="1" throw="" context="_143" access="public" mangled="_ZN10in_pktinfoC1Ev *INTERNAL* " demangled="in_pktinfo::in_pktinfo()" location="f18:158" file="f18" line="158" inline="1"/>
+ <Field id="_1007" name="cmsg_len" type="_547" offset="0" context="_156" access="public" location="f19:277" file="f19" line="277"/>
+ <Field id="_1008" name="cmsg_level" type="_46" offset="64" context="_156" access="public" location="f19:282" file="f19" line="282"/>
+ <Field id="_1009" name="cmsg_type" type="_46" offset="96" context="_156" access="public" location="f19:283" file="f19" line="283"/>
+ <Field id="_1010" name="__cmsg_data" type="_1431" offset="128" context="_156" access="public" location="f19:285" file="f19" line="285"/>
+ <Destructor id="_1011" name="cmsghdr" artificial="1" throw="" context="_156" access="public" mangled="_ZN7cmsghdrD1Ev *INTERNAL* " demangled="cmsghdr::~cmsghdr()" location="f19:276" file="f19" line="276" endline="276" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1012" name="=" returns="_1432" artificial="1" throw="" context="_156" access="public" mangled="_ZN7cmsghdraSERKS_" demangled="cmsghdr::operator=(cmsghdr const&amp;)" location="f19:276" file="f19" line="276" endline="276" inline="1">
+ <Argument type="_1433" location="f19:276" file="f19" line="276"/>
+ </OperatorMethod>
+ <Constructor id="_1013" name="cmsghdr" artificial="1" throw="" context="_156" access="public" mangled="_ZN7cmsghdrC1ERKS_ *INTERNAL* " demangled="cmsghdr::cmsghdr(cmsghdr const&amp;)" location="f19:276" file="f19" line="276" endline="276" inline="1">
+ <Argument type="_1433" location="f19:276" file="f19" line="276"/>
+ </Constructor>
+ <Constructor id="_1014" name="cmsghdr" artificial="1" throw="" context="_156" access="public" mangled="_ZN7cmsghdrC1Ev *INTERNAL* " demangled="cmsghdr::cmsghdr()" location="f19:276" file="f19" line="276" inline="1"/>
+ <Field id="_1015" name="msg_type" type="_322" offset="0" context="_159" access="public" location="f11:331" file="f11" line="331"/>
+ <Field id="_1016" name="callref" type="_322" offset="32" context="_159" access="public" location="f11:332" file="f11" line="332"/>
+ <Field id="_1017" name="data" type="_1434" offset="64" context="_159" access="public" location="f11:333" file="f11" line="333"/>
+ <Destructor id="_1018" name="gsm_data_frame" artificial="1" throw="" context="_159" access="public" mangled="_ZN14gsm_data_frameD1Ev *INTERNAL* " demangled="gsm_data_frame::~gsm_data_frame()" location="f11:330" file="f11" line="330" endline="330" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1019" name="=" returns="_1435" artificial="1" throw="" context="_159" access="public" mangled="_ZN14gsm_data_frameaSERKS_" demangled="gsm_data_frame::operator=(gsm_data_frame const&amp;)" location="f11:330" file="f11" line="330" endline="330" inline="1">
+ <Argument type="_1436" location="f11:330" file="f11" line="330"/>
+ </OperatorMethod>
+ <Constructor id="_1020" name="gsm_data_frame" artificial="1" throw="" context="_159" access="public" mangled="_ZN14gsm_data_frameC1ERKS_ *INTERNAL* " demangled="gsm_data_frame::gsm_data_frame(gsm_data_frame const&amp;)" location="f11:330" file="f11" line="330" endline="330" inline="1">
+ <Argument type="_1436" location="f11:330" file="f11" line="330"/>
+ </Constructor>
+ <Constructor id="_1021" name="gsm_data_frame" artificial="1" throw="" context="_159" access="public" mangled="_ZN14gsm_data_frameC1Ev *INTERNAL* " demangled="gsm_data_frame::gsm_data_frame()" location="f11:330" file="f11" line="330" inline="1"/>
+ <Field id="_1022" name="__size" type="_1387" offset="0" context="_160" access="public" location="f7:34" file="f7" line="34"/>
+ <Field id="_1023" name="__align" type="_46" offset="0" context="_160" access="public" location="f7:35" file="f7" line="35"/>
+ <Destructor id="_1024" name="._8" artificial="1" throw="" context="_160" access="public" mangled="_ZN19pthread_mutexattr_tD1Ev *INTERNAL* " demangled="pthread_mutexattr_t::~pthread_mutexattr_t()" location="f7:36" file="f7" line="36" endline="36" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1025" name="=" returns="_1437" artificial="1" throw="" context="_160" access="public" mangled="_ZN19pthread_mutexattr_taSERKS_" demangled="pthread_mutexattr_t::operator=(pthread_mutexattr_t const&amp;)" location="f7:36" file="f7" line="36" endline="36" inline="1">
+ <Argument type="_1438" location="f7:33" file="f7" line="33"/>
+ </OperatorMethod>
+ <Constructor id="_1026" name="._8" artificial="1" throw="" context="_160" access="public" mangled="_ZN19pthread_mutexattr_tC1ERKS_ *INTERNAL* " demangled="pthread_mutexattr_t::pthread_mutexattr_t(pthread_mutexattr_t const&amp;)" location="f7:36" file="f7" line="36" endline="36" inline="1">
+ <Argument type="_1438" location="f7:33" file="f7" line="33"/>
+ </Constructor>
+ <Constructor id="_1027" name="._8" artificial="1" throw="" context="_160" access="public" mangled="_ZN19pthread_mutexattr_tC1Ev *INTERNAL* " demangled="pthread_mutexattr_t::pthread_mutexattr_t()" location="f7:36" file="f7" line="36" inline="1"/>
+ <Field id="_1028" name="len" type="_46" offset="0" context="_169" access="public" location="f11:195" file="f11" line="195"/>
+ <Field id="_1029" name="info" type="_1426" offset="32" context="_169" access="public" location="f11:196" file="f11" line="196"/>
+ <Destructor id="_1030" name="gsm_mncc_ssversion" artificial="1" throw="" context="_169" access="public" mangled="_ZN18gsm_mncc_ssversionD1Ev *INTERNAL* " demangled="gsm_mncc_ssversion::~gsm_mncc_ssversion()" location="f11:194" file="f11" line="194" endline="194" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1031" name="=" returns="_1439" artificial="1" throw="" context="_169" access="public" mangled="_ZN18gsm_mncc_ssversionaSERKS_" demangled="gsm_mncc_ssversion::operator=(gsm_mncc_ssversion const&amp;)" location="f11:194" file="f11" line="194" endline="194" inline="1">
+ <Argument type="_1440" location="f11:194" file="f11" line="194"/>
+ </OperatorMethod>
+ <Constructor id="_1032" name="gsm_mncc_ssversion" artificial="1" throw="" context="_169" access="public" mangled="_ZN18gsm_mncc_ssversionC1ERKS_ *INTERNAL* " demangled="gsm_mncc_ssversion::gsm_mncc_ssversion(gsm_mncc_ssversion const&amp;)" location="f11:194" file="f11" line="194" endline="194" inline="1">
+ <Argument type="_1440" location="f11:194" file="f11" line="194"/>
+ </Constructor>
+ <Constructor id="_1033" name="gsm_mncc_ssversion" artificial="1" throw="" context="_169" access="public" mangled="_ZN18gsm_mncc_ssversionC1Ev *INTERNAL* " demangled="gsm_mncc_ssversion::gsm_mncc_ssversion()" location="f11:194" file="f11" line="194" inline="1"/>
+ <Field id="_1034" name="fds_bits" type="_1441" offset="0" context="_173" access="public" location="f20:64" file="f20" line="64"/>
+ <Destructor id="_1035" name="._2" artificial="1" throw="" context="_173" access="public" mangled="_ZN6fd_setD1Ev *INTERNAL* " demangled="fd_set::~fd_set()" location="f20:70" file="f20" line="70" endline="70" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1036" name="=" returns="_1442" artificial="1" throw="" context="_173" access="public" mangled="_ZN6fd_setaSERKS_" demangled="fd_set::operator=(fd_set const&amp;)" location="f20:70" file="f20" line="70" endline="70" inline="1">
+ <Argument type="_1443" location="f20:60" file="f20" line="60"/>
+ </OperatorMethod>
+ <Constructor id="_1037" name="._2" artificial="1" throw="" context="_173" access="public" mangled="_ZN6fd_setC1ERKS_ *INTERNAL* " demangled="fd_set::fd_set(fd_set const&amp;)" location="f20:70" file="f20" line="70" endline="70" inline="1">
+ <Argument type="_1443" location="f20:60" file="f20" line="60"/>
+ </Constructor>
+ <Constructor id="_1038" name="._2" artificial="1" throw="" context="_173" access="public" mangled="_ZN6fd_setC1Ev *INTERNAL* " demangled="fd_set::fd_set()" location="f20:70" file="f20" line="70" inline="1"/>
+ <PointerType id="_1039" type="_364" size="64" align="64"/>
+ <CvQualifiedType id="_1039r" type="_1039" restrict="1"/>
+ <PointerType id="_1041" type="_516" size="64" align="64"/>
+ <CvQualifiedType id="_1041r" type="_1041" restrict="1"/>
+ <Field id="_1043" name="iov_base" type="_222" offset="0" context="_182" access="public" location="f21:28" file="f21" line="28"/>
+ <Field id="_1044" name="iov_len" type="_547" offset="64" context="_182" access="public" location="f21:29" file="f21" line="29"/>
+ <Destructor id="_1045" name="iovec" artificial="1" throw="" context="_182" access="public" mangled="_ZN5iovecD1Ev *INTERNAL* " demangled="iovec::~iovec()" location="f21:27" file="f21" line="27" endline="27" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1046" name="=" returns="_1444" artificial="1" throw="" context="_182" access="public" mangled="_ZN5iovecaSERKS_" demangled="iovec::operator=(iovec const&amp;)" location="f21:27" file="f21" line="27" endline="27" inline="1">
+ <Argument type="_1445" location="f21:27" file="f21" line="27"/>
+ </OperatorMethod>
+ <Constructor id="_1047" name="iovec" artificial="1" throw="" context="_182" access="public" mangled="_ZN5iovecC1ERKS_ *INTERNAL* " demangled="iovec::iovec(iovec const&amp;)" location="f21:27" file="f21" line="27" endline="27" inline="1">
+ <Argument type="_1445" location="f21:27" file="f21" line="27"/>
+ </Constructor>
+ <Constructor id="_1048" name="iovec" artificial="1" throw="" context="_182" access="public" mangled="_ZN5iovecC1Ev *INTERNAL* " demangled="iovec::iovec()" location="f21:27" file="f21" line="27" inline="1"/>
+ <Field id="_1049" name="imsf_multiaddr" type="_679" offset="0" context="_183" access="public" location="f5:331" file="f5" line="331"/>
+ <Field id="_1050" name="imsf_interface" type="_679" offset="32" context="_183" access="public" location="f5:334" file="f5" line="334"/>
+ <Field id="_1051" name="imsf_fmode" type="_322" offset="64" context="_183" access="public" location="f5:337" file="f5" line="337"/>
+ <Field id="_1052" name="imsf_numsrc" type="_322" offset="96" context="_183" access="public" location="f5:340" file="f5" line="340"/>
+ <Field id="_1053" name="imsf_slist" type="_1446" offset="128" context="_183" access="public" location="f5:342" file="f5" line="342"/>
+ <Destructor id="_1054" name="ip_msfilter" artificial="1" throw="" context="_183" access="public" mangled="_ZN11ip_msfilterD1Ev *INTERNAL* " demangled="ip_msfilter::~ip_msfilter()" location="f5:329" file="f5" line="329" endline="329" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1055" name="=" returns="_1447" artificial="1" throw="" context="_183" access="public" mangled="_ZN11ip_msfilteraSERKS_" demangled="ip_msfilter::operator=(ip_msfilter const&amp;)" location="f5:329" file="f5" line="329" endline="329" inline="1">
+ <Argument type="_1448" location="f5:329" file="f5" line="329"/>
+ </OperatorMethod>
+ <Constructor id="_1056" name="ip_msfilter" artificial="1" throw="" context="_183" access="public" mangled="_ZN11ip_msfilterC1ERKS_ *INTERNAL* " demangled="ip_msfilter::ip_msfilter(ip_msfilter const&amp;)" location="f5:329" file="f5" line="329" endline="329" inline="1">
+ <Argument type="_1448" location="f5:329" file="f5" line="329"/>
+ </Constructor>
+ <Constructor id="_1057" name="ip_msfilter" artificial="1" throw="" context="_183" access="public" mangled="_ZN11ip_msfilterC1Ev *INTERNAL* " demangled="ip_msfilter::ip_msfilter()" location="f5:329" file="f5" line="329" inline="1"/>
+ <PointerType id="_1058" type="_372" size="64" align="64"/>
+ <CvQualifiedType id="_46v" type="_46" volatile="1"/>
+ <PointerType id="_1060" type="_156" size="64" align="64"/>
+ <Field id="_1061" name="l_onoff" type="_46" offset="0" context="_218" access="public" location="f19:363" file="f19" line="363"/>
+ <Field id="_1062" name="l_linger" type="_46" offset="32" context="_218" access="public" location="f19:364" file="f19" line="364"/>
+ <Destructor id="_1063" name="linger" artificial="1" throw="" context="_218" access="public" mangled="_ZN6lingerD1Ev *INTERNAL* " demangled="linger::~linger()" location="f19:362" file="f19" line="362" endline="362" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1064" name="=" returns="_1449" artificial="1" throw="" context="_218" access="public" mangled="_ZN6lingeraSERKS_" demangled="linger::operator=(linger const&amp;)" location="f19:362" file="f19" line="362" endline="362" inline="1">
+ <Argument type="_1450" location="f19:362" file="f19" line="362"/>
+ </OperatorMethod>
+ <Constructor id="_1065" name="linger" artificial="1" throw="" context="_218" access="public" mangled="_ZN6lingerC1ERKS_ *INTERNAL* " demangled="linger::linger(linger const&amp;)" location="f19:362" file="f19" line="362" endline="362" inline="1">
+ <Argument type="_1450" location="f19:362" file="f19" line="362"/>
+ </Constructor>
+ <Constructor id="_1066" name="linger" artificial="1" throw="" context="_218" access="public" mangled="_ZN6lingerC1Ev *INTERNAL* " demangled="linger::linger()" location="f19:362" file="f19" line="362" inline="1"/>
+ <Field id="_1068" name="__data" type="_38" offset="0" context="_233" access="public" location="f7:77" file="f7" line="77"/>
+ <Field id="_1069" name="__size" type="_1451" offset="0" context="_233" access="public" location="f7:78" file="f7" line="78"/>
+ <Field id="_1070" name="__align" type="_59" offset="0" context="_233" access="public" location="f7:79" file="f7" line="79"/>
+ <Destructor id="_1071" name="._11" artificial="1" throw="" context="_233" access="public" mangled="_ZN14pthread_cond_tD1Ev *INTERNAL* " demangled="pthread_cond_t::~pthread_cond_t()" location="f7:80" file="f7" line="80" endline="80" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1072" name="=" returns="_1452" artificial="1" throw="" context="_233" access="public" mangled="_ZN14pthread_cond_taSERKS_" demangled="pthread_cond_t::operator=(pthread_cond_t const&amp;)" location="f7:80" file="f7" line="80" endline="80" inline="1">
+ <Argument type="_1453" location="f7:76" file="f7" line="76"/>
+ </OperatorMethod>
+ <Constructor id="_1073" name="._11" artificial="1" throw="" context="_233" access="public" mangled="_ZN14pthread_cond_tC1ERKS_ *INTERNAL* " demangled="pthread_cond_t::pthread_cond_t(pthread_cond_t const&amp;)" location="f7:80" file="f7" line="80" endline="80" inline="1">
+ <Argument type="_1453" location="f7:76" file="f7" line="76"/>
+ </Constructor>
+ <Constructor id="_1074" name="._11" artificial="1" throw="" context="_233" access="public" mangled="_ZN14pthread_cond_tC1Ev *INTERNAL* " demangled="pthread_cond_t::pthread_cond_t()" location="f7:80" file="f7" line="80" inline="1"/>
+ <PointerType id="_1075" type="_237" size="64" align="64"/>
+ <PointerType id="_1076" type="_1067c" size="64" align="64"/>
+ <Field id="_1077" name="__in6_u" type="_1078" offset="0" context="_237" access="public" location="f5:223" file="f5" line="223"/>
+ <Union id="_1078" context="_237" access="public" mangled="N8in6_addr4._24E" demangled="in6_addr::._24" location="f5:219" file="f5" line="219" artificial="1" size="128" align="32" members="_1455 _1456 _1457 _1458 _1459 _1460 _1461 " bases=""/>
+ <Destructor id="_1079" name="in6_addr" artificial="1" throw="" context="_237" access="public" mangled="_ZN8in6_addrD1Ev *INTERNAL* " demangled="in6_addr::~in6_addr()" location="f5:217" file="f5" line="217" endline="217" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1080" name="=" returns="_1462" artificial="1" throw="" context="_237" access="public" mangled="_ZN8in6_addraSERKS_" demangled="in6_addr::operator=(in6_addr const&amp;)" location="f5:217" file="f5" line="217" endline="217" inline="1">
+ <Argument type="_1463" location="f5:217" file="f5" line="217"/>
+ </OperatorMethod>
+ <Constructor id="_1081" name="in6_addr" artificial="1" throw="" context="_237" access="public" mangled="_ZN8in6_addrC1ERKS_ *INTERNAL* " demangled="in6_addr::in6_addr(in6_addr const&amp;)" location="f5:217" file="f5" line="217" endline="217" inline="1">
+ <Argument type="_1463" location="f5:217" file="f5" line="217"/>
+ </Constructor>
+ <Constructor id="_1082" name="in6_addr" artificial="1" throw="" context="_237" access="public" mangled="_ZN8in6_addrC1Ev *INTERNAL* " demangled="in6_addr::in6_addr()" location="f5:217" file="f5" line="217" inline="1"/>
+ <Field id="_1083" name="__size" type="_1464" offset="0" context="_242" access="public" location="f7:110" file="f7" line="110"/>
+ <Field id="_1084" name="__align" type="_16" offset="0" context="_242" access="public" location="f7:111" file="f7" line="111"/>
+ <Destructor id="_1085" name="._14" artificial="1" throw="" context="_242" access="public" mangled="_ZN17pthread_barrier_tD1Ev *INTERNAL* " demangled="pthread_barrier_t::~pthread_barrier_t()" location="f7:112" file="f7" line="112" endline="112" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1086" name="=" returns="_1465" artificial="1" throw="" context="_242" access="public" mangled="_ZN17pthread_barrier_taSERKS_" demangled="pthread_barrier_t::operator=(pthread_barrier_t const&amp;)" location="f7:112" file="f7" line="112" endline="112" inline="1">
+ <Argument type="_1466" location="f7:109" file="f7" line="109"/>
+ </OperatorMethod>
+ <Constructor id="_1087" name="._14" artificial="1" throw="" context="_242" access="public" mangled="_ZN17pthread_barrier_tC1ERKS_ *INTERNAL* " demangled="pthread_barrier_t::pthread_barrier_t(pthread_barrier_t const&amp;)" location="f7:112" file="f7" line="112" endline="112" inline="1">
+ <Argument type="_1466" location="f7:109" file="f7" line="109"/>
+ </Constructor>
+ <Constructor id="_1088" name="._14" artificial="1" throw="" context="_242" access="public" mangled="_ZN17pthread_barrier_tC1Ev *INTERNAL* " demangled="pthread_barrier_t::pthread_barrier_t()" location="f7:112" file="f7" line="112" inline="1"/>
+ <PointerType id="_1089" type="_156c" size="64" align="64"/>
+ <PointerType id="_1090" type="_1261" size="64" align="64"/>
+ <Field id="_1091" name="__val" type="_1468" offset="0" context="_263" access="public" location="f9:155" file="f9" line="155"/>
+ <Destructor id="_1092" name="._0" artificial="1" throw="" context="_263" access="public" mangled="_ZN8__fsid_tD1Ev *INTERNAL* " demangled="__fsid_t::~__fsid_t()" location="f9:155" file="f9" line="155" endline="155" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1093" name="=" returns="_1469" artificial="1" throw="" context="_263" access="public" mangled="_ZN8__fsid_taSERKS_" demangled="__fsid_t::operator=(__fsid_t const&amp;)" location="f9:155" file="f9" line="155" endline="155" inline="1">
+ <Argument type="_1470" location="f9:155" file="f9" line="155"/>
+ </OperatorMethod>
+ <Constructor id="_1094" name="._0" artificial="1" throw="" context="_263" access="public" mangled="_ZN8__fsid_tC1ERKS_ *INTERNAL* " demangled="__fsid_t::__fsid_t(__fsid_t const&amp;)" location="f9:155" file="f9" line="155" endline="155" inline="1">
+ <Argument type="_1470" location="f9:155" file="f9" line="155"/>
+ </Constructor>
+ <Constructor id="_1095" name="._0" artificial="1" throw="" context="_263" access="public" mangled="_ZN8__fsid_tC1Ev *INTERNAL* " demangled="__fsid_t::__fsid_t()" location="f9:155" file="f9" line="155" inline="1"/>
+ <Field id="_1096" name="imr_multiaddr" type="_679" offset="0" context="_267" access="public" location="f5:281" file="f5" line="281"/>
+ <Field id="_1097" name="imr_interface" type="_679" offset="32" context="_267" access="public" location="f5:284" file="f5" line="284"/>
+ <Field id="_1098" name="imr_sourceaddr" type="_679" offset="64" context="_267" access="public" location="f5:287" file="f5" line="287"/>
+ <Destructor id="_1099" name="ip_mreq_source" artificial="1" throw="" context="_267" access="public" mangled="_ZN14ip_mreq_sourceD1Ev *INTERNAL* " demangled="ip_mreq_source::~ip_mreq_source()" location="f5:279" file="f5" line="279" endline="279" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1100" name="=" returns="_1471" artificial="1" throw="" context="_267" access="public" mangled="_ZN14ip_mreq_sourceaSERKS_" demangled="ip_mreq_source::operator=(ip_mreq_source const&amp;)" location="f5:279" file="f5" line="279" endline="279" inline="1">
+ <Argument type="_1472" location="f5:279" file="f5" line="279"/>
+ </OperatorMethod>
+ <Constructor id="_1101" name="ip_mreq_source" artificial="1" throw="" context="_267" access="public" mangled="_ZN14ip_mreq_sourceC1ERKS_ *INTERNAL* " demangled="ip_mreq_source::ip_mreq_source(ip_mreq_source const&amp;)" location="f5:279" file="f5" line="279" endline="279" inline="1">
+ <Argument type="_1472" location="f5:279" file="f5" line="279"/>
+ </Constructor>
+ <Constructor id="_1102" name="ip_mreq_source" artificial="1" throw="" context="_267" access="public" mangled="_ZN14ip_mreq_sourceC1Ev *INTERNAL* " demangled="ip_mreq_source::ip_mreq_source()" location="f5:279" file="f5" line="279" inline="1"/>
+ <PointerType id="_1103" type="_675c" size="64" align="64"/>
+ <Field id="_1104" name="ip_dst" type="_679" offset="0" context="_292" access="public" location="f18:144" file="f18" line="144"/>
+ <Field id="_1105" name="ip_opts" type="_1474" offset="32" context="_292" access="public" location="f18:145" file="f18" line="145"/>
+ <Destructor id="_1106" name="ip_opts" artificial="1" throw="" context="_292" access="public" mangled="_ZN7ip_optsD1Ev *INTERNAL* " demangled="ip_opts::~ip_opts()" location="f18:143" file="f18" line="143" endline="143" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1107" name="=" returns="_1475" artificial="1" throw="" context="_292" access="public" mangled="_ZN7ip_optsaSERKS_" demangled="ip_opts::operator=(ip_opts const&amp;)" location="f18:143" file="f18" line="143" endline="143" inline="1">
+ <Argument type="_1476" location="f18:143" file="f18" line="143"/>
+ </OperatorMethod>
+ <Constructor id="_1108" name="ip_opts" artificial="1" throw="" context="_292" access="public" mangled="_ZN7ip_optsC1ERKS_ *INTERNAL* " demangled="ip_opts::ip_opts(ip_opts const&amp;)" location="f18:143" file="f18" line="143" endline="143" inline="1">
+ <Argument type="_1476" location="f18:143" file="f18" line="143"/>
+ </Constructor>
+ <Constructor id="_1109" name="ip_opts" artificial="1" throw="" context="_292" access="public" mangled="_ZN7ip_optsC1Ev *INTERNAL* " demangled="ip_opts::ip_opts()" location="f18:143" file="f18" line="143" inline="1"/>
+ <Field id="_1110" name="coding" type="_46" offset="0" context="_301" access="public" location="f11:184" file="f11" line="184"/>
+ <Field id="_1111" name="location" type="_46" offset="32" context="_301" access="public" location="f11:185" file="f11" line="185"/>
+ <Field id="_1112" name="descr" type="_46" offset="64" context="_301" access="public" location="f11:186" file="f11" line="186"/>
+ <Destructor id="_1113" name="gsm_mncc_progress" artificial="1" throw="" context="_301" access="public" mangled="_ZN17gsm_mncc_progressD1Ev *INTERNAL* " demangled="gsm_mncc_progress::~gsm_mncc_progress()" location="f11:183" file="f11" line="183" endline="183" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1114" name="=" returns="_1477" artificial="1" throw="" context="_301" access="public" mangled="_ZN17gsm_mncc_progressaSERKS_" demangled="gsm_mncc_progress::operator=(gsm_mncc_progress const&amp;)" location="f11:183" file="f11" line="183" endline="183" inline="1">
+ <Argument type="_1478" location="f11:183" file="f11" line="183"/>
+ </OperatorMethod>
+ <Constructor id="_1115" name="gsm_mncc_progress" artificial="1" throw="" context="_301" access="public" mangled="_ZN17gsm_mncc_progressC1ERKS_ *INTERNAL* " demangled="gsm_mncc_progress::gsm_mncc_progress(gsm_mncc_progress const&amp;)" location="f11:183" file="f11" line="183" endline="183" inline="1">
+ <Argument type="_1478" location="f11:183" file="f11" line="183"/>
+ </Constructor>
+ <Constructor id="_1116" name="gsm_mncc_progress" artificial="1" throw="" context="_301" access="public" mangled="_ZN17gsm_mncc_progressC1Ev *INTERNAL* " demangled="gsm_mncc_progress::gsm_mncc_progress()" location="f11:183" file="f11" line="183" inline="1"/>
+ <Field id="_1117" name="location" type="_46" offset="0" context="_302" access="public" location="f11:169" file="f11" line="169"/>
+ <Field id="_1118" name="coding" type="_46" offset="32" context="_302" access="public" location="f11:170" file="f11" line="170"/>
+ <Field id="_1119" name="rec" type="_46" offset="64" context="_302" access="public" location="f11:171" file="f11" line="171"/>
+ <Field id="_1120" name="rec_val" type="_46" offset="96" context="_302" access="public" location="f11:172" file="f11" line="172"/>
+ <Field id="_1121" name="value" type="_46" offset="128" context="_302" access="public" location="f11:173" file="f11" line="173"/>
+ <Field id="_1122" name="diag_len" type="_46" offset="160" context="_302" access="public" location="f11:174" file="f11" line="174"/>
+ <Field id="_1123" name="diag" type="_1464" offset="192" context="_302" access="public" location="f11:175" file="f11" line="175"/>
+ <Destructor id="_1124" name="gsm_mncc_cause" artificial="1" throw="" context="_302" access="public" mangled="_ZN14gsm_mncc_causeD1Ev *INTERNAL* " demangled="gsm_mncc_cause::~gsm_mncc_cause()" location="f11:168" file="f11" line="168" endline="168" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1125" name="=" returns="_1479" artificial="1" throw="" context="_302" access="public" mangled="_ZN14gsm_mncc_causeaSERKS_" demangled="gsm_mncc_cause::operator=(gsm_mncc_cause const&amp;)" location="f11:168" file="f11" line="168" endline="168" inline="1">
+ <Argument type="_1480" location="f11:168" file="f11" line="168"/>
+ </OperatorMethod>
+ <Constructor id="_1126" name="gsm_mncc_cause" artificial="1" throw="" context="_302" access="public" mangled="_ZN14gsm_mncc_causeC1ERKS_ *INTERNAL* " demangled="gsm_mncc_cause::gsm_mncc_cause(gsm_mncc_cause const&amp;)" location="f11:168" file="f11" line="168" endline="168" inline="1">
+ <Argument type="_1480" location="f11:168" file="f11" line="168"/>
+ </Constructor>
+ <Constructor id="_1127" name="gsm_mncc_cause" artificial="1" throw="" context="_302" access="public" mangled="_ZN14gsm_mncc_causeC1Ev *INTERNAL* " demangled="gsm_mncc_cause::gsm_mncc_cause()" location="f11:168" file="f11" line="168" inline="1"/>
+ <Field id="_1128" name="fds_bits" type="_1401" offset="0" context="_327" access="public" location="f17:26" file="f17" line="26"/>
+ <Destructor id="_1129" name="._18" artificial="1" throw="" context="_327" access="public" mangled="_ZN15__kernel_fd_setD1Ev *INTERNAL* " demangled="__kernel_fd_set::~__kernel_fd_set()" location="f17:27" file="f17" line="27" endline="27" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1130" name="=" returns="_1481" artificial="1" throw="" context="_327" access="public" mangled="_ZN15__kernel_fd_setaSERKS_" demangled="__kernel_fd_set::operator=(__kernel_fd_set const&amp;)" location="f17:27" file="f17" line="27" endline="27" inline="1">
+ <Argument type="_1482" location="f17:25" file="f17" line="25"/>
+ </OperatorMethod>
+ <Constructor id="_1131" name="._18" artificial="1" throw="" context="_327" access="public" mangled="_ZN15__kernel_fd_setC1ERKS_ *INTERNAL* " demangled="__kernel_fd_set::__kernel_fd_set(__kernel_fd_set const&amp;)" location="f17:27" file="f17" line="27" endline="27" inline="1">
+ <Argument type="_1482" location="f17:25" file="f17" line="25"/>
+ </Constructor>
+ <Constructor id="_1132" name="._18" artificial="1" throw="" context="_327" access="public" mangled="_ZN15__kernel_fd_setC1Ev *INTERNAL* " demangled="__kernel_fd_set::__kernel_fd_set()" location="f17:27" file="f17" line="27" inline="1"/>
+ <PointerType id="_1133" type="_237c" size="64" align="64"/>
+ <Field id="_1134" name="__prev" type="_1483" offset="0" context="_350" access="public" location="f10:51" file="f10" line="51"/>
+ <Field id="_1135" name="__next" type="_1483" offset="64" context="_350" access="public" location="f10:52" file="f10" line="52"/>
+ <Destructor id="_1136" name="__pthread_internal_list" artificial="1" throw="" context="_350" access="public" mangled="_ZN23__pthread_internal_listD1Ev *INTERNAL* " demangled="__pthread_internal_list::~__pthread_internal_list()" location="f10:50" file="f10" line="50" endline="50" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1137" name="=" returns="_1484" artificial="1" throw="" context="_350" access="public" mangled="_ZN23__pthread_internal_listaSERKS_" demangled="__pthread_internal_list::operator=(__pthread_internal_list const&amp;)" location="f10:50" file="f10" line="50" endline="50" inline="1">
+ <Argument type="_1485" location="f10:50" file="f10" line="50"/>
+ </OperatorMethod>
+ <Constructor id="_1138" name="__pthread_internal_list" artificial="1" throw="" context="_350" access="public" mangled="_ZN23__pthread_internal_listC1ERKS_ *INTERNAL* " demangled="__pthread_internal_list::__pthread_internal_list(__pthread_internal_list const&amp;)" location="f10:50" file="f10" line="50" endline="50" inline="1">
+ <Argument type="_1485" location="f10:50" file="f10" line="50"/>
+ </Constructor>
+ <Constructor id="_1139" name="__pthread_internal_list" artificial="1" throw="" context="_350" access="public" mangled="_ZN23__pthread_internal_listC1Ev *INTERNAL* " demangled="__pthread_internal_list::__pthread_internal_list()" location="f10:50" file="f10" line="50" inline="1"/>
+ <CvQualifiedType id="_222r" type="_222" restrict="1"/>
+ <Field id="_1141" name="sa_family" type="_862" offset="0" context="_364" access="public" location="f19:180" file="f19" line="180"/>
+ <Field id="_1142" name="sa_data" type="_1486" offset="16" context="_364" access="public" location="f19:181" file="f19" line="181"/>
+ <Destructor id="_1143" name="sockaddr" artificial="1" throw="" context="_364" access="public" mangled="_ZN8sockaddrD1Ev *INTERNAL* " demangled="sockaddr::~sockaddr()" location="f19:179" file="f19" line="179" endline="179" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1144" name="=" returns="_1487" artificial="1" throw="" context="_364" access="public" mangled="_ZN8sockaddraSERKS_" demangled="sockaddr::operator=(sockaddr const&amp;)" location="f19:179" file="f19" line="179" endline="179" inline="1">
+ <Argument type="_1488" location="f19:179" file="f19" line="179"/>
+ </OperatorMethod>
+ <Constructor id="_1145" name="sockaddr" artificial="1" throw="" context="_364" access="public" mangled="_ZN8sockaddrC1ERKS_ *INTERNAL* " demangled="sockaddr::sockaddr(sockaddr const&amp;)" location="f19:179" file="f19" line="179" endline="179" inline="1">
+ <Argument type="_1488" location="f19:179" file="f19" line="179"/>
+ </Constructor>
+ <Constructor id="_1146" name="sockaddr" artificial="1" throw="" context="_364" access="public" mangled="_ZN8sockaddrC1Ev *INTERNAL* " demangled="sockaddr::sockaddr()" location="f19:179" file="f19" line="179" inline="1"/>
+ <Field id="_1147" name="tv_sec" type="_485" offset="0" context="_368" access="public" location="f25:12" file="f25" line="12"/>
+ <Field id="_1148" name="tv_nsec" type="_851" offset="64" context="_368" access="public" location="f25:16" file="f25" line="16"/>
+ <Destructor id="_1149" name="timespec" artificial="1" throw="" context="_368" access="public" mangled="_ZN8timespecD1Ev *INTERNAL* " demangled="timespec::~timespec()" location="f25:11" file="f25" line="11" endline="11" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1150" name="=" returns="_1489" artificial="1" throw="" context="_368" access="public" mangled="_ZN8timespecaSERKS_" demangled="timespec::operator=(timespec const&amp;)" location="f25:11" file="f25" line="11" endline="11" inline="1">
+ <Argument type="_1490" location="f25:11" file="f25" line="11"/>
+ </OperatorMethod>
+ <Constructor id="_1151" name="timespec" artificial="1" throw="" context="_368" access="public" mangled="_ZN8timespecC1ERKS_ *INTERNAL* " demangled="timespec::timespec(timespec const&amp;)" location="f25:11" file="f25" line="11" endline="11" inline="1">
+ <Argument type="_1490" location="f25:11" file="f25" line="11"/>
+ </Constructor>
+ <Constructor id="_1152" name="timespec" artificial="1" throw="" context="_368" access="public" mangled="_ZN8timespecC1Ev *INTERNAL* " demangled="timespec::timespec()" location="f25:11" file="f25" line="11" inline="1"/>
+ <Field id="_1153" name="msg_hdr" type="_675" offset="0" context="_372" access="public" location="f2:92" file="f2" line="92"/>
+ <Field id="_1154" name="msg_len" type="_32" offset="448" context="_372" access="public" location="f2:93" file="f2" line="93"/>
+ <Destructor id="_1155" name="mmsghdr" artificial="1" throw="" context="_372" access="public" mangled="_ZN7mmsghdrD1Ev *INTERNAL* " demangled="mmsghdr::~mmsghdr()" location="f2:91" file="f2" line="91" endline="91" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1156" name="=" returns="_1491" artificial="1" throw="" context="_372" access="public" mangled="_ZN7mmsghdraSERKS_" demangled="mmsghdr::operator=(mmsghdr const&amp;)" location="f2:91" file="f2" line="91" endline="91" inline="1">
+ <Argument type="_1492" location="f2:91" file="f2" line="91"/>
+ </OperatorMethod>
+ <Constructor id="_1157" name="mmsghdr" artificial="1" throw="" context="_372" access="public" mangled="_ZN7mmsghdrC1ERKS_ *INTERNAL* " demangled="mmsghdr::mmsghdr(mmsghdr const&amp;)" location="f2:91" file="f2" line="91" endline="91" inline="1">
+ <Argument type="_1492" location="f2:91" file="f2" line="91"/>
+ </Constructor>
+ <Constructor id="_1158" name="mmsghdr" artificial="1" throw="" context="_372" access="public" mangled="_ZN7mmsghdrC1Ev *INTERNAL* " demangled="mmsghdr::mmsghdr()" location="f2:91" file="f2" line="91" inline="1"/>
+ <PointerType id="_1159" type="_364c" size="64" align="64"/>
+ <Field id="_1160" name="__size" type="_1387" offset="0" context="_402" access="public" location="f7:116" file="f7" line="116"/>
+ <Field id="_1161" name="__align" type="_46" offset="0" context="_402" access="public" location="f7:117" file="f7" line="117"/>
+ <Destructor id="_1162" name="._15" artificial="1" throw="" context="_402" access="public" mangled="_ZN21pthread_barrierattr_tD1Ev *INTERNAL* " demangled="pthread_barrierattr_t::~pthread_barrierattr_t()" location="f7:118" file="f7" line="118" endline="118" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1163" name="=" returns="_1494" artificial="1" throw="" context="_402" access="public" mangled="_ZN21pthread_barrierattr_taSERKS_" demangled="pthread_barrierattr_t::operator=(pthread_barrierattr_t const&amp;)" location="f7:118" file="f7" line="118" endline="118" inline="1">
+ <Argument type="_1495" location="f7:115" file="f7" line="115"/>
+ </OperatorMethod>
+ <Constructor id="_1164" name="._15" artificial="1" throw="" context="_402" access="public" mangled="_ZN21pthread_barrierattr_tC1ERKS_ *INTERNAL* " demangled="pthread_barrierattr_t::pthread_barrierattr_t(pthread_barrierattr_t const&amp;)" location="f7:118" file="f7" line="118" endline="118" inline="1">
+ <Argument type="_1495" location="f7:115" file="f7" line="115"/>
+ </Constructor>
+ <Constructor id="_1165" name="._15" artificial="1" throw="" context="_402" access="public" mangled="_ZN21pthread_barrierattr_tC1Ev *INTERNAL* " demangled="pthread_barrierattr_t::pthread_barrierattr_t()" location="f7:118" file="f7" line="118" inline="1"/>
+ <PointerType id="_1166" type="_173" size="64" align="64"/>
+ <CvQualifiedType id="_1166r" type="_1166" restrict="1"/>
+ <PointerType id="_1168" type="_368c" size="64" align="64"/>
+ <CvQualifiedType id="_1168r" type="_1168" restrict="1"/>
+ <PointerType id="_1170" type="_63c" size="64" align="64"/>
+ <CvQualifiedType id="_1170r" type="_1170" restrict="1"/>
+ <PointerType id="_1172" type="_679c" size="64" align="64"/>
+ <Field id="_1173" name="__data" type="_46" offset="0" context="_437" access="public" location="f10:124" file="f10" line="124"/>
+ <Destructor id="_1174" name="._7" artificial="1" throw="" context="_437" access="public" mangled="_ZN11__once_flagD1Ev *INTERNAL* " demangled="__once_flag::~__once_flag()" location="f10:125" file="f10" line="125" endline="125" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1175" name="=" returns="_1499" artificial="1" throw="" context="_437" access="public" mangled="_ZN11__once_flagaSERKS_" demangled="__once_flag::operator=(__once_flag const&amp;)" location="f10:125" file="f10" line="125" endline="125" inline="1">
+ <Argument type="_1500" location="f10:123" file="f10" line="123"/>
+ </OperatorMethod>
+ <Constructor id="_1176" name="._7" artificial="1" throw="" context="_437" access="public" mangled="_ZN11__once_flagC1ERKS_ *INTERNAL* " demangled="__once_flag::__once_flag(__once_flag const&amp;)" location="f10:125" file="f10" line="125" endline="125" inline="1">
+ <Argument type="_1500" location="f10:123" file="f10" line="123"/>
+ </Constructor>
+ <Constructor id="_1177" name="._7" artificial="1" throw="" context="_437" access="public" mangled="_ZN11__once_flagC1Ev *INTERNAL* " demangled="__once_flag::__once_flag()" location="f10:125" file="f10" line="125" inline="1"/>
+ <Field id="_1178" name="__size" type="_1501" offset="0" context="_439" access="public" location="f7:95" file="f7" line="95"/>
+ <Field id="_1179" name="__align" type="_16" offset="0" context="_439" access="public" location="f7:96" file="f7" line="96"/>
+ <Destructor id="_1180" name="._13" artificial="1" throw="" context="_439" access="public" mangled="_ZN20pthread_rwlockattr_tD1Ev *INTERNAL* " demangled="pthread_rwlockattr_t::~pthread_rwlockattr_t()" location="f7:97" file="f7" line="97" endline="97" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1181" name="=" returns="_1502" artificial="1" throw="" context="_439" access="public" mangled="_ZN20pthread_rwlockattr_taSERKS_" demangled="pthread_rwlockattr_t::operator=(pthread_rwlockattr_t const&amp;)" location="f7:97" file="f7" line="97" endline="97" inline="1">
+ <Argument type="_1503" location="f7:94" file="f7" line="94"/>
+ </OperatorMethod>
+ <Constructor id="_1182" name="._13" artificial="1" throw="" context="_439" access="public" mangled="_ZN20pthread_rwlockattr_tC1ERKS_ *INTERNAL* " demangled="pthread_rwlockattr_t::pthread_rwlockattr_t(pthread_rwlockattr_t const&amp;)" location="f7:97" file="f7" line="97" endline="97" inline="1">
+ <Argument type="_1503" location="f7:94" file="f7" line="94"/>
+ </Constructor>
+ <Constructor id="_1183" name="._13" artificial="1" throw="" context="_439" access="public" mangled="_ZN20pthread_rwlockattr_tC1Ev *INTERNAL* " demangled="pthread_rwlockattr_t::pthread_rwlockattr_t()" location="f7:97" file="f7" line="97" inline="1"/>
+ <PointerType id="_1184" type="_758" size="64" align="64"/>
+ <PointerType id="_1185" type="_483c" size="64" align="64"/>
+ <Field id="_1187" name="ss_family" type="_862" offset="0" context="_483" access="public" location="f19:193" file="f19" line="193"/>
+ <Field id="_1188" name="__ss_padding" type="_1505" offset="16" context="_483" access="public" location="f19:194" file="f19" line="194"/>
+ <Field id="_1189" name="__ss_align" type="_18" offset="960" context="_483" access="public" location="f19:195" file="f19" line="195"/>
+ <Destructor id="_1190" name="sockaddr_storage" artificial="1" throw="" context="_483" access="public" mangled="_ZN16sockaddr_storageD1Ev *INTERNAL* " demangled="sockaddr_storage::~sockaddr_storage()" location="f19:192" file="f19" line="192" endline="192" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1191" name="=" returns="_1506" artificial="1" throw="" context="_483" access="public" mangled="_ZN16sockaddr_storageaSERKS_" demangled="sockaddr_storage::operator=(sockaddr_storage const&amp;)" location="f19:192" file="f19" line="192" endline="192" inline="1">
+ <Argument type="_1507" location="f19:192" file="f19" line="192"/>
+ </OperatorMethod>
+ <Constructor id="_1192" name="sockaddr_storage" artificial="1" throw="" context="_483" access="public" mangled="_ZN16sockaddr_storageC1ERKS_ *INTERNAL* " demangled="sockaddr_storage::sockaddr_storage(sockaddr_storage const&amp;)" location="f19:192" file="f19" line="192" endline="192" inline="1">
+ <Argument type="_1507" location="f19:192" file="f19" line="192"/>
+ </Constructor>
+ <Constructor id="_1193" name="sockaddr_storage" artificial="1" throw="" context="_483" access="public" mangled="_ZN16sockaddr_storageC1Ev *INTERNAL* " demangled="sockaddr_storage::sockaddr_storage()" location="f19:192" file="f19" line="192" inline="1"/>
+ <Field id="_1194" name="msg_type" type="_322" offset="0" context="_507" access="public" location="f11:362" file="f11" line="362"/>
+ <Field id="_1195" name="callref" type="_1508" offset="32" context="_507" access="public" location="f11:363" file="f11" line="363"/>
+ <Destructor id="_1196" name="gsm_mncc_bridge" artificial="1" throw="" context="_507" access="public" mangled="_ZN15gsm_mncc_bridgeD1Ev *INTERNAL* " demangled="gsm_mncc_bridge::~gsm_mncc_bridge()" location="f11:361" file="f11" line="361" endline="361" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1197" name="=" returns="_1509" artificial="1" throw="" context="_507" access="public" mangled="_ZN15gsm_mncc_bridgeaSERKS_" demangled="gsm_mncc_bridge::operator=(gsm_mncc_bridge const&amp;)" location="f11:361" file="f11" line="361" endline="361" inline="1">
+ <Argument type="_1510" location="f11:361" file="f11" line="361"/>
+ </OperatorMethod>
+ <Constructor id="_1198" name="gsm_mncc_bridge" artificial="1" throw="" context="_507" access="public" mangled="_ZN15gsm_mncc_bridgeC1ERKS_ *INTERNAL* " demangled="gsm_mncc_bridge::gsm_mncc_bridge(gsm_mncc_bridge const&amp;)" location="f11:361" file="f11" line="361" endline="361" inline="1">
+ <Argument type="_1510" location="f11:361" file="f11" line="361"/>
+ </Constructor>
+ <Constructor id="_1199" name="gsm_mncc_bridge" artificial="1" throw="" context="_507" access="public" mangled="_ZN15gsm_mncc_bridgeC1Ev *INTERNAL* " demangled="gsm_mncc_bridge::gsm_mncc_bridge()" location="f11:361" file="f11" line="361" inline="1"/>
+ <Field id="_1200" name="imr_multiaddr" type="_679" offset="0" context="_509" access="public" location="f18:151" file="f18" line="151"/>
+ <Field id="_1201" name="imr_address" type="_679" offset="32" context="_509" access="public" location="f18:152" file="f18" line="152"/>
+ <Field id="_1202" name="imr_ifindex" type="_46" offset="64" context="_509" access="public" location="f18:153" file="f18" line="153"/>
+ <Destructor id="_1203" name="ip_mreqn" artificial="1" throw="" context="_509" access="public" mangled="_ZN8ip_mreqnD1Ev *INTERNAL* " demangled="ip_mreqn::~ip_mreqn()" location="f18:150" file="f18" line="150" endline="150" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1204" name="=" returns="_1511" artificial="1" throw="" context="_509" access="public" mangled="_ZN8ip_mreqnaSERKS_" demangled="ip_mreqn::operator=(ip_mreqn const&amp;)" location="f18:150" file="f18" line="150" endline="150" inline="1">
+ <Argument type="_1512" location="f18:150" file="f18" line="150"/>
+ </OperatorMethod>
+ <Constructor id="_1205" name="ip_mreqn" artificial="1" throw="" context="_509" access="public" mangled="_ZN8ip_mreqnC1ERKS_ *INTERNAL* " demangled="ip_mreqn::ip_mreqn(ip_mreqn const&amp;)" location="f18:150" file="f18" line="150" endline="150" inline="1">
+ <Argument type="_1512" location="f18:150" file="f18" line="150"/>
+ </Constructor>
+ <Constructor id="_1206" name="ip_mreqn" artificial="1" throw="" context="_509" access="public" mangled="_ZN8ip_mreqnC1Ev *INTERNAL* " demangled="ip_mreqn::ip_mreqn()" location="f18:150" file="f18" line="150" inline="1"/>
+ <Field id="_1207" name="gf_interface" type="_322" offset="0" context="_527" access="public" location="f5:352" file="f5" line="352"/>
+ <Field id="_1208" name="gf_group" type="_483" offset="64" context="_527" access="public" location="f5:355" file="f5" line="355"/>
+ <Field id="_1209" name="gf_fmode" type="_322" offset="1088" context="_527" access="public" location="f5:358" file="f5" line="358"/>
+ <Field id="_1210" name="gf_numsrc" type="_322" offset="1120" context="_527" access="public" location="f5:361" file="f5" line="361"/>
+ <Field id="_1211" name="gf_slist" type="_1513" offset="1152" context="_527" access="public" location="f5:363" file="f5" line="363"/>
+ <Destructor id="_1212" name="group_filter" artificial="1" throw="" context="_527" access="public" mangled="_ZN12group_filterD1Ev *INTERNAL* " demangled="group_filter::~group_filter()" location="f5:350" file="f5" line="350" endline="350" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1213" name="=" returns="_1514" artificial="1" throw="" context="_527" access="public" mangled="_ZN12group_filteraSERKS_" demangled="group_filter::operator=(group_filter const&amp;)" location="f5:350" file="f5" line="350" endline="350" inline="1">
+ <Argument type="_1515" location="f5:350" file="f5" line="350"/>
+ </OperatorMethod>
+ <Constructor id="_1214" name="group_filter" artificial="1" throw="" context="_527" access="public" mangled="_ZN12group_filterC1ERKS_ *INTERNAL* " demangled="group_filter::group_filter(group_filter const&amp;)" location="f5:350" file="f5" line="350" endline="350" inline="1">
+ <Argument type="_1515" location="f5:350" file="f5" line="350"/>
+ </Constructor>
+ <Constructor id="_1215" name="group_filter" artificial="1" throw="" context="_527" access="public" mangled="_ZN12group_filterC1Ev *INTERNAL* " demangled="group_filter::group_filter()" location="f5:350" file="f5" line="350" inline="1"/>
+ <Field id="_1216" name="transfer" type="_46" offset="0" context="_552" access="public" location="f11:140" file="f11" line="140"/>
+ <Field id="_1217" name="mode" type="_46" offset="32" context="_552" access="public" location="f11:141" file="f11" line="141"/>
+ <Field id="_1218" name="coding" type="_46" offset="64" context="_552" access="public" location="f11:142" file="f11" line="142"/>
+ <Field id="_1219" name="radio" type="_46" offset="96" context="_552" access="public" location="f11:143" file="f11" line="143"/>
+ <Field id="_1220" name="speech_ctm" type="_46" offset="128" context="_552" access="public" location="f11:144" file="f11" line="144"/>
+ <Field id="_1221" name="speech_ver" type="_1516" offset="160" context="_552" access="public" location="f11:145" file="f11" line="145"/>
+ <Field id="_1222" name="data" type="_1223" offset="416" context="_552" access="public" location="f11:157" file="f11" line="157"/>
+ <Struct id="_1223" context="_552" access="public" mangled="N19gsm_mncc_bearer_cap4._25E" demangled="gsm_mncc_bearer_cap::._25" location="f11:146" file="f11" line="146" artificial="1" size="320" align="32" members="_1517 _1518 _1519 _1520 _1521 _1522 _1523 _1524 _1525 _1526 _1527 _1528 _1529 _1530 " bases=""/>
+ <Destructor id="_1224" name="gsm_mncc_bearer_cap" artificial="1" throw="" context="_552" access="public" mangled="_ZN19gsm_mncc_bearer_capD1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::~gsm_mncc_bearer_cap()" location="f11:139" file="f11" line="139" endline="139" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1225" name="=" returns="_1531" artificial="1" throw="" context="_552" access="public" mangled="_ZN19gsm_mncc_bearer_capaSERKS_" demangled="gsm_mncc_bearer_cap::operator=(gsm_mncc_bearer_cap const&amp;)" location="f11:139" file="f11" line="139" endline="139" inline="1">
+ <Argument type="_1532" location="f11:139" file="f11" line="139"/>
+ </OperatorMethod>
+ <Constructor id="_1226" name="gsm_mncc_bearer_cap" artificial="1" throw="" context="_552" access="public" mangled="_ZN19gsm_mncc_bearer_capC1ERKS_ *INTERNAL* " demangled="gsm_mncc_bearer_cap::gsm_mncc_bearer_cap(gsm_mncc_bearer_cap const&amp;)" location="f11:139" file="f11" line="139" endline="139" inline="1">
+ <Argument type="_1532" location="f11:139" file="f11" line="139"/>
+ </Constructor>
+ <Constructor id="_1227" name="gsm_mncc_bearer_cap" artificial="1" throw="" context="_552" access="public" mangled="_ZN19gsm_mncc_bearer_capC1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::gsm_mncc_bearer_cap()" location="f11:139" file="f11" line="139" inline="1"/>
+ <Field id="_1228" name="sin_family" type="_862" offset="0" context="_563" access="public" location="f5:244" file="f5" line="244"/>
+ <Field id="_1229" name="sin_port" type="_826" offset="16" context="_563" access="public" location="f5:245" file="f5" line="245"/>
+ <Field id="_1230" name="sin_addr" type="_679" offset="32" context="_563" access="public" location="f5:246" file="f5" line="246"/>
+ <Field id="_1231" name="sin_zero" type="_1533" offset="64" context="_563" access="public" location="f5:252" file="f5" line="252"/>
+ <Destructor id="_1232" name="sockaddr_in" artificial="1" throw="" context="_563" access="public" mangled="_ZN11sockaddr_inD1Ev *INTERNAL* " demangled="sockaddr_in::~sockaddr_in()" location="f5:243" file="f5" line="243" endline="243" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1233" name="=" returns="_1534" artificial="1" throw="" context="_563" access="public" mangled="_ZN11sockaddr_inaSERKS_" demangled="sockaddr_in::operator=(sockaddr_in const&amp;)" location="f5:243" file="f5" line="243" endline="243" inline="1">
+ <Argument type="_1535" location="f5:243" file="f5" line="243"/>
+ </OperatorMethod>
+ <Constructor id="_1234" name="sockaddr_in" artificial="1" throw="" context="_563" access="public" mangled="_ZN11sockaddr_inC1ERKS_ *INTERNAL* " demangled="sockaddr_in::sockaddr_in(sockaddr_in const&amp;)" location="f5:243" file="f5" line="243" endline="243" inline="1">
+ <Argument type="_1535" location="f5:243" file="f5" line="243"/>
+ </Constructor>
+ <Constructor id="_1235" name="sockaddr_in" artificial="1" throw="" context="_563" access="public" mangled="_ZN11sockaddr_inC1Ev *INTERNAL* " demangled="sockaddr_in::sockaddr_in()" location="f5:243" file="f5" line="243" inline="1"/>
+ <Field id="_1236" name="gr_interface" type="_322" offset="0" context="_574" access="public" location="f5:308" file="f5" line="308"/>
+ <Field id="_1237" name="gr_group" type="_483" offset="64" context="_574" access="public" location="f5:311" file="f5" line="311"/>
+ <Destructor id="_1238" name="group_req" artificial="1" throw="" context="_574" access="public" mangled="_ZN9group_reqD1Ev *INTERNAL* " demangled="group_req::~group_req()" location="f5:306" file="f5" line="306" endline="306" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1239" name="=" returns="_1536" artificial="1" throw="" context="_574" access="public" mangled="_ZN9group_reqaSERKS_" demangled="group_req::operator=(group_req const&amp;)" location="f5:306" file="f5" line="306" endline="306" inline="1">
+ <Argument type="_1537" location="f5:306" file="f5" line="306"/>
+ </OperatorMethod>
+ <Constructor id="_1240" name="group_req" artificial="1" throw="" context="_574" access="public" mangled="_ZN9group_reqC1ERKS_ *INTERNAL* " demangled="group_req::group_req(group_req const&amp;)" location="f5:306" file="f5" line="306" endline="306" inline="1">
+ <Argument type="_1537" location="f5:306" file="f5" line="306"/>
+ </Constructor>
+ <Constructor id="_1241" name="group_req" artificial="1" throw="" context="_574" access="public" mangled="_ZN9group_reqC1Ev *INTERNAL* " demangled="group_req::group_req()" location="f5:306" file="f5" line="306" inline="1"/>
+ <Field id="_1242" name="gsr_interface" type="_322" offset="0" context="_579" access="public" location="f5:317" file="f5" line="317"/>
+ <Field id="_1243" name="gsr_group" type="_483" offset="64" context="_579" access="public" location="f5:320" file="f5" line="320"/>
+ <Field id="_1244" name="gsr_source" type="_483" offset="1088" context="_579" access="public" location="f5:323" file="f5" line="323"/>
+ <Destructor id="_1245" name="group_source_req" artificial="1" throw="" context="_579" access="public" mangled="_ZN16group_source_reqD1Ev *INTERNAL* " demangled="group_source_req::~group_source_req()" location="f5:315" file="f5" line="315" endline="315" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1246" name="=" returns="_1538" artificial="1" throw="" context="_579" access="public" mangled="_ZN16group_source_reqaSERKS_" demangled="group_source_req::operator=(group_source_req const&amp;)" location="f5:315" file="f5" line="315" endline="315" inline="1">
+ <Argument type="_1539" location="f5:315" file="f5" line="315"/>
+ </OperatorMethod>
+ <Constructor id="_1247" name="group_source_req" artificial="1" throw="" context="_579" access="public" mangled="_ZN16group_source_reqC1ERKS_ *INTERNAL* " demangled="group_source_req::group_source_req(group_source_req const&amp;)" location="f5:315" file="f5" line="315" endline="315" inline="1">
+ <Argument type="_1539" location="f5:315" file="f5" line="315"/>
+ </Constructor>
+ <Constructor id="_1248" name="group_source_req" artificial="1" throw="" context="_579" access="public" mangled="_ZN16group_source_reqC1Ev *INTERNAL* " demangled="group_source_req::group_source_req()" location="f5:315" file="f5" line="315" inline="1"/>
+ <Field id="_1249" name="__lock" type="_46" offset="0" context="_582" access="public" location="f29:24" file="f29" line="24"/>
+ <Field id="_1250" name="__count" type="_32" offset="32" context="_582" access="public" location="f29:25" file="f29" line="25"/>
+ <Field id="_1251" name="__owner" type="_46" offset="64" context="_582" access="public" location="f29:26" file="f29" line="26"/>
+ <Field id="_1252" name="__nusers" type="_32" offset="96" context="_582" access="public" location="f29:28" file="f29" line="28"/>
+ <Field id="_1253" name="__kind" type="_46" offset="128" context="_582" access="public" location="f29:32" file="f29" line="32"/>
+ <Field id="_1254" name="__spins" type="_116" offset="160" context="_582" access="public" location="f29:34" file="f29" line="34"/>
+ <Field id="_1255" name="__elision" type="_116" offset="176" context="_582" access="public" location="f29:35" file="f29" line="35"/>
+ <Field id="_1256" name="__list" type="_680" offset="192" context="_582" access="public" location="f29:36" file="f29" line="36"/>
+ <Destructor id="_1257" name="__pthread_mutex_s" artificial="1" throw="" context="_582" access="public" mangled="_ZN17__pthread_mutex_sD1Ev *INTERNAL* " demangled="__pthread_mutex_s::~__pthread_mutex_s()" location="f29:23" file="f29" line="23" endline="23" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1258" name="=" returns="_1540" artificial="1" throw="" context="_582" access="public" mangled="_ZN17__pthread_mutex_saSERKS_" demangled="__pthread_mutex_s::operator=(__pthread_mutex_s const&amp;)" location="f29:23" file="f29" line="23" endline="23" inline="1">
+ <Argument type="_1541" location="f29:23" file="f29" line="23"/>
+ </OperatorMethod>
+ <Constructor id="_1259" name="__pthread_mutex_s" artificial="1" throw="" context="_582" access="public" mangled="_ZN17__pthread_mutex_sC1ERKS_ *INTERNAL* " demangled="__pthread_mutex_s::__pthread_mutex_s(__pthread_mutex_s const&amp;)" location="f29:23" file="f29" line="23" endline="23" inline="1">
+ <Argument type="_1541" location="f29:23" file="f29" line="23"/>
+ </Constructor>
+ <Constructor id="_1260" name="__pthread_mutex_s" artificial="1" throw="" context="_582" access="public" mangled="_ZN17__pthread_mutex_sC1Ev *INTERNAL* " demangled="__pthread_mutex_s::__pthread_mutex_s()" location="f29:23" file="f29" line="23" inline="1"/>
+ <PointerType id="_1261" type="_684" size="64" align="64"/>
+ <Field id="_1262" name="__size" type="_1542" offset="0" context="_597" access="public" location="f7:58" file="f7" line="58"/>
+ <Field id="_1263" name="__align" type="_16" offset="0" context="_597" access="public" location="f7:59" file="f7" line="59"/>
+ <Destructor id="_1264" name="pthread_attr_t" artificial="1" throw="" context="_597" access="public" mangled="_ZN14pthread_attr_tD1Ev *INTERNAL* " demangled="pthread_attr_t::~pthread_attr_t()" location="f7:57" file="f7" line="57" endline="57" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1265" name="=" returns="_1543" artificial="1" throw="" context="_597" access="public" mangled="_ZN14pthread_attr_taSERKS_" demangled="pthread_attr_t::operator=(pthread_attr_t const&amp;)" location="f7:57" file="f7" line="57" endline="57" inline="1">
+ <Argument type="_1544" location="f7:57" file="f7" line="57"/>
+ </OperatorMethod>
+ <Constructor id="_1266" name="pthread_attr_t" artificial="1" throw="" context="_597" access="public" mangled="_ZN14pthread_attr_tC1ERKS_ *INTERNAL* " demangled="pthread_attr_t::pthread_attr_t(pthread_attr_t const&amp;)" location="f7:57" file="f7" line="57" endline="57" inline="1">
+ <Argument type="_1544" location="f7:57" file="f7" line="57"/>
+ </Constructor>
+ <Constructor id="_1267" name="pthread_attr_t" artificial="1" throw="" context="_597" access="public" mangled="_ZN14pthread_attr_tC1Ev *INTERNAL* " demangled="pthread_attr_t::pthread_attr_t()" location="f7:57" file="f7" line="57" inline="1"/>
+ <PointerType id="_1268" type="_368" size="64" align="64"/>
+ <PointerType id="_1269" type="_46" size="64" align="64"/>
+ <PointerType id="_1270" type="_1060" size="64" align="64"/>
+ <Field id="_1271" name="val" type="_1468" offset="0" context="_617" access="public" location="f8:80" file="f8" line="80"/>
+ <Destructor id="_1272" name="._19" artificial="1" throw="" context="_617" access="public" mangled="_ZN15__kernel_fsid_tD1Ev *INTERNAL* " demangled="__kernel_fsid_t::~__kernel_fsid_t()" location="f8:81" file="f8" line="81" endline="81" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1273" name="=" returns="_1545" artificial="1" throw="" context="_617" access="public" mangled="_ZN15__kernel_fsid_taSERKS_" demangled="__kernel_fsid_t::operator=(__kernel_fsid_t const&amp;)" location="f8:81" file="f8" line="81" endline="81" inline="1">
+ <Argument type="_1546" location="f8:79" file="f8" line="79"/>
+ </OperatorMethod>
+ <Constructor id="_1274" name="._19" artificial="1" throw="" context="_617" access="public" mangled="_ZN15__kernel_fsid_tC1ERKS_ *INTERNAL* " demangled="__kernel_fsid_t::__kernel_fsid_t(__kernel_fsid_t const&amp;)" location="f8:81" file="f8" line="81" endline="81" inline="1">
+ <Argument type="_1546" location="f8:79" file="f8" line="79"/>
+ </Constructor>
+ <Constructor id="_1275" name="._19" artificial="1" throw="" context="_617" access="public" mangled="_ZN15__kernel_fsid_tC1Ev *INTERNAL* " demangled="__kernel_fsid_t::__kernel_fsid_t()" location="f8:81" file="f8" line="81" inline="1"/>
+ <PointerType id="_1276" type="_222" size="64" align="64"/>
+ <PointerType id="_1277" type="_322" size="64" align="64"/>
+ <PointerType id="_1278" type="_679" size="64" align="64"/>
+ <Field id="_1279" name="msg_type" type="_322" offset="0" context="_630" access="public" location="f11:353" file="f11" line="353"/>
+ <Field id="_1280" name="callref" type="_322" offset="32" context="_630" access="public" location="f11:354" file="f11" line="354"/>
+ <Field id="_1281" name="addr" type="_483" offset="64" context="_630" access="public" location="f11:355" file="f11" line="355"/>
+ <Field id="_1282" name="payload_type" type="_322" offset="1088" context="_630" access="public" location="f11:356" file="f11" line="356"/>
+ <Field id="_1283" name="payload_msg_type" type="_322" offset="1120" context="_630" access="public" location="f11:357" file="f11" line="357"/>
+ <Field id="_1284" name="sdp" type="_1413" offset="1152" context="_630" access="public" location="f11:358" file="f11" line="358"/>
+ <Destructor id="_1285" name="gsm_mncc_rtp" artificial="1" throw="" context="_630" access="public" mangled="_ZN12gsm_mncc_rtpD1Ev *INTERNAL* " demangled="gsm_mncc_rtp::~gsm_mncc_rtp()" location="f11:352" file="f11" line="352" endline="352" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1286" name="=" returns="_1547" artificial="1" throw="" context="_630" access="public" mangled="_ZN12gsm_mncc_rtpaSERKS_" demangled="gsm_mncc_rtp::operator=(gsm_mncc_rtp const&amp;)" location="f11:352" file="f11" line="352" endline="352" inline="1">
+ <Argument type="_1548" location="f11:352" file="f11" line="352"/>
+ </OperatorMethod>
+ <Constructor id="_1287" name="gsm_mncc_rtp" artificial="1" throw="" context="_630" access="public" mangled="_ZN12gsm_mncc_rtpC1ERKS_ *INTERNAL* " demangled="gsm_mncc_rtp::gsm_mncc_rtp(gsm_mncc_rtp const&amp;)" location="f11:352" file="f11" line="352" endline="352" inline="1">
+ <Argument type="_1548" location="f11:352" file="f11" line="352"/>
+ </Constructor>
+ <Constructor id="_1288" name="gsm_mncc_rtp" artificial="1" throw="" context="_630" access="public" mangled="_ZN12gsm_mncc_rtpC1Ev *INTERNAL* " demangled="gsm_mncc_rtp::gsm_mncc_rtp()" location="f11:352" file="f11" line="352" inline="1"/>
+ <Field id="_1289" name="msg_name" type="_222" offset="0" context="_675" access="public" location="f19:259" file="f19" line="259"/>
+ <Field id="_1290" name="msg_namelen" type="_516" offset="64" context="_675" access="public" location="f19:260" file="f19" line="260"/>
+ <Field id="_1291" name="msg_iov" type="_1549" offset="128" context="_675" access="public" location="f19:262" file="f19" line="262"/>
+ <Field id="_1292" name="msg_iovlen" type="_547" offset="192" context="_675" access="public" location="f19:263" file="f19" line="263"/>
+ <Field id="_1293" name="msg_control" type="_222" offset="256" context="_675" access="public" location="f19:265" file="f19" line="265"/>
+ <Field id="_1294" name="msg_controllen" type="_547" offset="320" context="_675" access="public" location="f19:266" file="f19" line="266"/>
+ <Field id="_1295" name="msg_flags" type="_46" offset="384" context="_675" access="public" location="f19:271" file="f19" line="271"/>
+ <Destructor id="_1296" name="msghdr" artificial="1" throw="" context="_675" access="public" mangled="_ZN6msghdrD1Ev *INTERNAL* " demangled="msghdr::~msghdr()" location="f19:258" file="f19" line="258" endline="258" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1297" name="=" returns="_1550" artificial="1" throw="" context="_675" access="public" mangled="_ZN6msghdraSERKS_" demangled="msghdr::operator=(msghdr const&amp;)" location="f19:258" file="f19" line="258" endline="258" inline="1">
+ <Argument type="_1551" location="f19:258" file="f19" line="258"/>
+ </OperatorMethod>
+ <Constructor id="_1298" name="msghdr" artificial="1" throw="" context="_675" access="public" mangled="_ZN6msghdrC1ERKS_ *INTERNAL* " demangled="msghdr::msghdr(msghdr const&amp;)" location="f19:258" file="f19" line="258" endline="258" inline="1">
+ <Argument type="_1551" location="f19:258" file="f19" line="258"/>
+ </Constructor>
+ <Constructor id="_1299" name="msghdr" artificial="1" throw="" context="_675" access="public" mangled="_ZN6msghdrC1Ev *INTERNAL* " demangled="msghdr::msghdr()" location="f19:258" file="f19" line="258" inline="1"/>
+ <Field id="_1300" name="s_addr" type="_638" offset="0" context="_679" access="public" location="f5:33" file="f5" line="33"/>
+ <Destructor id="_1301" name="in_addr" artificial="1" throw="" context="_679" access="public" mangled="_ZN7in_addrD1Ev *INTERNAL* " demangled="in_addr::~in_addr()" location="f5:32" file="f5" line="32" endline="32" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1302" name="=" returns="_1552" artificial="1" throw="" context="_679" access="public" mangled="_ZN7in_addraSERKS_" demangled="in_addr::operator=(in_addr const&amp;)" location="f5:32" file="f5" line="32" endline="32" inline="1">
+ <Argument type="_1553" location="f5:32" file="f5" line="32"/>
+ </OperatorMethod>
+ <Constructor id="_1303" name="in_addr" artificial="1" throw="" context="_679" access="public" mangled="_ZN7in_addrC1ERKS_ *INTERNAL* " demangled="in_addr::in_addr(in_addr const&amp;)" location="f5:32" file="f5" line="32" endline="32" inline="1">
+ <Argument type="_1553" location="f5:32" file="f5" line="32"/>
+ </Constructor>
+ <Constructor id="_1304" name="in_addr" artificial="1" throw="" context="_679" access="public" mangled="_ZN7in_addrC1Ev *INTERNAL* " demangled="in_addr::in_addr()" location="f5:32" file="f5" line="32" inline="1"/>
+ <Field id="_1305" name="__readers" type="_32" offset="0" context="_741" access="public" location="f30:25" file="f30" line="25"/>
+ <Field id="_1306" name="__writers" type="_32" offset="32" context="_741" access="public" location="f30:26" file="f30" line="26"/>
+ <Field id="_1307" name="__wrphase_futex" type="_32" offset="64" context="_741" access="public" location="f30:27" file="f30" line="27"/>
+ <Field id="_1308" name="__writers_futex" type="_32" offset="96" context="_741" access="public" location="f30:28" file="f30" line="28"/>
+ <Field id="_1309" name="__pad3" type="_32" offset="128" context="_741" access="public" location="f30:29" file="f30" line="29"/>
+ <Field id="_1310" name="__pad4" type="_32" offset="160" context="_741" access="public" location="f30:30" file="f30" line="30"/>
+ <Field id="_1311" name="__cur_writer" type="_46" offset="192" context="_741" access="public" location="f30:32" file="f30" line="32"/>
+ <Field id="_1312" name="__shared" type="_46" offset="224" context="_741" access="public" location="f30:33" file="f30" line="33"/>
+ <Field id="_1313" name="__rwelision" type="_144" offset="256" context="_741" access="public" location="f30:34" file="f30" line="34"/>
+ <Field id="_1314" name="__pad1" type="_1554" offset="264" context="_741" access="public" location="f30:39" file="f30" line="39"/>
+ <Field id="_1315" name="__pad2" type="_18" offset="320" context="_741" access="public" location="f30:42" file="f30" line="42"/>
+ <Field id="_1316" name="__flags" type="_32" offset="384" context="_741" access="public" location="f30:45" file="f30" line="45"/>
+ <Destructor id="_1317" name="__pthread_rwlock_arch_t" artificial="1" throw="" context="_741" access="public" mangled="_ZN23__pthread_rwlock_arch_tD1Ev *INTERNAL* " demangled="__pthread_rwlock_arch_t::~__pthread_rwlock_arch_t()" location="f30:24" file="f30" line="24" endline="24" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1318" name="=" returns="_1555" artificial="1" throw="" context="_741" access="public" mangled="_ZN23__pthread_rwlock_arch_taSERKS_" demangled="__pthread_rwlock_arch_t::operator=(__pthread_rwlock_arch_t const&amp;)" location="f30:24" file="f30" line="24" endline="24" inline="1">
+ <Argument type="_1556" location="f30:24" file="f30" line="24"/>
+ </OperatorMethod>
+ <Constructor id="_1319" name="__pthread_rwlock_arch_t" artificial="1" throw="" context="_741" access="public" mangled="_ZN23__pthread_rwlock_arch_tC1ERKS_ *INTERNAL* " demangled="__pthread_rwlock_arch_t::__pthread_rwlock_arch_t(__pthread_rwlock_arch_t const&amp;)" location="f30:24" file="f30" line="24" endline="24" inline="1">
+ <Argument type="_1556" location="f30:24" file="f30" line="24"/>
+ </Constructor>
+ <Constructor id="_1320" name="__pthread_rwlock_arch_t" artificial="1" throw="" context="_741" access="public" mangled="_ZN23__pthread_rwlock_arch_tC1Ev *INTERNAL* " demangled="__pthread_rwlock_arch_t::__pthread_rwlock_arch_t()" location="f30:24" file="f30" line="24" inline="1"/>
+ <Field id="_1321" name="sin6_family" type="_862" offset="0" context="_758" access="public" location="f5:259" file="f5" line="259"/>
+ <Field id="_1322" name="sin6_port" type="_826" offset="16" context="_758" access="public" location="f5:260" file="f5" line="260"/>
+ <Field id="_1323" name="sin6_flowinfo" type="_322" offset="32" context="_758" access="public" location="f5:261" file="f5" line="261"/>
+ <Field id="_1324" name="sin6_addr" type="_237" offset="64" context="_758" access="public" location="f5:262" file="f5" line="262"/>
+ <Field id="_1325" name="sin6_scope_id" type="_322" offset="192" context="_758" access="public" location="f5:263" file="f5" line="263"/>
+ <Destructor id="_1326" name="sockaddr_in6" artificial="1" throw="" context="_758" access="public" mangled="_ZN12sockaddr_in6D1Ev *INTERNAL* " demangled="sockaddr_in6::~sockaddr_in6()" location="f5:258" file="f5" line="258" endline="258" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1327" name="=" returns="_1557" artificial="1" throw="" context="_758" access="public" mangled="_ZN12sockaddr_in6aSERKS_" demangled="sockaddr_in6::operator=(sockaddr_in6 const&amp;)" location="f5:258" file="f5" line="258" endline="258" inline="1">
+ <Argument type="_1558" location="f5:258" file="f5" line="258"/>
+ </OperatorMethod>
+ <Constructor id="_1328" name="sockaddr_in6" artificial="1" throw="" context="_758" access="public" mangled="_ZN12sockaddr_in6C1ERKS_ *INTERNAL* " demangled="sockaddr_in6::sockaddr_in6(sockaddr_in6 const&amp;)" location="f5:258" file="f5" line="258" endline="258" inline="1">
+ <Argument type="_1558" location="f5:258" file="f5" line="258"/>
+ </Constructor>
+ <Constructor id="_1329" name="sockaddr_in6" artificial="1" throw="" context="_758" access="public" mangled="_ZN12sockaddr_in6C1Ev *INTERNAL* " demangled="sockaddr_in6::sockaddr_in6()" location="f5:258" file="f5" line="258" inline="1"/>
+ <Field id="_1330" name="__data" type="_582" offset="0" context="_762" access="public" location="f7:69" file="f7" line="69"/>
+ <Field id="_1331" name="__size" type="_1474" offset="0" context="_762" access="public" location="f7:70" file="f7" line="70"/>
+ <Field id="_1332" name="__align" type="_16" offset="0" context="_762" access="public" location="f7:71" file="f7" line="71"/>
+ <Destructor id="_1333" name="._10" artificial="1" throw="" context="_762" access="public" mangled="_ZN15pthread_mutex_tD1Ev *INTERNAL* " demangled="pthread_mutex_t::~pthread_mutex_t()" location="f7:72" file="f7" line="72" endline="72" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1334" name="=" returns="_1559" artificial="1" throw="" context="_762" access="public" mangled="_ZN15pthread_mutex_taSERKS_" demangled="pthread_mutex_t::operator=(pthread_mutex_t const&amp;)" location="f7:72" file="f7" line="72" endline="72" inline="1">
+ <Argument type="_1560" location="f7:68" file="f7" line="68"/>
+ </OperatorMethod>
+ <Constructor id="_1335" name="._10" artificial="1" throw="" context="_762" access="public" mangled="_ZN15pthread_mutex_tC1ERKS_ *INTERNAL* " demangled="pthread_mutex_t::pthread_mutex_t(pthread_mutex_t const&amp;)" location="f7:72" file="f7" line="72" endline="72" inline="1">
+ <Argument type="_1560" location="f7:68" file="f7" line="68"/>
+ </Constructor>
+ <Constructor id="_1336" name="._10" artificial="1" throw="" context="_762" access="public" mangled="_ZN15pthread_mutex_tC1Ev *INTERNAL* " demangled="pthread_mutex_t::pthread_mutex_t()" location="f7:72" file="f7" line="72" inline="1"/>
+ <Field id="_1337" name="__data" type="_741" offset="0" context="_763" access="public" location="f7:88" file="f7" line="88"/>
+ <Field id="_1338" name="__size" type="_1542" offset="0" context="_763" access="public" location="f7:89" file="f7" line="89"/>
+ <Field id="_1339" name="__align" type="_16" offset="0" context="_763" access="public" location="f7:90" file="f7" line="90"/>
+ <Destructor id="_1340" name="._12" artificial="1" throw="" context="_763" access="public" mangled="_ZN16pthread_rwlock_tD1Ev *INTERNAL* " demangled="pthread_rwlock_t::~pthread_rwlock_t()" location="f7:91" file="f7" line="91" endline="91" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1341" name="=" returns="_1561" artificial="1" throw="" context="_763" access="public" mangled="_ZN16pthread_rwlock_taSERKS_" demangled="pthread_rwlock_t::operator=(pthread_rwlock_t const&amp;)" location="f7:91" file="f7" line="91" endline="91" inline="1">
+ <Argument type="_1562" location="f7:87" file="f7" line="87"/>
+ </OperatorMethod>
+ <Constructor id="_1342" name="._12" artificial="1" throw="" context="_763" access="public" mangled="_ZN16pthread_rwlock_tC1ERKS_ *INTERNAL* " demangled="pthread_rwlock_t::pthread_rwlock_t(pthread_rwlock_t const&amp;)" location="f7:91" file="f7" line="91" endline="91" inline="1">
+ <Argument type="_1562" location="f7:87" file="f7" line="87"/>
+ </Constructor>
+ <Constructor id="_1343" name="._12" artificial="1" throw="" context="_763" access="public" mangled="_ZN16pthread_rwlock_tC1Ev *INTERNAL* " demangled="pthread_rwlock_t::pthread_rwlock_t()" location="f7:91" file="f7" line="91" inline="1"/>
+ <Field id="_1344" name="msg_type" type="_322" offset="0" context="_799" access="public" location="f11:338" file="f11" line="338"/>
+ <Field id="_1345" name="version" type="_322" offset="32" context="_799" access="public" location="f11:339" file="f11" line="339"/>
+ <Field id="_1346" name="mncc_size" type="_322" offset="64" context="_799" access="public" location="f11:342" file="f11" line="342"/>
+ <Field id="_1347" name="data_frame_size" type="_322" offset="96" context="_799" access="public" location="f11:343" file="f11" line="343"/>
+ <Field id="_1348" name="called_offset" type="_322" offset="128" context="_799" access="public" location="f11:346" file="f11" line="346"/>
+ <Field id="_1349" name="signal_offset" type="_322" offset="160" context="_799" access="public" location="f11:347" file="f11" line="347"/>
+ <Field id="_1350" name="emergency_offset" type="_322" offset="192" context="_799" access="public" location="f11:348" file="f11" line="348"/>
+ <Field id="_1351" name="lchan_type_offset" type="_322" offset="224" context="_799" access="public" location="f11:349" file="f11" line="349"/>
+ <Destructor id="_1352" name="gsm_mncc_hello" artificial="1" throw="" context="_799" access="public" mangled="_ZN14gsm_mncc_helloD1Ev *INTERNAL* " demangled="gsm_mncc_hello::~gsm_mncc_hello()" location="f11:337" file="f11" line="337" endline="337" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1353" name="=" returns="_1563" artificial="1" throw="" context="_799" access="public" mangled="_ZN14gsm_mncc_helloaSERKS_" demangled="gsm_mncc_hello::operator=(gsm_mncc_hello const&amp;)" location="f11:337" file="f11" line="337" endline="337" inline="1">
+ <Argument type="_1564" location="f11:337" file="f11" line="337"/>
+ </OperatorMethod>
+ <Constructor id="_1354" name="gsm_mncc_hello" artificial="1" throw="" context="_799" access="public" mangled="_ZN14gsm_mncc_helloC1ERKS_ *INTERNAL* " demangled="gsm_mncc_hello::gsm_mncc_hello(gsm_mncc_hello const&amp;)" location="f11:337" file="f11" line="337" endline="337" inline="1">
+ <Argument type="_1564" location="f11:337" file="f11" line="337"/>
+ </Constructor>
+ <Constructor id="_1355" name="gsm_mncc_hello" artificial="1" throw="" context="_799" access="public" mangled="_ZN14gsm_mncc_helloC1Ev *INTERNAL* " demangled="gsm_mncc_hello::gsm_mncc_hello()" location="f11:337" file="f11" line="337" inline="1"/>
+ <Field id="_1356" name="sa_family" type="_171" offset="0" context="_809" access="public" location="f32:8" file="f32" line="8"/>
+ <Field id="_1357" name="sa_data" type="_1565" offset="16" context="_809" access="public" location="f32:9" file="f32" line="9"/>
+ <Destructor id="_1358" name="osockaddr" artificial="1" throw="" context="_809" access="public" mangled="_ZN9osockaddrD1Ev *INTERNAL* " demangled="osockaddr::~osockaddr()" location="f32:7" file="f32" line="7" endline="7" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1359" name="=" returns="_1566" artificial="1" throw="" context="_809" access="public" mangled="_ZN9osockaddraSERKS_" demangled="osockaddr::operator=(osockaddr const&amp;)" location="f32:7" file="f32" line="7" endline="7" inline="1">
+ <Argument type="_1567" location="f32:7" file="f32" line="7"/>
+ </OperatorMethod>
+ <Constructor id="_1360" name="osockaddr" artificial="1" throw="" context="_809" access="public" mangled="_ZN9osockaddrC1ERKS_ *INTERNAL* " demangled="osockaddr::osockaddr(osockaddr const&amp;)" location="f32:7" file="f32" line="7" endline="7" inline="1">
+ <Argument type="_1567" location="f32:7" file="f32" line="7"/>
+ </Constructor>
+ <Constructor id="_1361" name="osockaddr" artificial="1" throw="" context="_809" access="public" mangled="_ZN9osockaddrC1Ev *INTERNAL* " demangled="osockaddr::osockaddr()" location="f32:7" file="f32" line="7" inline="1"/>
+ <Field id="_1362" name="pid" type="_499" offset="0" context="_822" access="public" location="f19:346" file="f19" line="346"/>
+ <Field id="_1363" name="uid" type="_199" offset="32" context="_822" access="public" location="f19:347" file="f19" line="347"/>
+ <Field id="_1364" name="gid" type="_216" offset="64" context="_822" access="public" location="f19:348" file="f19" line="348"/>
+ <Destructor id="_1365" name="ucred" artificial="1" throw="" context="_822" access="public" mangled="_ZN5ucredD1Ev *INTERNAL* " demangled="ucred::~ucred()" location="f19:345" file="f19" line="345" endline="345" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1366" name="=" returns="_1568" artificial="1" throw="" context="_822" access="public" mangled="_ZN5ucredaSERKS_" demangled="ucred::operator=(ucred const&amp;)" location="f19:345" file="f19" line="345" endline="345" inline="1">
+ <Argument type="_1569" location="f19:345" file="f19" line="345"/>
+ </OperatorMethod>
+ <Constructor id="_1367" name="ucred" artificial="1" throw="" context="_822" access="public" mangled="_ZN5ucredC1ERKS_ *INTERNAL* " demangled="ucred::ucred(ucred const&amp;)" location="f19:345" file="f19" line="345" endline="345" inline="1">
+ <Argument type="_1569" location="f19:345" file="f19" line="345"/>
+ </Constructor>
+ <Constructor id="_1368" name="ucred" artificial="1" throw="" context="_822" access="public" mangled="_ZN5ucredC1Ev *INTERNAL* " demangled="ucred::ucred()" location="f19:345" file="f19" line="345" inline="1"/>
+ <PointerType id="_1369" type="_483" size="64" align="64"/>
+ <PointerType id="_1370" type="_8" size="64" align="64"/>
+ <CvQualifiedType id="_1370r" type="_1370" restrict="1"/>
+ <Field id="_1372" name="type" type="_46" offset="0" context="_850" access="public" location="f11:161" file="f11" line="161"/>
+ <Field id="_1373" name="plan" type="_46" offset="32" context="_850" access="public" location="f11:162" file="f11" line="162"/>
+ <Field id="_1374" name="present" type="_46" offset="64" context="_850" access="public" location="f11:163" file="f11" line="163"/>
+ <Field id="_1375" name="screen" type="_46" offset="96" context="_850" access="public" location="f11:164" file="f11" line="164"/>
+ <Field id="_1376" name="number" type="_1570" offset="128" context="_850" access="public" location="f11:165" file="f11" line="165"/>
+ <Destructor id="_1377" name="gsm_mncc_number" artificial="1" throw="" context="_850" access="public" mangled="_ZN15gsm_mncc_numberD1Ev *INTERNAL* " demangled="gsm_mncc_number::~gsm_mncc_number()" location="f11:160" file="f11" line="160" endline="160" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1378" name="=" returns="_1571" artificial="1" throw="" context="_850" access="public" mangled="_ZN15gsm_mncc_numberaSERKS_" demangled="gsm_mncc_number::operator=(gsm_mncc_number const&amp;)" location="f11:160" file="f11" line="160" endline="160" inline="1">
+ <Argument type="_1572" location="f11:160" file="f11" line="160"/>
+ </OperatorMethod>
+ <Constructor id="_1379" name="gsm_mncc_number" artificial="1" throw="" context="_850" access="public" mangled="_ZN15gsm_mncc_numberC1ERKS_ *INTERNAL* " demangled="gsm_mncc_number::gsm_mncc_number(gsm_mncc_number const&amp;)" location="f11:160" file="f11" line="160" endline="160" inline="1">
+ <Argument type="_1572" location="f11:160" file="f11" line="160"/>
+ </Constructor>
+ <Constructor id="_1380" name="gsm_mncc_number" artificial="1" throw="" context="_850" access="public" mangled="_ZN15gsm_mncc_numberC1Ev *INTERNAL* " demangled="gsm_mncc_number::gsm_mncc_number()" location="f11:160" file="f11" line="160" inline="1"/>
+ <PointerType id="_1381" type="_684c" size="64" align="64"/>
+ <PointerType id="_1382" type="_563" size="64" align="64"/>
+ <ReferenceType id="_1383" type="_8" size="64" align="64"/>
+ <ReferenceType id="_1384" type="_8c" size="64" align="64"/>
+ <ReferenceType id="_1385" type="_21" size="64" align="64"/>
+ <ReferenceType id="_1386" type="_21c" size="64" align="64"/>
+ <ArrayType id="_1387" min="0" max="3u" type="_1186" size="32" align="8"/>
+ <ReferenceType id="_1388" type="_30" size="64" align="64"/>
+ <ReferenceType id="_1389" type="_30c" size="64" align="64"/>
+ <ArrayType id="_1390" min="0" max="1u" type="_32" size="64" align="32"/>
+ <Field id="_1391" name="__wseq" type="_1577" offset="0" context="_915" access="public" location="f10:96" file="f10" line="96"/>
+ <Field id="_1392" name="__wseq32" type="_1393" offset="0" context="_915" access="public" location="f10:101" file="f10" line="101"/>
+ <Struct id="_1393" context="_915" access="public" mangled="N16__pthread_cond_s3._33._4E" demangled="__pthread_cond_s::._3::._4" location="f10:98" file="f10" line="98" artificial="1" size="64" align="32" members="_1578 _1579 _1580 _1581 _1582 _1583 " bases=""/>
+ <Field id="_1394" name="__g1_start" type="_1577" offset="0" context="_916" access="public" location="f10:105" file="f10" line="105"/>
+ <Field id="_1395" name="__g1_start32" type="_1396" offset="0" context="_916" access="public" location="f10:110" file="f10" line="110"/>
+ <Struct id="_1396" context="_916" access="public" mangled="N16__pthread_cond_s3._53._6E" demangled="__pthread_cond_s::._5::._6" location="f10:107" file="f10" line="107" artificial="1" size="64" align="32" members="_1584 _1585 _1586 _1587 _1588 _1589 " bases=""/>
+ <ReferenceType id="_1397" type="_38" size="64" align="64"/>
+ <ReferenceType id="_1398" type="_38c" size="64" align="64"/>
+ <ReferenceType id="_1399" type="_53" size="64" align="64"/>
+ <ReferenceType id="_1400" type="_53c" size="64" align="64"/>
+ <ArrayType id="_1401" min="0" max="15u" type="_18" size="1024" align="64"/>
+ <ReferenceType id="_1402" type="_63" size="64" align="64"/>
+ <ReferenceType id="_1403" type="_63c" size="64" align="64"/>
+ <PointerType id="_1404" type="_66" size="64" align="64"/>
+ <ReferenceType id="_1405" type="_66" size="64" align="64"/>
+ <ReferenceType id="_1406" type="_66c" size="64" align="64"/>
+ <ArrayType id="_1407" min="0" max="128u" type="_1186" size="1032" align="8"/>
+ <ReferenceType id="_1408" type="_67" size="64" align="64"/>
+ <ReferenceType id="_1409" type="_67c" size="64" align="64"/>
+ <ReferenceType id="_1410" type="_69" size="64" align="64"/>
+ <ReferenceType id="_1411" type="_69c" size="64" align="64"/>
+ <ArrayType id="_1412" min="0" max="15u" type="_1186" size="128" align="8"/>
+ <ArrayType id="_1413" min="0" max="1023u" type="_1186" size="8192" align="8"/>
+ <Field id="_1414" name="sup" type="_46" offset="0" context="_974" access="public" location="f11:312" file="f11" line="312"/>
+ <Field id="_1415" name="inv" type="_46" offset="32" context="_974" access="public" location="f11:313" file="f11" line="313"/>
+ <Destructor id="_1416" name="._27" artificial="1" throw="" context="_974" access="public" mangled="_ZN8gsm_mncc4._27D1Ev *INTERNAL* " demangled="gsm_mncc::._27::~._27()" location="f11:311" file="f11" line="311" endline="311" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1417" name="=" returns="_1595" artificial="1" throw="" context="_974" access="public" mangled="_ZN8gsm_mncc4._27aSERKS0_" demangled="gsm_mncc::._27::operator=(gsm_mncc::._27 const&amp;)" location="f11:311" file="f11" line="311" endline="311" inline="1">
+ <Argument type="_1596" location="f11:311" file="f11" line="311"/>
+ </OperatorMethod>
+ <Constructor id="_1418" artificial="1" throw="" context="_974" access="public" mangled="_ZN8gsm_mncc4._27C1ERKS0_ *INTERNAL* " demangled="gsm_mncc::._27::._27(gsm_mncc::._27 const&amp;)" location="f11:311" file="f11" line="311" endline="311" inline="1">
+ <Argument type="_1596" location="f11:311" file="f11" line="311"/>
+ </Constructor>
+ <Constructor id="_1419" artificial="1" throw="" context="_974" access="public" mangled="_ZN8gsm_mncc4._27C1Ev *INTERNAL* " demangled="gsm_mncc::._27::._27()" location="f11:311" file="f11" line="311" inline="1"/>
+ <ReferenceType id="_1420" type="_71" size="64" align="64"/>
+ <ReferenceType id="_1421" type="_71c" size="64" align="64"/>
+ <ReferenceType id="_1422" type="_77" size="64" align="64"/>
+ <ReferenceType id="_1423" type="_77c" size="64" align="64"/>
+ <ReferenceType id="_1424" type="_94" size="64" align="64"/>
+ <ReferenceType id="_1425" type="_94c" size="64" align="64"/>
+ <ArrayType id="_1426" min="0" max="127u" type="_1186" size="1024" align="8"/>
+ <ReferenceType id="_1427" type="_111" size="64" align="64"/>
+ <ReferenceType id="_1428" type="_111c" size="64" align="64"/>
+ <ReferenceType id="_1429" type="_143" size="64" align="64"/>
+ <ReferenceType id="_1430" type="_143c" size="64" align="64"/>
+ <ArrayType id="_1431" min="0" max="0xffffffffffffffffffffffffffffffffu" type="_154" size="0" align="8"/>
+ <ReferenceType id="_1432" type="_156" size="64" align="64"/>
+ <ReferenceType id="_1433" type="_156c" size="64" align="64"/>
+ <ArrayType id="_1434" min="0" max="0xffffffffffffffffffffffffffffffffu" type="_154" size="0" align="8"/>
+ <ReferenceType id="_1435" type="_159" size="64" align="64"/>
+ <ReferenceType id="_1436" type="_159c" size="64" align="64"/>
+ <ReferenceType id="_1437" type="_160" size="64" align="64"/>
+ <ReferenceType id="_1438" type="_160c" size="64" align="64"/>
+ <ReferenceType id="_1439" type="_169" size="64" align="64"/>
+ <ReferenceType id="_1440" type="_169c" size="64" align="64"/>
+ <ArrayType id="_1441" min="0" max="15u" type="_660" size="1024" align="64"/>
+ <ReferenceType id="_1442" type="_173" size="64" align="64"/>
+ <ReferenceType id="_1443" type="_173c" size="64" align="64"/>
+ <ReferenceType id="_1444" type="_182" size="64" align="64"/>
+ <ReferenceType id="_1445" type="_182c" size="64" align="64"/>
+ <ArrayType id="_1446" min="0" max="0u" type="_679" size="32" align="32"/>
+ <ReferenceType id="_1447" type="_183" size="64" align="64"/>
+ <ReferenceType id="_1448" type="_183c" size="64" align="64"/>
+ <ReferenceType id="_1449" type="_218" size="64" align="64"/>
+ <ReferenceType id="_1450" type="_218c" size="64" align="64"/>
+ <ArrayType id="_1451" min="0" max="47u" type="_1186" size="384" align="8"/>
+ <ReferenceType id="_1452" type="_233" size="64" align="64"/>
+ <ReferenceType id="_1453" type="_233c" size="64" align="64"/>
+ <Field id="_1455" name="__u6_addr8" type="_1610" offset="0" context="_1078" access="public" location="f5:220" file="f5" line="220"/>
+ <Field id="_1456" name="__u6_addr16" type="_1611" offset="0" context="_1078" access="public" location="f5:221" file="f5" line="221"/>
+ <Field id="_1457" name="__u6_addr32" type="_1612" offset="0" context="_1078" access="public" location="f5:222" file="f5" line="222"/>
+ <Destructor id="_1458" name="._24" artificial="1" throw="" context="_1078" access="public" mangled="_ZN8in6_addr4._24D1Ev *INTERNAL* " demangled="in6_addr::._24::~._24()" location="f5:219" file="f5" line="219" endline="219" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1459" name="=" returns="_1613" artificial="1" throw="" context="_1078" access="public" mangled="_ZN8in6_addr4._24aSERKS0_" demangled="in6_addr::._24::operator=(in6_addr::._24 const&amp;)" location="f5:219" file="f5" line="219" endline="219" inline="1">
+ <Argument type="_1614" location="f5:219" file="f5" line="219"/>
+ </OperatorMethod>
+ <Constructor id="_1460" artificial="1" throw="" context="_1078" access="public" mangled="_ZN8in6_addr4._24C1ERKS0_ *INTERNAL* " demangled="in6_addr::._24::._24(in6_addr::._24 const&amp;)" location="f5:219" file="f5" line="219" endline="219" inline="1">
+ <Argument type="_1614" location="f5:219" file="f5" line="219"/>
+ </Constructor>
+ <Constructor id="_1461" artificial="1" throw="" context="_1078" access="public" mangled="_ZN8in6_addr4._24C1Ev *INTERNAL* " demangled="in6_addr::._24::._24()" location="f5:219" file="f5" line="219" inline="1"/>
+ <ReferenceType id="_1462" type="_237" size="64" align="64"/>
+ <ReferenceType id="_1463" type="_237c" size="64" align="64"/>
+ <ArrayType id="_1464" min="0" max="31u" type="_1186" size="256" align="8"/>
+ <ReferenceType id="_1465" type="_242" size="64" align="64"/>
+ <ReferenceType id="_1466" type="_242c" size="64" align="64"/>
+ <ArrayType id="_1468" min="0" max="1u" type="_46" size="64" align="32"/>
+ <ReferenceType id="_1469" type="_263" size="64" align="64"/>
+ <ReferenceType id="_1470" type="_263c" size="64" align="64"/>
+ <ReferenceType id="_1471" type="_267" size="64" align="64"/>
+ <ReferenceType id="_1472" type="_267c" size="64" align="64"/>
+ <ArrayType id="_1474" min="0" max="39u" type="_1186" size="320" align="8"/>
+ <ReferenceType id="_1475" type="_292" size="64" align="64"/>
+ <ReferenceType id="_1476" type="_292c" size="64" align="64"/>
+ <ReferenceType id="_1477" type="_301" size="64" align="64"/>
+ <ReferenceType id="_1478" type="_301c" size="64" align="64"/>
+ <ReferenceType id="_1479" type="_302" size="64" align="64"/>
+ <ReferenceType id="_1480" type="_302c" size="64" align="64"/>
+ <ReferenceType id="_1481" type="_327" size="64" align="64"/>
+ <ReferenceType id="_1482" type="_327c" size="64" align="64"/>
+ <PointerType id="_1483" type="_350" size="64" align="64"/>
+ <ReferenceType id="_1484" type="_350" size="64" align="64"/>
+ <ReferenceType id="_1485" type="_350c" size="64" align="64"/>
+ <ArrayType id="_1486" min="0" max="13u" type="_1186" size="112" align="8"/>
+ <ReferenceType id="_1487" type="_364" size="64" align="64"/>
+ <ReferenceType id="_1488" type="_364c" size="64" align="64"/>
+ <ReferenceType id="_1489" type="_368" size="64" align="64"/>
+ <ReferenceType id="_1490" type="_368c" size="64" align="64"/>
+ <ReferenceType id="_1491" type="_372" size="64" align="64"/>
+ <ReferenceType id="_1492" type="_372c" size="64" align="64"/>
+ <ReferenceType id="_1494" type="_402" size="64" align="64"/>
+ <ReferenceType id="_1495" type="_402c" size="64" align="64"/>
+ <ReferenceType id="_1499" type="_437" size="64" align="64"/>
+ <ReferenceType id="_1500" type="_437c" size="64" align="64"/>
+ <ArrayType id="_1501" min="0" max="7u" type="_1186" size="64" align="8"/>
+ <ReferenceType id="_1502" type="_439" size="64" align="64"/>
+ <ReferenceType id="_1503" type="_439c" size="64" align="64"/>
+ <ArrayType id="_1505" min="0" max="117u" type="_1186" size="944" align="8"/>
+ <ReferenceType id="_1506" type="_483" size="64" align="64"/>
+ <ReferenceType id="_1507" type="_483c" size="64" align="64"/>
+ <ArrayType id="_1508" min="0" max="1u" type="_322" size="64" align="32"/>
+ <ReferenceType id="_1509" type="_507" size="64" align="64"/>
+ <ReferenceType id="_1510" type="_507c" size="64" align="64"/>
+ <ReferenceType id="_1511" type="_509" size="64" align="64"/>
+ <ReferenceType id="_1512" type="_509c" size="64" align="64"/>
+ <ArrayType id="_1513" min="0" max="0u" type="_483" size="1024" align="64"/>
+ <ReferenceType id="_1514" type="_527" size="64" align="64"/>
+ <ReferenceType id="_1515" type="_527c" size="64" align="64"/>
+ <ArrayType id="_1516" min="0" max="7u" type="_46" size="256" align="32"/>
+ <Field id="_1517" name="rate_adaption" type="_220" offset="0" context="_1223" access="public" location="f11:147" file="f11" line="147"/>
+ <Field id="_1518" name="sig_access" type="_135" offset="32" context="_1223" access="public" location="f11:148" file="f11" line="148"/>
+ <Field id="_1519" name="async" type="_46" offset="64" context="_1223" access="public" location="f11:149" file="f11" line="149"/>
+ <Field id="_1520" name="nr_stop_bits" type="_46" offset="96" context="_1223" access="public" location="f11:150" file="f11" line="150"/>
+ <Field id="_1521" name="nr_data_bits" type="_46" offset="128" context="_1223" access="public" location="f11:151" file="f11" line="151"/>
+ <Field id="_1522" name="user_rate" type="_375" offset="160" context="_1223" access="public" location="f11:152" file="f11" line="152"/>
+ <Field id="_1523" name="parity" type="_808" offset="192" context="_1223" access="public" location="f11:153" file="f11" line="153"/>
+ <Field id="_1524" name="interm_rate" type="_724" offset="224" context="_1223" access="public" location="f11:154" file="f11" line="154"/>
+ <Field id="_1525" name="transp" type="_312" offset="256" context="_1223" access="public" location="f11:155" file="f11" line="155"/>
+ <Field id="_1526" name="modem_type" type="_337" offset="288" context="_1223" access="public" location="f11:156" file="f11" line="156"/>
+ <Destructor id="_1527" name="._25" artificial="1" throw="" context="_1223" access="public" mangled="_ZN19gsm_mncc_bearer_cap4._25D1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::._25::~._25()" location="f11:146" file="f11" line="146" endline="146" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1528" name="=" returns="_1630" artificial="1" throw="" context="_1223" access="public" mangled="_ZN19gsm_mncc_bearer_cap4._25aSERKS0_" demangled="gsm_mncc_bearer_cap::._25::operator=(gsm_mncc_bearer_cap::._25 const&amp;)" location="f11:146" file="f11" line="146" endline="146" inline="1">
+ <Argument type="_1631" location="f11:146" file="f11" line="146"/>
+ </OperatorMethod>
+ <Constructor id="_1529" artificial="1" throw="" context="_1223" access="public" mangled="_ZN19gsm_mncc_bearer_cap4._25C1ERKS0_ *INTERNAL* " demangled="gsm_mncc_bearer_cap::._25::._25(gsm_mncc_bearer_cap::._25 const&amp;)" location="f11:146" file="f11" line="146" endline="146" inline="1">
+ <Argument type="_1631" location="f11:146" file="f11" line="146"/>
+ </Constructor>
+ <Constructor id="_1530" artificial="1" throw="" context="_1223" access="public" mangled="_ZN19gsm_mncc_bearer_cap4._25C1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::._25::._25()" location="f11:146" file="f11" line="146" inline="1"/>
+ <ReferenceType id="_1531" type="_552" size="64" align="64"/>
+ <ReferenceType id="_1532" type="_552c" size="64" align="64"/>
+ <ArrayType id="_1533" min="0" max="7u" type="_154" size="64" align="8"/>
+ <ReferenceType id="_1534" type="_563" size="64" align="64"/>
+ <ReferenceType id="_1535" type="_563c" size="64" align="64"/>
+ <ReferenceType id="_1536" type="_574" size="64" align="64"/>
+ <ReferenceType id="_1537" type="_574c" size="64" align="64"/>
+ <ReferenceType id="_1538" type="_579" size="64" align="64"/>
+ <ReferenceType id="_1539" type="_579c" size="64" align="64"/>
+ <ReferenceType id="_1540" type="_582" size="64" align="64"/>
+ <ReferenceType id="_1541" type="_582c" size="64" align="64"/>
+ <ArrayType id="_1542" min="0" max="55u" type="_1186" size="448" align="8"/>
+ <ReferenceType id="_1543" type="_597" size="64" align="64"/>
+ <ReferenceType id="_1544" type="_597c" size="64" align="64"/>
+ <ReferenceType id="_1545" type="_617" size="64" align="64"/>
+ <ReferenceType id="_1546" type="_617c" size="64" align="64"/>
+ <ReferenceType id="_1547" type="_630" size="64" align="64"/>
+ <ReferenceType id="_1548" type="_630c" size="64" align="64"/>
+ <PointerType id="_1549" type="_182" size="64" align="64"/>
+ <ReferenceType id="_1550" type="_675" size="64" align="64"/>
+ <ReferenceType id="_1551" type="_675c" size="64" align="64"/>
+ <ReferenceType id="_1552" type="_679" size="64" align="64"/>
+ <ReferenceType id="_1553" type="_679c" size="64" align="64"/>
+ <ArrayType id="_1554" min="0" max="6u" type="_154" size="56" align="8"/>
+ <ReferenceType id="_1555" type="_741" size="64" align="64"/>
+ <ReferenceType id="_1556" type="_741c" size="64" align="64"/>
+ <ReferenceType id="_1557" type="_758" size="64" align="64"/>
+ <ReferenceType id="_1558" type="_758c" size="64" align="64"/>
+ <ReferenceType id="_1559" type="_762" size="64" align="64"/>
+ <ReferenceType id="_1560" type="_762c" size="64" align="64"/>
+ <ReferenceType id="_1561" type="_763" size="64" align="64"/>
+ <ReferenceType id="_1562" type="_763c" size="64" align="64"/>
+ <ReferenceType id="_1563" type="_799" size="64" align="64"/>
+ <ReferenceType id="_1564" type="_799c" size="64" align="64"/>
+ <ArrayType id="_1565" min="0" max="13u" type="_154" size="112" align="8"/>
+ <ReferenceType id="_1566" type="_809" size="64" align="64"/>
+ <ReferenceType id="_1567" type="_809c" size="64" align="64"/>
+ <ReferenceType id="_1568" type="_822" size="64" align="64"/>
+ <ReferenceType id="_1569" type="_822c" size="64" align="64"/>
+ <ArrayType id="_1570" min="0" max="32u" type="_1186" size="264" align="8"/>
+ <ReferenceType id="_1571" type="_850" size="64" align="64"/>
+ <ReferenceType id="_1572" type="_850c" size="64" align="64"/>
+ <FundamentalType id="_1186" name="char" size="8" align="8"/>
+ <FundamentalType id="_1577" name="long long unsigned int" size="64" align="64"/>
+ <Field id="_1578" name="__low" type="_32" offset="0" context="_1393" access="public" location="f10:99" file="f10" line="99"/>
+ <Field id="_1579" name="__high" type="_32" offset="32" context="_1393" access="public" location="f10:100" file="f10" line="100"/>
+ <Destructor id="_1580" name="._4" artificial="1" throw="" context="_1393" access="public" mangled="_ZN16__pthread_cond_s3._33._4D1Ev *INTERNAL* " demangled="__pthread_cond_s::._3::._4::~._4()" location="f10:98" file="f10" line="98" endline="98" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1581" name="=" returns="_1648" artificial="1" throw="" context="_1393" access="public" mangled="_ZN16__pthread_cond_s3._33._4aSERKS1_" demangled="__pthread_cond_s::._3::._4::operator=(__pthread_cond_s::._3::._4 const&amp;)" location="f10:98" file="f10" line="98" endline="98" inline="1">
+ <Argument type="_1649" location="f10:98" file="f10" line="98"/>
+ </OperatorMethod>
+ <Constructor id="_1582" artificial="1" throw="" context="_1393" access="public" mangled="_ZN16__pthread_cond_s3._33._4C1ERKS1_ *INTERNAL* " demangled="__pthread_cond_s::._3::._4::._4(__pthread_cond_s::._3::._4 const&amp;)" location="f10:98" file="f10" line="98" endline="98" inline="1">
+ <Argument type="_1649" location="f10:98" file="f10" line="98"/>
+ </Constructor>
+ <Constructor id="_1583" artificial="1" throw="" context="_1393" access="public" mangled="_ZN16__pthread_cond_s3._33._4C1Ev *INTERNAL* " demangled="__pthread_cond_s::._3::._4::._4()" location="f10:98" file="f10" line="98" inline="1"/>
+ <Field id="_1584" name="__low" type="_32" offset="0" context="_1396" access="public" location="f10:108" file="f10" line="108"/>
+ <Field id="_1585" name="__high" type="_32" offset="32" context="_1396" access="public" location="f10:109" file="f10" line="109"/>
+ <Destructor id="_1586" name="._6" artificial="1" throw="" context="_1396" access="public" mangled="_ZN16__pthread_cond_s3._53._6D1Ev *INTERNAL* " demangled="__pthread_cond_s::._5::._6::~._6()" location="f10:107" file="f10" line="107" endline="107" inline="1">
+ </Destructor>
+ <OperatorMethod id="_1587" name="=" returns="_1650" artificial="1" throw="" context="_1396" access="public" mangled="_ZN16__pthread_cond_s3._53._6aSERKS1_" demangled="__pthread_cond_s::._5::._6::operator=(__pthread_cond_s::._5::._6 const&amp;)" location="f10:107" file="f10" line="107" endline="107" inline="1">
+ <Argument type="_1651" location="f10:107" file="f10" line="107"/>
+ </OperatorMethod>
+ <Constructor id="_1588" artificial="1" throw="" context="_1396" access="public" mangled="_ZN16__pthread_cond_s3._53._6C1ERKS1_ *INTERNAL* " demangled="__pthread_cond_s::._5::._6::._6(__pthread_cond_s::._5::._6 const&amp;)" location="f10:107" file="f10" line="107" endline="107" inline="1">
+ <Argument type="_1651" location="f10:107" file="f10" line="107"/>
+ </Constructor>
+ <Constructor id="_1589" artificial="1" throw="" context="_1396" access="public" mangled="_ZN16__pthread_cond_s3._53._6C1Ev *INTERNAL* " demangled="__pthread_cond_s::._5::._6::._6()" location="f10:107" file="f10" line="107" inline="1"/>
+ <ReferenceType id="_1595" type="_974" size="64" align="64"/>
+ <ReferenceType id="_1596" type="_974c" size="64" align="64"/>
+ <ArrayType id="_1610" min="0" max="15u" type="_684" size="128" align="8"/>
+ <ArrayType id="_1611" min="0" max="7u" type="_391" size="128" align="16"/>
+ <ArrayType id="_1612" min="0" max="3u" type="_322" size="128" align="32"/>
+ <ReferenceType id="_1613" type="_1078" size="64" align="64"/>
+ <ReferenceType id="_1614" type="_1078c" size="64" align="64"/>
+ <ReferenceType id="_1630" type="_1223" size="64" align="64"/>
+ <ReferenceType id="_1631" type="_1223c" size="64" align="64"/>
+ <ReferenceType id="_1648" type="_1393" size="64" align="64"/>
+ <ReferenceType id="_1649" type="_1393c" size="64" align="64"/>
+ <ReferenceType id="_1650" type="_1396" size="64" align="64"/>
+ <ReferenceType id="_1651" type="_1396c" size="64" align="64"/>
+ <FundamentalType id="_1067" name="void" align="8"/>
+ <FunctionType id="_997" returns="_1067">
+ <Argument type="_46"/>
+ </FunctionType>
+ <CvQualifiedType id="_263c" type="_263" const="1"/>
+ <CvQualifiedType id="_182c" type="_182" const="1"/>
+ <CvQualifiedType id="_63c" type="_63" const="1"/>
+ <CvQualifiedType id="_8c" type="_8" const="1"/>
+ <CvQualifiedType id="_368c" type="_368" const="1"/>
+ <CvQualifiedType id="_173c" type="_173" const="1"/>
+ <CvQualifiedType id="_350c" type="_350" const="1"/>
+ <CvQualifiedType id="_66c" type="_66" const="1"/>
+ <CvQualifiedType id="_582c" type="_582" const="1"/>
+ <CvQualifiedType id="_741c" type="_741" const="1"/>
+ <CvQualifiedType id="_1393c" type="_1393" const="1"/>
+ <CvQualifiedType id="_1396c" type="_1396" const="1"/>
+ <CvQualifiedType id="_38c" type="_38" const="1"/>
+ <CvQualifiedType id="_437c" type="_437" const="1"/>
+ <CvQualifiedType id="_160c" type="_160" const="1"/>
+ <CvQualifiedType id="_30c" type="_30" const="1"/>
+ <CvQualifiedType id="_597c" type="_597" const="1"/>
+ <CvQualifiedType id="_762c" type="_762" const="1"/>
+ <CvQualifiedType id="_233c" type="_233" const="1"/>
+ <CvQualifiedType id="_763c" type="_763" const="1"/>
+ <CvQualifiedType id="_439c" type="_439" const="1"/>
+ <CvQualifiedType id="_242c" type="_242" const="1"/>
+ <CvQualifiedType id="_402c" type="_402" const="1"/>
+ <CvQualifiedType id="_364c" type="_364" const="1"/>
+ <CvQualifiedType id="_483c" type="_483" const="1"/>
+ <CvQualifiedType id="_675c" type="_675" const="1"/>
+ <CvQualifiedType id="_156c" type="_156" const="1"/>
+ <CvQualifiedType id="_822c" type="_822" const="1"/>
+ <CvQualifiedType id="_327c" type="_327" const="1"/>
+ <CvQualifiedType id="_617c" type="_617" const="1"/>
+ <CvQualifiedType id="_218c" type="_218" const="1"/>
+ <CvQualifiedType id="_809c" type="_809" const="1"/>
+ <CvQualifiedType id="_372c" type="_372" const="1"/>
+ <CvQualifiedType id="_1067c" type="_1067" const="1"/>
+ <CvQualifiedType id="_679c" type="_679" const="1"/>
+ <CvQualifiedType id="_292c" type="_292" const="1"/>
+ <CvQualifiedType id="_509c" type="_509" const="1"/>
+ <CvQualifiedType id="_143c" type="_143" const="1"/>
+ <CvQualifiedType id="_1078c" type="_1078" const="1"/>
+ <CvQualifiedType id="_563c" type="_563" const="1"/>
+ <CvQualifiedType id="_758c" type="_758" const="1"/>
+ <CvQualifiedType id="_94c" type="_94" const="1"/>
+ <CvQualifiedType id="_267c" type="_267" const="1"/>
+ <CvQualifiedType id="_77c" type="_77" const="1"/>
+ <CvQualifiedType id="_574c" type="_574" const="1"/>
+ <CvQualifiedType id="_579c" type="_579" const="1"/>
+ <CvQualifiedType id="_183c" type="_183" const="1"/>
+ <CvQualifiedType id="_527c" type="_527" const="1"/>
+ <CvQualifiedType id="_21c" type="_21" const="1"/>
+ <CvQualifiedType id="_69c" type="_69" const="1"/>
+ <CvQualifiedType id="_684c" type="_684" const="1"/>
+ <CvQualifiedType id="_1223c" type="_1223" const="1"/>
+ <CvQualifiedType id="_552c" type="_552" const="1"/>
+ <CvQualifiedType id="_850c" type="_850" const="1"/>
+ <CvQualifiedType id="_302c" type="_302" const="1"/>
+ <CvQualifiedType id="_67c" type="_67" const="1"/>
+ <CvQualifiedType id="_301c" type="_301" const="1"/>
+ <CvQualifiedType id="_111c" type="_111" const="1"/>
+ <CvQualifiedType id="_169c" type="_169" const="1"/>
+ <CvQualifiedType id="_53c" type="_53" const="1"/>
+ <CvQualifiedType id="_974c" type="_974" const="1"/>
+ <CvQualifiedType id="_71c" type="_71" const="1"/>
+ <CvQualifiedType id="_159c" type="_159" const="1"/>
+ <CvQualifiedType id="_799c" type="_799" const="1"/>
+ <CvQualifiedType id="_630c" type="_630" const="1"/>
+ <CvQualifiedType id="_507c" type="_507" const="1"/>
+ <File id="f0" name="/tmp/tmp5bKyhI.cpp"/>
+ <File id="f1" name="/usr/include/bits/types/struct_timeval.h"/>
+ <File id="f2" name="/usr/include/sys/socket.h"/>
+ <File id="f3" name="/usr/include/sys/types.h"/>
+ <File id="f4" name="/usr/include/stdint.h"/>
+ <File id="f5" name="/usr/include/netinet/in.h"/>
+ <File id="f6" name="/usr/include/bits/byteswap.h"/>
+ <File id="f7" name="/usr/include/bits/pthreadtypes.h"/>
+ <File id="f8" name="/usr/include/asm-generic/posix_types.h"/>
+ <File id="f9" name="/usr/include/bits/types.h"/>
+ <File id="f10" name="/usr/include/bits/thread-shared-types.h"/>
+ <File id="f11" name="/tmp/./mncc.h"/>
+ <File id="f12" name="/usr/include/bits/types/__sigset_t.h"/>
+ <File id="f13" name="/usr/include/bits/types/sigset_t.h"/>
+ <File id="f14" name="/usr/include/bits/types/time_t.h"/>
+ <File id="f15" name="/usr/include/bits/types/clock_t.h"/>
+ <File id="f16" name="/usr/include/bits/types/clockid_t.h"/>
+ <File id="f17" name="/usr/include/linux/posix_types.h"/>
+ <File id="f18" name="/usr/include/bits/in.h"/>
+ <File id="f19" name="/usr/include/bits/socket.h"/>
+ <File id="f20" name="/usr/include/sys/select.h"/>
+ <File id="f21" name="/usr/include/bits/types/struct_iovec.h"/>
+ <File id="f22" name="/usr/include/bits/types/timer_t.h"/>
+ <File id="f23" name="/usr/include/bits/uintn-identity.h"/>
+ <File id="f24" name="/usr/include/bits/stdint-uintn.h"/>
+ <File id="f25" name="/usr/include/bits/types/struct_timespec.h"/>
+ <File id="f26" name="/usr/include/bits/stdint-intn.h"/>
+ <File id="f27" name="/usr/include/asm/posix_types_64.h"/>
+ <File id="f28" name="/usr/lib/gcc/x86_64-pc-linux-gnu/8.4.0/include/stddef.h"/>
+ <File id="f29" name="/usr/include/bits/struct_mutex.h"/>
+ <File id="f30" name="/usr/include/bits/struct_rwlock.h"/>
+ <File id="f31" name="/usr/include/bits/socket_type.h"/>
+ <File id="f32" name="/usr/include/bits/types/struct_osockaddr.h"/>
+ <File id="f33" name="/usr/include/bits/sockaddr.h"/>
+ <CPP_DUMP name="functions"><![CDATA[CMSG_ALIGN(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
+CMSG_DATA(cmsg) ((cmsg)->__cmsg_data)
+CMSG_FIRSTHDR(mhdr) ((size_t) (mhdr)->msg_controllen >= sizeof (struct cmsghdr) ? (struct cmsghdr *) (mhdr)->msg_control : (struct cmsghdr *) 0)
+CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len))
+CMSG_NXTHDR(mhdr,cmsg) __cmsg_nxthdr (mhdr, cmsg)
+CMSG_SPACE(len) (CMSG_ALIGN (len) + CMSG_ALIGN (sizeof (struct cmsghdr)))
+FD_CLR(fd,fdsetp) __FD_CLR (fd, fdsetp)
+FD_ISSET(fd,fdsetp) __FD_ISSET (fd, fdsetp)
+FD_SET(fd,fdsetp) __FD_SET (fd, fdsetp)
+FD_ZERO(fdsetp) __FD_ZERO (fdsetp)
+GROUP_FILTER_SIZE(numsrc) (sizeof (struct group_filter) - sizeof (struct sockaddr_storage) + ((numsrc) * sizeof (struct sockaddr_storage)))
+IN6_ARE_ADDR_EQUAL(a,b) (__extension__ ({ const struct in6_addr *__a = (const struct in6_addr *) (a); const struct in6_addr *__b = (const struct in6_addr *) (b); __a->__in6_u.__u6_addr32[0] == __b->__in6_u.__u6_addr32[0] && __a->__in6_u.__u6_addr32[1] == __b->__in6_u.__u6_addr32[1] && __a->__in6_u.__u6_addr32[2] == __b->__in6_u.__u6_addr32[2] && __a->__in6_u.__u6_addr32[3] == __b->__in6_u.__u6_addr32[3]; }))
+IN6_IS_ADDR_LINKLOCAL(a) (__extension__ ({ const struct in6_addr *__a = (const struct in6_addr *) (a); (__a->__in6_u.__u6_addr32[0] & htonl (0xffc00000)) == htonl (0xfe800000); }))
+IN6_IS_ADDR_LOOPBACK(a) (__extension__ ({ const struct in6_addr *__a = (const struct in6_addr *) (a); __a->__in6_u.__u6_addr32[0] == 0 && __a->__in6_u.__u6_addr32[1] == 0 && __a->__in6_u.__u6_addr32[2] == 0 && __a->__in6_u.__u6_addr32[3] == htonl (1); }))
+IN6_IS_ADDR_MC_GLOBAL(a) (IN6_IS_ADDR_MULTICAST(a) && ((((const uint8_t *) (a))[1] & 0xf) == 0xe))
+IN6_IS_ADDR_MC_LINKLOCAL(a) (IN6_IS_ADDR_MULTICAST(a) && ((((const uint8_t *) (a))[1] & 0xf) == 0x2))
+IN6_IS_ADDR_MC_NODELOCAL(a) (IN6_IS_ADDR_MULTICAST(a) && ((((const uint8_t *) (a))[1] & 0xf) == 0x1))
+IN6_IS_ADDR_MC_ORGLOCAL(a) (IN6_IS_ADDR_MULTICAST(a) && ((((const uint8_t *) (a))[1] & 0xf) == 0x8))
+IN6_IS_ADDR_MC_SITELOCAL(a) (IN6_IS_ADDR_MULTICAST(a) && ((((const uint8_t *) (a))[1] & 0xf) == 0x5))
+IN6_IS_ADDR_MULTICAST(a) (((const uint8_t *) (a))[0] == 0xff)
+IN6_IS_ADDR_SITELOCAL(a) (__extension__ ({ const struct in6_addr *__a = (const struct in6_addr *) (a); (__a->__in6_u.__u6_addr32[0] & htonl (0xffc00000)) == htonl (0xfec00000); }))
+IN6_IS_ADDR_UNSPECIFIED(a) (__extension__ ({ const struct in6_addr *__a = (const struct in6_addr *) (a); __a->__in6_u.__u6_addr32[0] == 0 && __a->__in6_u.__u6_addr32[1] == 0 && __a->__in6_u.__u6_addr32[2] == 0 && __a->__in6_u.__u6_addr32[3] == 0; }))
+IN6_IS_ADDR_V4COMPAT(a) (__extension__ ({ const struct in6_addr *__a = (const struct in6_addr *) (a); __a->__in6_u.__u6_addr32[0] == 0 && __a->__in6_u.__u6_addr32[1] == 0 && __a->__in6_u.__u6_addr32[2] == 0 && ntohl (__a->__in6_u.__u6_addr32[3]) > 1; }))
+IN6_IS_ADDR_V4MAPPED(a) (__extension__ ({ const struct in6_addr *__a = (const struct in6_addr *) (a); __a->__in6_u.__u6_addr32[0] == 0 && __a->__in6_u.__u6_addr32[1] == 0 && __a->__in6_u.__u6_addr32[2] == htonl (0xffff); }))
+INT16_C(c) c
INT32_C(c) c
INT64_C(c) c ## L
INT8_C(c) c
INTMAX_C(c) c ## L
+IN_BADCLASS(a) ((((in_addr_t)(a)) & 0xf0000000) == 0xf0000000)
+IN_CLASSA(a) ((((in_addr_t)(a)) & 0x80000000) == 0)
+IN_CLASSB(a) ((((in_addr_t)(a)) & 0xc0000000) == 0x80000000)
+IN_CLASSC(a) ((((in_addr_t)(a)) & 0xe0000000) == 0xc0000000)
+IN_CLASSD(a) ((((in_addr_t)(a)) & 0xf0000000) == 0xe0000000)
+IN_EXPERIMENTAL(a) ((((in_addr_t)(a)) & 0xe0000000) == 0xe0000000)
+IN_MULTICAST(a) IN_CLASSD(a)
+IP_MSFILTER_SIZE(numsrc) (sizeof (struct ip_msfilter) - sizeof (struct in_addr) + (numsrc) * sizeof (struct in_addr))
UINT16_C(c) c
UINT32_C(c) c ## U
UINT64_C(c) c ## UL
@@ -1051,42 +2496,280 @@ UINTMAX_C(c) c ## UL
__ASMNAME(cname) __ASMNAME2 (__USER_LABEL_PREFIX__, cname)
__ASMNAME2(prefix,cname) __STRING (prefix) cname
__CONCAT(x,y) x ## y
+__FDS_BITS(set) ((set)->fds_bits)
+__FD_CLR(d,s) ((void) (__FDS_BITS (s)[__FD_ELT(d)] &= ~__FD_MASK(d)))
+__FD_ELT(d) ((d) / __NFDBITS)
+__FD_ISSET(d,s) ((__FDS_BITS (s)[__FD_ELT (d)] & __FD_MASK (d)) != 0)
+__FD_MASK(d) ((__fd_mask) (1UL << ((d) % __NFDBITS)))
+__FD_SET(d,s) ((void) (__FDS_BITS (s)[__FD_ELT(d)] |= __FD_MASK(d)))
+__FD_ZERO(s) do { unsigned int __i; fd_set *__arr = (s); for (__i = 0; __i < sizeof (fd_set) / sizeof (__fd_mask); ++__i) __FDS_BITS (__arr)[__i] = 0; } while (0)
__GLIBC_PREREQ(maj,min) ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
+__GLIBC_USE(F) __GLIBC_USE_ ## F
__GNUC_PREREQ(maj,min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
__LDBL_REDIR(name,proto) name proto
__LDBL_REDIR1(name,proto,alias) name proto
__LDBL_REDIR1_NTH(name,proto,alias) name proto __THROW
__LDBL_REDIR_NTH(name,proto) name proto __THROW
+__LONG_LONG_PAIR(HI,LO) LO, HI
__NTH(fct) __LEAF_ATTR fct throw ()
+__NTHNL(fct) fct throw ()
__P(args) args
__PMT(args) args
+__PTHREAD_MUTEX_INITIALIZER(__kind) 0, 0, 0, 0, __kind, 0, 0, { 0, 0 }
+__PTHREAD_RWLOCK_INITIALIZER(__flags) 0, 0, 0, 0, 0, 0, 0, 0, __PTHREAD_RWLOCK_ELISION_EXTRA, 0, __flags
__REDIRECT(name,proto,alias) name proto __asm__ (__ASMNAME (#alias))
__REDIRECT_LDBL(name,proto,alias) __REDIRECT (name, proto, alias)
__REDIRECT_NTH(name,proto,alias) name proto __THROW __asm__ (__ASMNAME (#alias))
__REDIRECT_NTHNL(name,proto,alias) name proto __THROWNL __asm__ (__ASMNAME (#alias))
__REDIRECT_NTH_LDBL(name,proto,alias) __REDIRECT_NTH (name, proto, alias)
+__SOCKADDR_COMMON(sa_prefix) sa_family_t sa_prefix ##family
__STRING(x) #x
__attribute_alloc_size__(params) __attribute__ ((__alloc_size__ params))
+__attribute_deprecated_msg__(msg) __attribute__ ((__deprecated__ (msg)))
__attribute_format_arg__(x) __attribute__ ((__format_arg__ (x)))
__attribute_format_strfmon__(a,b) __attribute__ ((__format__ (__strfmon__, a, b)))
__bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1)
__bos0(ptr) __builtin_object_size (ptr, 0)
+__bswap_constant_16(x) ((__uint16_t) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8)))
+__bswap_constant_32(x) ((((x) & 0xff000000u) >> 24) | (((x) & 0x00ff0000u) >> 8) | (((x) & 0x0000ff00u) << 8) | (((x) & 0x000000ffu) << 24))
+__bswap_constant_64(x) ((((x) & 0xff00000000000000ull) >> 56) | (((x) & 0x00ff000000000000ull) >> 40) | (((x) & 0x0000ff0000000000ull) >> 24) | (((x) & 0x000000ff00000000ull) >> 8) | (((x) & 0x00000000ff000000ull) << 8) | (((x) & 0x0000000000ff0000ull) << 24) | (((x) & 0x000000000000ff00ull) << 40) | (((x) & 0x00000000000000ffull) << 56))
+__builtin_bswap16(x) ((__uint16_t) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8)))
+__builtin_bswap32(x) ((((x) & 0xff000000u) >> 24) | (((x) & 0x00ff0000u) >> 8) | (((x) & 0x0000ff00u) << 8) | (((x) & 0x000000ffu) << 24))
+__builtin_bswap64(x) ((((x) & 0xff00000000000000ull) >> 56) | (((x) & 0x00ff000000000000ull) >> 40) | (((x) & 0x0000ff0000000000ull) >> 24) | (((x) & 0x000000ff00000000ull) >> 8) | (((x) & 0x00000000ff000000ull) << 8) | (((x) & 0x0000000000ff0000ull) << 24) | (((x) & 0x000000000000ff00ull) << 40) | (((x) & 0x00000000000000ffull) << 56))
__errordecl(name,msg) extern void name (void) __attribute__((__error__ (msg)))
+__glibc_clang_has_extension(ext) 0
+__glibc_clang_prereq(maj,min) 0
+__glibc_has_attribute(attr) 0
__glibc_likely(cond) __builtin_expect ((cond), 1)
+__glibc_macro_warning(message) __glibc_macro_warning1 (GCC warning message)
+__glibc_macro_warning1(message) _Pragma (#message)
__glibc_unlikely(cond) __builtin_expect ((cond), 0)
__nonnull(params) __attribute__ ((__nonnull__ params))
__va_arg_pack() __builtin_va_arg_pack ()
__va_arg_pack_len() __builtin_va_arg_pack_len ()
__warnattr(msg) __attribute__((__warning__ (msg)))
__warndecl(name,msg) extern void name (void) __attribute__((__warning__ (msg)))
+be16toh(x) __bswap_16 (x)
+be32toh(x) __bswap_32 (x)
+be64toh(x) __bswap_64 (x)
+htobe16(x) __bswap_16 (x)
+htobe32(x) __bswap_32 (x)
+htobe64(x) __bswap_64 (x)
+htole16(x) __uint16_identity (x)
+htole32(x) __uint32_identity (x)
+htole64(x) __uint64_identity (x)
+le16toh(x) __uint16_identity (x)
+le32toh(x) __uint32_identity (x)
+le64toh(x) __uint64_identity (x)
]]></CPP_DUMP>
- <CPP_DUMP name="aliases"><![CDATA[WCHAR_MAX __WCHAR_MAX
+ <CPP_DUMP name="aliases"><![CDATA[AF_ALG PF_ALG
+AF_APPLETALK PF_APPLETALK
+AF_ASH PF_ASH
+AF_ATMPVC PF_ATMPVC
+AF_ATMSVC PF_ATMSVC
+AF_AX25 PF_AX25
+AF_BLUETOOTH PF_BLUETOOTH
+AF_BRIDGE PF_BRIDGE
+AF_CAIF PF_CAIF
+AF_CAN PF_CAN
+AF_DECnet PF_DECnet
+AF_ECONET PF_ECONET
+AF_FILE PF_FILE
+AF_IB PF_IB
+AF_IEEE802154 PF_IEEE802154
+AF_INET PF_INET
+AF_INET6 PF_INET6
+AF_IPX PF_IPX
+AF_IRDA PF_IRDA
+AF_ISDN PF_ISDN
+AF_IUCV PF_IUCV
+AF_KCM PF_KCM
+AF_KEY PF_KEY
+AF_LLC PF_LLC
+AF_LOCAL PF_LOCAL
+AF_MAX PF_MAX
+AF_MPLS PF_MPLS
+AF_NETBEUI PF_NETBEUI
+AF_NETLINK PF_NETLINK
+AF_NETROM PF_NETROM
+AF_NFC PF_NFC
+AF_PACKET PF_PACKET
+AF_PHONET PF_PHONET
+AF_PPPOX PF_PPPOX
+AF_QIPCRTR PF_QIPCRTR
+AF_RDS PF_RDS
+AF_ROSE PF_ROSE
+AF_ROUTE PF_ROUTE
+AF_RXRPC PF_RXRPC
+AF_SECURITY PF_SECURITY
+AF_SMC PF_SMC
+AF_SNA PF_SNA
+AF_TIPC PF_TIPC
+AF_UNIX PF_UNIX
+AF_UNSPEC PF_UNSPEC
+AF_VSOCK PF_VSOCK
+AF_WANPIPE PF_WANPIPE
+AF_X25 PF_X25
+AF_XDP PF_XDP
+BIG_ENDIAN __BIG_ENDIAN
+BYTE_ORDER __BYTE_ORDER
+FD_SETSIZE __FD_SETSIZE
+INTPTR_WIDTH __WORDSIZE
+INT_FAST16_WIDTH __WORDSIZE
+INT_FAST32_WIDTH __WORDSIZE
+IPPROTO_AH IPPROTO_AH
+IPPROTO_BEETPH IPPROTO_BEETPH
+IPPROTO_COMP IPPROTO_COMP
+IPPROTO_DCCP IPPROTO_DCCP
+IPPROTO_DSTOPTS IPPROTO_DSTOPTS
+IPPROTO_EGP IPPROTO_EGP
+IPPROTO_ENCAP IPPROTO_ENCAP
+IPPROTO_ESP IPPROTO_ESP
+IPPROTO_ETHERNET IPPROTO_ETHERNET
+IPPROTO_FRAGMENT IPPROTO_FRAGMENT
+IPPROTO_GRE IPPROTO_GRE
+IPPROTO_HOPOPTS IPPROTO_HOPOPTS
+IPPROTO_ICMP IPPROTO_ICMP
+IPPROTO_ICMPV6 IPPROTO_ICMPV6
+IPPROTO_IDP IPPROTO_IDP
+IPPROTO_IGMP IPPROTO_IGMP
+IPPROTO_IP IPPROTO_IP
+IPPROTO_IPIP IPPROTO_IPIP
+IPPROTO_IPV6 IPPROTO_IPV6
+IPPROTO_MH IPPROTO_MH
+IPPROTO_MPLS IPPROTO_MPLS
+IPPROTO_MPTCP IPPROTO_MPTCP
+IPPROTO_MTP IPPROTO_MTP
+IPPROTO_NONE IPPROTO_NONE
+IPPROTO_PIM IPPROTO_PIM
+IPPROTO_PUP IPPROTO_PUP
+IPPROTO_RAW IPPROTO_RAW
+IPPROTO_ROUTING IPPROTO_ROUTING
+IPPROTO_RSVP IPPROTO_RSVP
+IPPROTO_SCTP IPPROTO_SCTP
+IPPROTO_TCP IPPROTO_TCP
+IPPROTO_TP IPPROTO_TP
+IPPROTO_UDP IPPROTO_UDP
+IPPROTO_UDPLITE IPPROTO_UDPLITE
+IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
+IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
+IPV6_RECVORIGDSTADDR IPV6_ORIGDSTADDR
+IPV6_RXDSTOPTS IPV6_DSTOPTS
+IPV6_RXHOPOPTS IPV6_HOPOPTS
+IP_RECVORIGDSTADDR IP_ORIGDSTADDR
+IP_RECVRETOPTS IP_RETOPTS
+LITTLE_ENDIAN __LITTLE_ENDIAN
+MSG_BATCH MSG_BATCH
+MSG_CMSG_CLOEXEC MSG_CMSG_CLOEXEC
+MSG_CONFIRM MSG_CONFIRM
+MSG_CTRUNC MSG_CTRUNC
+MSG_DONTROUTE MSG_DONTROUTE
+MSG_DONTWAIT MSG_DONTWAIT
+MSG_EOR MSG_EOR
+MSG_ERRQUEUE MSG_ERRQUEUE
+MSG_FASTOPEN MSG_FASTOPEN
+MSG_FIN MSG_FIN
+MSG_MORE MSG_MORE
+MSG_NOSIGNAL MSG_NOSIGNAL
+MSG_OOB MSG_OOB
+MSG_PEEK MSG_PEEK
+MSG_PROXY MSG_PROXY
+MSG_RST MSG_RST
+MSG_SYN MSG_SYN
+MSG_TRUNC MSG_TRUNC
+MSG_TRYHARD MSG_DONTROUTE
+MSG_WAITALL MSG_WAITALL
+MSG_WAITFORONE MSG_WAITFORONE
+MSG_ZEROCOPY MSG_ZEROCOPY
+NFDBITS __NFDBITS
+PDP_ENDIAN __PDP_ENDIAN
+PF_FILE PF_LOCAL
+PF_ROUTE PF_NETLINK
+PF_UNIX PF_LOCAL
+PTRDIFF_WIDTH __WORDSIZE
+SCM_CREDENTIALS SCM_CREDENTIALS
+SCM_RIGHTS SCM_RIGHTS
+SCM_SRCRT IPV6_RXSRCRT
+SCM_TIMESTAMP SO_TIMESTAMP
+SCM_TIMESTAMPING SO_TIMESTAMPING
+SCM_TIMESTAMPNS SO_TIMESTAMPNS
+SCM_TXTIME SO_TXTIME
+SCM_WIFI_STATUS SO_WIFI_STATUS
+SHUT_RD SHUT_RD
+SHUT_RDWR SHUT_RDWR
+SHUT_WR SHUT_WR
+SIZE_WIDTH __WORDSIZE
+SOCK_CLOEXEC SOCK_CLOEXEC
+SOCK_DCCP SOCK_DCCP
+SOCK_DGRAM SOCK_DGRAM
+SOCK_NONBLOCK SOCK_NONBLOCK
+SOCK_PACKET SOCK_PACKET
+SOCK_RAW SOCK_RAW
+SOCK_RDM SOCK_RDM
+SOCK_SEQPACKET SOCK_SEQPACKET
+SOCK_STREAM SOCK_STREAM
+SO_DETACH_BPF SO_DETACH_FILTER
+SO_GET_FILTER SO_ATTACH_FILTER
+SO_RCVTIMEO SO_RCVTIMEO_OLD
+SO_SNDTIMEO SO_SNDTIMEO_OLD
+SO_TIMESTAMP SO_TIMESTAMP_OLD
+SO_TIMESTAMPING SO_TIMESTAMPING_OLD
+SO_TIMESTAMPNS SO_TIMESTAMPNS_OLD
+UINTPTR_WIDTH __WORDSIZE
+UINT_FAST16_WIDTH __WORDSIZE
+UINT_FAST32_WIDTH __WORDSIZE
+WCHAR_MAX __WCHAR_MAX
WCHAR_MIN __WCHAR_MIN
+__BLKCNT64_T_TYPE __SQUAD_TYPE
+__BLKCNT_T_TYPE __SYSCALL_SLONG_TYPE
+__BLKSIZE_T_TYPE __SYSCALL_SLONG_TYPE
+__BYTE_ORDER __LITTLE_ENDIAN
+__CLOCKID_T_TYPE __S32_TYPE
+__CLOCK_T_TYPE __SYSCALL_SLONG_TYPE
+__CPU_MASK_TYPE __SYSCALL_ULONG_TYPE
+__DADDR_T_TYPE __S32_TYPE
+__DEV_T_TYPE __UQUAD_TYPE
+__FLOAT_WORD_ORDER __BYTE_ORDER
+__FSBLKCNT64_T_TYPE __UQUAD_TYPE
+__FSBLKCNT_T_TYPE __SYSCALL_ULONG_TYPE
+__FSFILCNT64_T_TYPE __UQUAD_TYPE
+__FSFILCNT_T_TYPE __SYSCALL_ULONG_TYPE
+__FSWORD_T_TYPE __SYSCALL_SLONG_TYPE
+__GID_T_TYPE __U32_TYPE
+__ID_T_TYPE __U32_TYPE
+__INO64_T_TYPE __UQUAD_TYPE
+__INO_T_TYPE __SYSCALL_ULONG_TYPE
+__KEY_T_TYPE __S32_TYPE
+__MODE_T_TYPE __U32_TYPE
+__NLINK_T_TYPE __SYSCALL_ULONG_TYPE
+__OFF64_T_TYPE __SQUAD_TYPE
+__OFF_T_TYPE __SYSCALL_SLONG_TYPE
+__PID_T_TYPE __S32_TYPE
+__RLIM64_T_TYPE __UQUAD_TYPE
+__RLIM_T_TYPE __SYSCALL_ULONG_TYPE
+__S32_TYPE int
+__SLONG32_TYPE int
+__SSIZE_T_TYPE __SWORD_TYPE
+__SUSECONDS64_T_TYPE __SQUAD_TYPE
+__SUSECONDS_T_TYPE __SYSCALL_SLONG_TYPE
+__SYSCALL_SLONG_TYPE __SLONGWORD_TYPE
+__SYSCALL_ULONG_TYPE __ULONGWORD_TYPE
+__TIME64_T_TYPE __TIME_T_TYPE
+__TIMESIZE __WORDSIZE
+__TIME_T_TYPE __SYSCALL_SLONG_TYPE
+__UID_T_TYPE __U32_TYPE
+__USECONDS_T_TYPE __U32_TYPE
__WCHAR_MAX __WCHAR_MAX__
__WCHAR_MIN __WCHAR_MIN__
-__wur __attribute_warn_unused_result__
+__kernel_old_dev_t __kernel_old_dev_t
+__kernel_old_uid_t __kernel_old_uid_t
]]></CPP_DUMP>
- <CPP_DUMP name="excluded"><![CDATA[__BEGIN_DECLS extern "C" {
+ <CPP_DUMP name="excluded"><![CDATA[IN6ADDR_ANY_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } }
+IN6ADDR_LOOPBACK_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 } } }
+__BEGIN_DECLS extern "C" {
__END_DECLS }
+__FSID_T_TYPE struct { int __val[2]; }
+__ONCE_FLAG_INIT { 0 }
+__PTHREAD_RWLOCK_ELISION_EXTRA 0, { 0, 0, 0, 0, 0, 0, 0 }
]]></CPP_DUMP>
</GCC_XML>