1 !<arch> 2 __.PKGDEF 0 0 0 644 4653 ` 3 go object darwin amd64 go1.5.1 X:none 4 build id "41c0cbb4712577585e79b7ead8cdecf0df1793a8" 5 6 $$ 7 package socktest 8 import runtime "runtime" 9 import fmt "fmt" 10 import sync "sync" 11 import syscall "syscall" 12 type @"sync".Mutex struct { @"sync".state int32; @"sync".sema uint32 } 13 func (@"sync".m1 *@"sync".Mutex) Lock () 14 func (@"sync".m1 *@"sync".Mutex) Unlock () 15 type @"sync".Once struct { @"sync".m @"sync".Mutex; @"sync".done uint32 } 16 func (@"sync".o1 *@"sync".Once) Do (@"sync".f2 func() "esc:0x1") 17 type @"sync".Locker interface { Lock(); Unlock() } 18 type @"sync".RWMutex struct { @"sync".w @"sync".Mutex; @"sync".writerSem uint32; @"sync".readerSem uint32; @"sync".readerCount int32; @"sync".readerWait int32 } 19 func (@"sync".rw1 *@"sync".RWMutex) Lock () 20 func (@"sync".rw1 *@"sync".RWMutex) RLock () 21 func (@"sync".rw2 *@"sync".RWMutex "esc:0x12") RLocker () (? @"sync".Locker) { return (*@"sync".rlocker)(@"sync".rw2) } 22 func (@"sync".rw1 *@"sync".RWMutex) RUnlock () 23 func (@"sync".rw1 *@"sync".RWMutex) Unlock () 24 type @"".Cookie uint64 25 func (@"".c2 @"".Cookie) Family () (? int) { return int(@"".c2 >> 0x30) } 26 func (@"".c2 @"".Cookie) Protocol () (? int) { return int(@"".c2 & @"".Cookie(0xff)) } 27 func (@"".c2 @"".Cookie) Type () (? int) { return int(@"".c2 << 0x10 >> 0x20) } 28 type @"".Status struct { Cookie @"".Cookie; Err error; SocketErr error } 29 func (@"".so2 @"".Status) String () (? string) 30 type @"".AfterFilter func(? *@"".Status) (? error) 31 func (@"".f2 @"".AfterFilter "esc:0x1") @"".apply (@"".st3 *@"".Status) (? error) 32 type @"".Filter func(? *@"".Status) (? @"".AfterFilter, ? error) 33 func (@"".f3 @"".Filter "esc:0x1") @"".apply (@"".st4 *@"".Status) (? @"".AfterFilter, ? error) 34 type @"".FilterType int 35 type @"".Sockets map[int]@"".Status 36 type @"".Stat struct { Family int; Type int; Protocol int; Opened uint64; Connected uint64; Listened uint64; Accepted uint64; Closed uint64; OpenFailed uint64; ConnectFailed uint64; ListenFailed uint64; AcceptFailed uint64; CloseFailed uint64 } 37 func (@"".st2 @"".Stat) String () (? string) 38 type @"".stats map[@"".Cookie]*@"".Stat 39 func (@"".st2 @"".stats "esc:0x1") @"".getLocked (@"".c3 @"".Cookie) (? *@"".Stat) { var @"".s4 *@"".Stat; var @"".ok5 bool; @"".s4, @"".ok5 = @"".st2[@"".c3]; if !@"".ok5 { @"".s4 = (&@"".Stat{ Family:@"".c3.Family(), Type:@"".c3.Type(), Protocol:@"".c3.Protocol() }); @"".st2[@"".c3] = @"".s4 }; return @"".s4 } 40 type @"syscall"._Socklen uint32 41 type @"syscall".Sockaddr interface { @"syscall".sockaddr() (@"syscall".ptr @"unsafe".Pointer, @"syscall".len @"syscall"._Socklen, @"syscall".err error) } 42 type @"".Switch struct { @"".once @"sync".Once; @"".fmu @"sync".RWMutex; @"".fltab map[@"".FilterType]@"".Filter; @"".smu @"sync".RWMutex; @"".sotab @"".Sockets; @"".stats @"".stats } 43 func (@"".sw4 *@"".Switch) Accept (@"".s5 int) (@"".ns1 int, @"".sa2 @"syscall".Sockaddr, @"".err3 error) 44 func (@"".sw2 *@"".Switch) Close (@"".s3 int) (@"".err1 error) 45 func (@"".sw2 *@"".Switch) Connect (@"".s3 int, @"".sa4 @"syscall".Sockaddr) (@"".err1 error) 46 func (@"".sw3 *@"".Switch) GetsockoptInt (@"".s4 int, @"".level5 int, @"".opt6 int) (@"".soerr1 int, @"".err2 error) 47 func (@"".sw2 *@"".Switch) Listen (@"".s3 int, @"".backlog4 int) (@"".err1 error) 48 func (@"".sw1 *@"".Switch) Set (@"".t2 @"".FilterType, @"".f3 @"".Filter) 49 func (@"".sw3 *@"".Switch) Socket (@"".family4 int, @"".sotype5 int, @"".proto6 int) (@"".s1 int, @"".err2 error) 50 func (@"".sw2 *@"".Switch) Sockets () (? @"".Sockets) 51 func (@"".sw2 *@"".Switch) Stats () (? []@"".Stat) 52 func (@"".sw2 *@"".Switch) @"".addLocked (@"".s3 int, @"".family4 int, @"".sotype5 int, @"".proto6 int) (? *@"".Status) 53 func (@"".sw1 *@"".Switch "esc:0x1") @"".init () { @"".sw1.@"".fltab = make(map[@"".FilterType]@"".Filter); @"".sw1.@"".sotab = make(@"".Sockets); @"".sw1.@"".stats = make(@"".stats) } 54 func (@"".sw2 *@"".Switch) @"".sockso (@"".s3 int) (? *@"".Status) 55 const @"".FilterSocket @"".FilterType = 0x0 56 const @"".FilterConnect @"".FilterType = 0x1 57 const @"".FilterListen @"".FilterType = 0x2 58 const @"".FilterAccept @"".FilterType = 0x3 59 const @"".FilterGetsockoptInt @"".FilterType = 0x4 60 const @"".FilterClose @"".FilterType = 0x5 61 func @"".init () 62 type @"sync".rlocker struct { @"sync".w @"sync".Mutex; @"sync".writerSem uint32; @"sync".readerSem uint32; @"sync".readerCount int32; @"sync".readerWait int32 } 63 func (@"sync".r1 *@"sync".rlocker) Lock () 64 func (@"sync".r1 *@"sync".rlocker) Unlock () 65 66 $$ 67 _go_.o 0 0 0 644 189323 ` 68 go object darwin amd64 go1.5.1 X:none 69 70 ! 71 go13ld 72 fmt.async.asyscall.a""".(*Switch).initeH%H;aH@H\$@H$HH$HD$HD$HD$H\$ H\$8H\$HH$H$(H\$HH?Hl$8=Hk(HH$HD$HD$HD$H\$ H\$0H\$HH$H$HH\$HHHl$0=HkHHH$HD$HD$HD$H\$ H\$(H\$HH$H$PH\$HHt0Hl$(=uHkPH@LCPL$Hl$LCHL$Hl$bELC(L$Hl$4& 75 B 76 *runtime.racefuncenterP@type.map["".FilterType]"".Filter 77 runtime.makemap 78 "runtime.racewrite6runtime.writeBarrierEnabledtype."".Sockets 79 runtime.makemap 80 "runtime.racewrite6runtime.writeBarrierEnabledtype."".stats 81 runtime.makemap 82 "runtime.racewrite6runtime.writeBarrierEnabled 83 (runtime.racefuncexit 84 .runtime.writebarrierptr 85 .runtime.writebarrierptr 86 .runtime.writebarrierptr 87 0runtime.morestack_noctxt"".autotmp_0004/type."".stats"".autotmp_0003type."".Sockets"".autotmp_0002@type.map["".FilterType]"".Filter 88 "".swtype.*"".Switchb:6mmj" HPP"lTgclocals5d2b5a2aeff4e4cf961f497a12cc05aeTgclocals2ec1302a787d0a837f0ed75b84b482ecvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go$"".(*Switch).StatseH%H$0H;A HPH$PH$1H$`H$hH$p1H$H$H$H$XH$H<$H$0H$XH$H$PH$XHkPH$1HH$Hl$H$H\$H$1H9H$H$H$H+H$H$H$H$HH$H$H$HD$hH$HH|$HH$H$H$HH)H}QHH$H$HT$HD$H$HL$HH$HH\$ HT$(HD$0HL$8HHH$H9H$HH$HHD$@HkhHH$HD$hH$H\$@HHkhHHt$HH$H$H$H$H$H$H$H$1H9NH$XH$H<$tGH$0H$H$`H$H$hH$H$pHP%X%Z( 93 ^ 94 *runtime.racefuncenter 95 *sync.(*RWMutex).RLock 96 runtime.raceread 97 runtime.duffzerotype."".stats 98 &runtime.mapiterinit 99 runtime.raceread 100 runtime.raceread 101 *runtime.racereadrange 102 runtime.duffcopytype.[]"".Stat 103 "runtime.growslice 104 ,runtime.racewriterange 105 runtime.duffcopy 106 107 &runtime.mapiternext 108 109 .sync.(*RWMutex).RUnlock 111 (runtime.racefuncexit 113 $runtime.panicslice 115 0runtime.morestack_noctxt@"".autotmp_0009type.int"".autotmp_0008type.[]"".Stat"".autotmp_0007type.*"".Stat"".autotmp_0006@type.map.iter["".Cookie]*"".Stat 116 "".nstype."".Stat"".stype.*"".Stat 117 "".sttype.[]"".Stat"".~r0type.[]"".Stat 119 "".swtype.*"".Switch"6JD"!6$= 4.USH4ZZ05-Tgclocals441d662a383b4d8caf12b6ff9ba71c5aTgclocalse0d182103d07e3237465df099dc03b7avprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go("".(*Switch).Sockets 124 eH%H$pH;AHH$H$H$H$H<$ZH$0H$H$H$HH$HkHH,$H$H]H1H9tHHHH$HD$HD$HD$H\$ H\$0H$H$H$HH$HkHH$1HH$Hl$H$H\$H$1H9.H$H$HD$(H$HBH+Hl$`HkHl$hHkHl$pHkHl$xHk H$H$H$H$HH|$`Ht$hHl$pHT$xH$HD$(H|$8H$Ht$@H$Hl$HH$HT$PH$HL$XH$HH$H\$0H\$H\$(H\$H$H\$H$H$H$1H9H$H$H<$t$H$0H\$0H$ H%%F& 126 ^ 127 *runtime.racefuncenter 128 *sync.(*RWMutex).RLock 129 runtime.raceread 130 runtime.racereadtype."".Sockets 131 runtime.makemap 132 runtime.raceread 133 runtime.duffzerotype."".Sockets 134 &runtime.mapiterinit 135 *runtime.racereadrange 136 runtime.racereadtype."".Sockets 137 $runtime.mapassign1 138 &runtime.mapiternext 139 .sync.(*RWMutex).RUnlock 140 141 (runtime.racefuncexit 142 143 0runtime.morestack_noctxt "".autotmp_0016type."".Status"".autotmp_0015type."".Status"".autotmp_0014type.int"".autotmp_00136type.map.iter[int]"".Status"".autotmp_0012type."".Sockets"".stype."".Status"".tabtype."".Sockets"".~r0type."".Sockets 146 "".swtype.*"".Switch",8\"!uw$ *.=09Tgclocalsf69a263cb7d5b062b5c0d50b000f6ecfTgclocalse8b591f376eed0b64a64b95cc26ea025vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go "".Cookie.FamilyeH%H;av*HH\$H$H\$H0H\$H 150 : 151 *runtime.racefuncenter` 152 (runtime.racefuncexitt 153 0runtime.morestack_noctxt "".~r0type.int"".ctype."".Cookie%z 157 $Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.gozprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go"".Cookie.TypeeH%H;av.HH\$H$H\$HH H\$H 159 : 160 *runtime.racefuncenterh 161 (runtime.racefuncexit| 162 0runtime.morestack_noctxt "".~r0type.int"".ctype."".Cookie) 164 4Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.gozprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go$"".Cookie.ProtocoleH%H;av-HH\$H$H\$HH\$H 166 : 167 *runtime.racefuncenterf 168 (runtime.racefuncexitz 169 0runtime.morestack_noctxt "".~r0type.int"".ctype."".Cookie( 171 4Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.gozprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go"".cookieeH%H;avNHH\$H$H\$Hl$H0AL!HH Hl$ HH H\$(H 173 : 174 *runtime.racefuncenter 175 (runtime.racefuncexit 176 0runtime.morestack_noctxt@"".~r30type."".Cookie"".proto type.int"".sotypetype.int"".familytype.intI2il2kl 178 TTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals33cdeccccebe80329f1fdbee7f5874cbvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.gozprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go "".Status.StringeH%HD$H;AHH$H$1H$ H$(H$H0H$H\$H\$xH\$H$H$HH H$H\$H\$hH\$H\$pH$HH$H\$H\$XH\$H\$`H$1HH$H:H$H$H$HH$H\$xH\$HD$H\$H\$8H\$ H\$@H$H$H$Hl$8H+Hl$@=HkHH$H\$hH\$HD$H\$H\$8H\$ H\$@H$HH$H$Hl$8HH+Hl$@=HkHH$H\$XH\$HD$H\$H\$8H\$ H\$@H$H H$H$Hl$8H H+Hl$@=HkH$HH$HKHL$H\$H\$8H\$H\$@H$H0H$H$Hl$8H0H+Hl$@=HkH$HH$HKHL$H\$H\$8H\$H\$@H$H@H$H$Hl$8H@H+Hl$@=uuHkHH$HD$)H$H\$H$H\$H$H\$ HL$(HD$0HL$HH$ HD$PH$(HLCL$Hl$xLCL$Hl$LCL$Hl$nLCL$Hl$LCL$Hl$TB 185 X 186 *runtime.racefuncenter 187 "".familyString 188 "".typeString 189 """.protocolString 190 runtime.duffzerotype.string 191 runtime.convT2E 192 "runtime.racewrite6runtime.writeBarrierEnabledtype.string 193 runtime.convT2E 194 "runtime.racewrite6runtime.writeBarrierEnabledtype.string 195 runtime.convT2E 196 "runtime.racewrite 6runtime.writeBarrierEnabled 197 runtime.convI2E 198 199 "runtime.racewrite6runtime.writeBarrierEnabled 202 runtime.convI2E 204 "runtime.racewrite6runtime.writeBarrierEnabled jgo.string."(%s, %s, %s): syscallerr=%v, socketerr=%v" 208 fmt.Sprintf 209 (runtime.racefuncexit 210 .runtime.writebarrierptr 211 .runtime.writebarrierptr 212 .runtime.writebarrierptr 213 .runtime.writebarrierptr 214 .runtime.writebarrierptr 215 0runtime.morestack_noctxtp"".autotmp_0032"type.interface {}"".autotmp_0031"type.interface {}"".autotmp_0030"type.interface {}"".autotmp_0029"type.interface {}"".autotmp_0028"type.interface {}"".autotmp_0027(type.[5]interface {}"".autotmp_0024&type.[]interface {}"".autotmp_0023type.int"".autotmp_0022type.int"".autotmp_0020type.string"".autotmp_0019type.string"".autotmp_0018type.string"".autotmp_0017type.string"".~r0Ptype.string 217 "".sotype."".StatusBH+W,|%I)M)G)G)f)Tgclocals79e60e75740126dafdf8809ca7edf9f6Tgclocalse3d591e70c8d33b7ef6252d271424c61vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go"".Stat.String$$eH%H$H;AHpH$pH$1H$H$H$xH$H\$H\$xH\$H$H$H$H\$H\$hH\$H\$pH$H$H\$H\$XH\$H\$`H$1HH$H&H$ H$ H$HH$H\$xH\$HD$H\$H\$8H\$ H\$@H$H$H$Hl$8H+Hl$@=HkHH$H\$hH\$HD$H\$H\$8H\$ H\$@H$HH$H$Hl$8HH+Hl$@=HkHH$H\$XH\$HD$H\$H\$8H\$ H\$@H$H H$H$Hl$8H H+Hl$@=kHkHH$H$xH\$HD$HD$H\$H\$8H\$ H\$@H$H0H$H$Hl$8H0H+Hl$@=HkHH$H$xH\$HD$ HD$H\$H\$8H\$ H\$@H$H@H$H$Hl$8H@H+Hl$@=?HkHH$H$xH\$HD$(HD$H\$H\$8H\$ H\$@H$HPH$H$Hl$8HPH+Hl$@=HkHH$H$xH\$HD$0HD$H\$H\$8H\$ H\$@H$H`H$H$Hl$8H`H+Hl$@=HkHH$H$xH\$HD$8HD$H\$H\$8H\$ H\$@H$HpH$H$Hl$8HpH+Hl$@=}HkHH$H$xH\$HD$@HD$H\$H\$8H\$ H\$@H$HH$H$Hl$8HH+Hl$@=HkHH$H$xH\$HD$HHD$H\$H\$8H\$ H\$@H$HH$H$Hl$8HH+Hl$@=EHkHH$H$xH\$HD$PHD$H\$H\$8H\$ H\$@H$HH$H$Hl$8HH+Hl$@=HkHH$H$xH\$HD$XHD$H\$H\$8H\$ H\$@H$HH$H$Hl$8HH+Hl$@= HkHH$H$xH\$HD$`HD$H\$H\$8H\$ H\$@H$HH$H$Hl$8HH+Hl$@=uuHkHH$HD$H$H\$H$H\$H$H\$ HL$(HD$0HL$HH$HD$PH$HpLCL$Hl$xLCL$Hl$LCL$Hl$DLCL$Hl$LCL$Hl$LCL$Hl$pLCL$Hl$LCL$Hl$DLCL$Hl$LCL$Hl$LCL$Hl$LCL$Hl$LCL$Hl$h 223 ^ 224 *runtime.racefuncenter 225 "".familyString 226 "".typeString 227 """.protocolString 228 runtime.duffzerotype.string 229 runtime.convT2E 230 "runtime.racewrite6runtime.writeBarrierEnabledtype.string 231 runtime.convT2E 232 "runtime.racewrite6runtime.writeBarrierEnabledtype.string 233 runtime.convT2E 234 "runtime.racewrite 6runtime.writeBarrierEnabled type.uint64 235 runtime.convT2E 236 237 "runtime.racewrite6runtime.writeBarrierEnabledtype.uint64 241 runtime.convT2E 243 "runtime.racewrite 6runtime.writeBarrierEnabled type.uint64 247 runtime.convT2E 248 "runtime.racewrite6runtime.writeBarrierEnabledtype.uint64 249 runtime.convT2E 250 "runtime.racewrite6runtime.writeBarrierEnabledtype.uint64 251 runtime.convT2E 252 "runtime.racewrite6runtime.writeBarrierEnabledtype.uint64 253 runtime.convT2E 254 "runtime.racewrite6runtime.writeBarrierEnabledtype.uint64 255 runtime.convT2E 256 "runtime.racewrite6runtime.writeBarrierEnabledtype.uint64 257 runtime.convT2E 258 "runtime.racewrite6runtime.writeBarrierEnabledtype.uint64 259 runtime.convT2E 260 "runtime.racewrite6runtime.writeBarrierEnabledtype.uint64 261 runtime.convT2E 262 "runtime.racewrite6runtime.writeBarrierEnabled""..gostring.1 263 fmt.Sprintf 264 (runtime.racefuncexit 265 .runtime.writebarrierptr 266 .runtime.writebarrierptr 267 .runtime.writebarrierptr 268 .runtime.writebarrierptr! 269 .runtime.writebarrierptr! 270 .runtime.writebarrierptr! 271 .runtime.writebarrierptr" 272 .runtime.writebarrierptr" 273 .runtime.writebarrierptr" 274 .runtime.writebarrierptr# 275 .runtime.writebarrierptr# 276 .runtime.writebarrierptr# 277 .runtime.writebarrierptr$ 278 0runtime.morestack_noctxt*"".autotmp_0053"type.interface {}"".autotmp_0052"type.interface {}"".autotmp_0051"type.interface {}"".autotmp_0050"type.interface {}"".autotmp_0049"type.interface {}"".autotmp_0048"type.interface {}"".autotmp_0047"type.interface {}"".autotmp_0046"type.interface {}"".autotmp_0045"type.interface {}"".autotmp_0044"type.interface {}"".autotmp_0043"type.interface {}"".autotmp_0042"type.interface {}"".autotmp_0041"type.interface {}"".autotmp_0040*type.[13]interface {}"".autotmp_0037&type.[]interface {}"".autotmp_0036type.string"".autotmp_0035type.string"".autotmp_0034type.string"".autotmp_0033type.string"".~r0type.string 280 "".sttype."".Stat"E.K%|%I)M)V)V)V)V)V)V,Y,Y,Y,Y,i)Tgclocals180dc618dd895a65d8f4aaa13e47f0d2Tgclocals2dd73f3146f13f0b2489b0ec3268acbcvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go$"".stats.getLockedeH%H;aHpH\$pH$H$HH$H\$xH\$HD$HD$\$ \$/HD$`H$H$H\$`H|$/HH0H\$0HHH H\$@HHH\$8HH$HD$HD$XH$HD$hHL$XHH1HH$HD$XHl$0H(H$H$HD$XHl$@HhH$H$HD$XHl$8HhH$H\$HHD$PHD$hHH$H\$xH\$H\$HH\$H\$hH\$HD$PH$HpDN 284 B 285 *runtime.racefuncenter`type."".stats 286 2runtime.mapaccess2_fast64 287 runtime.racereadtype."".Stat 288 "runtime.newobject 289 ,runtime.racewriterange 290 runtime.duffzero 291 "runtime.racewrite 292 "runtime.racewrite 293 "runtime.racewritetype."".stats 294 $runtime.mapassign1 295 (runtime.racefuncexit 296 0runtime.morestack_noctxt0"".autotmp_0061/type.*"".Stat"".autotmp_0060type.int"".autotmp_0059type.int"".autotmp_0057type.**"".Stat"".autotmp_0056type.*"".Stat"".autotmp_0055Otype."".Cookie"".~r0otype.int"".~r0_type.int"".~r0type.int 300 "".oktype.bool"".s?type.*"".Stat"".~r1 type.*"".Stat"".ctype."".Cookie 302 "".sttype."".stats* SJ CV)Tgclocals5c80cb9290cc7cfe27c0f86de8cd612dTgclocalsf9ae68ded45d7de762faa20f8cc64841vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go"".Filter.applyeH%H;aH0H\$0H$HD$81H\$PH\$X1H9uHD$H1H\$PH\$XH0H\$@H$HHHD$HT$HL$HD$HHT$ HT$PHL$(HL$XH0W 307 B 308 *runtime.racefuncenter 309 (runtime.racefuncexit 310 (runtime.racefuncexit 311 0runtime.morestack_noctxtP` 312 "".autotmp_0063type.error"".~r20type.error"".~r1 &type."".AfterFilter 315 "".sttype.*"".Status"".ftype."".Filter`D_`B_`(C 2*Tgclocalsd9a6dceef7e0b7c8c167b4d370ff071aTgclocalsc55cf99de9cdd8c8202a466952fa1a45vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go("".AfterFilter.applyeH%H;avyH(H\$(H$HD$01H\$@H\$H1H9u1H\$@H\$HH(H\$8H$HHHL$HD$HL$HL$@HD$ HD$HH(n 319 : 320 *runtime.racefuncenter 321 (runtime.racefuncexit 322 (runtime.racefuncexit 323 0runtime.morestack_noctxt@P"".autotmp_0066type.error"".~r1 type.error 325 "".sttype.*"".Status"".f&type."".AfterFilterP;OP8OP(2/) "Tgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go "".(*Switch).SeteH%H;a%HHH\$HH$H\$8H\$(H$HD$(H-H(H$H$HL$(HD$PHAH$H<$HL$H\$PH$H<$H$H\$XH\$ H\$`H\$0H\$PH$H$(HH$H\$PHk(Hl$H\$ H\$H\$0H\$H\$PH$H<$tH$HH%%d%: 330 B 331 *runtime.racefuncenterh 332 "runtime.racewrite2"".(*Switch).("".init)-fm 333 "runtime.racewrite 334 sync.(*Once).Do 335 (sync.(*RWMutex).Lock 336 runtime.raceread@type.map["".FilterType]"".Filter 337 $runtime.mapassign1 338 ,sync.(*RWMutex).Unlock 339 (runtime.racefuncexit 340 0runtime.morestack_noctxt0"".autotmp_0070?Ptype.*struct { F uintptr; R *"".Switch }"".autotmp_0069/type."".Filter"".autotmp_0068O$type."".FilterType"".autotmp_0067Ntype.struct { F uintptr; R *"".Switch }"".f type."".Filter"".t$type."".FilterType 341 "".swtype.*"".Switch90WY D'LHTgclocals01417187aa2bf2ffee27d62bf1b4e506Tgclocalscfd6edc6bd6783c9c8dcb2a00b78c80cvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go"".familyStringeH%HD$H;AHH$H$H$1H$H$Hu(HH$H$HHu(HH$H$HHu(HH$H$HHL$81H\$PH\$XH\$PHHD$xH$H\$pHH$H\$8H\$HD$H\$H\$@H\$ H\$HH\$pH$H\$pHl$@H+Hl$H=uoHkHH$HD$H\$pH\$H\$xH\$H$H\$ HL$(HD$0HL$`H$HD$hH$HLCL$Hl$" 345 X 346 *runtime.racefuncenter"go.string."local" 347 (runtime.racefuncexit"go.string."inet4" 348 (runtime.racefuncexit"go.string."inet6" 349 (runtime.racefuncexittype.int 350 runtime.convT2E 351 "runtime.racewrite6runtime.writeBarrierEnabledgo.string."%d" 352 fmt.Sprintf 353 (runtime.racefuncexit 354 .runtime.writebarrierptr 355 0runtime.morestack_noctxt0"".autotmp_0078"type.interface {}"".autotmp_0077o(type.[1]interface {}"".autotmp_0074/&type.[]interface {}"".autotmp_0072Otype.string"".autotmp_0071type.int"".~r1type.string"".familytype.int>X--3P #$+@"Y)&Tgclocalsb4315655e3726fbce05c2a7c1f7b7990Tgclocals8abf0427981eb9c17713fe800a78fa79prebuilts/go/darwin-x86/src/net/internal/socktest/switch_posix.go"".typeStringeH%HD$H;AH1H|$HH$H$H$1H$H$1H\$HH\$PHH%HHH HHH!H]HL$HH$HD$PH$HT$81H\$XH\$`H\$XHaH$H$H$HH$H\$8H\$HD$H\$H\$hH\$ H\$pH$H$H$Hl$hH+Hl$p=HkHH$HD$H$H\$H$H\$H$H\$ HL$(HD$0H$H$H\$H$H\$H$HL$H$HD$ HL$(HD$0HL$HH$HD$PH$HLCL$Hl$-HuH H1HHH\$@1H\$xH$H\$xHH$H$H$HH$H\$@H\$HD$H\$H\$hH\$ H\$pH$H$H$Hl$hH+Hl$p=u[HkHH$HD$H$H\$H$H\$H$H\$ H$HL$(HD$0#LCL$Hl$HuH HHH H ;0 365 N 366 runtime.duffzerop 367 *runtime.racefuncenter$go.string."stream"type.uint 368 runtime.convT2E 369 "runtime.racewrite6runtime.writeBarrierEnabled go.string."|%#x" 370 fmt.Sprintf 371 *runtime.concatstring2 372 (runtime.racefuncexit 373 .runtime.writebarrierptr (go.string."datagram" 374 type.int 376 runtime.convT2E 378 "runtime.racewrite6runtime.writeBarrierEnabledgo.string."%d" 382 fmt.Sprintf 384 .runtime.writebarrierptrgo.string."raw"*go.string."seqpacket" 385 0runtime.morestack_noctxt0"".autotmp_0094"type.interface {}"".autotmp_0093(type.[1]interface {}"".autotmp_0091*type.*[1]interface {}"".autotmp_0090&type.[]interface {}"".autotmp_0089"type.interface {}"".autotmp_0088(type.[1]interface {}"".autotmp_0085/&type.[]interface {}"".autotmp_0083otype.string"".autotmp_0082type.uint"".autotmp_0081type.string"".autotmp_0080Otype.string"".autotmp_0079type.int"".stype.string"".~r1type.string"".sotypetype.intf8+"! 388 ' 390 67%fK )%b)YTgclocals8c62ee94093b14ec849ccc7197d3b09eTgclocalsa502ec4a68451e9f897b63e4f3e3a5d4prebuilts/go/darwin-x86/src/net/internal/socktest/switch_posix.go""".protocolStringeH%HD$H;AHH$H$H$1H$H$Hu(HH$H$HHu(HH$H$HHu(HH$H$HHL$81H\$PH\$XH\$PHHD$xH$H\$pHH$H\$8H\$HD$H\$H\$@H\$ H\$HH\$pH$H\$pHl$@H+Hl$H=uoHkHH$HD$H\$pH\$H\$xH\$H$H\$ HL$(HD$0HL$`H$HD$hH$HLCL$Hl$" 393 X 394 *runtime.racefuncenter&go.string."default" 395 (runtime.racefuncexitgo.string."tcp" 396 (runtime.racefuncexitgo.string."udp" 397 (runtime.racefuncexittype.int 398 runtime.convT2E 399 "runtime.racewrite6runtime.writeBarrierEnabledgo.string."%d" 400 fmt.Sprintf 401 (runtime.racefuncexit 402 .runtime.writebarrierptr 403 0runtime.morestack_noctxt0"".autotmp_0102"type.interface {}"".autotmp_0101o(type.[1]interface {}"".autotmp_0098/&type.[]interface {}"".autotmp_0096Otype.string"".autotmp_0095type.int"".~r1type.string"".prototype.int>X--3P`#$+@"Y)&Tgclocalsb4315655e3726fbce05c2a7c1f7b7990Tgclocals8abf0427981eb9c17713fe800a78fa79prebuilts/go/darwin-x86/src/net/internal/socktest/switch_posix.go&"".(*Switch).socksoeH%H;aHHH\$HH$HD$`H\$PH$H<$kH$0H\$PH\$H|$?HD$0$HHD$HH$H\$H\$@H\$XH\$0H\$PH$H$HHH$H\$PHkHHl$H\$0H\$H\$H\$8\$ \$/H\$@H$HD$(H\$8H$HD$(H\$8HtYHl$@Hl$H\$HH$|$/uHD$`HHH\$@H\$`HHHH%%=* 408 B 409 *runtime.racefuncenter 410 *sync.(*RWMutex).RLock4sync.(*RWMutex).RUnlockf 411 "runtime.deferproctype."".Status 412 "runtime.newobject 413 runtime.racereadtype."".Sockets 414 2runtime.mapaccess2_fast64 415 ,runtime.racewriterange 416 *runtime.racereadrangetype."".Status 417 (runtime.typedmemmove 418 &runtime.deferreturn 419 (runtime.racefuncexit 420 &runtime.deferreturn 421 (runtime.racefuncexit 422 &runtime.deferreturn 423 (runtime.racefuncexit 424 0runtime.morestack_noctxt0"".autotmp_0104type.*"".Status"".autotmp_0103/type.int"".&sotype.*"".Status 426 "".ok1type.bool"".~r1 type.*"".Status"".stype.int 428 "".swtype.*"".Switch2/H = 430 " 'M'RAmTgclocals264904ed64856cbae7da24133e781085Tgclocals5ba05fcc7fa14112e2d036c806c76b12prebuilts/go/darwin-x86/src/net/internal/socktest/switch_unix.go,"".(*Switch).addLockedeH%HD$H;AHH$H$H\$8H\$(H$HD$(H-H(H$H$HL$(H$HAH$H<$yHL$HH$Ht$H$H$H$H0AL!HH HHH H1H\$pH\$xH$H$H$HD$pHt$0H4$HD$(H\$0Hl$pH\$Hl$H-H,$H$H\$ H\$0H$HD$(H\$0H+Hl$HHkHl$PHkHl$XHkHl$`Hk Hl$hH$H$H$HHH$H$HkHHl$H\$ H\$H\$HH\$H\$0H$H%{" 433 X 434 *runtime.racefuncenter~ 435 "runtime.racewrite2"".(*Switch).("".init)-fm 436 "runtime.racewrite 437 sync.(*Once).Dotype."".Status 438 "runtime.newobject 439 ,runtime.racewriterangetype."".Status 440 (runtime.typedmemmove 441 *runtime.racereadrange 442 runtime.racereadtype."".Sockets 443 $runtime.mapassign1 444 (runtime.racefuncexit 445 0runtime.morestack_noctxt`"".autotmp_0109Ptype.*struct { F uintptr; R *"".Switch }"".autotmp_0108type."".Status"".autotmp_0107type.int"".autotmp_0106Otype."".Status"".autotmp_0105Ntype.struct { F uintptr; R *"".Switch }"".&sotype.*"".Status"".~r4Ptype.*"".Status"".proto@type.int"".sotype0type.int"".family type.int"".stype.int 448 "".swtype.*"".Switch&2Z(+G$kG$Tgclocalsd1206d3abeb2bfd997b96c5825044aa0Tgclocals68f1d2bea7ab54cc1bedc4179197e29fprebuilts/go/darwin-x86/src/net/internal/socktest/switch_unix.go&"".(*Switch).Socket((eH%H$XH;A H(H$(H$H$P1H$XH$`1H$XH$`H$PH$H$H$H$H-H(H$H$H$H$0HAH$H<$. HL$H$8H$@H$HH0AL!HH HHH H\$8HH$HD$H$H$HD$(H$1H(HhHhHhHh H$H$Hl$8H(H$H$0H$H<$VH$H$H$0H$H$(HH$H$0Hk(Hl$H$H\$HD$H$H$H$H+H$H$0H$H<$H$H$H$H$H\$Hl$HT$HL$ H$H$XH$`H$XHtH$PH(H$8H$H$@H\$H$HH\$HD$H\$ H$H\$(H$H$PH$H$H$H$H$HkH$=HkH$H$H$H\$HL$HD$H$XH$`H$XHtXH$H$H$H$HkHuH$PH$H$PH(H$0H$H<$H$0H$0H\$H|$HD$0$HHD$^H$H$H$H$0H$HkHH$H$PH$0HkPH$H$H$H$H+Hl$xHH$H$H\$Hl$HD$\$ \$6H$H$HL$xH$H|$6-HH0H\$XHHH H\$HHHH\$hHH$HD$H$H$HD$hH$HH|1HH$H$Hl$XH(H$H$H$Hl$HHhH$H$H$Hl$hHhH\$xH$H$H$HH$H$H\$H$H\$H$H\$H$H$H$H$@H$Hh@H$H$H$@H$H$HHk@H$H$H$H$HtGHSHkH$PH$H$XH$H$`H(}H$H$PH\$H$8H\$H$@H\$H$HH\$ H\$(H$H$0H$H$PH$0HkPH$H$H$H$H+Hl$pHH$H$H\$Hl$HD$\$ \$7H$H$HL$pH$H|$7-HH0H\$PHHH H\$`HHH\$@HH$HD$H$H$HD$hH$HH21HH$H$Hl$PH(H$H$H$Hl$`HhH$H$H$Hl$@HhH\$pH$H$H$HH$H$H\$H$H\$H$H\$H$H$H$H$H$HhH$H$H$H$H$HHk1H$XH$`H(H(%\%-LCL$Hl$a%D%% 456 ^ 457 *runtime.racefuncenter 458 "runtime.racewrite2"".(*Switch).("".init)-fm 459 "runtime.racewrite 460 sync.(*Once).Dotype."".Status 461 "runtime.newobject 462 ,runtime.racewriterange 463 "runtime.racewrite 464 *sync.(*RWMutex).RLock 465 runtime.raceread@type.map["".FilterType]"".Filter 466 2runtime.mapaccess2_fast64 467 runtime.raceread 468 .sync.(*RWMutex).RUnlock 469 "".Filter.apply 470 471 &runtime.deferreturn 472 473 (runtime.racefuncexit 475 syscall.Socket 477 "runtime.racewrite6runtime.writeBarrierEnabled 480 ("".AfterFilter.apply 481 runtime.raceread 482 syscall.Close 483 &runtime.deferreturn 484 (runtime.racefuncexit 485 (sync.(*RWMutex).Lock2sync.(*RWMutex).Unlockf 486 "runtime.deferproc 487 runtime.raceread 488 runtime.raceread 489 runtime.racereadtype."".stats 490 2runtime.mapaccess2_fast64 491 runtime.racereadtype."".Stat 492 "runtime.newobject 493 ,runtime.racewriterange 494 runtime.duffzero 495 "runtime.racewrite 496 "runtime.racewrite 497 "runtime.racewritetype."".stats 498 $runtime.mapassign1 499 runtime.raceread 500 "runtime.racewrite 501 runtime.raceread 502 &runtime.deferreturn 503 (runtime.racefuncexit 504 ,"".(*Switch).addLocked 505 runtime.raceread 506 runtime.racereadtype."".stats 507 2runtime.mapaccess2_fast64 508 runtime.raceread type."".Stat 509 "runtime.newobject! 510 ,runtime.racewriterange! 511 runtime.duffzero! 512 "runtime.racewrite" 513 "runtime.racewrite" 514 "runtime.racewrite#type."".stats$ 515 $runtime.mapassign1$ 516 runtime.raceread% 517 "runtime.racewrite& 518 &runtime.deferreturn& 519 (runtime.racefuncexit& 520 &runtime.deferreturn& 521 (runtime.racefuncexit' 522 .runtime.writebarrierptr( 523 0runtime.morestack_noctxtpn"".autotmp_0143type.*"".Stat"".autotmp_0142type.int"".autotmp_0141type.int"".autotmp_0140type.int"".autotmp_0139type.**"".Stat"".autotmp_0138type.error"".autotmp_0137type.*"".Stat"".autotmp_0136type.int"".autotmp_0135type.int"".autotmp_0134type.int"".autotmp_0133type.**"".Stat"".autotmp_0132type.*"".Filter"".autotmp_0131type.*"".Status"".autotmp_0129oPtype.*struct { F uintptr; R *"".Switch }"".autotmp_0128type.uint64"".autotmp_0127type.*"".Stat"".autotmp_0126type.*"".Stat"".autotmp_0125type."".Cookie"".autotmp_0124type."".Cookie"".autotmp_0123type.*"".Status"".autotmp_0122type.uint64"".autotmp_0121type.*"".Stat"".autotmp_0120_type.*"".Stat"".autotmp_0119type."".Cookie"".autotmp_0118type."".Cookie"".autotmp_0117type.error"".autotmp_0116type.error"".autotmp_0114?type.error"".autotmp_0112$type."".FilterType"".autotmp_0111Ntype.struct { F uintptr; R *"".Switch }"".~r0type.int"".~r0type.int"".~r0type.int 527 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 528 "".sttype."".stats"".~r0type.int"".~r0type.int"".~r0type.int 532 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 533 "".sttype."".stats"".~r3type."".Cookie"".nsotype.*"".Status 536 "".afO&type."".AfterFilter"".ftype."".Filter 537 "".sotype.*"".Status"".errPtype.error"".s@type.int"".proto0type.int"".sotype type.int"".familytype.int 539 "".swtype.*"".SwitchP"^"87<f!y!E$#F(!@4^J% .UMN_f4F9=K >#@VQQVOGV # %2VPR9Tgclocals359f9fae04fb7407334ebea9eed383b5Tgclocalscda5a3247bb9ab61f8b6ef4ba5cf5a9ezprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go$"".(*Switch).Close#"eH%HD$H;AHH$H$1H$H$1H$H$H$H$H$H\$HD$H$1H9uNH$H$HT$HL$H$H$H$H$HH$H$H<$H$H$H$H$H$(HH$H$Hk(Hl$H$H\$HD$H$H$H$H+H$H$H$H<$H$H$H$H$H\$HL$Hl$HT$ H$H$H$H$HtHH$H$H\$H$H\$H$H$H$H$H$H$HkH$=HkH$H$H$H\$HT$HL$H$H$H$HtHH$H$H<$H$0H$H\$H|$lHD$0$HHD$2H$H$H$H$H$HkHoH$H$PH$HkPH$H$H$H$H+Hl$`HH$H$H\$Hl$HD$\$ \$/H$H$HL$`H$H|$/-HH0H\$0HHH H\$PHHH\$@HH$HD$H$H$HD$hH$HHZ1HH$H$Hl$0H(H$H$H$Hl$PHhH$H$H$Hl$@HhH\$`H$H$H$HH$H$H\$H$H\$H$H\$H$H$H$H$`H$Hh`Hl$xH$H$`H$Hl$xHHk`H$H$H$H$Ht+HkH$HkH$HH$H\$pH$H$HHH$H$HkHHl$H\$pH\$H$H$H$PH$HkPH$H$H$H$H+Hl$hHH$H$H\$Hl$HD$\$ \$.H$H$HL$hH$H|$.-HH0H\$8HHH H\$XHHH\$HHH$HD$H$H$HD$hH$HH,1HH$H$Hl$8H(H$H$H$Hl$XHhH$H$H$Hl$HHhH\$hH$H$H$HH$H$H\$H$H\$H$H\$H$H$H$H$8H$Hh8Hl$xH$H$8H$Hl$xHHk81H$H$HH%%YLCL$Hl$%%BM 558 X 559 *runtime.racefuncenter 560 &"".(*Switch).sockso 561 syscall.Close 562 &runtime.deferreturn 563 (runtime.racefuncexit 564 *sync.(*RWMutex).RLock 565 runtime.raceread@type.map["".FilterType]"".Filter 566 2runtime.mapaccess2_fast64 567 runtime.raceread 568 .sync.(*RWMutex).RUnlock 569 "".Filter.apply 570 &runtime.deferreturn 571 (runtime.racefuncexit 572 syscall.Close 573 "runtime.racewrite 6runtime.writeBarrierEnabled 574 ("".AfterFilter.apply 575 576 &runtime.deferreturn 577 578 (runtime.racefuncexit 580 (sync.(*RWMutex).Lock2sync.(*RWMutex).Unlockf 583 "runtime.deferproc 585 runtime.raceread 587 runtime.raceread 588 runtime.racereadtype."".stats 589 2runtime.mapaccess2_fast64 590 runtime.racereadtype."".Stat 591 "runtime.newobject 592 ,runtime.racewriterange 593 runtime.duffzero 594 "runtime.racewrite 595 "runtime.racewrite 596 "runtime.racewritetype."".stats 597 $runtime.mapassign1 598 runtime.raceread 599 "runtime.racewrite 600 runtime.raceread 601 &runtime.deferreturn 602 (runtime.racefuncexit 603 runtime.racereadtype."".Sockets 604 "runtime.mapdelete 605 runtime.raceread 606 runtime.racereadtype."".stats 607 2runtime.mapaccess2_fast64 608 runtime.racereadtype."".Stat 609 "runtime.newobject 610 ,runtime.racewriterange 611 runtime.duffzero 612 "runtime.racewrite 613 "runtime.racewrite 614 "runtime.racewritetype."".stats 615 $runtime.mapassign1 616 runtime.raceread 617 "runtime.racewrite 618 &runtime.deferreturn 619 (runtime.racefuncexit! 620 &runtime.deferreturn! 621 (runtime.racefuncexit" 622 .runtime.writebarrierptr" 623 0runtime.morestack_noctxt@Z"".autotmp_0172type.*"".Stat"".autotmp_0171type.int"".autotmp_0170type.int"".autotmp_0169type.int"".autotmp_0168type.**"".Stat"".autotmp_0167otype.*"".Stat"".autotmp_0166type.int"".autotmp_0165type.int"".autotmp_0163_type.**"".Stat"".autotmp_0162Otype.*"".Filter"".autotmp_0161type.uint64"".autotmp_0160type.*"".Stat"".autotmp_0159type.*"".Stat"".autotmp_0158type."".Cookie"".autotmp_0157type."".Cookie"".autotmp_0156type.int"".autotmp_0155type.uint64"".autotmp_0154type.*"".Stat"".autotmp_0153?type.*"".Stat"".autotmp_0152type."".Cookie"".autotmp_0150type.error"".autotmp_0149type.error"".autotmp_0148type.error"".autotmp_0146$type."".FilterType"".autotmp_0145type.error"".~r0type.int"".~r0type.int"".~r0type.int 627 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 628 "".sttype."".stats"".~r0type.int"".~r0type.int"".~r0type.int 632 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 633 "".sttype."".stats 634 "".af/&type."".AfterFilter"".ftype."".Filter 635 "".sotype.*"".Status"".err type.error"".stype.int 637 "".swtype.*"".Switch^^Z43$#A.-!y!EnF!@4BF% +/f4:0K-/V QQVI+4f2VJ!R9Tgclocals4d598c6c3ac7aee13fc2a38bb9541f1fTgclocals9ebac205ed6c89bdc95d082f2f5568c3zprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go("".(*Switch).Connect""eH%HD$H;AkHH$H$1H$H$ 1H$H$ H$H$H$H\$HD$H$1H9uhH$H$H$H\$H$H\$HT$HL$ H$H$H$H$ HH$H$H<$rH$H$H$H$H$(HH$H$Hk(Hl$H$H\$HD$H$H$H$H+H$H$H$H<$H$H$H$H$H\$HL$Hl$HT$ H$H$H$ H$HtHH$H$H$H\$H$H\$H\$H$H\$ H$H$H$H$H$H$HkH$=HkH$H$H$H\$HT$HL$H$H$ H$HtHH$H$H<$AH$0H$H\$H|$HD$0$HHD$H$H$H$H$H$HkHiH$H$PH$HkPH$H$H$H$H+Hl$`HH$H$H\$Hl$HD$\$ \$.H$H$HL$`H$H|$.'HH0H\$0HHH H\$PHHH\$@HH$HD$H$H$HD$hH$HHT1HH$H$Hl$0H(H$H$H$Hl$PHhH$H$H$Hl$@HhH\$`H\$xH$H$HH$H$H\$H\$xH\$H$H\$H$H$H$H$HH$HhHHl$pH$H$HH$Hl$pHHkHH$H$H$H$Ht+HkH$HkH$ HH$H$PH$HkPH$H$H$H$H+Hl$hHH$H$H\$Hl$HD$\$ \$/H$H$HL$hH$H|$/'HH0H\$XHHH H\$8HHH\$HHH$HD$H$H$HD$hH$HH&1HH$H$Hl$XH(H$H$H$Hl$8HhH$H$H$Hl$HHhH\$hH\$xH$H$HH$H$H\$H\$xH\$H$H\$H$H$H$H$ H$Hh Hl$pH$H$ H$Hl$pHHk 1H$H$ HH%%LCL$Hl$,%(%s 652 X 653 *runtime.racefuncenter 654 &"".(*Switch).sockso 655 syscall.Connect 656 &runtime.deferreturn 657 (runtime.racefuncexit 658 *sync.(*RWMutex).RLock 659 runtime.raceread@type.map["".FilterType]"".Filter 660 2runtime.mapaccess2_fast64 661 runtime.raceread 662 .sync.(*RWMutex).RUnlock 663 "".Filter.apply 664 &runtime.deferreturn 665 (runtime.racefuncexit 666 syscall.Connect 667 "runtime.racewrite 668 6runtime.writeBarrierEnabled 669 670 ("".AfterFilter.apply 672 &runtime.deferreturn 674 (runtime.racefuncexit 676 (sync.(*RWMutex).Lock2sync.(*RWMutex).Unlockf 679 "runtime.deferproc 681 runtime.raceread 682 runtime.raceread 683 runtime.racereadtype."".stats 684 2runtime.mapaccess2_fast64 685 runtime.racereadtype."".Stat 686 "runtime.newobject 687 ,runtime.racewriterange 688 runtime.duffzero 689 "runtime.racewrite 690 "runtime.racewrite 691 "runtime.racewritetype."".stats 692 $runtime.mapassign1 693 runtime.raceread 694 "runtime.racewrite 695 runtime.raceread 696 &runtime.deferreturn 697 (runtime.racefuncexit 698 runtime.raceread 699 runtime.racereadtype."".stats 700 2runtime.mapaccess2_fast64 701 runtime.racereadtype."".Stat 702 "runtime.newobject 703 ,runtime.racewriterange 704 runtime.duffzero 705 "runtime.racewrite 706 "runtime.racewrite 707 "runtime.racewritetype."".stats 708 $runtime.mapassign1 709 runtime.raceread 710 "runtime.racewrite 711 &runtime.deferreturn 712 (runtime.racefuncexit 713 &runtime.deferreturn 714 (runtime.racefuncexit! 715 .runtime.writebarrierptr" 716 0runtime.morestack_noctxt`Z"".autotmp_0200type.*"".Stat"".autotmp_0199type.int"".autotmp_0198type.int"".autotmp_0197type.int"".autotmp_0196type.**"".Stat"".autotmp_0195otype.*"".Stat"".autotmp_0194type.int"".autotmp_0193type.int"".autotmp_0191_type.**"".Stat"".autotmp_0190Otype.*"".Filter"".autotmp_0189type.uint64"".autotmp_0188type.*"".Stat"".autotmp_0187type.*"".Stat"".autotmp_0186type."".Cookie"".autotmp_0185type."".Cookie"".autotmp_0184type.uint64"".autotmp_0183type.*"".Stat"".autotmp_0182?type.*"".Stat"".autotmp_0181type."".Cookie"".autotmp_0179type.error"".autotmp_0178type.error"".autotmp_0177type.error"".autotmp_0175$type."".FilterType"".autotmp_0174type.error"".~r0type.int"".~r0type.int"".~r0type.int 720 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 721 "".sttype."".stats"".~r0type.int"".~r0type.int"".~r0type.int 725 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 726 "".sttype."".stats 727 "".af/&type."".AfterFilter"".ftype."".Filter 728 "".sotype.*"".Status"".err@type.error 730 "".sa *type.syscall.Sockaddr"".stype.int 731 "".swtype.*"".Switch^T21$#[,+!y!EF!@4B% +/f4:90K-/V QQVI+'%2VJ!R/Tgclocals199e4b7d68c6dc4cb1f79531ebef8c46Tgclocals9ebac205ed6c89bdc95d082f2f5568c3zprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go&"".(*Switch).Listen"!eH%HD$H;AQHH$H$1H$H$1H$H$H$H$H$H\$HD$H$1H9u[H$H$H$H\$HT$HL$H$H$H$H$HH$H$H<$eH$H$H$H$H$(HH$H$Hk(Hl$H$H\$HD$H$H$H$H+H$H$H$H<$H$H$H$H$H\$HL$Hl$HT$ H$H$H$H$HtHH$H$H$H\$H\$H$H\$H$H$H$H$H$H$HkH$=HkH$H$H$H\$HT$HL$H$H$H$HtHH$H$H<$AH$0H$H\$H|$HD$0$HHD$H$H$H$H$H$HkHiH$H$PH$HkPH$H$H$H$H+Hl$`HH$H$H\$Hl$HD$\$ \$.H$H$HL$`H$H|$.'HH0H\$0HHH H\$PHHH\$@HH$HD$H$H$HD$hH$HHT1HH$H$Hl$0H(H$H$H$Hl$PHhH$H$H$Hl$@HhH\$`H\$xH$H$HH$H$H\$H\$xH\$H$H\$H$H$H$H$PH$HhPHl$pH$H$PH$Hl$pHHkPH$H$H$H$Ht+HkH$HkH$HH$H$PH$HkPH$H$H$H$H+Hl$hHH$H$H\$Hl$HD$\$ \$/H$H$HL$hH$H|$/'HH0H\$XHHH H\$8HHH\$HHH$HD$H$H$HD$hH$HH&1HH$H$Hl$XH(H$H$H$Hl$8HhH$H$H$Hl$HHhH\$hH\$xH$H$HH$H$H\$H\$xH\$H$H\$H$H$H$H$(H$Hh(Hl$pH$H$(H$Hl$pHHk(1H$H$HH%%LCL$Hl$,%5% 747 X 748 *runtime.racefuncenter 749 &"".(*Switch).sockso 750 syscall.Listen 751 &runtime.deferreturn 752 (runtime.racefuncexit 753 *sync.(*RWMutex).RLock 754 runtime.raceread@type.map["".FilterType]"".Filter 755 2runtime.mapaccess2_fast64 756 runtime.raceread 757 .sync.(*RWMutex).RUnlock 758 "".Filter.apply 759 &runtime.deferreturn 760 (runtime.racefuncexit 761 syscall.Listen 762 "runtime.racewrite 6runtime.writeBarrierEnabled 763 764 ("".AfterFilter.apply 766 &runtime.deferreturn 768 (runtime.racefuncexit 770 (sync.(*RWMutex).Lock2sync.(*RWMutex).Unlockf 773 "runtime.deferproc 775 runtime.raceread 777 runtime.raceread 778 runtime.racereadtype."".stats 779 2runtime.mapaccess2_fast64 780 runtime.racereadtype."".Stat 781 "runtime.newobject 782 ,runtime.racewriterange 783 runtime.duffzero 784 "runtime.racewrite 785 "runtime.racewrite 786 "runtime.racewritetype."".stats 787 $runtime.mapassign1 788 runtime.raceread 789 "runtime.racewrite 790 runtime.raceread 791 &runtime.deferreturn 792 (runtime.racefuncexit 793 runtime.raceread 794 runtime.racereadtype."".stats 795 2runtime.mapaccess2_fast64 796 runtime.racereadtype."".Stat 797 "runtime.newobject 798 ,runtime.racewriterange 799 runtime.duffzero 800 "runtime.racewrite 801 "runtime.racewrite 802 "runtime.racewritetype."".stats 803 $runtime.mapassign1 804 runtime.raceread 805 "runtime.racewrite 806 &runtime.deferreturn 807 (runtime.racefuncexit 808 &runtime.deferreturn 809 (runtime.racefuncexit! 810 .runtime.writebarrierptr! 811 0runtime.morestack_noctxtPZ"".autotmp_0228type.*"".Stat"".autotmp_0227type.int"".autotmp_0226type.int"".autotmp_0225type.int"".autotmp_0224type.**"".Stat"".autotmp_0223otype.*"".Stat"".autotmp_0222type.int"".autotmp_0221type.int"".autotmp_0219_type.**"".Stat"".autotmp_0218Otype.*"".Filter"".autotmp_0217type.uint64"".autotmp_0216type.*"".Stat"".autotmp_0215type.*"".Stat"".autotmp_0214type."".Cookie"".autotmp_0213type."".Cookie"".autotmp_0212type.uint64"".autotmp_0211type.*"".Stat"".autotmp_0210?type.*"".Stat"".autotmp_0209type."".Cookie"".autotmp_0207type.error"".autotmp_0206type.error"".autotmp_0205type.error"".autotmp_0203$type."".FilterType"".autotmp_0202type.error"".~r0type.int"".~r0type.int"".~r0type.int 815 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 816 "".sttype."".stats"".~r0type.int"".~r0type.int"".~r0type.int 820 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 821 "".sttype."".stats 822 "".af/&type."".AfterFilter"".ftype."".Filter 823 "".sotype.*"".Status"".err0type.error"".backlog type.int"".stype.int 825 "".swtype.*"".Switch^^21$#N,+!y!E{F!@4B% +/f4:,0K-/V QQVI+'%2VJ!R9Tgclocals50ee114b94a7bf0d2afad5a77001cfb1Tgclocals9ebac205ed6c89bdc95d082f2f5568c3zprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go&"".(*Switch).Accept*)eH%H$`H;AM 836 H H$ H$H$81H$@H$H1H$PH$X1H$PH$X1H$@H$HH$8H$(H$H$0H\$HD$H$1H9H$0H$HL$H|$Ht$Hl$ HT$(H$8H$H$@H$H$HH$H$PH$H$XH H$(H$H<$H$H$H$(H$H$(HH$H$(Hk(Hl$H$H\$HD$H$H$H$H+H$H$(H$H<$QH$H$H$H$H\$HL$Hl$HT$ H$H$PH$XH$PHt1H$81H$@H$HH H$0H$HD$HT$HL$H\$ H$H\$(H$H$8H$H$@H$H$HH$H$H$H$H$HkH$=HkH$H$H$H\$HL$HD$H$PH$XH$PHtjH$H$H$H$HkHuH$8H$H$81H$@H$HH H$(H$H<$4H$0H$(H\$H|$HD$0$HHD$H$H$H$H$HhHH$(H$H$PH$(HkPH$H$H$H$H+H$HH$H$H\$Hl$HD$\$ \$6H$H$H$H$H|$60HH0H\$8HHH H\$PHHH\$pHH$HD$H$H$HD$hH$HH1HH$H$Hl$8H(H$H$H$Hl$PHhH$H$H$Hl$pHhH$H$H$H$HH$H$H\$H$H\$H$H\$H$H$H$H$XH$HhXH$H$H$XH$H$HHkXH$H$H$H$HtYHSHkH$81H$@H$HH$H$PH$H$XH hH$H$HH0H\$@H$H$HHH H\$`H$H$HH$(H%H$H$8H\$H\$@H\$H\$`H\$HD$ H\$(H$H$(H$H$PH$(HkPH$H$H$H$H+Hl$xHH$H$H\$Hl$HD$\$ \$7H$H$HL$xH$H|$7-HH0H\$XHHH H\$HHHH\$hHH$HD$H$H$HD$hH$HH21HH$H$Hl$XH(H$H$H$Hl$HHhH$H$H$Hl$hHhH\$xH$H$H$HH$H$H\$H$H\$H$H\$H$H$H$H$0H$Hh0H$H$H$0H$H$HHk01H$PH$XH H %%LCL$Hl$%% 844 ^ 845 *runtime.racefuncenter 846 &"".(*Switch).sockso 847 syscall.Accept 848 &runtime.deferreturn 849 (runtime.racefuncexit 850 *sync.(*RWMutex).RLock 851 runtime.raceread@type.map["".FilterType]"".Filter 852 2runtime.mapaccess2_fast64 853 runtime.raceread 854 .sync.(*RWMutex).RUnlock 855 "".Filter.apply 856 &runtime.deferreturn 857 858 (runtime.racefuncexit 859 860 syscall.Accept 862 "runtime.racewrite6runtime.writeBarrierEnabled 865 ("".AfterFilter.apply 866 runtime.raceread 867 syscall.Close 868 &runtime.deferreturn 869 (runtime.racefuncexit 870 (sync.(*RWMutex).Lock2sync.(*RWMutex).Unlockf 871 "runtime.deferproc 872 runtime.raceread 873 runtime.raceread 874 runtime.racereadtype."".stats 875 2runtime.mapaccess2_fast64 876 runtime.racereadtype."".Stat 877 "runtime.newobject 878 ,runtime.racewriterange 879 runtime.duffzero 880 "runtime.racewrite 881 "runtime.racewrite 882 "runtime.racewritetype."".stats 883 $runtime.mapassign1 884 runtime.raceread 885 "runtime.racewrite 886 runtime.raceread 887 &runtime.deferreturn 888 (runtime.racefuncexit 889 runtime.raceread 890 runtime.raceread 891 runtime.raceread 892 ,"".(*Switch).addLocked 893 runtime.raceread 894 runtime.raceread type."".stats 895 2runtime.mapaccess2_fast64! 896 runtime.raceread"type."".Stat" 897 "runtime.newobject" 898 ,runtime.racewriterange# 899 runtime.duffzero# 900 "runtime.racewrite$ 901 "runtime.racewrite$ 902 "runtime.racewrite%type."".stats& 903 $runtime.mapassign1& 904 runtime.raceread' 905 "runtime.racewrite' 906 &runtime.deferreturn' 907 (runtime.racefuncexit( 908 &runtime.deferreturn( 909 (runtime.racefuncexit) 910 .runtime.writebarrierptr) 911 0runtime.morestack_noctxtpt"".autotmp_0268type.*"".Stat"".autotmp_0267type.int"".autotmp_0266type.int"".autotmp_0265type.int"".autotmp_0264type.**"".Stat"".autotmp_0263type.int"".autotmp_0262type.int"".autotmp_0261type.int"".autotmp_0260type.error"".autotmp_0259type.*"".Stat"".autotmp_0258type.int"".autotmp_0257type.int"".autotmp_0256type.int"".autotmp_0255type.**"".Stat"".autotmp_0254otype.*"".Filter"".autotmp_0253type.uint64"".autotmp_0252type.*"".Stat"".autotmp_0251type.*"".Stat"".autotmp_0250type."".Cookie"".autotmp_0249type."".Cookie"".autotmp_0248type.*"".Status"".autotmp_0247type.uint64"".autotmp_0246type.*"".Stat"".autotmp_0245_type.*"".Stat"".autotmp_0244type."".Cookie"".autotmp_0242type.error"".autotmp_0241type.error"".autotmp_0240*type.syscall.Sockaddr"".autotmp_0239type.int"".autotmp_0238type.error"".autotmp_0236$type."".FilterType"".autotmp_0232?type.error"".autotmp_0231*type.syscall.Sockaddr"".~r0type.int"".~r0type.int"".~r0type.int 915 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 916 "".sttype."".stats"".~r0type.int"".~r0type.int"".~r0type.int"".~r0type.int"".~r0type.int 922 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 923 "".sttype."".stats"".nsotype.*"".Status 925 "".afO&type."".AfterFilter"".ftype."".Filter 926 "".sotype.*"".Status"".errPtype.error 928 "".sa0*type.syscall.Sockaddr 929 "".ns type.int"".stype.int 930 "".swtype.*"".Switch^"_":9`#x43!y!E$$#F($!@,p% ./f4XgK>##/V,%TYOY"#%2VP-R:Tgclocals7100c8ab481ca8bf2c63c7e572aadfedTgclocals27bab20d465b6b1668b04ebb0965b967zprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go4"".(*Switch).GetsockoptInt eH%HD$H;AHH$H$11H$H$H$H$H$H\$HD$H$1H9uoH$H$H$H\$H$H\$HD$HT$ HL$(H$H$H$H$H$HH$H$H<$H$H$H$H$H$(HH$H$Hk(Hl$H$H\$HD$H$H$H$H+H$H$H$H<$LH$H$H$H$H\$HD$HT$HL$ H$H$H$HtH$HH$H$H$H\$H$H\$HD$H\$ H$H\$(H$H$H$H$H$H$H$HkH$=6HkH$H\$xH$H$H$HH$HH\$HH\$H\$xH\$HD$ HL$(HD$0H$HH$HKH$=yHC H$H$H$H\$HL$HD$H$H$HtH$HH$H$H$H$HhHtaH$H$H$HtAHKHkH$H$H$H$H$HH$HH$H$HH$H$HNH^H|$HHHKHOH\$xH\$\$ H\$xHH$H$H<$mH$0H$H$H$PH$HkPH$H$H$H$H+Hl$XHH$H$H\$Hl$HD$\$ \$?H$H$HL$XH$H|$?'HH0H\$@HHH H\$HHHH\$PHH$HD$H$H$HD$hH$HHF1HH$H$Hl$@H(H$H$H$Hl$HHhH$H$H$Hl$PHhH\$XH\$pH$H$HH$H$H\$H\$pH\$H$H\$H$H$H$H$ H$Hh Hl$hH$H$ H$Hl$hHHk H$H$H<$t)H$01H$H$H%%H$H$H$HH$H$HtHH^H|$HHHKHOH\$`H\$\$ bH\$`H8NLC L$HD$tHLCL$Hl$%%n 946 X 947 *runtime.racefuncenter 948 &"".(*Switch).sockso 949 *syscall.GetsockoptInt 950 (runtime.racefuncexit 951 *sync.(*RWMutex).RLock 952 runtime.raceread@type.map["".FilterType]"".Filter 953 2runtime.mapaccess2_fast64 954 runtime.raceread 955 .sync.(*RWMutex).RUnlock 956 "".Filter.apply 957 (runtime.racefuncexit 958 *syscall.GetsockoptInt 959 "runtime.racewrite 960 6runtime.writeBarrierEnabled 961 962 "runtime.racewrite 963 $type.syscall.Errnotype.error6go.itab.syscall.Errno.error 967 runtime.convT2I6runtime.writeBarrierEnabled 970 ("".AfterFilter.apply 971 (runtime.racefuncexit 972 runtime.raceread 973 runtime.raceread 974 (runtime.racefuncexit 975 runtime.raceread$type.syscall.Errno 976 $runtime.assertI2T2 977 (sync.(*RWMutex).Lock 978 runtime.raceread 979 runtime.racereadtype."".stats 980 2runtime.mapaccess2_fast64 981 runtime.racereadtype."".Stat 982 "runtime.newobject 983 ,runtime.racewriterange 984 runtime.duffzero 985 "runtime.racewrite 986 "runtime.racewrite 987 "runtime.racewritetype."".stats 988 $runtime.mapassign1 989 runtime.raceread 990 "runtime.racewrite 991 ,sync.(*RWMutex).Unlock 992 (runtime.racefuncexit 993 runtime.raceread$type.syscall.Errno 994 $runtime.assertI2T2 995 .runtime.writebarrierptr 996 .runtime.writebarrierptr 997 0runtime.morestack_noctxtpJ"".autotmp_0296otype.*"".Stat"".autotmp_0295type.int"".autotmp_0294type.int"".autotmp_0293type.int"".autotmp_0292_type.**"".Stat"".autotmp_0291type.bool"".autotmp_0290$type.syscall.Errno"".autotmp_0288$type.syscall.Errno"".autotmp_0287type.error"".autotmp_0286Otype.*"".Filter"".autotmp_0285type.uint64"".autotmp_0284type.*"".Stat"".autotmp_0283?type.*"".Stat"".autotmp_0282type."".Cookie"".autotmp_0280type.error"".autotmp_0279$type.syscall.Errno"".autotmp_0278type.error"".autotmp_0277type.int"".autotmp_0276type.error"".autotmp_0274$type."".FilterType"".autotmp_0271type.error"".~r0type.int"".~r0type.int"".~r0type.int 1001 "".oktype.bool"".stype.*"".Stat"".ctype."".Cookie 1002 "".sttype."".stats 1003 "".af/&type."".AfterFilter"".ftype."".Filter 1004 "".sotype.*"".Status"".errPtype.error"".soerr@type.int"".opt0type.int"".level type.int"".stype.int 1007 "".swtype.*"".SwitchT65#b0/!y!= >(P ! r 1013 v+)f4>3=P1g/ 1018 2VP:~VTgclocals25d81ed6c203e4f29c93fd7bf2b44667Tgclocals186a8abc349cececf2efe796fcc2eef6zprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go2"".(*Switch).("".init)-fmeH%H;aHHH\$HH$HZH\$(HH$HD$HD$HD$H\$ H\$@H\$(H$H$(H\$(H?Hl$@=Hk(HH$HD$HD$HD$H\$ H\$8H\$(H$H$HH\$(HHl$8=HkHHH$HD$HD$HD$H\$ H\$0H\$(H$H$PH\$(Ht0Hl$0=uHkPHHLCPL$Hl$LCHL$Hl$bELC(L$Hl$+& 1020 B 1021 *runtime.racefuncenterb@type.map["".FilterType]"".Filter 1022 runtime.makemap 1023 "runtime.racewrite6runtime.writeBarrierEnabledtype."".Sockets 1024 runtime.makemap 1025 "runtime.racewrite6runtime.writeBarrierEnabledtype."".stats 1026 runtime.makemap 1027 "runtime.racewrite6runtime.writeBarrierEnabled 1028 (runtime.racefuncexit 1029 .runtime.writebarrierptr 1030 .runtime.writebarrierptr 1031 .runtime.writebarrierptr 1032 "runtime.morestack"".autotmp_0300/type."".stats"".autotmp_0299type."".Sockets"".autotmp_0298@type.map["".FilterType]"".Filter 1033 "".sw?type.*"".Switchi 1034 * 4PP"/DTgclocals3e27b3aa6b89137cce48b3379a2a6610Tgclocalsd30db2f00352493709608db178a4ce20vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go"".initeH%H;aHH\$H$HH$t-HH$u 1036 HHH$HH$HA* 1038 B 1039 *runtime.racefuncenterP"".initdoneb 1040 runtime.racereadp"".initdone"".initdone 1041 runtime.raceread"".initdone 1042 (runtime.racefuncexit 1043 "runtime.throwinit"".initdone 1044 "runtime.racewrite"".initdone 1045 fmt.init 1046 sync.init 1047 syscall.init"".initdone 1048 "runtime.racewrite"".initdone 1049 (runtime.racefuncexit 1050 0runtime.morestack_noctxtOM 1052 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbzprebuilts/go/darwin-x86/src/net/internal/socktest/sys_unix.go&"".(*Cookie).FamilyeH%H;aH0HY Ht H|$8H9;uH#H\$0H$H\$81H9uEHH$HD$HH\$HD$HH\$ HD$(H\$8H$H\$8HH0H\$@H0A 1057 n 1058 *runtime.racefuncenter(go.string."socktest"$go.string."Cookie"$go.string."Family" 1059 "runtime.panicwrap 1060 runtime.raceread 1061 (runtime.racefuncexit 1062 0runtime.morestack_noctxt `"".~r0type.int""..thistype.*"".Cookie`_`6Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>""".(*Cookie).TypeeH%H;aH0HY Ht H|$8H9;uH#H\$0H$H\$81H9uEHH$HD$HH\$HD$HH\$ HD$(H\$8H$H\$8HHH H\$@H0= 1069 n 1070 *runtime.racefuncenter(go.string."socktest"$go.string."Cookie" go.string."Type" 1071 "runtime.panicwrap 1072 runtime.raceread 1073 (runtime.racefuncexit 1074 0runtime.morestack_noctxt `"".~r0type.int""..thistype.*"".Cookie`_`6Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*Cookie).ProtocoleH%H;aH0HY Ht H|$8H9;uH#H\$0H$H\$81H9uEHH$HD$HH\$HD$HH\$ HD$(H\$8H$H\$8HHH\$@H0> 1080 n 1081 *runtime.racefuncenter(go.string."socktest"$go.string."Cookie"(go.string."Protocol" 1082 "runtime.panicwrap 1083 runtime.raceread 1084 (runtime.racefuncexit 1085 0runtime.morestack_noctxt `"".~r0type.int""..thistype.*"".Cookie`_`6Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>(type..hash."".StatuseH%H;aH H\$ H$H\$(H$H<$H\$0H\$HD$HD$H\$(H$H<$t_H$HD$0HD$HD$H\$(H$H<$t-H$HD$0HD$HD$HD$0HD$8H %%%_ 1089 B 1090 *runtime.racefuncenter 1091 runtime.memhash 1092 "runtime.interhash 1093 "runtime.interhash 1094 (runtime.racefuncexit 1095 0runtime.morestack_noctxt0@ 1096 "".autotmp_0306type.uintptr"".autotmp_0305type.uintptr"".~r2 type.uintptr"".htype.uintptr"".ptype.*"".Status@?@4 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go$type..eq."".StatuseH%H;aHHH\$HH$H\$PH$H\$XH$HD$XHl$PH]H(H9tD$`HHH$H$H\$XHSHkHl$8HkHl$@H\$PH$H$HT$8H\$PHHCHKHL$0HD$(H9H$HL$HT$Hl$@Hl$\$ H\$XH$H$H\$XHHkHl$8Hk Hl$@H\$PH$H$HT$8H\$PHt\HCHK HL$0HD$(H9u6H$HL$HT$Hl$@Hl$\$ tD$`HHD$`HHdD$`HH 1100 B 1101 *runtime.racefuncenter^ 1102 runtime.racereadz 1103 runtime.raceread 1104 (runtime.racefuncexit 1105 runtime.raceread 1106 runtime.raceread 1107 runtime.ifaceeq 1108 runtime.raceread 1109 runtime.raceread 1110 runtime.ifaceeq 1111 (runtime.racefuncexit 1112 (runtime.racefuncexit 1113 (runtime.racefuncexit 1114 0runtime.morestack_noctxt0"".autotmp_0310type.error"".autotmp_0309type.error"".autotmp_0308?type.error"".autotmp_0307type.error"".~r2 type.bool"".qtype.*"".Status"".ptype.*"".Status>N! LUDhTgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go&"".(*Status).StringeH%H;aHHHY Ht H|$PH9;uH#H\$HH$1H\$XH\$`H\$P1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$PH$HD$(Ht$PHt5HHL$(HD$0HL$8HL$XHD$@HD$`HH 1119 n 1120 *runtime.racefuncenter(go.string."socktest"$go.string."Status"$go.string."String" 1121 "runtime.panicwrap 1122 *runtime.racereadrange 1123 runtime.duffcopy 1124 "".Status.String 1125 (runtime.racefuncexit 1126 0runtime.morestack_noctxt0"".autotmp_0311type.string"".~r0type.string""..thistype.*"".Status 1128 6Tgclocals69076ee43f1cead0792b9f36906b1b56Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>."".(*AfterFilter).applyeH%H;aH@HY Ht H|$HH9;uH#H\$@H$1H\$XH\$`H\$H1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$HH$H\$HH+H,$H\$PH\$HL$HD$HL$0HL$XHD$8HD$`H@ 1134 n 1135 *runtime.racefuncenter(go.string."socktest".go.string."AfterFilter""go.string."apply" 1136 "runtime.panicwrap 1137 runtime.raceread 1138 ("".AfterFilter.apply 1139 (runtime.racefuncexit 1140 0runtime.morestack_noctxt@"".autotmp_0312type.error"".~r1 type.error 1142 "".sttype.*"".Status""..this(type.*"".AfterFilter6!Tgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>$"".(*Filter).applyeH%H;aH@HY Ht H|$HH9;uH#H\$@H$1H\$`H\$hH\$H1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$HH$H\$HH+H,$H\$PH\$HD$HT$HL$ HD$XHT$0HT$`HL$8HL$hH@ 1147 n 1148 *runtime.racefuncenter(go.string."socktest"$go.string."Filter""go.string."apply" 1149 "runtime.panicwrap 1150 runtime.raceread 1151 "".Filter.apply 1152 (runtime.racefuncexit 1153 0runtime.morestack_noctxtP 1154 "".autotmp_0314type.error"".~r20type.error"".~r1 &type."".AfterFilter 1157 "".sttype.*"".Status""..thistype.*"".Filter 6Tgclocalsd9a6dceef7e0b7c8c167b4d370ff071aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>.type..hash.[8]"".StatuseH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHk(HH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C 1160 1161 B 1162 *runtime.racefuncenter 1163 (type..hash."".Status 1164 (runtime.racefuncexit 1165 0runtime.morestack_noctxt0P 1166 "".autotmp_0319type.int"".autotmp_0318type.int"".~r2 type.uintptr"".htype.uintptr"".p$type.*[8]"".StatusPOP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go*type..eq.[8]"".Status eH%H;a/HhH\$hH$1HD$(Hl$(H9HD$0HL$pHH\$xHHk(HHHHk(HH\$8HL$@H$H\$8H$HD$8Hl$@H]H(H9YH$H$H\$8H`HkHl$XHkHl$`H\$@H$H$HT$XH\$@H HCHKHL$PHD$HH9H$HL$HT$Hl$`Hl$\$ H\$8H$H$H\$8HHkHl$XHk Hl$`H\$@H$H$HT$XH\$@HtxHCHK HL$PHD$HH9uOH$HL$HT$Hl$`Hl$\$ t(HD$0HHl$(H9G$Hh$HhH0 1171 B 1172 *runtime.racefuncenter 1173 runtime.raceread 1174 runtime.raceread 1175 runtime.raceread 1176 runtime.raceread 1177 runtime.ifaceeq 1178 runtime.raceread 1179 runtime.raceread 1180 runtime.ifaceeq 1181 (runtime.racefuncexit 1182 (runtime.racefuncexit 1183 0runtime.morestack_noctxt0"".autotmp_0327type.error"".autotmp_0326type.error"".autotmp_0325?type.error"".autotmp_0324type.error"".autotmp_0323_type.*"".Status"".autotmp_0322Otype.*"".Status"".autotmp_0321type.int"".autotmp_0320otype.int"".~r2 type.bool"".q$type.*[8]"".Status"".p$type.*[8]"".Status&5 cjLUD~Tgclocals42e7756549fd1f1e78e70fcb9f08dd2bTgclocalsc28ee300501d6323e9d29eae8886940evprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go""".(*Stat).StringeH%HD$H;AHHY HtH$H9;uH#H$H$1H$H$H$1H9uEHH$HD$HH\$HD$HH\$ HD$(H$H$HD$hH$HtAHHL$hHD$pHL$xH$H$H$H 1187 1188 *runtime.racefuncenter(go.string."socktest" go.string."Stat"$go.string."String" 1189 "runtime.panicwrap 1190 *runtime.racereadrange 1191 runtime.duffcopy 1192 "".Stat.String 1193 (runtime.racefuncexit 1194 0runtime.morestack_noctxt0"".autotmp_0328type.string"".~r0type.string""..thistype.*"".StatD%Tgclocals69076ee43f1cead0792b9f36906b1b56Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>*"".(*stats).getLocked eH%HD$H;A,HHY HtH$H9;uH#H$H$H$1H9uEHH$HD$HH\$HD$HH\$ HD$( H$H$H$H+H$HD$PHH$Hl$`Hl$HD$HD$\$ \$7HD$xH$HL$PH\$xH|$7HH0H\$@HHH H\$8HHH\$HHH$HD$HD$pH$HD$hHL$pHH1HH$HD$pHl$@H(H$H$HD$pHl$8HhH$H$HD$pHl$HHhH\$PH\$XHD$hH$HH$H\$`H\$H\$XH\$H$H\$HD$hH$H>* 1199 1200 *runtime.racefuncenter(go.string."socktest""go.string."stats"*go.string."getLocked" 1201 "runtime.panicwrap 1202 runtime.racereadtype."".stats 1203 2runtime.mapaccess2_fast64 1204 runtime.racereadtype."".Stat 1205 "runtime.newobject 1206 ,runtime.racewriterange 1207 runtime.duffzero 1208 "runtime.racewrite 1209 "runtime.racewrite 1210 "runtime.racewritetype."".stats 1211 $runtime.mapassign1 1212 (runtime.racefuncexit 1213 0runtime.morestack_noctxt0 "".autotmp_0336/type.*"".Stat"".autotmp_0335type.int"".autotmp_0334type.int"".autotmp_0332type.**"".Stat"".autotmp_0331type.*"".Stat"".autotmp_0330_type."".Cookie"".~r0type.int"".~r0type.int"".~r0type.int 1217 "".oktype.bool"".s?type.*"".Stat"".cotype."".Cookie 1218 "".stOtype."".stats"".~r1 type.*"".Stat"".ctype."".Cookie""..thistype.*"".stats&DS Tgclocalsaa78dd314067467370cee841338f6221Tgclocalsd46690261dcd0b3c235f526f98703504<autogenerated>4type..hash.[5]interface {}eH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C 1221 1222 B 1223 *runtime.racefuncenter 1224 (runtime.nilinterhash 1225 (runtime.racefuncexit 1226 0runtime.morestack_noctxt0P 1227 "".autotmp_0339type.int"".autotmp_0338type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[5]interface {}POP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go0type..eq.[5]interface {}eH%H;a/H`H\$`H$1HD$0Hl$0H9HD$8H\$pHHD$(HHH$HD$(H\$pHHHHH+Hl$PHkHl$XH\$hHHHH$HT$PH\$hHt}Hl$(HHHHKHL$HHD$@H9uLH$HL$HT$Hl$XHl$\$ t%HD$8HHl$0H9(D$xH`D$xH`|2 1231 B 1232 *runtime.racefuncenter 1233 runtime.raceread 1234 runtime.raceread 1235 runtime.efaceeq 1236 (runtime.racefuncexit 1237 (runtime.racefuncexit 1238 0runtime.morestack_noctxt0"".autotmp_0343?"type.interface {}"".autotmp_0342"type.interface {}"".autotmp_0341_type.int"".autotmp_0340Otype.int"".iotype.int"".~r2 type.bool"".q*type.*[5]interface {}"".p*type.*[5]interface {}& O_Tgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go6type..hash.[13]interface {}eH%H;aH(H\$(H$HT$81HD$ Hl$H9}\HD$ HHHHckRHHH\$0HtEHHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C 1242 1243 B 1244 *runtime.racefuncenter 1245 (runtime.nilinterhash 1246 (runtime.racefuncexit 1247 0runtime.morestack_noctxt0P 1248 "".autotmp_0346type.int"".autotmp_0345type.int"".~r2 type.uintptr"".htype.uintptr"".p,type.*[13]interface {}POP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go2type..eq.[13]interface {}eH%H;a/H`H\$`H$1HD$0 Hl$0H9HD$8H\$pHHD$(HHH$HD$(H\$pHHHHH+Hl$PHkHl$XH\$hHHHH$HT$PH\$hHt}Hl$(HHHHKHL$HHD$@H9uLH$HL$HT$Hl$XHl$\$ t%HD$8HHl$0H9(D$xH`D$xH`|2 1253 B 1254 *runtime.racefuncenter 1255 runtime.raceread 1256 runtime.raceread 1257 runtime.efaceeq 1258 (runtime.racefuncexit 1259 (runtime.racefuncexit 1260 0runtime.morestack_noctxt0"".autotmp_0350?"type.interface {}"".autotmp_0349"type.interface {}"".autotmp_0348_type.int"".autotmp_0347Otype.int"".iotype.int"".~r2 type.bool"".q,type.*[13]interface {}"".p,type.*[13]interface {}& O_Tgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go4type..hash.[1]interface {}eH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C 1263 1264 B 1265 *runtime.racefuncenter 1266 (runtime.nilinterhash 1267 (runtime.racefuncexit 1268 0runtime.morestack_noctxt0P 1269 "".autotmp_0353type.int"".autotmp_0352type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[1]interface {}POP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbvprebuilts/go/darwin-x86/src/net/internal/socktest/switch.go0type..eq.[1]interface {}eH%H;a/H`H\$`H$1HD$0Hl$0H9HD$8H\$pHHD$(HHH$HD$(H\$pHHHHH+Hl$PHkHl$XH\$hHHHH$HT$PH\$hHt}Hl$(HHHHKHL$HHD$@H9uLH$HL$HT$Hl$XHl$\$ t%HD$8HHl$0H9(D$xH`D$xH`|2 1273 B 1274 *runtime.racefuncenter 1275 runtime.raceread 1276 runtime.raceread 1277 runtime.efaceeq 1278 (runtime.racefuncexit 1279 (runtime.racefuncexit 1280 0runtime.morestack_noctxt0"".autotmp_0357?"type.interface {}"".autotmp_0356"type.interface {}"".autotmp_0355_type.int"".autotmp_0354Otype.int"".iotype.int"".~r2 type.bool"".q*type.*[1]interface {}"".p*type.*[1]interface {}& O_Tgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787vprebuilts/go/darwin-x86/src/net/internal/socktest/switch.goTgclocals2ec1302a787d0a837f0ed75b84b482ec00Tgclocals5d2b5a2aeff4e4cf961f497a12cc05ae00Tgclocalse0d182103d07e3237465df099dc03b7aPP Tgclocals441d662a383b4d8caf12b6ff9ba71c5aPPTgclocalse8b591f376eed0b64a64b95cc26ea025@@Tgclocalsf69a263cb7d5b062b5c0d50b000f6ecf@@Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440rgo.string.hdr."(%s, %s, %s): syscallerr=%v, socketerr=%v" )jgo.string."(%s, %s, %s): syscallerr=%v, socketerr=%v"jgo.string."(%s, %s, %s): syscallerr=%v, socketerr=%v"`T(%s, %s, %s): syscallerr=%v, socketerr=%vTgclocalse3d591e70c8d33b7ef6252d271424c61HH@PSPPTgclocals79e60e75740126dafdf8809ca7edf9f6HH>$"".hdr..gostring.1 ""..gostring.1""..gostring.1(%s, %s, %s): opened=%d, connected=%d, listened=%d, accepted=%d, closed=%d, openfailed=%d, connectfailed=%d, listenfailed=%d, acceptfailed=%d, closefailed=%dTgclocals2dd73f3146f13f0b2489b0ec3268acbc'@PSPPTgclocals180dc618dd895a65d8f4aaa13e47f0d2HH Tgclocalsf9ae68ded45d7de762faa20f8cc6484188 Tgclocals5c80cb9290cc7cfe27c0f86de8cd612d88Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd9a6dceef7e0b7c8c167b4d370ff071a Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals19b49d53e9c11805652fa4c0885cbb29 Tgclocalscfd6edc6bd6783c9c8dcb2a00b78c80c00 Tgclocals01417187aa2bf2ffee27d62bf1b4e50600*go.string.hdr."inet4" "go.string."inet4""go.string."inet4"inet4*go.string.hdr."inet6" "go.string."inet6""go.string."inet6"inet6*go.string.hdr."local" "go.string."local""go.string."local"local$go.string.hdr."%d" go.string."%d"go.string."%d"%dTgclocals8abf0427981eb9c17713fe800a78fa79@@ LOTgclocalsb4315655e3726fbce05c2a7c1f7b7990@@,go.string.hdr."stream" $go.string."stream"$go.string."stream"stream0go.string.hdr."datagram" (go.string."datagram"(go.string."datagram" datagram&go.string.hdr."raw" go.string."raw"go.string."raw"raw2go.string.hdr."seqpacket" *go.string."seqpacket"*go.string."seqpacket" seqpacket(go.string.hdr."|%#x" go.string."|%#x" go.string."|%#x" 1287 |%#xTgclocalsa502ec4a68451e9f897b63e4f3e3a5d4PPTgclocals8c62ee94093b14ec849ccc7197d3b09ePP.go.string.hdr."default" &go.string."default"&go.string."default"default&go.string.hdr."tcp" go.string."tcp"go.string."tcp"tcp&go.string.hdr."udp" go.string."udp"go.string."udp"udpTgclocals8abf0427981eb9c17713fe800a78fa79@@ LOTgclocalsb4315655e3726fbce05c2a7c1f7b7990@@Tgclocals5ba05fcc7fa14112e2d036c806c76b1200Tgclocals264904ed64856cbae7da24133e78108500Tgclocals68f1d2bea7ab54cc1bedc4179197e29fHH <Tgclocalsd1206d3abeb2bfd997b96c5825044aa0HH!Tgclocalscda5a3247bb9ab61f8b6ef4ba5cf5a9eD "Tgclocals359f9fae04fb7407334ebea9eed383b5aaTgclocals9ebac205ed6c89bdc95d082f2f5568c3 $EDB@Tgclocals4d598c6c3ac7aee13fc2a38bb9541f1f Tgclocals9ebac205ed6c89bdc95d082f2f5568c3 $EDB@Tgclocals199e4b7d68c6dc4cb1f79531ebef8c46 = = Tgclocals9ebac205ed6c89bdc95d082f2f5568c3 $EDB@Tgclocals50ee114b94a7bf0d2afad5a77001cfb1Tgclocals27bab20d465b6b1668b04ebb0965b967D8 "Tgclocals7100c8ab481ca8bf2c63c7e572aadfedyaay06go.itab.syscall.Errno.errorTgclocals186a8abc349cececf2efe796fcc2eef6xx B 1319 !Tgclocals25d81ed6c203e4f29c93fd7bf2b44667xx aTgclocalsd30db2f00352493709608db178a4ce2088 Tgclocals3e27b3aa6b89137cce48b3379a2a6610Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb0"".initdonetype.uint8("".(*Switch).initf""".(*Switch).init*"".(*Switch).Statsf$"".(*Switch).Stats."".(*Switch).Socketsf("".(*Switch).Sockets&"".Cookie.Familyf "".Cookie.Family""".Cookie.Typef"".Cookie.Type*"".Cookie.Protocolf$"".Cookie.Protocol"".cookief"".cookie&"".Status.Stringf "".Status.String""".Stat.Stringf"".Stat.String*"".stats.getLockedf$"".stats.getLocked$"".Filter.applyf"".Filter.apply."".AfterFilter.applyf("".AfterFilter.apply&"".(*Switch).Setf "".(*Switch).Set$"".familyStringf"".familyString "".typeStringf"".typeString("".protocolStringf""".protocolString,"".(*Switch).socksof&"".(*Switch).sockso2"".(*Switch).addLockedf,"".(*Switch).addLocked,"".(*Switch).Socketf&"".(*Switch).Socket*"".(*Switch).Closef$"".(*Switch).Close."".(*Switch).Connectf("".(*Switch).Connect,"".(*Switch).Listenf&"".(*Switch).Listen,"".(*Switch).Acceptf&"".(*Switch).Accept:"".(*Switch).GetsockoptIntf4"".(*Switch).GetsockoptInt"".initf"".init"runtime.gcbits.01Hgo.string.hdr."*socktest.FilterType" @go.string."*socktest.FilterType"@go.string."*socktest.FilterType"0**socktest.FilterType&type.*"".FilterType$60 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."*socktest.FilterType"p8go.weak.type.**"".FilterType"runtime.zerovalue$type."".FilterTyperuntime.gcbits.Fgo.string.hdr."socktest.FilterType" >go.string."socktest.FilterType">go.string."socktest.FilterType"0(socktest.FilterType4go.string.hdr."FilterType" 1322 ,go.string."FilterType",go.string."FilterType" FilterTypeJgo.string.hdr."net/internal/socktest" Bgo.string."net/internal/socktest"Bgo.string."net/internal/socktest"0,net/internal/socktest"go.importpath."". Bgo.string."net/internal/socktest"$type."".FilterType2 0 runtime.algarray@runtime.gcbits.PFgo.string.hdr."socktest.FilterType"p&type.*"".FilterType"runtime.zerovalue`$type."".FilterType4go.string.hdr."FilterType""go.importpath."".$type."".FilterType@go.string.hdr."*socktest.Cookie" 8go.string."*socktest.Cookie"8go.string."*socktest.Cookie"0"*socktest.Cookie0go.string.hdr."socktest" (go.string."socktest"(go.string."socktest" socktest,go.string.hdr."Cookie" $go.string."Cookie"$go.string."Cookie"Cookie,go.string.hdr."Family" $go.string."Family"$go.string."Family"FamilyTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162(go.string.hdr."Type" go.string."Type" go.string."Type" 1323 TypeTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd340571620go.string.hdr."Protocol" (go.string."Protocol"(go.string."Protocol" ProtocolTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgo.string.hdr."func(*socktest.Cookie) int" Lgo.string."func(*socktest.Cookie) int"Lgo.string."func(*socktest.Cookie) int"@6func(*socktest.Cookie) int2type.func(*"".Cookie) intgW30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*socktest.Cookie) int"pDgo.weak.type.*func(*"".Cookie) int"runtime.zerovalue2type.func(*"".Cookie) int2type.func(*"".Cookie) inttype.*"".Cookietype.intvgo.typelink.func(*socktest.Cookie) int func(*"".Cookie) int2type.func(*"".Cookie) int4go.string.hdr."func() int" 1324 ,go.string."func() int",go.string."func() int" func() inttype.func() int930 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."func() int"p0go.weak.type.*func() int"runtime.zerovaluetype.func() inttype.func() inttype.intBgo.typelink.func() int func() inttype.func() inttype.*"".CookieJM6.0 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*socktest.Cookie"p0go.weak.type.**"".Cookie"runtime.zerovaluetype."".Cookie`type.*"".Cookietype.*"".Cookie,go.string.hdr."Family"type.func() int2type.func(*"".Cookie) int&"".(*Cookie).Family&"".(*Cookie).Family0go.string.hdr."Protocol"type.func() int2type.func(*"".Cookie) int*"".(*Cookie).Protocol*"".(*Cookie).Protocol(go.string.hdr."Type"type.func() int2type.func(*"".Cookie) int""".(*Cookie).Type""".(*Cookie).Type>go.string.hdr."socktest.Cookie" 6go.string."socktest.Cookie"6go.string."socktest.Cookie" socktest.CookieRgo.string.hdr."func(socktest.Cookie) int" Jgo.string."func(socktest.Cookie) int"Jgo.string."func(socktest.Cookie) int"@4func(socktest.Cookie) int0type.func("".Cookie) intIt30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(socktest.Cookie) int"pBgo.weak.type.*func("".Cookie) int"runtime.zerovalue0type.func("".Cookie) int0type.func("".Cookie) inttype."".Cookietype.intrgo.typelink.func(socktest.Cookie) int func("".Cookie) int0type.func("".Cookie) inttype."".Cookiet700 runtime.algarray@runtime.gcbits.P>go.string.hdr."socktest.Cookie"ptype.*"".Cookie"runtime.zerovalue`type."".Cookie,go.string.hdr."Cookie""go.importpath."".type."".Cookie,go.string.hdr."Family"type.func() int0type.func("".Cookie) int&"".(*Cookie).Family "".Cookie.Family0go.string.hdr."Protocol"type.func() int0type.func("".Cookie) int*"".(*Cookie).Protocol$"".Cookie.Protocol(go.string.hdr."Type"type.func() int0type.func("".Cookie) int""".(*Cookie).Type"".Cookie.TypeTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787 Tgclocals51af24152615272c3d9efc8538f95767 0type..hashfunc."".Status(type..hash."".Status,type..eqfunc."".Status$type..eq."".Status&type..alg."".Status 0type..hashfunc."".Status,type..eqfunc."".Status"runtime.gcbits.1e>go.string.hdr."socktest.Status" 6go.string."socktest.Status"6go.string."socktest.Status" socktest.Status&go.string.hdr."Err" go.string."Err"go.string."Err"Err2go.string.hdr."SocketErr" *go.string."SocketErr"*go.string."SocketErr" SocketErr,go.string.hdr."Status" $go.string."Status"$go.string."Status"Status,go.string.hdr."String" $go.string."String"$go.string."String"StringTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals69076ee43f1cead0792b9f36906b1b56 Xgo.string.hdr."func(socktest.Status) string" Pgo.string."func(socktest.Status) string"Pgo.string."func(socktest.Status) string"@:func(socktest.Status) string6type.func("".Status) stringDK30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(socktest.Status) string"pHgo.weak.type.*func("".Status) string"runtime.zerovalue6type.func("".Status) string6type.func("".Status) stringtype."".Statustype.string~go.typelink.func(socktest.Status) string func("".Status) string6type.func("".Status) string:go.string.hdr."func() string" 2go.string."func() string"2go.string."func() string" func() string$type.func() stringm30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func() string"p6go.weak.type.*func() string"runtime.zerovalue$type.func() string$type.func() stringtype.stringNgo.typelink.func() string func() string$type.func() stringtype."".Status((29nC*0&type..alg."".Status@"runtime.gcbits.1eP>go.string.hdr."socktest.Status"ptype.*"".Status"runtime.zerovaluetype."".Status,go.string.hdr."Cookie"type."".Cookie&go.string.hdr."Err"type.error2go.string.hdr."SocketErr"type.error`type."".Status,go.string.hdr."Status""go.importpath."".type."".Status,go.string.hdr."String"$type.func() string6type.func("".Status) string&"".(*Status).String "".Status.String@go.string.hdr."*socktest.Status" 8go.string."*socktest.Status"8go.string."*socktest.Status"0"*socktest.StatusZgo.string.hdr."func(*socktest.Status) string" Rgo.string."func(*socktest.Status) string"Rgo.string."func(*socktest.Status) string"@<func(*socktest.Status) string8type.func(*"".Status) string#)30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*socktest.Status) string"pJgo.weak.type.*func(*"".Status) string"runtime.zerovalue8type.func(*"".Status) string8type.func(*"".Status) stringtype.*"".Statustype.stringgo.typelink.func(*socktest.Status) string func(*"".Status) string8type.func(*"".Status) stringtype.*"".StatusJL%60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*socktest.Status"p0go.weak.type.**"".Status"runtime.zerovaluetype."".Status`type.*"".Statustype.*"".Status,go.string.hdr."String"$type.func() string8type.func(*"".Status) string&"".(*Status).String&"".(*Status).StringJgo.string.hdr."*socktest.AfterFilter" Bgo.string."*socktest.AfterFilter"Bgo.string."*socktest.AfterFilter"0,*socktest.AfterFilter6go.string.hdr."AfterFilter" .go.string."AfterFilter".go.string."AfterFilter" AfterFilter*go.string.hdr."apply" "go.string."apply""go.string."apply"applyTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals19b49d53e9c11805652fa4c0885cbb29 go.string.hdr."func(*socktest.AfterFilter, *socktest.Status) error" 3~go.string."func(*socktest.AfterFilter, *socktest.Status) error"~go.string."func(*socktest.AfterFilter, *socktest.Status) error"phfunc(*socktest.AfterFilter, *socktest.Status) errorXtype.func(*"".AfterFilter, *"".Status) error}30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*socktest.AfterFilter, *socktest.Status) error"pjgo.weak.type.*func(*"".AfterFilter, *"".Status) error"runtime.zerovalueXtype.func(*"".AfterFilter, *"".Status) errorXtype.func(*"".AfterFilter, *"".Status) error(type.*"".AfterFiltertype.*"".Statustype.errorgo.typelink.func(*socktest.AfterFilter, *socktest.Status) error func(*"".AfterFilter, *"".Status) errorXtype.func(*"".AfterFilter, *"".Status) errorXgo.string.hdr."func(*socktest.Status) error" Pgo.string."func(*socktest.Status) error"Pgo.string."func(*socktest.Status) error"@:func(*socktest.Status) error6type.func(*"".Status) error=B30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(*socktest.Status) error"pHgo.weak.type.*func(*"".Status) error"runtime.zerovalue6type.func(*"".Status) error6type.func(*"".Status) errortype.*"".Statustype.error~go.typelink.func(*socktest.Status) error func(*"".Status) error6type.func(*"".Status) error(type.*"".AfterFilterY60 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."*socktest.AfterFilter"p:go.weak.type.**"".AfterFilter"runtime.zerovalue&type."".AfterFilter`(type.*"".AfterFilter(type.*"".AfterFilter*go.string.hdr."apply""go.importpath."".6type.func(*"".Status) errorXtype.func(*"".AfterFilter, *"".Status) error."".(*AfterFilter).apply."".(*AfterFilter).applyHgo.string.hdr."socktest.AfterFilter" @go.string."socktest.AfterFilter"@go.string."socktest.AfterFilter"0*socktest.AfterFiltergo.string.hdr."func(socktest.AfterFilter, *socktest.Status) error" 2|go.string."func(socktest.AfterFilter, *socktest.Status) error"|go.string."func(socktest.AfterFilter, *socktest.Status) error"pffunc(socktest.AfterFilter, *socktest.Status) errorVtype.func("".AfterFilter, *"".Status) errorV30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(socktest.AfterFilter, *socktest.Status) error"phgo.weak.type.*func("".AfterFilter, *"".Status) error"runtime.zerovalueVtype.func("".AfterFilter, *"".Status) errorVtype.func("".AfterFilter, *"".Status) error&type."".AfterFiltertype.*"".Statustype.errorgo.typelink.func(socktest.AfterFilter, *socktest.Status) error func("".AfterFilter, *"".Status) errorVtype.func("".AfterFilter, *"".Status) error&type."".AfterFilter=U3&0 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."socktest.AfterFilter"p(type.*"".AfterFilter"runtime.zerovalue&type."".AfterFilter&type."".AfterFiltertype.*"".Statustype.error`&type."".AfterFilter6go.string.hdr."AfterFilter""go.importpath."".&type."".AfterFilter*go.string.hdr."apply""go.importpath."".6type.func(*"".Status) errorVtype.func("".AfterFilter, *"".Status) error("".AfterFilter.apply("".AfterFilter.apply@go.string.hdr."*socktest.Filter" 8go.string."*socktest.Filter"8go.string."*socktest.Filter"0"*socktest.Filter,go.string.hdr."Filter" $go.string."Filter"$go.string."Filter"FilterTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocalsd9a6dceef7e0b7c8c167b4d370ff071a go.string.hdr."func(*socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)" Fgo.string."func(*socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)"go.string."func(*socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)"func(*socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)rtype.func(*"".Filter, *"".Status) ("".AfterFilter, error)30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)"pgo.weak.type.*func(*"".Filter, *"".Status) ("".AfterFilter, error)"runtime.zerovaluertype.func(*"".Filter, *"".Status) ("".AfterFilter, error)rtype.func(*"".Filter, *"".Status) ("".AfterFilter, error)type.*"".Filtertype.*"".Status&type."".AfterFiltertype.errorgo.typelink.func(*socktest.Filter, *socktest.Status) (socktest.AfterFilter, error) func(*"".Filter, *"".Status) ("".AfterFilter, error)rtype.func(*"".Filter, *"".Status) ("".AfterFilter, error)go.string.hdr."func(*socktest.Status) (socktest.AfterFilter, error)" 4go.string."func(*socktest.Status) (socktest.AfterFilter, error)"go.string."func(*socktest.Status) (socktest.AfterFilter, error)"pjfunc(*socktest.Status) (socktest.AfterFilter, error)Ztype.func(*"".Status) ("".AfterFilter, error)1-l30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*socktest.Status) (socktest.AfterFilter, error)"plgo.weak.type.*func(*"".Status) ("".AfterFilter, error)"runtime.zerovalueZtype.func(*"".Status) ("".AfterFilter, error)Ztype.func(*"".Status) ("".AfterFilter, error)type.*"".Status&type."".AfterFiltertype.errorgo.typelink.func(*socktest.Status) (socktest.AfterFilter, error) func(*"".Status) ("".AfterFilter, error)Ztype.func(*"".Status) ("".AfterFilter, error)type.*"".FilterpW60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*socktest.Filter"p0go.weak.type.**"".Filter"runtime.zerovaluetype."".Filter`type.*"".Filtertype.*"".Filter*go.string.hdr."apply""go.importpath."".Ztype.func(*"".Status) ("".AfterFilter, error)rtype.func(*"".Filter, *"".Status) ("".AfterFilter, error)$"".(*Filter).apply$"".(*Filter).apply>go.string.hdr."socktest.Filter" 6go.string."socktest.Filter"6go.string."socktest.Filter" socktest.Filtergo.string.hdr."func(socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)" Ego.string."func(socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)"go.string."func(socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)"func(socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)ptype.func("".Filter, *"".Status) ("".AfterFilter, error)[@30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(socktest.Filter, *socktest.Status) (socktest.AfterFilter, error)"pgo.weak.type.*func("".Filter, *"".Status) ("".AfterFilter, error)"runtime.zerovalueptype.func("".Filter, *"".Status) ("".AfterFilter, error)ptype.func("".Filter, *"".Status) ("".AfterFilter, error)type."".Filtertype.*"".Status&type."".AfterFiltertype.errorgo.typelink.func(socktest.Filter, *socktest.Status) (socktest.AfterFilter, error) func("".Filter, *"".Status) ("".AfterFilter, error)ptype.func("".Filter, *"".Status) ("".AfterFilter, error)type."".Filter=*@3(0 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."socktest.Filter"ptype.*"".Filter"runtime.zerovaluetype."".Filtertype."".Filtertype.*"".Status&type."".AfterFiltertype.error`type."".Filter,go.string.hdr."Filter""go.importpath."".type."".Filter*go.string.hdr."apply""go.importpath."".Ztype.func(*"".Status) ("".AfterFilter, error)ptype.func("".Filter, *"".Status) ("".AfterFilter, error)"".Filter.apply"".Filter.apply.go.string.hdr."[]uint8" &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8 []uint8type.[]uint80go.string.hdr."[8]uint8" (go.string."[8]uint8"(go.string."[8]uint8" [8]uint8type.[8]uint8>00 runtime.algarray@runtime.gcbits.P0go.string.hdr."[8]uint8"p,go.weak.type.*[8]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[8]uint8 [8]uint8type.[8]uint8Jgo.string.hdr."[]socktest.FilterType" Bgo.string."[]socktest.FilterType"Bgo.string."[]socktest.FilterType"0,[]socktest.FilterType(type.[]"".FilterType10 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."[]socktest.FilterType"p:go.weak.type.*[]"".FilterType"runtime.zerovalue$type."".FilterTypebgo.typelink.[]socktest.FilterType []"".FilterType(type.[]"".FilterType type..hashfunc64 @,runtime.memhash_varlentype..eqfunc64 @.runtime.memequal_varlentype..alg64 type..hashfunc64type..eqfunc64Lgo.string.hdr."[8]socktest.FilterType" Dgo.string."[8]socktest.FilterType"Dgo.string."[8]socktest.FilterType"0.[8]socktest.FilterType*type.[8]"".FilterType@Y0type..alg64@runtime.gcbits.PLgo.string.hdr."[8]socktest.FilterType"p<go.weak.type.*[8]"".FilterType"runtime.zerovalue$type."".FilterType(type.[]"".FilterTypefgo.typelink.[8]socktest.FilterType [8]"".FilterType*type.[8]"".FilterTypeBgo.string.hdr."[]socktest.Filter" :go.string."[]socktest.Filter":go.string."[]socktest.Filter"0$[]socktest.Filter type.[]"".Filtery0 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."[]socktest.Filter"p2go.weak.type.*[]"".Filter"runtime.zerovaluetype."".FilterRgo.typelink.[]socktest.Filter []"".Filter type.[]"".Filter"runtime.gcbits.ffDgo.string.hdr."[8]socktest.Filter" <go.string."[8]socktest.Filter"<go.string."[8]socktest.Filter"0&[8]socktest.Filter"type.[8]"".Filter@@v0 runtime.algarray@"runtime.gcbits.ffPDgo.string.hdr."[8]socktest.Filter"p4go.weak.type.*[8]"".Filter"runtime.zerovaluetype."".Filter type.[]"".FilterVgo.typelink.[8]socktest.Filter [8]"".Filter"type.[8]"".Filter~go.string.hdr."*map.bucket[socktest.FilterType]socktest.Filter" /vgo.string."*map.bucket[socktest.FilterType]socktest.Filter"vgo.string."*map.bucket[socktest.FilterType]socktest.Filter"``*map.bucket[socktest.FilterType]socktest.FilterPtype.*map.bucket["".FilterType]"".FilterNM60 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."*map.bucket[socktest.FilterType]socktest.Filter"pbgo.weak.type.**map.bucket["".FilterType]"".Filter"runtime.zerovalueNtype.map.bucket["".FilterType]"".Filter*runtime.gcbits.00fe03|go.string.hdr."map.bucket[socktest.FilterType]socktest.Filter" .tgo.string."map.bucket[socktest.FilterType]socktest.Filter"tgo.string."map.bucket[socktest.FilterType]socktest.Filter"`^map.bucket[socktest.FilterType]socktest.Filter.go.string.hdr."topbits" &go.string."topbits"&go.string."topbits"topbits(go.string.hdr."keys" go.string."keys" go.string."keys" 1335 keys,go.string.hdr."values" $go.string."values"$go.string."values"values0go.string.hdr."overflow" (go.string."overflow"(go.string."overflow" overflowNtype.map.bucket["".FilterType]"".FiltermaH0 runtime.algarray@*runtime.gcbits.00fe03P|go.string.hdr."map.bucket[socktest.FilterType]socktest.Filter"p`go.weak.type.*map.bucket["".FilterType]"".Filter"runtime.zerovalueNtype.map.bucket["".FilterType]"".Filter.go.string.hdr."topbits"type.[8]uint8(go.string.hdr."keys"*type.[8]"".FilterType,go.string.hdr."values""type.[8]"".Filter0go.string.hdr."overflow"Ptype.*map.bucket["".FilterType]"".Filter"runtime.gcbits.2c,vgo.string.hdr."map.hdr[socktest.FilterType]socktest.Filter" +ngo.string."map.hdr[socktest.FilterType]socktest.Filter"ngo.string."map.hdr[socktest.FilterType]socktest.Filter"`Xmap.hdr[socktest.FilterType]socktest.Filter*go.string.hdr."count" "go.string."count""go.string."count"count*go.string.hdr."flags" "go.string."flags""go.string."flags"flags"go.string.hdr."B" go.string."B"go.string."B"B*go.string.hdr."hash0" "go.string."hash0""go.string."hash0"hash0.go.string.hdr."buckets" &go.string."buckets"&go.string."buckets"buckets4go.string.hdr."oldbuckets" 1339 ,go.string."oldbuckets",go.string."oldbuckets" oldbuckets2go.string.hdr."nevacuate" *go.string."nevacuate"*go.string."nevacuate" nevacuateHtype.map.hdr["".FilterType]"".Filter00 (,0 runtime.algarray@"runtime.gcbits.2cPvgo.string.hdr."map.hdr[socktest.FilterType]socktest.Filter"pZgo.weak.type.*map.hdr["".FilterType]"".Filter"runtime.zerovalueHtype.map.hdr["".FilterType]"".Filter*go.string.hdr."count"type.int*go.string.hdr."flags"type.uint8"go.string.hdr."B"type.uint8*go.string.hdr."hash0"type.uint32.go.string.hdr."buckets"Ptype.*map.bucket["".FilterType]"".Filter4go.string.hdr."oldbuckets"Ptype.*map.bucket["".FilterType]"".Filter2go.string.hdr."nevacuate"type.uintptr0go.string.hdr."overflow"&type.unsafe.Pointerngo.string.hdr."map[socktest.FilterType]socktest.Filter" 'fgo.string."map[socktest.FilterType]socktest.Filter"fgo.string."map[socktest.FilterType]socktest.Filter"PPmap[socktest.FilterType]socktest.Filter@type.map["".FilterType]"".FilterqR50 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."map[socktest.FilterType]socktest.Filter"pRgo.weak.type.*map["".FilterType]"".Filter"runtime.zerovalue$type."".FilterTypetype."".FilterNtype.map.bucket["".FilterType]"".FilterHtype.map.hdr["".FilterType]"".Filtergo.typelink.map[socktest.FilterType]socktest.Filter map["".FilterType]"".Filter@type.map["".FilterType]"".Filter*go.string.hdr."[]int" "go.string."[]int""go.string."[]int"[]inttype.[]intf0 runtime.algarray@"runtime.gcbits.01P*go.string.hdr."[]int"p&go.weak.type.*[]int"runtime.zerovaluetype.int.go.typelink.[]int []inttype.[]int,go.string.hdr."[8]int" $go.string."[8]int"$go.string."[8]int"[8]inttype.[8]int@0type..alg64@runtime.gcbits.P,go.string.hdr."[8]int"p(go.weak.type.*[8]int"runtime.zerovaluetype.inttype.[]int2go.typelink.[8]int [8]inttype.[8]intBgo.string.hdr."[]socktest.Status" :go.string."[]socktest.Status":go.string."[]socktest.Status"0$[]socktest.Status type.[]"".StatusI10 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."[]socktest.Status"p2go.weak.type.*[]"".Status"runtime.zerovaluetype."".StatusRgo.typelink.[]socktest.Status []"".Status type.[]"".StatusTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsc28ee300501d6323e9d29eae8886940e0032Tgclocals42e7756549fd1f1e78e70fcb9f08dd2b006type..hashfunc.[8]"".Status.type..hash.[8]"".Status2type..eqfunc.[8]"".Status*type..eq.[8]"".Status,type..alg.[8]"".Status 6type..hashfunc.[8]"".Status2type..eqfunc.[8]"".Status2runtime.gcbits.de7befbdf7 1346 1347 {Dgo.string.hdr."[8]socktest.Status" <go.string."[8]socktest.Status"<go.string."[8]socktest.Status"0&[8]socktest.Status"type.[8]"".Status@@',0,type..alg.[8]"".Status@2runtime.gcbits.de7befbdf7PDgo.string.hdr."[8]socktest.Status"p4go.weak.type.*[8]"".Status"runtime.zerovaluetype."".Status type.[]"".StatusVgo.typelink.[8]socktest.Status [8]"".Status"type.[8]"".Status^go.string.hdr."*map.bucket[int]socktest.Status" Vgo.string."*map.bucket[int]socktest.Status"Vgo.string."*map.bucket[int]socktest.Status"@@*map.bucket[int]socktest.Status<type.*map.bucket[int]"".Status60 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."*map.bucket[int]socktest.Status"pNgo.weak.type.**map.bucket[int]"".Status"runtime.zerovalue:type.map.bucket[int]"".Status:runtime.gcbits.00bcf7de7bef03{\go.string.hdr."map.bucket[int]socktest.Status" Tgo.string."map.bucket[int]socktest.Status"Tgo.string."map.bucket[int]socktest.Status"@>map.bucket[int]socktest.Status:type.map.bucket[int]"".StatusDSH0 runtime.algarray@:runtime.gcbits.00bcf7de7bef03P\go.string.hdr."map.bucket[int]socktest.Status"pLgo.weak.type.*map.bucket[int]"".Status"runtime.zerovalue:type.map.bucket[int]"".Status.go.string.hdr."topbits"type.[8]uint8(go.string.hdr."keys"type.[8]int,go.string.hdr."values""type.[8]"".Status0go.string.hdr."overflow"<type.*map.bucket[int]"".StatusVgo.string.hdr."map.hdr[int]socktest.Status" Ngo.string."map.hdr[int]socktest.Status"Ngo.string."map.hdr[int]socktest.Status"@8map.hdr[int]socktest.Status4type.map.hdr[int]"".Status00? 1349 (,0 runtime.algarray@"runtime.gcbits.2cPVgo.string.hdr."map.hdr[int]socktest.Status"pFgo.weak.type.*map.hdr[int]"".Status"runtime.zerovalue4type.map.hdr[int]"".Status*go.string.hdr."count"type.int*go.string.hdr."flags"type.uint8"go.string.hdr."B"type.uint8*go.string.hdr."hash0"type.uint32.go.string.hdr."buckets"<type.*map.bucket[int]"".Status4go.string.hdr."oldbuckets"<type.*map.bucket[int]"".Status2go.string.hdr."nevacuate"type.uintptr0go.string.hdr."overflow"&type.unsafe.PointerBgo.string.hdr."*socktest.Sockets" :go.string."*socktest.Sockets":go.string."*socktest.Sockets"0$*socktest.Sockets type.*"".SocketsIk60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*socktest.Sockets"p2go.weak.type.**"".Sockets"runtime.zerovaluetype."".Sockets@go.string.hdr."socktest.Sockets" 8go.string."socktest.Sockets"8go.string."socktest.Sockets"0"socktest.Sockets.go.string.hdr."Sockets" &go.string."Sockets"&go.string."Sockets"Socketstype."".Sockets%5(0 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."socktest.Sockets"p type.*"".Sockets"runtime.zerovaluetype.inttype."".Status:type.map.bucket[int]"".Status4type.map.hdr[int]"".Status`type."".Sockets.go.string.hdr."Sockets""go.importpath."".type."".Sockets"type..hashfunc104 h,runtime.memhash_varlentype..eqfunc104 h.runtime.memequal_varlentype..alg104 "type..hashfunc104type..eqfunc104:go.string.hdr."socktest.Stat" 2go.string."socktest.Stat"2go.string."socktest.Stat" socktest.Stat,go.string.hdr."Opened" $go.string."Opened"$go.string."Opened"Opened2go.string.hdr."Connected" *go.string."Connected"*go.string."Connected" Connected0go.string.hdr."Listened" (go.string."Listened"(go.string."Listened" Listened0go.string.hdr."Accepted" (go.string."Accepted"(go.string."Accepted" Accepted,go.string.hdr."Closed" $go.string."Closed"$go.string."Closed"Closed4go.string.hdr."OpenFailed" 1353 ,go.string."OpenFailed",go.string."OpenFailed" OpenFailed:go.string.hdr."ConnectFailed" 2go.string."ConnectFailed"2go.string."ConnectFailed" ConnectFailed8go.string.hdr."ListenFailed" 0go.string."ListenFailed"0go.string."ListenFailed" ListenFailed8go.string.hdr."AcceptFailed" 0go.string."AcceptFailed"0go.string."AcceptFailed" AcceptFailed6go.string.hdr."CloseFailed" .go.string."CloseFailed".go.string."CloseFailed" CloseFailed(go.string.hdr."Stat" go.string."Stat" go.string."Stat" 1358 StatTgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals69076ee43f1cead0792b9f36906b1b56 Tgo.string.hdr."func(socktest.Stat) string" Lgo.string."func(socktest.Stat) string"Lgo.string."func(socktest.Stat) string"@6func(socktest.Stat) string2type.func("".Stat) string0 30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(socktest.Stat) string"pDgo.weak.type.*func("".Stat) string"runtime.zerovalue2type.func("".Stat) string2type.func("".Stat) stringtype."".Stattype.stringvgo.typelink.func(socktest.Stat) string func("".Stat) string2type.func("".Stat) stringtype."".Stath (08@HPX`R0type..alg104@runtime.gcbits.P:go.string.hdr."socktest.Stat"ptype.*"".Stat"runtime.zerovaluetype."".Stat,go.string.hdr."Family"type.int(go.string.hdr."Type"type.int0go.string.hdr."Protocol"type.int,go.string.hdr."Opened"type.uint642go.string.hdr."Connected"type.uint640go.string.hdr."Listened"type.uint640go.string.hdr."Accepted"type.uint64,go.string.hdr."Closed"type.uint644go.string.hdr."OpenFailed"type.uint64:go.string.hdr."ConnectFailed"type.uint648go.string.hdr."ListenFailed"type.uint648go.string.hdr."AcceptFailed"type.uint64 6go.string.hdr."CloseFailed" type.uint64` type."".Stat (go.string.hdr."Stat" "go.importpath."". 1364 type."".Stat 1365 ,go.string.hdr."String" 1366 $type.func() string 1367 2type.func("".Stat) string 1368 """.(*Stat).String 1369 "".Stat.String<go.string.hdr."*socktest.Stat" 4go.string."*socktest.Stat"4go.string."*socktest.Stat" *socktest.StatVgo.string.hdr."func(*socktest.Stat) string" Ngo.string."func(*socktest.Stat) string"Ngo.string."func(*socktest.Stat) string"@8func(*socktest.Stat) string4type.func(*"".Stat) string@ 30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(*socktest.Stat) string"pFgo.weak.type.*func(*"".Stat) string"runtime.zerovalue4type.func(*"".Stat) string4type.func(*"".Stat) stringtype.*"".Stattype.stringzgo.typelink.func(*socktest.Stat) string func(*"".Stat) string4type.func(*"".Stat) stringtype.*"".Stat560 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*socktest.Stat"p,go.weak.type.**"".Stat"runtime.zerovaluetype."".Stat`type.*"".Stattype.*"".Stat,go.string.hdr."String"$type.func() string4type.func(*"".Stat) string""".(*Stat).String""".(*Stat).StringBgo.string.hdr."[]socktest.Cookie" :go.string."[]socktest.Cookie":go.string."[]socktest.Cookie"0$[]socktest.Cookie type.[]"".CookieZ0 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."[]socktest.Cookie"p2go.weak.type.*[]"".Cookie"runtime.zerovaluetype."".CookieRgo.typelink.[]socktest.Cookie []"".Cookie type.[]"".CookieDgo.string.hdr."[8]socktest.Cookie" <go.string."[8]socktest.Cookie"<go.string."[8]socktest.Cookie"0&[8]socktest.Cookie"type.[8]"".Cookie@m60type..alg64@runtime.gcbits.PDgo.string.hdr."[8]socktest.Cookie"p4go.weak.type.*[8]"".Cookie"runtime.zerovaluetype."".Cookie type.[]"".CookieVgo.typelink.[8]socktest.Cookie [8]"".Cookie"type.[8]"".Cookie@go.string.hdr."[]*socktest.Stat" 8go.string."[]*socktest.Stat"8go.string."[]*socktest.Stat"0"[]*socktest.Stattype.[]*"".StatR0 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."[]*socktest.Stat"p0go.weak.type.*[]*"".Stat"runtime.zerovaluetype.*"".StatNgo.typelink.[]*socktest.Stat []*"".Stattype.[]*"".StatBgo.string.hdr."[8]*socktest.Stat" :go.string."[8]*socktest.Stat":go.string."[8]*socktest.Stat"0$[8]*socktest.Stat type.[8]*"".Stat@@da0type..alg64@"runtime.gcbits.ffPBgo.string.hdr."[8]*socktest.Stat"p2go.weak.type.*[8]*"".Stat"runtime.zerovaluetype.*"".Stattype.[]*"".StatRgo.typelink.[8]*socktest.Stat [8]*"".Stat type.[8]*"".Stattgo.string.hdr."*map.bucket[socktest.Cookie]*socktest.Stat" *lgo.string."*map.bucket[socktest.Cookie]*socktest.Stat"lgo.string."*map.bucket[socktest.Cookie]*socktest.Stat"`V*map.bucket[socktest.Cookie]*socktest.StatFtype.*map.bucket["".Cookie]*"".Stat)60 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."*map.bucket[socktest.Cookie]*socktest.Stat"pXgo.weak.type.**map.bucket["".Cookie]*"".Stat"runtime.zerovalueDtype.map.bucket["".Cookie]*"".Statrgo.string.hdr."map.bucket[socktest.Cookie]*socktest.Stat" )jgo.string."map.bucket[socktest.Cookie]*socktest.Stat"jgo.string."map.bucket[socktest.Cookie]*socktest.Stat"`Tmap.bucket[socktest.Cookie]*socktest.StatDtype.map.bucket["".Cookie]*"".StatH0 runtime.algarray@*runtime.gcbits.00fe03Prgo.string.hdr."map.bucket[socktest.Cookie]*socktest.Stat"pVgo.weak.type.*map.bucket["".Cookie]*"".Stat"runtime.zerovalueDtype.map.bucket["".Cookie]*"".Stat.go.string.hdr."topbits"type.[8]uint8(go.string.hdr."keys""type.[8]"".Cookie,go.string.hdr."values" type.[8]*"".Stat0go.string.hdr."overflow"Ftype.*map.bucket["".Cookie]*"".Statlgo.string.hdr."map.hdr[socktest.Cookie]*socktest.Stat" &dgo.string."map.hdr[socktest.Cookie]*socktest.Stat"dgo.string."map.hdr[socktest.Cookie]*socktest.Stat"PNmap.hdr[socktest.Cookie]*socktest.Stat>type.map.hdr["".Cookie]*"".Stat00 (,0 runtime.algarray@"runtime.gcbits.2cPlgo.string.hdr."map.hdr[socktest.Cookie]*socktest.Stat"pPgo.weak.type.*map.hdr["".Cookie]*"".Stat"runtime.zerovalue>type.map.hdr["".Cookie]*"".Stat*go.string.hdr."count"type.int*go.string.hdr."flags"type.uint8"go.string.hdr."B"type.uint8*go.string.hdr."hash0"type.uint32.go.string.hdr."buckets"Ftype.*map.bucket["".Cookie]*"".Stat4go.string.hdr."oldbuckets"Ftype.*map.bucket["".Cookie]*"".Stat2go.string.hdr."nevacuate"type.uintptr0go.string.hdr."overflow"&type.unsafe.Pointer>go.string.hdr."*socktest.stats" 6go.string."*socktest.stats"6go.string."*socktest.stats" *socktest.stats*go.string.hdr."stats" "go.string."stats""go.string."stats"stats2go.string.hdr."getLocked" *go.string."getLocked"*go.string."getLocked" getLockedTgclocalsd46690261dcd0b3c235f526f98703504@@ Tgclocalsaa78dd314067467370cee841338f6221@@go.string.hdr."func(*socktest.stats, socktest.Cookie) *socktest.Stat" 5go.string."func(*socktest.stats, socktest.Cookie) *socktest.Stat"go.string."func(*socktest.stats, socktest.Cookie) *socktest.Stat"plfunc(*socktest.stats, socktest.Cookie) *socktest.StatPtype.func(*"".stats, "".Cookie) *"".StatUq30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*socktest.stats, socktest.Cookie) *socktest.Stat"pbgo.weak.type.*func(*"".stats, "".Cookie) *"".Stat"runtime.zerovaluePtype.func(*"".stats, "".Cookie) *"".StatPtype.func(*"".stats, "".Cookie) *"".Stattype.*"".statstype."".Cookietype.*"".Statgo.typelink.func(*socktest.stats, socktest.Cookie) *socktest.Stat func(*"".stats, "".Cookie) *"".StatPtype.func(*"".stats, "".Cookie) *"".Stathgo.string.hdr."func(socktest.Cookie) *socktest.Stat" $`go.string."func(socktest.Cookie) *socktest.Stat"`go.string."func(socktest.Cookie) *socktest.Stat"PJfunc(socktest.Cookie) *socktest.Stat:type.func("".Cookie) *"".StatuI30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(socktest.Cookie) *socktest.Stat"pLgo.weak.type.*func("".Cookie) *"".Stat"runtime.zerovalue:type.func("".Cookie) *"".Stat:type.func("".Cookie) *"".Stattype."".Cookietype.*"".Statgo.typelink.func(socktest.Cookie) *socktest.Stat func("".Cookie) *"".Stat:type.func("".Cookie) *"".Stattype.*"".stats60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*socktest.stats"p.go.weak.type.**"".stats"runtime.zerovaluetype."".stats`type.*"".statstype.*"".stats2go.string.hdr."getLocked""go.importpath."".:type.func("".Cookie) *"".StatPtype.func(*"".stats, "".Cookie) *"".Stat*"".(*stats).getLocked*"".(*stats).getLocked<go.string.hdr."socktest.stats" 4go.string."socktest.stats"4go.string."socktest.stats" socktest.statsgo.string.hdr."func(socktest.stats, socktest.Cookie) *socktest.Stat" 4go.string."func(socktest.stats, socktest.Cookie) *socktest.Stat"go.string."func(socktest.stats, socktest.Cookie) *socktest.Stat"pjfunc(socktest.stats, socktest.Cookie) *socktest.StatNtype.func("".stats, "".Cookie) *"".Stat230 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(socktest.stats, socktest.Cookie) *socktest.Stat"p`go.weak.type.*func("".stats, "".Cookie) *"".Stat"runtime.zerovalueNtype.func("".stats, "".Cookie) *"".StatNtype.func("".stats, "".Cookie) *"".Stattype."".statstype."".Cookietype.*"".Statgo.typelink.func(socktest.stats, socktest.Cookie) *socktest.Stat func("".stats, "".Cookie) *"".StatNtype.func("".stats, "".Cookie) *"".Stattype."".stats`g5&0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."socktest.stats"ptype.*"".stats"runtime.zerovaluetype."".Cookietype.*"".StatDtype.map.bucket["".Cookie]*"".Stat>type.map.hdr["".Cookie]*"".Stat`type."".stats*go.string.hdr."stats""go.importpath."".type."".stats2go.string.hdr."getLocked""go.importpath."".:type.func("".Cookie) *"".StatNtype.func("".stats, "".Cookie) *"".Stat$"".stats.getLocked$"".stats.getLocked&runtime.gcbits.2006 >go.string.hdr."socktest.Switch" 6go.string."socktest.Switch"6go.string."socktest.Switch" socktest.Switch(go.string.hdr."once" go.string."once" go.string."once" 1375 once&go.string.hdr."fmu" go.string."fmu"go.string."fmu"fmu*go.string.hdr."fltab" "go.string."fltab""go.string."fltab"fltab&go.string.hdr."smu" go.string."smu"go.string."smu"smu*go.string.hdr."sotab" "go.string."sotab""go.string."sotab"sotab,go.string.hdr."Switch" $go.string."Switch"$go.string."Switch"Switchtype."".SwitchXXg(0HP80 runtime.algarray@&runtime.gcbits.2006P>go.string.hdr."socktest.Switch"ptype.*"".Switch"runtime.zerovaluetype."".Switch(go.string.hdr."once""go.importpath."".type.sync.Once&go.string.hdr."fmu""go.importpath.""."type.sync.RWMutex*go.string.hdr."fltab""go.importpath."".@type.map["".FilterType]"".Filter&go.string.hdr."smu""go.importpath.""."type.sync.RWMutex*go.string.hdr."sotab""go.importpath."".type."".Sockets*go.string.hdr."stats""go.importpath."".type."".stats`type."".Switch,go.string.hdr."Switch""go.importpath."".type."".Switch@go.string.hdr."*socktest.Switch" 8go.string."*socktest.Switch"8go.string."*socktest.Switch"0"*socktest.Switchgo.string.hdr."func(*socktest.Switch, int) (int, syscall.Sockaddr, error)" :go.string."func(*socktest.Switch, int) (int, syscall.Sockaddr, error)"go.string."func(*socktest.Switch, int) (int, syscall.Sockaddr, error)"vfunc(*socktest.Switch, int) (int, syscall.Sockaddr, error)rtype.func(*"".Switch, int) (int, syscall.Sockaddr, error)=*30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*socktest.Switch, int) (int, syscall.Sockaddr, error)"pgo.weak.type.*func(*"".Switch, int) (int, syscall.Sockaddr, error)"runtime.zerovaluertype.func(*"".Switch, int) (int, syscall.Sockaddr, error)rtype.func(*"".Switch, int) (int, syscall.Sockaddr, error)type.*"".Switchtype.inttype.int*type.syscall.Sockaddrtype.errorgo.typelink.func(*socktest.Switch, int) (int, syscall.Sockaddr, error) func(*"".Switch, int) (int, syscall.Sockaddr, error)rtype.func(*"".Switch, int) (int, syscall.Sockaddr, error)bgo.string.hdr."func(*socktest.Switch, int) error" !Zgo.string."func(*socktest.Switch, int) error"Zgo.string."func(*socktest.Switch, int) error"PDfunc(*socktest.Switch, int) error@type.func(*"".Switch, int) errorW~30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*socktest.Switch, int) error"pRgo.weak.type.*func(*"".Switch, int) error"runtime.zerovalue@type.func(*"".Switch, int) error@type.func(*"".Switch, int) errortype.*"".Switchtype.inttype.errorgo.typelink.func(*socktest.Switch, int) error func(*"".Switch, int) error@type.func(*"".Switch, int) errorgo.string.hdr."func(*socktest.Switch, int, syscall.Sockaddr) error" 3~go.string."func(*socktest.Switch, int, syscall.Sockaddr) error"~go.string."func(*socktest.Switch, int, syscall.Sockaddr) error"phfunc(*socktest.Switch, int, syscall.Sockaddr) errordtype.func(*"".Switch, int, syscall.Sockaddr) error+30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*socktest.Switch, int, syscall.Sockaddr) error"pvgo.weak.type.*func(*"".Switch, int, syscall.Sockaddr) error"runtime.zerovaluedtype.func(*"".Switch, int, syscall.Sockaddr) errordtype.func(*"".Switch, int, syscall.Sockaddr) errortype.*"".Switchtype.int*type.syscall.Sockaddrtype.errorgo.typelink.func(*socktest.Switch, int, syscall.Sockaddr) error func(*"".Switch, int, syscall.Sockaddr) errordtype.func(*"".Switch, int, syscall.Sockaddr) errorgo.string.hdr."func(*socktest.Switch, int, int, int) (int, error)" 2|go.string."func(*socktest.Switch, int, int, int) (int, error)"|go.string."func(*socktest.Switch, int, int, int) (int, error)"pffunc(*socktest.Switch, int, int, int) (int, error)btype.func(*"".Switch, int, int, int) (int, error)7aE30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*socktest.Switch, int, int, int) (int, error)"ptgo.weak.type.*func(*"".Switch, int, int, int) (int, error)"runtime.zerovaluebtype.func(*"".Switch, int, int, int) (int, error)btype.func(*"".Switch, int, int, int) (int, error)type.*"".Switchtype.inttype.inttype.inttype.inttype.errorgo.typelink.func(*socktest.Switch, int, int, int) (int, error) func(*"".Switch, int, int, int) (int, error)btype.func(*"".Switch, int, int, int) (int, error)lgo.string.hdr."func(*socktest.Switch, int, int) error" &dgo.string."func(*socktest.Switch, int, int) error"dgo.string."func(*socktest.Switch, int, int) error"PNfunc(*socktest.Switch, int, int) errorJtype.func(*"".Switch, int, int) error]30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*socktest.Switch, int, int) error"p\go.weak.type.*func(*"".Switch, int, int) error"runtime.zerovalueJtype.func(*"".Switch, int, int) errorJtype.func(*"".Switch, int, int) errortype.*"".Switchtype.inttype.inttype.errorgo.typelink.func(*socktest.Switch, int, int) error func(*"".Switch, int, int) errorJtype.func(*"".Switch, int, int) errorgo.string.hdr."func(*socktest.Switch, socktest.FilterType, socktest.Filter)" <go.string."func(*socktest.Switch, socktest.FilterType, socktest.Filter)"go.string."func(*socktest.Switch, socktest.FilterType, socktest.Filter)"zfunc(*socktest.Switch, socktest.FilterType, socktest.Filter)^type.func(*"".Switch, "".FilterType, "".Filter)b 630 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*socktest.Switch, socktest.FilterType, socktest.Filter)"ppgo.weak.type.*func(*"".Switch, "".FilterType, "".Filter)"runtime.zerovalue^type.func(*"".Switch, "".FilterType, "".Filter)^type.func(*"".Switch, "".FilterType, "".Filter)type.*"".Switch$type."".FilterTypetype."".Filtergo.typelink.func(*socktest.Switch, socktest.FilterType, socktest.Filter) func(*"".Switch, "".FilterType, "".Filter)^type.func(*"".Switch, "".FilterType, "".Filter)ngo.string.hdr."func(*socktest.Switch) socktest.Sockets" 'fgo.string."func(*socktest.Switch) socktest.Sockets"fgo.string."func(*socktest.Switch) socktest.Sockets"PPfunc(*socktest.Switch) socktest.Sockets@type.func(*"".Switch) "".Sockets8#30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*socktest.Switch) socktest.Sockets"pRgo.weak.type.*func(*"".Switch) "".Sockets"runtime.zerovalue@type.func(*"".Switch) "".Sockets@type.func(*"".Switch) "".Socketstype.*"".Switchtype."".Socketsgo.typelink.func(*socktest.Switch) socktest.Sockets func(*"".Switch) "".Sockets@type.func(*"".Switch) "".Sockets>go.string.hdr."[]socktest.Stat" 6go.string."[]socktest.Stat"6go.string."[]socktest.Stat" []socktest.Stattype.[]"".Stat0 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."[]socktest.Stat"p.go.weak.type.*[]"".Stat"runtime.zerovaluetype."".StatJgo.typelink.[]socktest.Stat []"".Stattype.[]"".Statlgo.string.hdr."func(*socktest.Switch) []socktest.Stat" &dgo.string."func(*socktest.Switch) []socktest.Stat"dgo.string."func(*socktest.Switch) []socktest.Stat"PNfunc(*socktest.Switch) []socktest.Stat>type.func(*"".Switch) []"".Statg=30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*socktest.Switch) []socktest.Stat"pPgo.weak.type.*func(*"".Switch) []"".Stat"runtime.zerovalue>type.func(*"".Switch) []"".Stat>type.func(*"".Switch) []"".Stattype.*"".Switchtype.[]"".Statgo.typelink.func(*socktest.Switch) []socktest.Stat func(*"".Switch) []"".Stat>type.func(*"".Switch) []"".Statgo.string.hdr."func(*socktest.Switch, int, int, int, int) *socktest.Status" ;go.string."func(*socktest.Switch, int, int, int, int) *socktest.Status"go.string."func(*socktest.Switch, int, int, int, int) *socktest.Status"xfunc(*socktest.Switch, int, int, int, int) *socktest.Statushtype.func(*"".Switch, int, int, int, int) *"".Statusp30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*socktest.Switch, int, int, int, int) *socktest.Status"pzgo.weak.type.*func(*"".Switch, int, int, int, int) *"".Status"runtime.zerovaluehtype.func(*"".Switch, int, int, int, int) *"".Statushtype.func(*"".Switch, int, int, int, int) *"".Statustype.*"".Switchtype.inttype.inttype.inttype.inttype.*"".Statusgo.typelink.func(*socktest.Switch, int, int, int, int) *socktest.Status func(*"".Switch, int, int, int, int) *"".Statushtype.func(*"".Switch, int, int, int, int) *"".StatusLgo.string.hdr."func(*socktest.Switch)" Dgo.string."func(*socktest.Switch)"Dgo.string."func(*socktest.Switch)"0.func(*socktest.Switch)*type.func(*"".Switch)30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(*socktest.Switch)"p<go.weak.type.*func(*"".Switch)"runtime.zerovalue*type.func(*"".Switch)*type.func(*"".Switch)type.*"".Switchfgo.typelink.func(*socktest.Switch) func(*"".Switch)*type.func(*"".Switch)xgo.string.hdr."func(*socktest.Switch, int) *socktest.Status" ,pgo.string."func(*socktest.Switch, int) *socktest.Status"pgo.string."func(*socktest.Switch, int) *socktest.Status"`Zfunc(*socktest.Switch, int) *socktest.StatusJtype.func(*"".Switch, int) *"".StatusoO30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*socktest.Switch, int) *socktest.Status"p\go.weak.type.*func(*"".Switch, int) *"".Status"runtime.zerovalueJtype.func(*"".Switch, int) *"".StatusJtype.func(*"".Switch, int) *"".Statustype.*"".Switchtype.inttype.*"".Statusgo.typelink.func(*socktest.Switch, int) *socktest.Status func(*"".Switch, int) *"".StatusJtype.func(*"".Switch, int) *"".Status,go.string.hdr."Accept" $go.string."Accept"$go.string."Accept"Acceptpgo.string.hdr."func(int) (int, syscall.Sockaddr, error)" (hgo.string."func(int) (int, syscall.Sockaddr, error)"hgo.string."func(int) (int, syscall.Sockaddr, error)"`Rfunc(int) (int, syscall.Sockaddr, error)Ztype.func(int) (int, syscall.Sockaddr, error)d30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(int) (int, syscall.Sockaddr, error)"plgo.weak.type.*func(int) (int, syscall.Sockaddr, error)"runtime.zerovalueZtype.func(int) (int, syscall.Sockaddr, error)Ztype.func(int) (int, syscall.Sockaddr, error)type.inttype.int*type.syscall.Sockaddrtype.errorgo.typelink.func(int) (int, syscall.Sockaddr, error) func(int) (int, syscall.Sockaddr, error)Ztype.func(int) (int, syscall.Sockaddr, error)*go.string.hdr."Close" "go.string."Close""go.string."Close"Close>go.string.hdr."func(int) error" 6go.string."func(int) error"6go.string."func(int) error" func(int) error(type.func(int) error&30 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."func(int) error"p:go.weak.type.*func(int) error"runtime.zerovalue(type.func(int) error(type.func(int) errortype.inttype.errorVgo.typelink.func(int) error func(int) error(type.func(int) error.go.string.hdr."Connect" &go.string."Connect"&go.string."Connect"Connectbgo.string.hdr."func(int, syscall.Sockaddr) error" !Zgo.string."func(int, syscall.Sockaddr) error"Zgo.string."func(int, syscall.Sockaddr) error"PDfunc(int, syscall.Sockaddr) errorLtype.func(int, syscall.Sockaddr) errorm30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(int, syscall.Sockaddr) error"p^go.weak.type.*func(int, syscall.Sockaddr) error"runtime.zerovalueLtype.func(int, syscall.Sockaddr) errorLtype.func(int, syscall.Sockaddr) errortype.int*type.syscall.Sockaddrtype.errorgo.typelink.func(int, syscall.Sockaddr) error func(int, syscall.Sockaddr) errorLtype.func(int, syscall.Sockaddr) error:go.string.hdr."GetsockoptInt" 2go.string."GetsockoptInt"2go.string."GetsockoptInt" GetsockoptInt`go.string.hdr."func(int, int, int) (int, error)" Xgo.string."func(int, int, int) (int, error)"Xgo.string."func(int, int, int) (int, error)"PBfunc(int, int, int) (int, error)Jtype.func(int, int, int) (int, error))y30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(int, int, int) (int, error)"p\go.weak.type.*func(int, int, int) (int, error)"runtime.zerovalueJtype.func(int, int, int) (int, error)Jtype.func(int, int, int) (int, error)type.inttype.inttype.inttype.inttype.errorgo.typelink.func(int, int, int) (int, error) func(int, int, int) (int, error)Jtype.func(int, int, int) (int, error),go.string.hdr."Listen" $go.string."Listen"$go.string."Listen"ListenHgo.string.hdr."func(int, int) error" @go.string."func(int, int) error"@go.string."func(int, int) error"0*func(int, int) error2type.func(int, int) errorPt@30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func(int, int) error"pDgo.weak.type.*func(int, int) error"runtime.zerovalue2type.func(int, int) error2type.func(int, int) errortype.inttype.inttype.errorjgo.typelink.func(int, int) error func(int, int) error2type.func(int, int) error&go.string.hdr."Set" go.string."Set"go.string."Set"Settgo.string.hdr."func(socktest.FilterType, socktest.Filter)" *lgo.string."func(socktest.FilterType, socktest.Filter)"lgo.string."func(socktest.FilterType, socktest.Filter)"`Vfunc(socktest.FilterType, socktest.Filter)Ftype.func("".FilterType, "".Filter)> 30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(socktest.FilterType, socktest.Filter)"pXgo.weak.type.*func("".FilterType, "".Filter)"runtime.zerovalueFtype.func("".FilterType, "".Filter)Ftype.func("".FilterType, "".Filter)$type."".FilterTypetype."".Filtergo.typelink.func(socktest.FilterType, socktest.Filter) func("".FilterType, "".Filter)Ftype.func("".FilterType, "".Filter),go.string.hdr."Socket" $go.string."Socket"$go.string."Socket"SocketNgo.string.hdr."func() socktest.Sockets" Fgo.string."func() socktest.Sockets"Fgo.string."func() socktest.Sockets"00func() socktest.Sockets,type.func() "".SocketsBM30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func() socktest.Sockets"p>go.weak.type.*func() "".Sockets"runtime.zerovalue,type.func() "".Sockets,type.func() "".Socketstype."".Socketsjgo.typelink.func() socktest.Sockets func() "".Sockets,type.func() "".Sockets*go.string.hdr."Stats" "go.string."Stats""go.string."Stats"StatsLgo.string.hdr."func() []socktest.Stat" Dgo.string."func() []socktest.Stat"Dgo.string."func() []socktest.Stat"0.func() []socktest.Stat*type.func() []"".Stat/30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func() []socktest.Stat"p<go.weak.type.*func() []"".Stat"runtime.zerovalue*type.func() []"".Stat*type.func() []"".Stattype.[]"".Statfgo.typelink.func() []socktest.Stat func() []"".Stat*type.func() []"".Stat2go.string.hdr."addLocked" *go.string."addLocked"*go.string."addLocked" addLockedrgo.string.hdr."func(int, int, int, int) *socktest.Status" )jgo.string."func(int, int, int, int) *socktest.Status"jgo.string."func(int, int, int, int) *socktest.Status"`Tfunc(int, int, int, int) *socktest.StatusPtype.func(int, int, int, int) *"".StatusjD30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(int, int, int, int) *socktest.Status"pbgo.weak.type.*func(int, int, int, int) *"".Status"runtime.zerovaluePtype.func(int, int, int, int) *"".StatusPtype.func(int, int, int, int) *"".Statustype.inttype.inttype.inttype.inttype.*"".Statusgo.typelink.func(int, int, int, int) *socktest.Status func(int, int, int, int) *"".StatusPtype.func(int, int, int, int) *"".Status(go.string.hdr."init" go.string."init" go.string."init" 1384 init,go.string.hdr."func()" $go.string."func()"$go.string."func()"func()type.func()30 runtime.algarray@"runtime.gcbits.01P,go.string.hdr."func()"p(go.weak.type.*func()"runtime.zerovaluetype.func()type.func()2go.typelink.func() func()type.func(),go.string.hdr."sockso" $go.string."sockso"$go.string."sockso"socksoTgo.string.hdr."func(int) *socktest.Status" Lgo.string."func(int) *socktest.Status"Lgo.string."func(int) *socktest.Status"@6func(int) *socktest.Status2type.func(int) *"".Statusd30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int) *socktest.Status"pDgo.weak.type.*func(int) *"".Status"runtime.zerovalue2type.func(int) *"".Status2type.func(int) *"".Statustype.inttype.*"".Statusvgo.typelink.func(int) *socktest.Status func(int) *"".Status2type.func(int) *"".Statustype.*"".Switch 1385 1386 Cp60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*socktest.Switch"p0go.weak.type.**"".Switch"runtime.zerovaluetype."".Switch`type.*"".Switchtype.*"".Switch,go.string.hdr."Accept"Ztype.func(int) (int, syscall.Sockaddr, error)rtype.func(*"".Switch, int) (int, syscall.Sockaddr, error)&"".(*Switch).Accept&"".(*Switch).Accept*go.string.hdr."Close"(type.func(int) error@type.func(*"".Switch, int) error$"".(*Switch).Close$"".(*Switch).Close.go.string.hdr."Connect"Ltype.func(int, syscall.Sockaddr) errordtype.func(*"".Switch, int, syscall.Sockaddr) error("".(*Switch).Connect("".(*Switch).Connect:go.string.hdr."GetsockoptInt"Jtype.func(int, int, int) (int, error)btype.func(*"".Switch, int, int, int) (int, error)4"".(*Switch).GetsockoptInt4"".(*Switch).GetsockoptInt,go.string.hdr."Listen"2type.func(int, int) errorJtype.func(*"".Switch, int, int) error&"".(*Switch).Listen&"".(*Switch).Listen&go.string.hdr."Set"Ftype.func("".FilterType, "".Filter)^type.func(*"".Switch, "".FilterType, "".Filter) "".(*Switch).Set "".(*Switch).Set,go.string.hdr."Socket"Jtype.func(int, int, int) (int, error)btype.func(*"".Switch, int, int, int) (int, error)&"".(*Switch).Socket&"".(*Switch).Socket.go.string.hdr."Sockets",type.func() "".Sockets@type.func(*"".Switch) "".Sockets("".(*Switch).Sockets("".(*Switch).Sockets*go.string.hdr."Stats"*type.func() []"".Stat>type.func(*"".Switch) []"".Stat$"".(*Switch).Stats$"".(*Switch).Stats2go.string.hdr."addLocked""go.importpath."".Ptype.func(int, int, int, int) *"".Status htype.func(*"".Switch, int, int, int, int) *"".Status ,"".(*Switch).addLocked ,"".(*Switch).addLocked (go.string.hdr."init" "go.importpath."". type.func() *type.func(*"".Switch) """.(*Switch).init 1389 """.(*Switch).init 1390 ,go.string.hdr."sockso" 1391 "go.importpath."". 1392 2type.func(int) *"".Status 1393 Jtype.func(*"".Switch, int) *"".Status 1394 &"".(*Switch).sockso 1395 &"".(*Switch).sockso>go.string.hdr."**socktest.Stat" 6go.string."**socktest.Stat"6go.string."**socktest.Stat" **socktest.Stattype.**"".Stat+D/60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."**socktest.Stat"p.go.weak.type.***"".Stat"runtime.zerovaluetype.*"".Statngo.string.hdr."*map.hdr[socktest.Cookie]*socktest.Stat" 'fgo.string."*map.hdr[socktest.Cookie]*socktest.Stat"fgo.string."*map.hdr[socktest.Cookie]*socktest.Stat"PP*map.hdr[socktest.Cookie]*socktest.Stat@type.*map.hdr["".Cookie]*"".Stat%M'60 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."*map.hdr[socktest.Cookie]*socktest.Stat"pRgo.weak.type.**map.hdr["".Cookie]*"".Stat"runtime.zerovalue>type.map.hdr["".Cookie]*"".Statngo.string.hdr."map.iter[socktest.Cookie]*socktest.Stat" 'fgo.string."map.iter[socktest.Cookie]*socktest.Stat"fgo.string."map.iter[socktest.Cookie]*socktest.Stat"PPmap.iter[socktest.Cookie]*socktest.Stat&go.string.hdr."key" go.string."key"go.string."key"key&go.string.hdr."val" go.string."val"go.string."val"val"go.string.hdr."t" go.string."t"go.string."t"t"go.string.hdr."h" go.string."h"go.string."h"h(go.string.hdr."bptr" go.string."bptr" go.string."bptr" 1398 bptr2go.string.hdr."overflow0" *go.string."overflow0"*go.string."overflow0" overflow02go.string.hdr."overflow1" *go.string."overflow1"*go.string."overflow1" overflow16go.string.hdr."startBucket" .go.string."startBucket".go.string."startBucket" startBucket*go.string.hdr."stuff" "go.string."stuff""go.string."stuff"stuff,go.string.hdr."bucket" $go.string."bucket"$go.string."bucket"bucket6go.string.hdr."checkBucket" .go.string."checkBucket".go.string."checkBucket" checkBucket@type.map.iter["".Cookie]*"".Stat `@J (08@HPX<0 runtime.algarray@"runtime.gcbits.ffPngo.string.hdr."map.iter[socktest.Cookie]*socktest.Stat"pRgo.weak.type.*map.iter["".Cookie]*"".Stat"runtime.zerovalue@type.map.iter["".Cookie]*"".Stat&go.string.hdr."key"type.*"".Cookie&go.string.hdr."val"type.**"".Stat"go.string.hdr."t"type.*uint8"go.string.hdr."h"@type.*map.hdr["".Cookie]*"".Stat.go.string.hdr."buckets"Ftype.*map.bucket["".Cookie]*"".Stat(go.string.hdr."bptr"Ftype.*map.bucket["".Cookie]*"".Stat2go.string.hdr."overflow0"&type.unsafe.Pointer2go.string.hdr."overflow1"&type.unsafe.Pointer6go.string.hdr."startBucket"type.uintptr*go.string.hdr."stuff"type.uintptr,go.string.hdr."bucket"type.uintptr6go.string.hdr."checkBucket"type.uintptrXgo.string.hdr."*map.hdr[int]socktest.Status" Pgo.string."*map.hdr[int]socktest.Status"Pgo.string."*map.hdr[int]socktest.Status"@:*map.hdr[int]socktest.Status6type.*map.hdr[int]"".StatusUs60 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."*map.hdr[int]socktest.Status"pHgo.weak.type.**map.hdr[int]"".Status"runtime.zerovalue4type.map.hdr[int]"".StatusXgo.string.hdr."map.iter[int]socktest.Status" Pgo.string."map.iter[int]socktest.Status"Pgo.string."map.iter[int]socktest.Status"@:map.iter[int]socktest.Status6type.map.iter[int]"".Status `@ (08@HPX<0 runtime.algarray@"runtime.gcbits.ffPXgo.string.hdr."map.iter[int]socktest.Status"pHgo.weak.type.*map.iter[int]"".Status"runtime.zerovalue6type.map.iter[int]"".Status&go.string.hdr."key"type.*int&go.string.hdr."val"type.*"".Status"go.string.hdr."t"type.*uint8"go.string.hdr."h"6type.*map.hdr[int]"".Status.go.string.hdr."buckets"<type.*map.bucket[int]"".Status(go.string.hdr."bptr"<type.*map.bucket[int]"".Status2go.string.hdr."overflow0"&type.unsafe.Pointer2go.string.hdr."overflow1"&type.unsafe.Pointer6go.string.hdr."startBucket"type.uintptr*go.string.hdr."stuff"type.uintptr,go.string.hdr."bucket"type.uintptr6go.string.hdr."checkBucket"type.uintptr"runtime.gcbits.038go.string.hdr."interface {}" 0go.string."interface {}"0go.string."interface {}" interface {}"type.interface {}W0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."interface {}"p4go.weak.type.*interface {}"runtime.zerovalue"type.interface {}<go.string.hdr."[]interface {}" 4go.string."[]interface {}"4go.string."[]interface {}" []interface {}&type.[]interface {}p/0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]interface {}"p8go.weak.type.*[]interface {}"runtime.zerovalue"type.interface {}Rgo.typelink.[]interface {} []interface {}&type.[]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787 Tgclocals51af24152615272c3d9efc8538f95767 <type..hashfunc.[5]interface {}4type..hash.[5]interface {}8type..eqfunc.[5]interface {}0type..eq.[5]interface {}2type..alg.[5]interface {} <type..hashfunc.[5]interface {}8type..eqfunc.[5]interface {}&runtime.gcbits.ff03>go.string.hdr."[5]interface {}" 6go.string."[5]interface {}"6go.string."[5]interface {}" [5]interface {}(type.[5]interface {}PP#02type..alg.[5]interface {}@&runtime.gcbits.ff03P>go.string.hdr."[5]interface {}"p:go.weak.type.*[5]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[5]interface {} [5]interface {}(type.[5]interface {}@go.string.hdr."*[5]interface {}" 8go.string."*[5]interface {}"8go.string."*[5]interface {}"0"*[5]interface {}*type.*[5]interface {}?@60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[5]interface {}"p<go.weak.type.**[5]interface {}"runtime.zerovalue(type.[5]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787 Tgclocals51af24152615272c3d9efc8538f95767 >type..hashfunc.[13]interface {}6type..hash.[13]interface {}:type..eqfunc.[13]interface {}2type..eq.[13]interface {}4type..alg.[13]interface {} >type..hashfunc.[13]interface {}:type..eqfunc.[13]interface {}.runtime.gcbits.ffffff03@go.string.hdr."[13]interface {}" 8go.string."[13]interface {}"8go.string."[13]interface {}"0"[13]interface {}*type.[13]interface {}(s 04type..alg.[13]interface {}@.runtime.gcbits.ffffff03P@go.string.hdr."[13]interface {}"p<go.weak.type.*[13]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Zgo.typelink.[13]interface {} [13]interface {}*type.[13]interface {}Bgo.string.hdr."*[13]interface {}" :go.string."*[13]interface {}":go.string."*[13]interface {}"0$*[13]interface {},type.*[13]interface {}kV@60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*[13]interface {}"p>go.weak.type.**[13]interface {}"runtime.zerovalue*type.[13]interface {}"runtime.gcbits.02pgo.string.hdr."struct { F uintptr; R *socktest.Switch }" (hgo.string."struct { F uintptr; R *socktest.Switch }"hgo.string."struct { F uintptr; R *socktest.Switch }"`Rstruct { F uintptr; R *socktest.Switch }"go.string.hdr."F" go.string."F"go.string."F"F"go.string.hdr."R" go.string."R"go.string."R"RNtype.struct { F uintptr; R *"".Switch }0 runtime.algarray@"runtime.gcbits.02Ppgo.string.hdr."struct { F uintptr; R *socktest.Switch }"p`go.weak.type.*struct { F uintptr; R *"".Switch }"runtime.zerovalueNtype.struct { F uintptr; R *"".Switch }"go.string.hdr."F"type.uintptr"go.string.hdr."R"type.*"".Switchrgo.string.hdr."*struct { F uintptr; R *socktest.Switch }" )jgo.string."*struct { F uintptr; R *socktest.Switch }"jgo.string."*struct { F uintptr; R *socktest.Switch }"`T*struct { F uintptr; R *socktest.Switch }Ptype.*struct { F uintptr; R *"".Switch }60 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."*struct { F uintptr; R *socktest.Switch }"pbgo.weak.type.**struct { F uintptr; R *"".Switch }"runtime.zerovalueNtype.struct { F uintptr; R *"".Switch }Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787 Tgclocals51af24152615272c3d9efc8538f95767 <type..hashfunc.[1]interface {}4type..hash.[1]interface {}8type..eqfunc.[1]interface {}0type..eq.[1]interface {}2type..alg.[1]interface {} <type..hashfunc.[1]interface {}8type..eqfunc.[1]interface {}>go.string.hdr."[1]interface {}" 6go.string."[1]interface {}"6go.string."[1]interface {}" [1]interface {}(type.[1]interface {}P[02type..alg.[1]interface {}@"runtime.gcbits.03P>go.string.hdr."[1]interface {}"p:go.weak.type.*[1]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[1]interface {} [1]interface {}(type.[1]interface {}@go.string.hdr."*[1]interface {}" 8go.string."*[1]interface {}"8go.string."*[1]interface {}"0"*[1]interface {}*type.*[1]interface {}560 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[1]interface {}"p<go.weak.type.**[1]interface {}"runtime.zerovalue(type.[1]interface {}Fgo.string.hdr."*[8]socktest.Status" >go.string."*[8]socktest.Status">go.string."*[8]socktest.Status"0(*[8]socktest.Status$type.*[8]"".Statuse60 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."*[8]socktest.Status"p6go.weak.type.**[8]"".Status"runtime.zerovalue"type.[8]"".Status.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime"&go.string.hdr."fmt" go.string."fmt"go.string."fmt"fmt$go.importpath.fmt. go.string."fmt"(go.string.hdr."sync" go.string."sync" go.string."sync" 1420 sync&go.importpath.sync. go.string."sync".go.string.hdr."syscall" &go.string."syscall"&go.string."syscall"syscall,go.importpath.syscall. &go.string."syscall","".(*Cookie).Familyf&"".(*Cookie).Family("".(*Cookie).Typef""".(*Cookie).Type0"".(*Cookie).Protocolf*"".(*Cookie).Protocol.type..hash."".Statusf(type..hash."".Status*type..eq."".Statusf$type..eq."".Status,"".(*Status).Stringf&"".(*Status).String4"".(*AfterFilter).applyf."".(*AfterFilter).apply*"".(*Filter).applyf$"".(*Filter).apply4type..hash.[8]"".Statusf.type..hash.[8]"".Status0type..eq.[8]"".Statusf*type..eq.[8]"".Status("".(*Stat).Stringf""".(*Stat).String0"".(*stats).getLockedf*"".(*stats).getLocked:type..hash.[5]interface {}f4type..hash.[5]interface {}6type..eq.[5]interface {}f0type..eq.[5]interface {}<type..hash.[13]interface {}f6type..hash.[13]interface {}8type..eq.[13]interface {}f2type..eq.[13]interface {}:type..hash.[1]interface {}f4type..hash.[1]interface {}6type..eq.[1]interface {}f0type..eq.[1]interface {}"runtime.zerovaluePgo13ld