1 !<arch> 2 __.PKGDEF 0 0 0 644 57332 ` 3 go object linux amd64 go1.5.1 X:none 4 build id "02c940de37a5ba2e5fa57d1fc37daf64de127b6e" 5 6 $$ 7 package pprof 8 import runtime "runtime" 9 import bufio "bufio" 10 import bytes "bytes" 11 import io "io" 12 import fmt "fmt" 13 import strconv "strconv" 14 import os "os" 15 import template "html/template" 16 import strings "strings" 17 import log "log" 18 import time "time" 19 import http "net/http" 20 import pprof "runtime/pprof" 21 import trace "runtime/trace" 22 type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) } 23 type @"net/http".keyValues struct { @"net/http".key string; @"net/http".values []string } 24 type @"net/http".headerSorter struct { @"net/http".kvs []@"net/http".keyValues } 25 func (@"net/http".s2 *@"net/http".headerSorter "esc:0x1") Len () (? int) { return len(@"net/http".s2.@"net/http".kvs) } 26 func (@"net/http".s2 *@"net/http".headerSorter "esc:0x1") Less (@"net/http".i3 int, @"net/http".j4 int) (? bool) { return @"net/http".s2.@"net/http".kvs[@"net/http".i3].@"net/http".key < @"net/http".s2.@"net/http".kvs[@"net/http".j4].@"net/http".key } 27 func (@"net/http".s1 *@"net/http".headerSorter "esc:0x9") Swap (@"net/http".i2 int, @"net/http".j3 int) { @"net/http".s1.@"net/http".kvs[@"net/http".i2], @"net/http".s1.@"net/http".kvs[@"net/http".j3] = @"net/http".s1.@"net/http".kvs[@"net/http".j3], @"net/http".s1.@"net/http".kvs[@"net/http".i2] } 28 type @"net/http".Header map[string][]string 29 func (@"net/http".h1 @"net/http".Header "esc:0x9") Add (@"net/http".key2 string, @"net/http".value3 string) 30 func (@"net/http".h1 @"net/http".Header "esc:0x1") Del (@"net/http".key2 string "esc:0x1") 31 func (@"net/http".h2 @"net/http".Header "esc:0x1") Get (@"net/http".key3 string "esc:0x1") (? string) 32 func (@"net/http".h1 @"net/http".Header "esc:0x1") Set (@"net/http".key2 string, @"net/http".value3 string) 33 func (@"net/http".h2 @"net/http".Header "esc:0x9") Write (@"net/http".w3 @"io".Writer) (? error) 34 func (@"net/http".h2 @"net/http".Header "esc:0x9") WriteSubset (@"net/http".w3 @"io".Writer, @"net/http".exclude4 map[string]bool "esc:0x1") (? error) 35 func (@"net/http".h2 @"net/http".Header "esc:0x9") @"net/http".clone () (? @"net/http".Header) 36 func (@"net/http".h2 @"net/http".Header "esc:0x1") @"net/http".get (@"net/http".key3 string "esc:0x1") (? string) { var @"net/http".v4 []string; ; @"net/http".v4 = @"net/http".h2[@"net/http".key3]; if len(@"net/http".v4) > 0x0 { return @"net/http".v4[0x0] }; return "" } 37 func (@"net/http".h3 @"net/http".Header "esc:0x9") @"net/http".sortedKeyValues (@"net/http".exclude4 map[string]bool "esc:0x1") (@"net/http".kvs1 []@"net/http".keyValues, @"net/http".hs2 *@"net/http".headerSorter) 38 type @"net/http".ResponseWriter interface { Header() (? @"net/http".Header); Write(? []byte) (? int, ? error); WriteHeader(? int) } 39 import url "net/url" // indirect 40 type @"net/url".Userinfo struct { @"net/url".username string; @"net/url".password string; @"net/url".passwordSet bool } 41 func (@"net/url".u3 *@"net/url".Userinfo "esc:0x22") Password () (? string, ? bool) { if @"net/url".u3.@"net/url".passwordSet { return @"net/url".u3.@"net/url".password, true }; return "", false } 42 func (@"net/url".u2 *@"net/url".Userinfo "esc:0x22") String () (? string) 43 func (@"net/url".u2 *@"net/url".Userinfo "esc:0x22") Username () (? string) { return @"net/url".u2.@"net/url".username } 44 type @"net/url".Values map[string][]string 45 func (@"net/url".v1 @"net/url".Values "esc:0x9") Add (@"net/url".key2 string, @"net/url".value3 string) { @"net/url".v1[@"net/url".key2] = append(@"net/url".v1[@"net/url".key2], @"net/url".value3) } 46 func (@"net/url".v1 @"net/url".Values "esc:0x1") Del (@"net/url".key2 string "esc:0x1") { delete(@"net/url".v1, @"net/url".key2) } 47 func (@"net/url".v2 @"net/url".Values "esc:0x1") Encode () (? string) 48 func (@"net/url".v2 @"net/url".Values "esc:0x1") Get (@"net/url".key3 string "esc:0x1") (? string) { if @"net/url".v2 == nil { return "" }; var @"net/url".vs4 []string; ; var @"net/url".ok5 bool; ; @"net/url".vs4, @"net/url".ok5 = @"net/url".v2[@"net/url".key3]; if !@"net/url".ok5 || len(@"net/url".vs4) == 0x0 { return "" }; return @"net/url".vs4[0x0] } 49 func (@"net/url".v1 @"net/url".Values "esc:0x1") Set (@"net/url".key2 string, @"net/url".value3 string) { @"net/url".v1[@"net/url".key2] = ([]string{ 0x0:@"net/url".value3 }) } 50 type @"net/url".URL struct { Scheme string; Opaque string; User *@"net/url".Userinfo; Host string; Path string; RawPath string; RawQuery string; Fragment string } 51 func (@"net/url".u2 *@"net/url".URL "esc:0x22") EscapedPath () (? string) 52 func (@"net/url".u2 *@"net/url".URL "esc:0x1") IsAbs () (? bool) { return @"net/url".u2.Scheme != "" } 53 func (@"net/url".u3 *@"net/url".URL "esc:0x9") Parse (@"net/url".ref4 string) (? *@"net/url".URL, ? error) 54 func (@"net/url".u2 *@"net/url".URL "esc:0x9") Query () (? @"net/url".Values) 55 func (@"net/url".u2 *@"net/url".URL "esc:0x22") RequestURI () (? string) 56 func (@"net/url".u2 *@"net/url".URL "esc:0xa") ResolveReference (@"net/url".ref3 *@"net/url".URL "esc:0xa") (? *@"net/url".URL) 57 func (@"net/url".u2 *@"net/url".URL "esc:0x9") String () (? string) 58 type @"io".ReadCloser interface { Close() (? error); Read(@"io".p []byte) (@"io".n int, @"io".err error) } 59 import multipart "mime/multipart" // indirect 60 import textproto "net/textproto" // indirect 61 type @"net/textproto".MIMEHeader map[string][]string 62 func (@"net/textproto".h1 @"net/textproto".MIMEHeader "esc:0x9") Add (@"net/textproto".key2 string, @"net/textproto".value3 string) 63 func (@"net/textproto".h1 @"net/textproto".MIMEHeader "esc:0x1") Del (@"net/textproto".key2 string "esc:0x1") 64 func (@"net/textproto".h2 @"net/textproto".MIMEHeader "esc:0x1") Get (@"net/textproto".key3 string "esc:0x1") (? string) 65 func (@"net/textproto".h1 @"net/textproto".MIMEHeader "esc:0x1") Set (@"net/textproto".key2 string, @"net/textproto".value3 string) 66 type @"mime/multipart".File interface { Close() (? error); Read(@"io".p []byte) (@"io".n int, @"io".err error); ReadAt(@"io".p []byte, @"io".off int64) (@"io".n int, @"io".err error); Seek(@"io".offset int64, @"io".whence int) (? int64, ? error) } 67 type @"mime/multipart".FileHeader struct { Filename string; Header @"net/textproto".MIMEHeader; @"mime/multipart".content []byte; @"mime/multipart".tmpfile string } 68 func (@"mime/multipart".fh3 *@"mime/multipart".FileHeader) Open () (? @"mime/multipart".File, ? error) 69 type @"mime/multipart".Form struct { Value map[string][]string; File map[string][]*@"mime/multipart".FileHeader } 70 func (@"mime/multipart".f2 *@"mime/multipart".Form "esc:0x9") RemoveAll () (? error) 71 import tls "crypto/tls" // indirect 72 import x509 "crypto/x509" // indirect 73 type @"crypto/x509".SignatureAlgorithm int 74 type @"crypto/x509".PublicKeyAlgorithm int 75 import big "math/big" // indirect 76 type @"math/big".Word uintptr 77 type @"math/big".divisor struct { @"math/big".bbb @"math/big".nat; @"math/big".nbits int; @"math/big".ndigits int } 78 import rand "math/rand" // indirect 79 type @"math/rand".Source interface { Int63() (? int64); Seed(@"math/rand".seed int64) } 80 type @"math/rand".Rand struct { @"math/rand".src @"math/rand".Source } 81 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") ExpFloat64 () (? float64) 82 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Float32 () (? float32) 83 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Float64 () (? float64) 84 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Int () (? int) 85 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Int31 () (? int32) 86 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Int31n (@"math/rand".n3 int32) (? int32) 87 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Int63 () (? int64) 88 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Int63n (@"math/rand".n3 int64) (? int64) 89 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Intn (@"math/rand".n3 int) (? int) 90 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") NormFloat64 () (? float64) 91 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Perm (@"math/rand".n3 int) (? []int) 92 func (@"math/rand".r1 *@"math/rand".Rand "esc:0x9") Seed (@"math/rand".seed2 int64) 93 func (@"math/rand".r2 *@"math/rand".Rand "esc:0x9") Uint32 () (? uint32) 94 type @"io".ByteScanner interface { ReadByte() (@"io".c byte, @"io".err error); UnreadByte() (? error) } 95 type @"math/big".nat []@"math/big".Word 96 func (@"math/big".z2 @"math/big".nat) @"math/big".add (@"math/big".x3 @"math/big".nat, @"math/big".y4 @"math/big".nat) (? @"math/big".nat) 97 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".and (@"math/big".x3 @"math/big".nat "esc:0x1", @"math/big".y4 @"math/big".nat "esc:0x1") (? @"math/big".nat) 98 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".andNot (@"math/big".x3 @"math/big".nat "esc:0x9", @"math/big".y4 @"math/big".nat "esc:0x1") (? @"math/big".nat) 99 func (@"math/big".x2 @"math/big".nat "esc:0x1") @"math/big".bit (@"math/big".i3 uint) (? uint) { var @"math/big".j4 uint; ; @"math/big".j4 = @"math/big".i3 / 0x40; if @"math/big".j4 >= uint(len(@"math/big".x2)) { return 0x0 }; return uint(@"math/big".x2[@"math/big".j4] >> (@"math/big".i3 % 0x40) & @"math/big".Word(0x1)) } 100 func (@"math/big".x2 @"math/big".nat "esc:0x1") @"math/big".bitLen () (? int) 101 func (@"math/big".z2 @"math/big".nat "esc:0x1") @"math/big".bytes (@"math/big".buf3 []byte "esc:0x1") (@"math/big".i1 int) 102 func (@"math/big".z1 @"math/big".nat "esc:0x1") @"math/big".clear () 103 func (@"math/big".x2 @"math/big".nat "esc:0x1") @"math/big".cmp (@"math/big".y3 @"math/big".nat "esc:0x1") (@"math/big".r1 int) 104 func (@"math/big".q1 @"math/big".nat) @"math/big".convertWords (@"math/big".s2 []byte "esc:0x1", @"math/big".charset3 string "esc:0x1", @"math/big".b4 @"math/big".Word, @"math/big".ndigits5 int, @"math/big".bb6 @"math/big".Word, @"math/big".table7 []@"math/big".divisor "esc:0x9") 105 func (@"math/big".x2 @"math/big".nat "esc:0x9") @"math/big".decimalString () (? string) 106 func (@"math/big".z3 @"math/big".nat) @"math/big".div (@"math/big".z24 @"math/big".nat, @"math/big".u5 @"math/big".nat, @"math/big".v6 @"math/big".nat) (@"math/big".q1 @"math/big".nat, @"math/big".r2 @"math/big".nat) 107 func (@"math/big".z3 @"math/big".nat "esc:0x12") @"math/big".divLarge (@"math/big".u4 @"math/big".nat, @"math/big".uIn5 @"math/big".nat, @"math/big".v6 @"math/big".nat) (@"math/big".q1 @"math/big".nat, @"math/big".r2 @"math/big".nat) 108 func (@"math/big".z3 @"math/big".nat) @"math/big".divW (@"math/big".x4 @"math/big".nat, @"math/big".y5 @"math/big".Word) (@"math/big".q1 @"math/big".nat, @"math/big".r2 @"math/big".Word) 109 func (@"math/big".z2 @"math/big".nat) @"math/big".expNN (@"math/big".x3 @"math/big".nat, @"math/big".y4 @"math/big".nat "esc:0x1", @"math/big".m5 @"math/big".nat) (? @"math/big".nat) 110 func (@"math/big".z2 @"math/big".nat) @"math/big".expNNMontgomery (@"math/big".x3 @"math/big".nat, @"math/big".y4 @"math/big".nat "esc:0x1", @"math/big".m5 @"math/big".nat) (? @"math/big".nat) 111 func (@"math/big".z2 @"math/big".nat) @"math/big".expNNWindowed (@"math/big".x3 @"math/big".nat, @"math/big".y4 @"math/big".nat "esc:0x1", @"math/big".m5 @"math/big".nat) (? @"math/big".nat) 112 func (@"math/big".z2 @"math/big".nat) @"math/big".expWW (@"math/big".x3 @"math/big".Word, @"math/big".y4 @"math/big".Word) (? @"math/big".nat) 113 func (@"math/big".x2 @"math/big".nat "esc:0x9") @"math/big".hexString () (? string) 114 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".make (@"math/big".n3 int) (? @"math/big".nat) 115 func (@"math/big".x2 @"math/big".nat) @"math/big".modW (@"math/big".d3 @"math/big".Word) (@"math/big".r1 @"math/big".Word) 116 func (@"math/big".z2 @"math/big".nat) @"math/big".montgomery (@"math/big".x3 @"math/big".nat, @"math/big".y4 @"math/big".nat "esc:0x1", @"math/big".m5 @"math/big".nat, @"math/big".k6 @"math/big".Word, @"math/big".n7 int) (? @"math/big".nat) 117 func (@"math/big".z2 @"math/big".nat) @"math/big".mul (@"math/big".x3 @"math/big".nat, @"math/big".y4 @"math/big".nat) (? @"math/big".nat) 118 func (@"math/big".z2 @"math/big".nat) @"math/big".mulAddWW (@"math/big".x3 @"math/big".nat, @"math/big".y4 @"math/big".Word, @"math/big".r5 @"math/big".Word) (? @"math/big".nat) 119 func (@"math/big".z2 @"math/big".nat) @"math/big".mulRange (@"math/big".a3 uint64, @"math/big".b4 uint64) (? @"math/big".nat) 120 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".norm () (? @"math/big".nat) 121 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".or (@"math/big".x3 @"math/big".nat "esc:0x9", @"math/big".y4 @"math/big".nat "esc:0x9") (? @"math/big".nat) 122 func (@"math/big".n2 @"math/big".nat) @"math/big".probablyPrime (@"math/big".reps3 int) (? bool) 123 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".random (@"math/big".rand3 *@"math/rand".Rand "esc:0x9", @"math/big".limit4 @"math/big".nat "esc:0x1", @"math/big".n5 int) (? @"math/big".nat) 124 func (@"math/big".z5 @"math/big".nat) @"math/big".scan (@"math/big".r6 @"io".ByteScanner, @"math/big".base7 int, @"math/big".fracOk8 bool) (@"math/big".res1 @"math/big".nat, @"math/big".b2 int, @"math/big".count3 int, @"math/big".err4 error) 125 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".set (@"math/big".x3 @"math/big".nat "esc:0x9") (? @"math/big".nat) 126 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".setBit (@"math/big".x3 @"math/big".nat "esc:0x9", @"math/big".i4 uint, @"math/big".b5 uint) (? @"math/big".nat) 127 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".setBytes (@"math/big".buf3 []byte "esc:0x1") (? @"math/big".nat) 128 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".setUint64 (@"math/big".x3 uint64) (? @"math/big".nat) 129 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".setWord (@"math/big".x3 @"math/big".Word) (? @"math/big".nat) 130 func (@"math/big".z2 @"math/big".nat) @"math/big".shl (@"math/big".x3 @"math/big".nat, @"math/big".s4 uint) (? @"math/big".nat) 131 func (@"math/big".z2 @"math/big".nat) @"math/big".shr (@"math/big".x3 @"math/big".nat, @"math/big".s4 uint) (? @"math/big".nat) 132 func (@"math/big".x2 @"math/big".nat "esc:0x1") @"math/big".sticky (@"math/big".i3 uint) (? uint) 133 func (@"math/big".x2 @"math/big".nat "esc:0x9") @"math/big".string (@"math/big".charset3 string "esc:0x1") (? string) 134 func (@"math/big".z2 @"math/big".nat) @"math/big".sub (@"math/big".x3 @"math/big".nat, @"math/big".y4 @"math/big".nat) (? @"math/big".nat) 135 func (@"math/big".x2 @"math/big".nat "esc:0x1") @"math/big".trailingZeroBits () (? uint) 136 func (@"math/big".z2 @"math/big".nat "esc:0x12") @"math/big".xor (@"math/big".x3 @"math/big".nat "esc:0x9", @"math/big".y4 @"math/big".nat "esc:0x9") (? @"math/big".nat) 137 type @"fmt".State interface { Flag(@"fmt".c int) (? bool); Precision() (@"fmt".prec int, @"fmt".ok bool); Width() (@"fmt".wid int, @"fmt".ok bool); Write(@"fmt".b []byte) (@"fmt".ret int, @"fmt".err error) } 138 type @"fmt".ScanState interface { Read(@"fmt".buf []byte) (@"fmt".n int, @"fmt".err error); ReadRune() (@"fmt".r rune, @"fmt".size int, @"fmt".err error); SkipSpace(); Token(@"fmt".skipSpace bool, @"fmt".f func(? rune) (? bool)) (@"fmt".token []byte, @"fmt".err error); UnreadRune() (? error); Width() (@"fmt".wid int, @"fmt".ok bool) } 139 type @"math/big".Int struct { @"math/big".neg bool; @"math/big".abs @"math/big".nat } 140 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Abs (@"math/big".x3 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 141 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Add (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 142 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") And (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 143 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") AndNot (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 144 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Binomial (@"math/big".n3 int64, @"math/big".k4 int64) (? *@"math/big".Int) 145 func (@"math/big".x2 *@"math/big".Int "esc:0x9") Bit (@"math/big".i3 int) (? uint) 146 func (@"math/big".x2 *@"math/big".Int "esc:0x1") BitLen () (? int) 147 func (@"math/big".x2 *@"math/big".Int "esc:0x22") Bits () (? []@"math/big".Word) { return @"math/big".x2.@"math/big".abs } 148 func (@"math/big".x2 *@"math/big".Int "esc:0x1") Bytes () (? []byte) 149 func (@"math/big".x2 *@"math/big".Int "esc:0x1") Cmp (@"math/big".y3 *@"math/big".Int "esc:0x1") (@"math/big".r1 int) 150 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Div (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 151 func (@"math/big".z3 *@"math/big".Int "esc:0x1a") DivMod (@"math/big".x4 *@"math/big".Int "esc:0x9", @"math/big".y5 *@"math/big".Int "esc:0x9", @"math/big".m6 *@"math/big".Int "esc:0x8a") (? *@"math/big".Int, ? *@"math/big".Int) 152 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Exp (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x1", @"math/big".m5 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 153 func (@"math/big".x1 *@"math/big".Int "esc:0x9") Format (@"math/big".s2 @"fmt".State, @"math/big".ch3 rune) 154 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") GCD (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9", @"math/big".a5 *@"math/big".Int "esc:0x9", @"math/big".b6 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 155 func (@"math/big".z2 *@"math/big".Int "esc:0x9") GobDecode (@"math/big".buf3 []byte "esc:0x1") (? error) 156 func (@"math/big".x3 *@"math/big".Int "esc:0x1") GobEncode () (? []byte, ? error) 157 func (@"math/big".x2 *@"math/big".Int "esc:0x1") Int64 () (? int64) { var @"math/big".v3 int64; ; @"math/big".v3 = int64(@"math/big".low64(@"math/big".x2.@"math/big".abs)); if @"math/big".x2.@"math/big".neg { @"math/big".v3 = -@"math/big".v3 }; return @"math/big".v3 } 158 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Lsh (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".n4 uint) (? *@"math/big".Int) 159 func (@"math/big".z3 *@"math/big".Int "esc:0x9") MarshalJSON () (? []byte, ? error) 160 func (@"math/big".z3 *@"math/big".Int "esc:0x9") MarshalText () (@"math/big".text1 []byte, @"math/big".err2 error) 161 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Mod (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 162 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") ModInverse (@"math/big".g3 *@"math/big".Int "esc:0x9", @"math/big".n4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 163 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") ModSqrt (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".p4 *@"math/big".Int) (? *@"math/big".Int) 164 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Mul (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 165 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") MulRange (@"math/big".a3 int64, @"math/big".b4 int64) (? *@"math/big".Int) 166 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Neg (@"math/big".x3 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 167 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Not (@"math/big".x3 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 168 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Or (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 169 func (@"math/big".x2 *@"math/big".Int "esc:0x9") ProbablyPrime (@"math/big".n3 int) (? bool) 170 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Quo (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 171 func (@"math/big".z3 *@"math/big".Int "esc:0x1a") QuoRem (@"math/big".x4 *@"math/big".Int "esc:0x9", @"math/big".y5 *@"math/big".Int "esc:0x9", @"math/big".r6 *@"math/big".Int "esc:0x8a") (? *@"math/big".Int, ? *@"math/big".Int) 172 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Rand (@"math/big".rnd3 *@"math/rand".Rand "esc:0x9", @"math/big".n4 *@"math/big".Int "esc:0x1") (? *@"math/big".Int) 173 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Rem (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 174 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Rsh (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".n4 uint) (? *@"math/big".Int) 175 func (@"math/big".z2 *@"math/big".Int "esc:0x9") Scan (@"math/big".s3 @"fmt".ScanState, @"math/big".ch4 rune) (? error) 176 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Set (@"math/big".x3 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 177 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") SetBit (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".i4 int, @"math/big".b5 uint) (? *@"math/big".Int) 178 func (@"math/big".z2 *@"math/big".Int "esc:0x12") SetBits (@"math/big".abs3 []@"math/big".Word) (? *@"math/big".Int) 179 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") SetBytes (@"math/big".buf3 []byte "esc:0x1") (? *@"math/big".Int) 180 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") SetInt64 (@"math/big".x3 int64) (? *@"math/big".Int) 181 func (@"math/big".z3 *@"math/big".Int "esc:0x1a") SetString (@"math/big".s4 string, @"math/big".base5 int) (? *@"math/big".Int, ? bool) 182 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") SetUint64 (@"math/big".x3 uint64) (? *@"math/big".Int) 183 func (@"math/big".x2 *@"math/big".Int "esc:0x1") Sign () (? int) { if len(@"math/big".x2.@"math/big".abs) == 0x0 { return 0x0 }; if @"math/big".x2.@"math/big".neg { return -0x1 }; return 0x1 } 184 func (@"math/big".x2 *@"math/big".Int "esc:0x9") String () (? string) 185 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Sub (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 186 func (@"math/big".x2 *@"math/big".Int "esc:0x1") Uint64 () (? uint64) { return @"math/big".low64(@"math/big".x2.@"math/big".abs) } 187 func (@"math/big".z2 *@"math/big".Int "esc:0x9") UnmarshalJSON (@"math/big".text3 []byte) (? error) 188 func (@"math/big".z2 *@"math/big".Int "esc:0x9") UnmarshalText (@"math/big".text3 []byte) (? error) 189 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") Xor (@"math/big".x3 *@"math/big".Int "esc:0x9", @"math/big".y4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 190 func (@"math/big".z2 *@"math/big".Int "esc:0x1a") @"math/big".binaryGCD (@"math/big".a3 *@"math/big".Int "esc:0x9", @"math/big".b4 *@"math/big".Int "esc:0x9") (? *@"math/big".Int) 191 func (@"math/big".z4 *@"math/big".Int "esc:0x1a") @"math/big".scan (@"math/big".r5 @"io".ByteScanner, @"math/big".base6 int) (? *@"math/big".Int, ? int, ? error) 192 import pkix "crypto/x509/pkix" // indirect 193 import asn1 "encoding/asn1" // indirect 194 type @"encoding/asn1".ObjectIdentifier []int 195 func (@"encoding/asn1".oi2 @"encoding/asn1".ObjectIdentifier "esc:0x1") Equal (@"encoding/asn1".other3 @"encoding/asn1".ObjectIdentifier "esc:0x1") (? bool) 196 func (@"encoding/asn1".oi2 @"encoding/asn1".ObjectIdentifier "esc:0x1") String () (? string) 197 type @"crypto/x509/pkix".AttributeTypeAndValue struct { Type @"encoding/asn1".ObjectIdentifier; Value interface {} } 198 type @"crypto/x509/pkix".RelativeDistinguishedNameSET []@"crypto/x509/pkix".AttributeTypeAndValue 199 type @"crypto/x509/pkix".RDNSequence []@"crypto/x509/pkix".RelativeDistinguishedNameSET 200 type @"crypto/x509/pkix".Name struct { Country []string; Organization []string; OrganizationalUnit []string; Locality []string; Province []string; StreetAddress []string; PostalCode []string; SerialNumber string; CommonName string; Names []@"crypto/x509/pkix".AttributeTypeAndValue; ExtraNames []@"crypto/x509/pkix".AttributeTypeAndValue } 201 func (@"crypto/x509/pkix".n1 *@"crypto/x509/pkix".Name "esc:0x9") FillFromRDNSequence (@"crypto/x509/pkix".rdns2 *@"crypto/x509/pkix".RDNSequence "esc:0x9") 202 func (@"crypto/x509/pkix".n2 @"crypto/x509/pkix".Name) ToRDNSequence () (@"crypto/x509/pkix".ret1 @"crypto/x509/pkix".RDNSequence) 203 func (@"crypto/x509/pkix".n2 @"crypto/x509/pkix".Name "esc:0x1") @"crypto/x509/pkix".appendRDNs (@"crypto/x509/pkix".in3 @"crypto/x509/pkix".RDNSequence "esc:0x1a", @"crypto/x509/pkix".values4 []string "esc:0x9", @"crypto/x509/pkix".oid5 @"encoding/asn1".ObjectIdentifier) (? @"crypto/x509/pkix".RDNSequence) 204 type @"time".zone struct { @"time".name string; @"time".offset int; @"time".isDST bool } 205 type @"time".zoneTrans struct { @"time".when int64; @"time".index uint8; @"time".isstd bool; @"time".isutc bool } 206 type @"time".Location struct { @"time".name string; @"time".zone []@"time".zone; @"time".tx []@"time".zoneTrans; @"time".cacheStart int64; @"time".cacheEnd int64; @"time".cacheZone *@"time".zone } 207 func (@"time".l2 *@"time".Location "esc:0x22") String () (? string) 208 func (@"time".l2 *@"time".Location "esc:0x1") @"time".firstZoneUsed () (? bool) 209 func (@"time".l2 *@"time".Location "esc:0x12") @"time".get () (? *@"time".Location) 210 func (@"time".l6 *@"time".Location "esc:0x32") @"time".lookup (@"time".sec7 int64) (@"time".name1 string, @"time".offset2 int, @"time".isDST3 bool, @"time".start4 int64, @"time".end5 int64) 211 func (@"time".l2 *@"time".Location "esc:0x1") @"time".lookupFirstZone () (? int) 212 func (@"time".l4 *@"time".Location "esc:0x1") @"time".lookupName (@"time".name5 string "esc:0x1", @"time".unix6 int64) (@"time".offset1 int, @"time".isDST2 bool, @"time".ok3 bool) 213 type @"time".Duration int64 214 func (@"time".d2 @"time".Duration) Hours () (? float64) { var @"time".hour3 @"time".Duration; ; @"time".hour3 = @"time".d2 / @"time".Duration(0x34630b8a000); var @"time".nsec4 @"time".Duration; ; @"time".nsec4 = @"time".d2 % @"time".Duration(0x34630b8a000); return float64(@"time".hour3) + float64(@"time".nsec4) * 8190022623310637111963488201822504381538623676021880892417778544696899264837610290203272971060556344039023584360473938041055625214280336402169897364226048p-553 } 215 func (@"time".d2 @"time".Duration) Minutes () (? float64) { var @"time".min3 @"time".Duration; ; @"time".min3 = @"time".d2 / @"time".Duration(0xdf8475800); var @"time".nsec4 @"time".Duration; ; @"time".nsec4 = @"time".d2 % @"time".Duration(0xdf8475800); return float64(@"time".min3) + float64(@"time".nsec4) * 7678146209353722106395056769533233877065564876941352542109479049699919628723768656821910653339403201031675627614471533358284117434246264392176261853609984p-547 } 216 func (@"time".d2 @"time".Duration) Nanoseconds () (? int64) { return int64(@"time".d2) } 217 func (@"time".d2 @"time".Duration) Seconds () (? float64) { var @"time".sec3 @"time".Duration; ; @"time".sec3 = @"time".d2 / @"time".Duration(0x3b9aca00); var @"time".nsec4 @"time".Duration; ; @"time".nsec4 = @"time".d2 % @"time".Duration(0x3b9aca00); return float64(@"time".sec3) + float64(@"time".nsec4) * 7198262071269114660816079141112770740375861891461678802759824945047098083990024106014198994535558872472104883612039846078596891298747423852523262413111296p-541 } 218 func (@"time".d2 @"time".Duration) String () (? string) 219 type @"time".Month int 220 func (@"time".m2 @"time".Month) String () (? string) { return @"time".months[@"time".m2 - @"time".Month(0x1)] } 221 type @"time".Weekday int 222 func (@"time".d2 @"time".Weekday) String () (? string) { return @"time".days[@"time".d2] } 223 type @"time".Time struct { @"time".sec int64; @"time".nsec int32; @"time".loc *@"time".Location } 224 func (@"time".t2 @"time".Time "esc:0x12") Add (@"time".d3 @"time".Duration) (? @"time".Time) { @"time".t2.@"time".sec += int64(@"time".d3 / @"time".Duration(0x3b9aca00)); var @"time".nsec4 int32; ; @"time".nsec4 = int32(@"time".t2.@"time".nsec) + int32(@"time".d3 % @"time".Duration(0x3b9aca00)); if @"time".nsec4 >= 0x3b9aca00 { @"time".t2.@"time".sec++; @"time".nsec4 -= 0x3b9aca00 } else { if @"time".nsec4 < 0x0 { @"time".t2.@"time".sec--; @"time".nsec4 += 0x3b9aca00 } }; @"time".t2.@"time".nsec = @"time".nsec4; return @"time".t2 } 225 func (@"time".t2 @"time".Time "esc:0x12") AddDate (@"time".years3 int, @"time".months4 int, @"time".days5 int) (? @"time".Time) 226 func (@"time".t2 @"time".Time "esc:0x1") After (@"time".u3 @"time".Time "esc:0x1") (? bool) { return @"time".t2.@"time".sec > @"time".u3.@"time".sec || @"time".t2.@"time".sec == @"time".u3.@"time".sec && @"time".t2.@"time".nsec > @"time".u3.@"time".nsec } 227 func (@"time".t2 @"time".Time "esc:0x9") AppendFormat (@"time".b3 []byte "esc:0x1a", @"time".layout4 string "esc:0x9") (? []byte) 228 func (@"time".t2 @"time".Time "esc:0x1") Before (@"time".u3 @"time".Time "esc:0x1") (? bool) { return @"time".t2.@"time".sec < @"time".u3.@"time".sec || @"time".t2.@"time".sec == @"time".u3.@"time".sec && @"time".t2.@"time".nsec < @"time".u3.@"time".nsec } 229 func (@"time".t4 @"time".Time "esc:0x1") Clock () (@"time".hour1 int, @"time".min2 int, @"time".sec3 int) 230 func (@"time".t4 @"time".Time "esc:0x1") Date () (@"time".year1 int, @"time".month2 @"time".Month, @"time".day3 int) 231 func (@"time".t2 @"time".Time "esc:0x1") Day () (? int) 232 func (@"time".t2 @"time".Time "esc:0x1") Equal (@"time".u3 @"time".Time "esc:0x1") (? bool) { return @"time".t2.@"time".sec == @"time".u3.@"time".sec && @"time".t2.@"time".nsec == @"time".u3.@"time".nsec } 233 func (@"time".t2 @"time".Time "esc:0x9") Format (@"time".layout3 string "esc:0x9") (? string) 234 func (@"time".t2 *@"time".Time "esc:0x1") GobDecode (@"time".data3 []byte "esc:0x1") (? error) 235 func (@"time".t3 @"time".Time "esc:0x1") GobEncode () (? []byte, ? error) 236 func (@"time".t2 @"time".Time "esc:0x1") Hour () (? int) 237 func (@"time".t3 @"time".Time "esc:0x1") ISOWeek () (@"time".year1 int, @"time".week2 int) 238 func (@"time".t2 @"time".Time "esc:0x12") In (@"time".loc3 *@"time".Location "esc:0x12") (? @"time".Time) 239 func (@"time".t2 @"time".Time "esc:0x1") IsZero () (? bool) { return @"time".t2.@"time".sec == 0x0 && @"time".t2.@"time".nsec == 0x0 } 240 func (@"time".t2 @"time".Time "esc:0x12") Local () (? @"time".Time) { @"time".t2.@"time".loc = @"time".Local; return @"time".t2 } 241 func (@"time".t2 @"time".Time "esc:0x12") Location () (? *@"time".Location) { var @"time".l3 *@"time".Location; ; @"time".l3 = @"time".t2.@"time".loc; if @"time".l3 == nil { @"time".l3 = @"time".UTC }; return @"time".l3 } 242 func (@"time".t3 @"time".Time "esc:0x1") MarshalBinary () (? []byte, ? error) 243 func (@"time".t3 @"time".Time "esc:0x9") MarshalJSON () (? []byte, ? error) 244 func (@"time".t3 @"time".Time "esc:0x9") MarshalText () (? []byte, ? error) 245 func (@"time".t2 @"time".Time "esc:0x1") Minute () (? int) 246 func (@"time".t2 @"time".Time "esc:0x1") Month () (? @"time".Month) 247 func (@"time".t2 @"time".Time "esc:0x1") Nanosecond () (? int) { return int(@"time".t2.@"time".nsec) } 248 func (@"time".t2 @"time".Time "esc:0x12") Round (@"time".d3 @"time".Duration) (? @"time".Time) 249 func (@"time".t2 @"time".Time "esc:0x1") Second () (? int) 250 func (@"time".t2 @"time".Time "esc:0x9") String () (? string) 251 func (@"time".t2 @"time".Time "esc:0x1") Sub (@"time".u3 @"time".Time "esc:0x1") (? @"time".Duration) 252 func (@"time".t2 @"time".Time "esc:0x12") Truncate (@"time".d3 @"time".Duration) (? @"time".Time) 253 func (@"time".t2 @"time".Time "esc:0x12") UTC () (? @"time".Time) { @"time".t2.@"time".loc = @"time".UTC; return @"time".t2 } 254 func (@"time".t2 @"time".Time "esc:0x1") Unix () (? int64) { return @"time".t2.@"time".sec + -0xe7791f700 } 255 func (@"time".t2 @"time".Time "esc:0x1") UnixNano () (? int64) { return (@"time".t2.@"time".sec + -0xe7791f700) * 0x3b9aca00 + int64(@"time".t2.@"time".nsec) } 256 func (@"time".t2 *@"time".Time "esc:0x1") UnmarshalBinary (@"time".data3 []byte "esc:0x1") (? error) 257 func (@"time".t2 *@"time".Time "esc:0x1") UnmarshalJSON (@"time".data3 []byte "esc:0x1") (@"time".err1 error) 258 func (@"time".t2 *@"time".Time "esc:0x1") UnmarshalText (@"time".data3 []byte "esc:0x1") (@"time".err1 error) 259 func (@"time".t2 @"time".Time "esc:0x1") Weekday () (? @"time".Weekday) 260 func (@"time".t2 @"time".Time "esc:0x1") Year () (? int) 261 func (@"time".t2 @"time".Time "esc:0x1") YearDay () (? int) 262 func (@"time".t3 @"time".Time "esc:0x32") Zone () (@"time".name1 string, @"time".offset2 int) 263 func (@"time".t2 @"time".Time "esc:0x1") @"time".abs () (? uint64) 264 func (@"time".t5 @"time".Time "esc:0x1") @"time".date (@"time".full6 bool) (@"time".year1 int, @"time".month2 @"time".Month, @"time".day3 int, @"time".yday4 int) 265 func (@"time".t4 @"time".Time "esc:0x32") @"time".locabs () (@"time".name1 string, @"time".offset2 int, @"time".abs3 uint64) 266 type @"crypto/x509".KeyUsage int 267 type @"crypto/x509/pkix".Extension struct { Id @"encoding/asn1".ObjectIdentifier; Critical bool "asn1:\"optional\""; Value []byte } 268 type @"crypto/x509".ExtKeyUsage int 269 import net "net" // indirect 270 type @"net".IPMask []byte 271 func (@"net".m3 @"net".IPMask "esc:0x1") Size () (@"net".ones1 int, @"net".bits2 int) 272 func (@"net".m2 @"net".IPMask "esc:0x1") String () (? string) 273 type @"net".IP []byte 274 func (@"net".ip2 @"net".IP "esc:0x1") DefaultMask () (? @"net".IPMask) 275 func (@"net".ip2 @"net".IP "esc:0x1") Equal (@"net".x3 @"net".IP "esc:0x1") (? bool) 276 func (@"net".ip2 @"net".IP "esc:0x1") IsGlobalUnicast () (? bool) 277 func (@"net".ip2 @"net".IP "esc:0x1") IsInterfaceLocalMulticast () (? bool) { return len(@"net".ip2) == 0x10 && @"net".ip2[0x0] == byte(0xff) && @"net".ip2[0x1] & byte(0xf) == byte(0x1) } 278 func (@"net".ip2 @"net".IP "esc:0x1") IsLinkLocalMulticast () (? bool) 279 func (@"net".ip2 @"net".IP "esc:0x1") IsLinkLocalUnicast () (? bool) 280 func (@"net".ip2 @"net".IP "esc:0x1") IsLoopback () (? bool) 281 func (@"net".ip2 @"net".IP "esc:0x1") IsMulticast () (? bool) 282 func (@"net".ip2 @"net".IP "esc:0x1") IsUnspecified () (? bool) 283 func (@"net".ip3 @"net".IP "esc:0x1") MarshalText () (? []byte, ? error) 284 func (@"net".ip2 @"net".IP "esc:0x1") Mask (@"net".mask3 @"net".IPMask "esc:0x1") (? @"net".IP) 285 func (@"net".ip2 @"net".IP "esc:0x1") String () (? string) 286 func (@"net".ip2 @"net".IP "esc:0x12") To16 () (? @"net".IP) { if len(@"net".ip2) == 0x4 { return @"net".IPv4(@"net".ip2[0x0], @"net".ip2[0x1], @"net".ip2[0x2], @"net".ip2[0x3]) }; if len(@"net".ip2) == 0x10 { return @"net".ip2 }; return nil } 287 func (@"net".ip2 @"net".IP "esc:0x12") To4 () (? @"net".IP) 288 func (@"net".ip2 *@"net".IP "esc:0x1") UnmarshalText (@"net".text3 []byte "esc:0x1") (? error) 289 type @"encoding/asn1".RawContent []byte 290 type @"encoding/asn1".RawValue struct { Class int; Tag int; IsCompound bool; Bytes []byte; FullBytes []byte } 291 type @"crypto/x509/pkix".AlgorithmIdentifier struct { Algorithm @"encoding/asn1".ObjectIdentifier; Parameters @"encoding/asn1".RawValue "asn1:\"optional\"" } 292 type @"crypto/x509/pkix".RevokedCertificate struct { SerialNumber *@"math/big".Int; RevocationTime @"time".Time; Extensions []@"crypto/x509/pkix".Extension "asn1:\"optional\"" } 293 type @"crypto/x509/pkix".TBSCertificateList struct { Raw @"encoding/asn1".RawContent; Version int "asn1:\"optional,default:1\""; Signature @"crypto/x509/pkix".AlgorithmIdentifier; Issuer @"crypto/x509/pkix".RDNSequence; ThisUpdate @"time".Time; NextUpdate @"time".Time "asn1:\"optional\""; RevokedCertificates []@"crypto/x509/pkix".RevokedCertificate "asn1:\"optional\""; Extensions []@"crypto/x509/pkix".Extension "asn1:\"tag:0,optional,explicit\"" } 294 type @"encoding/asn1".BitString struct { Bytes []byte; BitLength int } 295 func (@"encoding/asn1".b2 @"encoding/asn1".BitString "esc:0x1") At (@"encoding/asn1".i3 int) (? int) { if @"encoding/asn1".i3 < 0x0 || @"encoding/asn1".i3 >= @"encoding/asn1".b2.BitLength { return 0x0 }; var @"encoding/asn1".x4 int; ; @"encoding/asn1".x4 = @"encoding/asn1".i3 / 0x8; var @"encoding/asn1".y5 uint; ; @"encoding/asn1".y5 = 0x7 - uint(@"encoding/asn1".i3 % 0x8); return int(@"encoding/asn1".b2.Bytes[@"encoding/asn1".x4] >> @"encoding/asn1".y5) & 0x1 } 296 func (@"encoding/asn1".b2 @"encoding/asn1".BitString "esc:0x12") RightAlign () (? []byte) 297 type @"crypto/x509/pkix".CertificateList struct { TBSCertList @"crypto/x509/pkix".TBSCertificateList; SignatureAlgorithm @"crypto/x509/pkix".AlgorithmIdentifier; SignatureValue @"encoding/asn1".BitString } 298 func (@"crypto/x509/pkix".certList2 *@"crypto/x509/pkix".CertificateList "esc:0x1") HasExpired (@"crypto/x509/pkix".now3 @"time".Time "esc:0x1") (? bool) { return @"crypto/x509/pkix".now3.After(@"crypto/x509/pkix".certList2.TBSCertList.NextUpdate) } 299 type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) } 300 type @"crypto/x509".CertPool struct { @"crypto/x509".bySubjectKeyId map[string][]int; @"crypto/x509".byName map[string][]int; @"crypto/x509".certs []*@"crypto/x509".Certificate } 301 func (@"crypto/x509".s1 *@"crypto/x509".CertPool "esc:0x9") AddCert (@"crypto/x509".cert2 *@"crypto/x509".Certificate) 302 func (@"crypto/x509".s2 *@"crypto/x509".CertPool "esc:0x9") AppendCertsFromPEM (@"crypto/x509".pemCerts3 []byte) (@"crypto/x509".ok1 bool) 303 func (@"crypto/x509".s2 *@"crypto/x509".CertPool "esc:0x9") Subjects () (@"crypto/x509".res1 [][]byte) 304 func (@"crypto/x509".s4 *@"crypto/x509".CertPool "esc:0x18a") @"crypto/x509".findVerifiedParents (@"crypto/x509".cert5 *@"crypto/x509".Certificate "esc:0x9") (@"crypto/x509".parents1 []int, @"crypto/x509".errCert2 *@"crypto/x509".Certificate, @"crypto/x509".err3 error) 305 type @"crypto/x509".VerifyOptions struct { DNSName string; Intermediates *@"crypto/x509".CertPool; Roots *@"crypto/x509".CertPool; CurrentTime @"time".Time; KeyUsages []@"crypto/x509".ExtKeyUsage } 306 type @"crypto/x509".Certificate struct { Raw []byte; RawTBSCertificate []byte; RawSubjectPublicKeyInfo []byte; RawSubject []byte; RawIssuer []byte; Signature []byte; SignatureAlgorithm @"crypto/x509".SignatureAlgorithm; PublicKeyAlgorithm @"crypto/x509".PublicKeyAlgorithm; PublicKey interface {}; Version int; SerialNumber *@"math/big".Int; Issuer @"crypto/x509/pkix".Name; Subject @"crypto/x509/pkix".Name; NotBefore @"time".Time; NotAfter @"time".Time; KeyUsage @"crypto/x509".KeyUsage; Extensions []@"crypto/x509/pkix".Extension; ExtraExtensions []@"crypto/x509/pkix".Extension; UnhandledCriticalExtensions []@"encoding/asn1".ObjectIdentifier; ExtKeyUsage []@"crypto/x509".ExtKeyUsage; UnknownExtKeyUsage []@"encoding/asn1".ObjectIdentifier; BasicConstraintsValid bool; IsCA bool; MaxPathLen int; MaxPathLenZero bool; SubjectKeyId []byte; AuthorityKeyId []byte; OCSPServer []string; IssuingCertificateURL []string; DNSNames []string; EmailAddresses []string; IPAddresses []@"net".IP; PermittedDNSDomainsCritical bool; PermittedDNSDomains []string; CRLDistributionPoints []string; PolicyIdentifiers []@"encoding/asn1".ObjectIdentifier } 307 func (@"crypto/x509".c2 *@"crypto/x509".Certificate "esc:0x9") CheckCRLSignature (@"crypto/x509".crl3 *@"crypto/x509/pkix".CertificateList "esc:0x9") (@"crypto/x509".err1 error) 308 func (@"crypto/x509".c2 *@"crypto/x509".Certificate "esc:0x9") CheckSignature (@"crypto/x509".algo3 @"crypto/x509".SignatureAlgorithm, @"crypto/x509".signed4 []byte, @"crypto/x509".signature5 []byte) (@"crypto/x509".err1 error) 309 func (@"crypto/x509".c2 *@"crypto/x509".Certificate "esc:0x9") CheckSignatureFrom (@"crypto/x509".parent3 *@"crypto/x509".Certificate "esc:0x9") (@"crypto/x509".err1 error) 310 func (@"crypto/x509".c3 *@"crypto/x509".Certificate "esc:0x9") CreateCRL (@"crypto/x509".rand4 @"io".Reader, @"crypto/x509".priv5 interface {}, @"crypto/x509".revokedCerts6 []@"crypto/x509/pkix".RevokedCertificate, @"crypto/x509".now7 @"time".Time, @"crypto/x509".expiry8 @"time".Time) (@"crypto/x509".crlBytes1 []byte, @"crypto/x509".err2 error) 311 func (@"crypto/x509".c2 *@"crypto/x509".Certificate "esc:0x1") Equal (@"crypto/x509".other3 *@"crypto/x509".Certificate "esc:0x1") (? bool) 312 func (@"crypto/x509".c3 *@"crypto/x509".Certificate) Verify (@"crypto/x509".opts4 @"crypto/x509".VerifyOptions) (@"crypto/x509".chains1 [][]*@"crypto/x509".Certificate, @"crypto/x509".err2 error) 313 func (@"crypto/x509".c2 *@"crypto/x509".Certificate "esc:0x1a") VerifyHostname (@"crypto/x509".h3 string) (? error) 314 func (@"crypto/x509".c3 *@"crypto/x509".Certificate) @"crypto/x509".buildChains (@"crypto/x509".cache4 map[int][][]*@"crypto/x509".Certificate "esc:0x1", @"crypto/x509".currentChain5 []*@"crypto/x509".Certificate "esc:0x9", @"crypto/x509".opts6 *@"crypto/x509".VerifyOptions "esc:0x20a") (@"crypto/x509".chains1 [][]*@"crypto/x509".Certificate, @"crypto/x509".err2 error) 315 func (@"crypto/x509".c2 *@"crypto/x509".Certificate "esc:0x12") @"crypto/x509".isValid (@"crypto/x509".certType3 int, @"crypto/x509".currentChain4 []*@"crypto/x509".Certificate "esc:0x1", @"crypto/x509".opts5 *@"crypto/x509".VerifyOptions "esc:0x1") (? error) 316 func (@"crypto/x509".c3 *@"crypto/x509".Certificate "esc:0x1") @"crypto/x509".systemVerify (@"crypto/x509".opts4 *@"crypto/x509".VerifyOptions "esc:0x1") (@"crypto/x509".chains1 [][]*@"crypto/x509".Certificate, @"crypto/x509".err2 error) { return nil, nil } 317 type @"crypto/tls".ConnectionState struct { Version uint16; HandshakeComplete bool; DidResume bool; CipherSuite uint16; NegotiatedProtocol string; NegotiatedProtocolIsMutual bool; ServerName string; PeerCertificates []*@"crypto/x509".Certificate; VerifiedChains [][]*@"crypto/x509".Certificate; SignedCertificateTimestamps [][]byte; OCSPResponse []byte; TLSUnique []byte } 318 type @"net/http".Cookie struct { Name string; Value string; Path string; Domain string; Expires @"time".Time; RawExpires string; MaxAge int; Secure bool; HttpOnly bool; Raw string; Unparsed []string } 319 func (@"net/http".c2 *@"net/http".Cookie "esc:0x9") String () (? string) 320 type @"bufio".Reader struct { @"bufio".buf []byte; @"bufio".rd @"io".Reader; @"bufio".r int; @"bufio".w int; @"bufio".err error; @"bufio".lastByte int; @"bufio".lastRuneSize int } 321 func (@"bufio".b2 *@"bufio".Reader "esc:0x1") Buffered () (? int) { return @"bufio".b2.@"bufio".w - @"bufio".b2.@"bufio".r } 322 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") Discard (@"bufio".n4 int) (@"bufio".discarded1 int, @"bufio".err2 error) 323 func (@"bufio".b3 *@"bufio".Reader "esc:0x12a") Peek (@"bufio".n4 int) (? []byte, ? error) 324 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") Read (@"bufio".p4 []byte) (@"bufio".n1 int, @"bufio".err2 error) 325 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") ReadByte () (@"bufio".c1 byte, @"bufio".err2 error) 326 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") ReadBytes (@"bufio".delim4 byte) (@"bufio".line1 []byte, @"bufio".err2 error) 327 func (@"bufio".b4 *@"bufio".Reader "esc:0x82a") ReadLine () (@"bufio".line1 []byte, @"bufio".isPrefix2 bool, @"bufio".err3 error) 328 func (@"bufio".b4 *@"bufio".Reader "esc:0x80a") ReadRune () (@"bufio".r1 rune, @"bufio".size2 int, @"bufio".err3 error) 329 func (@"bufio".b3 *@"bufio".Reader "esc:0x12a") ReadSlice (@"bufio".delim4 byte) (@"bufio".line1 []byte, @"bufio".err2 error) 330 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") ReadString (@"bufio".delim4 byte) (@"bufio".line1 string, @"bufio".err2 error) 331 func (@"bufio".b1 *@"bufio".Reader "esc:0x9") Reset (@"bufio".r2 @"io".Reader) { @"bufio".b1.@"bufio".reset(@"bufio".b1.@"bufio".buf, @"bufio".r2) } 332 func (@"bufio".b2 *@"bufio".Reader "esc:0x1") UnreadByte () (? error) { if @"bufio".b2.@"bufio".lastByte < 0x0 || @"bufio".b2.@"bufio".r == 0x0 && @"bufio".b2.@"bufio".w > 0x0 { return @"bufio".ErrInvalidUnreadByte }; if @"bufio".b2.@"bufio".r > 0x0 { @"bufio".b2.@"bufio".r-- } else { @"bufio".b2.@"bufio".w = 0x1 }; @"bufio".b2.@"bufio".buf[@"bufio".b2.@"bufio".r] = byte(@"bufio".b2.@"bufio".lastByte); @"bufio".b2.@"bufio".lastByte = -0x1; @"bufio".b2.@"bufio".lastRuneSize = -0x1; return nil } 333 func (@"bufio".b2 *@"bufio".Reader "esc:0x1") UnreadRune () (? error) { if @"bufio".b2.@"bufio".lastRuneSize < 0x0 || @"bufio".b2.@"bufio".r < @"bufio".b2.@"bufio".lastRuneSize { return @"bufio".ErrInvalidUnreadRune }; @"bufio".b2.@"bufio".r -= @"bufio".b2.@"bufio".lastRuneSize; @"bufio".b2.@"bufio".lastByte = -0x1; @"bufio".b2.@"bufio".lastRuneSize = -0x1; return nil } 334 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") WriteTo (@"bufio".w4 @"io".Writer) (@"bufio".n1 int64, @"bufio".err2 error) 335 func (@"bufio".b1 *@"bufio".Reader "esc:0x9") @"bufio".fill () 336 func (@"bufio".b2 *@"bufio".Reader "esc:0x22") @"bufio".readErr () (? error) { var @"bufio".err3 error; ; @"bufio".err3 = @"bufio".b2.@"bufio".err; @"bufio".b2.@"bufio".err = nil; return @"bufio".err3 } 337 func (@"bufio".b1 *@"bufio".Reader "esc:0x1") @"bufio".reset (@"bufio".buf2 []byte, @"bufio".r3 @"io".Reader) { *@"bufio".b1 = (@"bufio".Reader{ @"bufio".buf:@"bufio".buf2, @"bufio".rd:@"bufio".r3, @"bufio".lastByte:-0x1, @"bufio".lastRuneSize:-0x1 }) } 338 func (@"bufio".b3 *@"bufio".Reader "esc:0x9") @"bufio".writeBuf (@"bufio".w4 @"io".Writer) (? int64, ? error) 339 type @"bytes".readOp int 340 type @"bytes".Buffer struct { @"bytes".buf []byte; @"bytes".off int; @"bytes".runeBytes [4]byte; @"bytes".bootstrap [64]byte; @"bytes".lastRead @"bytes".readOp } 341 func (@"bytes".b2 *@"bytes".Buffer "esc:0x22") Bytes () (? []byte) { return @"bytes".b2.@"bytes".buf[@"bytes".b2.@"bytes".off:] } 342 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") Cap () (? int) { return cap(@"bytes".b2.@"bytes".buf) } 343 func (@"bytes".b1 *@"bytes".Buffer) Grow (@"bytes".n2 int) 344 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") Len () (? int) { return len(@"bytes".b2.@"bytes".buf) - @"bytes".b2.@"bytes".off } 345 func (@"bytes".b2 *@"bytes".Buffer "esc:0x22") Next (@"bytes".n3 int) (? []byte) { @"bytes".b2.@"bytes".lastRead = @"bytes".readOp(0x0); var @"bytes".m4 int; ; @"bytes".m4 = @"bytes".b2.Len(); if @"bytes".n3 > @"bytes".m4 { @"bytes".n3 = @"bytes".m4 }; var @"bytes".data5 []byte; ; @"bytes".data5 = @"bytes".b2.@"bytes".buf[@"bytes".b2.@"bytes".off:@"bytes".b2.@"bytes".off + @"bytes".n3]; @"bytes".b2.@"bytes".off += @"bytes".n3; if @"bytes".n3 > 0x0 { @"bytes".b2.@"bytes".lastRead = @"bytes".readOp(0x2) }; return @"bytes".data5 } 346 func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") Read (@"bytes".p4 []byte "esc:0x1") (@"bytes".n1 int, @"bytes".err2 error) 347 func (@"bytes".b3 *@"bytes".Buffer "esc:0x1") ReadByte () (@"bytes".c1 byte, @"bytes".err2 error) 348 func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") ReadBytes (@"bytes".delim4 byte) (@"bytes".line1 []byte, @"bytes".err2 error) 349 func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") ReadFrom (@"bytes".r4 @"io".Reader) (@"bytes".n1 int64, @"bytes".err2 error) 350 func (@"bytes".b4 *@"bytes".Buffer "esc:0x1") ReadRune () (@"bytes".r1 rune, @"bytes".size2 int, @"bytes".err3 error) 351 func (@"bytes".b3 *@"bytes".Buffer "esc:0x1") ReadString (@"bytes".delim4 byte) (@"bytes".line1 string, @"bytes".err2 error) 352 func (@"bytes".b1 *@"bytes".Buffer "esc:0x1") Reset () 353 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") String () (? string) { if @"bytes".b2 == nil { return "<nil>" }; return string(@"bytes".b2.@"bytes".buf[@"bytes".b2.@"bytes".off:]) } 354 func (@"bytes".b1 *@"bytes".Buffer "esc:0x1") Truncate (@"bytes".n2 int) 355 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") UnreadByte () (? error) { if @"bytes".b2.@"bytes".lastRead != @"bytes".readOp(0x1) && @"bytes".b2.@"bytes".lastRead != @"bytes".readOp(0x2) { return @"errors".New("bytes.Buffer: UnreadByte: previous operation was not a read") }; @"bytes".b2.@"bytes".lastRead = @"bytes".readOp(0x0); if @"bytes".b2.@"bytes".off > 0x0 { @"bytes".b2.@"bytes".off-- }; return nil } 356 func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") UnreadRune () (? error) 357 func (@"bytes".b3 *@"bytes".Buffer) Write (@"bytes".p4 []byte "esc:0x9") (@"bytes".n1 int, @"bytes".err2 error) 358 func (@"bytes".b2 *@"bytes".Buffer) WriteByte (@"bytes".c3 byte) (? error) 359 func (@"bytes".b3 *@"bytes".Buffer) WriteRune (@"bytes".r4 rune) (@"bytes".n1 int, @"bytes".err2 error) 360 func (@"bytes".b3 *@"bytes".Buffer) WriteString (@"bytes".s4 string "esc:0x9") (@"bytes".n1 int, @"bytes".err2 error) 361 func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") WriteTo (@"bytes".w4 @"io".Writer) (@"bytes".n1 int64, @"bytes".err2 error) 362 func (@"bytes".b2 *@"bytes".Buffer) @"bytes".grow (@"bytes".n3 int) (? int) 363 func (@"bytes".b3 *@"bytes".Buffer "esc:0x22") @"bytes".readSlice (@"bytes".delim4 byte) (@"bytes".line1 []byte, @"bytes".err2 error) 364 type @"mime/multipart".Part struct { Header @"net/textproto".MIMEHeader; @"mime/multipart".buffer *@"bytes".Buffer; @"mime/multipart".mr *@"mime/multipart".Reader; @"mime/multipart".bytesRead int; @"mime/multipart".disposition string; @"mime/multipart".dispositionParams map[string]string; @"mime/multipart".r @"io".Reader } 365 func (@"mime/multipart".p2 *@"mime/multipart".Part) Close () (? error) 366 func (@"mime/multipart".p2 *@"mime/multipart".Part "esc:0x1") FileName () (? string) 367 func (@"mime/multipart".p2 *@"mime/multipart".Part "esc:0x1") FormName () (? string) 368 func (@"mime/multipart".p3 *@"mime/multipart".Part "esc:0x9") Read (@"mime/multipart".d4 []byte) (@"mime/multipart".n1 int, @"mime/multipart".err2 error) 369 func (@"mime/multipart".p1 *@"mime/multipart".Part "esc:0x1") @"mime/multipart".parseContentDisposition () 370 func (@"mime/multipart".bp2 *@"mime/multipart".Part "esc:0x4a") @"mime/multipart".populateHeaders () (? error) 371 type @"mime/multipart".Reader struct { @"mime/multipart".bufReader *@"bufio".Reader; @"mime/multipart".currentPart *@"mime/multipart".Part; @"mime/multipart".partsRead int; @"mime/multipart".nl []byte; @"mime/multipart".nlDashBoundary []byte; @"mime/multipart".dashBoundaryDash []byte; @"mime/multipart".dashBoundary []byte } 372 func (@"mime/multipart".r3 *@"mime/multipart".Reader) NextPart () (? *@"mime/multipart".Part, ? error) 373 func (@"mime/multipart".r3 *@"mime/multipart".Reader) ReadForm (@"mime/multipart".maxMemory4 int64) (@"mime/multipart".f1 *@"mime/multipart".Form, @"mime/multipart".err2 error) 374 func (@"mime/multipart".mr2 *@"mime/multipart".Reader "esc:0x1") @"mime/multipart".isBoundaryDelimiterLine (@"mime/multipart".line3 []byte "esc:0x1") (@"mime/multipart".ret1 bool) 375 func (@"mime/multipart".mr2 *@"mime/multipart".Reader "esc:0x1") @"mime/multipart".isFinalBoundary (@"mime/multipart".line3 []byte "esc:0x1") (? bool) 376 func (@"mime/multipart".mr2 *@"mime/multipart".Reader "esc:0x1") @"mime/multipart".peekBufferIsEmptyPart (@"mime/multipart".peek3 []byte "esc:0x1") (? bool) 377 func (@"mime/multipart".mr3 *@"mime/multipart".Reader "esc:0x1") @"mime/multipart".peekBufferSeparatorIndex (@"mime/multipart".peek4 []byte "esc:0x1") (@"mime/multipart".idx1 int, @"mime/multipart".isEnd2 bool) 378 type @"net/http".Request struct { Method string; URL *@"net/url".URL; Proto string; ProtoMajor int; ProtoMinor int; Header @"net/http".Header; Body @"io".ReadCloser; ContentLength int64; TransferEncoding []string; Close bool; Host string; Form @"net/url".Values; PostForm @"net/url".Values; MultipartForm *@"mime/multipart".Form; Trailer @"net/http".Header; RemoteAddr string; RequestURI string; TLS *@"crypto/tls".ConnectionState; Cancel <-chan struct {} } 379 func (@"net/http".r1 *@"net/http".Request "esc:0x1") AddCookie (@"net/http".c2 *@"net/http".Cookie "esc:0x9") 380 func (@"net/http".r4 *@"net/http".Request "esc:0x1") BasicAuth () (@"net/http".username1 string, @"net/http".password2 string, @"net/http".ok3 bool) 381 func (@"net/http".r3 *@"net/http".Request "esc:0x1") Cookie (@"net/http".name4 string "esc:0x1") (? *@"net/http".Cookie, ? error) 382 func (@"net/http".r2 *@"net/http".Request "esc:0x1") Cookies () (? []*@"net/http".Cookie) 383 func (@"net/http".r4 *@"net/http".Request "esc:0x9") FormFile (@"net/http".key5 string "esc:0x1") (? @"mime/multipart".File, ? *@"mime/multipart".FileHeader, ? error) 384 func (@"net/http".r2 *@"net/http".Request "esc:0x9") FormValue (@"net/http".key3 string "esc:0x1") (? string) 385 func (@"net/http".r3 *@"net/http".Request "esc:0x9") MultipartReader () (? *@"mime/multipart".Reader, ? error) 386 func (@"net/http".r2 *@"net/http".Request "esc:0x9") ParseForm () (? error) 387 func (@"net/http".r2 *@"net/http".Request "esc:0x9") ParseMultipartForm (@"net/http".maxMemory3 int64) (? error) 388 func (@"net/http".r2 *@"net/http".Request "esc:0x9") PostFormValue (@"net/http".key3 string "esc:0x1") (? string) 389 func (@"net/http".r2 *@"net/http".Request "esc:0x1") ProtoAtLeast (@"net/http".major3 int, @"net/http".minor4 int) (? bool) { return @"net/http".r2.ProtoMajor > @"net/http".major3 || @"net/http".r2.ProtoMajor == @"net/http".major3 && @"net/http".r2.ProtoMinor >= @"net/http".minor4 } 390 func (@"net/http".r2 *@"net/http".Request "esc:0x1") Referer () (? string) 391 func (@"net/http".r1 *@"net/http".Request "esc:0x1") SetBasicAuth (@"net/http".username2 string "esc:0x1", @"net/http".password3 string "esc:0x1") 392 func (@"net/http".r2 *@"net/http".Request "esc:0x1") UserAgent () (? string) 393 func (@"net/http".r2 *@"net/http".Request "esc:0x9") Write (@"net/http".w3 @"io".Writer) (? error) 394 func (@"net/http".r2 *@"net/http".Request "esc:0x9") WriteProxy (@"net/http".w3 @"io".Writer) (? error) 395 func (@"net/http".r1 *@"net/http".Request "esc:0x9") @"net/http".closeBody () 396 func (@"net/http".r2 *@"net/http".Request "esc:0x1") @"net/http".expectsContinue () (? bool) 397 func (@"net/http".r3 *@"net/http".Request "esc:0xa") @"net/http".multipartReader () (? *@"mime/multipart".Reader, ? error) 398 func (@"net/http".r2 *@"net/http".Request "esc:0x1") @"net/http".wantsClose () (? bool) 399 func (@"net/http".r2 *@"net/http".Request "esc:0x1") @"net/http".wantsHttp10KeepAlive () (? bool) 400 func (@"net/http".req2 *@"net/http".Request "esc:0x9") @"net/http".write (@"net/http".w3 @"io".Writer, @"net/http".usingProxy4 bool, @"net/http".extraHeaders5 @"net/http".Header "esc:0x9") (? error) 401 func @"".Cmdline (@"".w1 @"net/http".ResponseWriter, @"".r2 *@"net/http".Request "esc:0x1") 402 func @"".Profile (@"".w1 @"net/http".ResponseWriter, @"".r2 *@"net/http".Request "esc:0x9") 403 func @"".Trace (@"".w1 @"net/http".ResponseWriter, @"".r2 *@"net/http".Request "esc:0x9") 404 func @"".Symbol (@"".w1 @"net/http".ResponseWriter, @"".r2 *@"net/http".Request "esc:0x9") 405 type @"net/http".Handler interface { ServeHTTP(? @"net/http".ResponseWriter, ? *@"net/http".Request) } 406 func @"".Handler (@"".name2 string "esc:0x12") (? @"net/http".Handler) { return @"".handler(@"".name2) } 407 func @"".Index (@"".w1 @"net/http".ResponseWriter, @"".r2 *@"net/http".Request "esc:0x9") 408 func @"".init () 409 func @"math/big".low64 (@"math/big".z2 @"math/big".nat "esc:0x1") (? uint64) { if len(@"math/big".z2) == 0x0 { return 0x0 }; var @"math/big".v3 uint64; ; @"math/big".v3 = uint64(@"math/big".z2[0x0]); if false && len(@"math/big".z2) > 0x1 { @"math/big".v3 |= uint64(@"math/big".z2[0x1]) << 0x20 }; return @"math/big".v3 } 410 var @"time".months [12]string 411 var @"time".days [7]string 412 var @"time".Local *@"time".Location 413 var @"time".UTC *@"time".Location 414 func @"net".IPv4 (@"net".a2 byte, @"net".b3 byte, @"net".c4 byte, @"net".d5 byte) (? @"net".IP) { var @"net".p6 @"net".IP; ; @"net".p6 = make(@"net".IP, 0x10); copy(@"net".p6, @"net".v4InV6Prefix); @"net".p6[0xc] = @"net".a2; @"net".p6[0xd] = @"net".b3; @"net".p6[0xe] = @"net".c4; @"net".p6[0xf] = @"net".d5; return @"net".p6 } 415 var @"bufio".ErrInvalidUnreadByte error 416 var @"bufio".ErrInvalidUnreadRune error 417 import errors "errors" // indirect 418 func @"errors".New (@"errors".text2 string) (? error) { return (&@"errors".errorString{ @"errors".s:@"errors".text2 }) } 419 type @"".handler string 420 func (@"".name1 @"".handler) ServeHTTP (@"".w2 @"net/http".ResponseWriter, @"".r3 *@"net/http".Request "esc:0x9") 421 var @"net".v4InV6Prefix []byte 422 type @"errors".errorString struct { @"errors".s string } 423 func (@"errors".e2 *@"errors".errorString "esc:0x22") Error () (? string) { return @"errors".e2.@"errors".s } 424 425 $$ 426 _go_.o 0 0 0 644 50440 ` 427 go object linux amd64 go1.5.1 X:none 428 429 ! 430 go13ldbufio.abytes.a 431 fmt.ahtml/template.aio.a 432 log.anet/http.aos.aruntime.aruntime/pprof.aruntime/trace.astrconv.astrings.atime.a"".init.1 435 dH%H;aH8H\$8H$HH\$ H1H9=HH$HD$ HL$ HD$(HD$HL$0HL$HH\$ H1H9HH$HD$HL$ HD$(HD$HL$0HL$HH\$ H1H99HH$HD$HL$ HD$(HD$HL$0HL$HH\$ H1H9HH$HD$HL$ HD$(HD$HL$0HL$HH\$ H1H9t<HH$HD$HL$ HD$(HD$HL$0HL$H8HH$HH\$HH\$HD$HH$HH\$HH\$HD$HH$HH\$HH\$HD$HH$HH\$HH\$HD$HH$HH\$HH\$HD$DX 438 B 439 *runtime.racefuncenterP"".IndexfhZgo.itab.net/http.HandlerFunc.net/http.Handler2go.string."/debug/pprof/" 440 net/http.Handle"".CmdlinefZgo.itab.net/http.HandlerFunc.net/http.Handler@go.string."/debug/pprof/cmdline" 441 net/http.Handle"".ProfilefZgo.itab.net/http.HandlerFunc.net/http.Handler@go.string."/debug/pprof/profile" 442 net/http.Handle"".SymbolfZgo.itab.net/http.HandlerFunc.net/http.Handler>go.string."/debug/pprof/symbol" 443 net/http.Handle"".TracefZgo.itab.net/http.HandlerFunc.net/http.Handler<go.string."/debug/pprof/trace" 444 net/http.Handle 445 (runtime.racefuncexit2type.net/http.HandlerFunc*type.net/http.HandlerZgo.itab.net/http.HandlerFunc.net/http.Handler 446 runtime.typ2Itab2type.net/http.HandlerFunc*type.net/http.HandlerZgo.itab.net/http.HandlerFunc.net/http.Handler 447 runtime.typ2Itab2type.net/http.HandlerFunc*type.net/http.HandlerZgo.itab.net/http.HandlerFunc.net/http.Handler 448 runtime.typ2Itab 2type.net/http.HandlerFunc *type.net/http.Handler Zgo.itab.net/http.HandlerFunc.net/http.Handler 449 runtime.typ2Itab 450 2type.net/http.HandlerFunc 451 *type.net/http.Handler 452 Zgo.itab.net/http.HandlerFunc.net/http.Handler 453 454 runtime.typ2Itab 455 456 0runtime.morestack_noctxtp"".autotmp_0010type.*uint8"".autotmp_0009type.*uint8"".autotmp_0008type.*uint8"".autotmp_0007type.*uint8"".autotmp_00052type.net/http.HandlerFunc"".autotmp_00042type.net/http.HandlerFunc"".autotmp_00032type.net/http.HandlerFunc"".autotmp_00022type.net/http.HandlerFunc"".autotmp_0001/2type.net/http.HandlerFuncpop< 457 PPPPQ/2222 Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals2c033e7f4f4a74cc7e9f368d1fec9f60dprebuilts/go/linux-x86/src/net/http/pprof/pprof.go"".CmdlinedH%H;a,H`H\$`H$H\$pH$H\$hH[ H\$H$HH\$HD$HH\$HD$ HH$HH$HH\$HH\$HH\$HD$ H\$(H\$PH\$0H\$XHH$H\$hH\$H\$pH\$H\$HH$HKHL$H\$PH\$H\$XH\$1H\$ H\$(H\$0H`$ 462 B 463 *runtime.racefuncentern0go.string."Content-Type"Jgo.string."text/plain; charset=utf-8" 464 &net/http.Header.Setos.Args 465 runtime.racereados.Argsos.Args os.Args go.string."\x00" 466 strings.Jointype.io.Writer 467 runtime.convI2I 468 fmt.Fprintf 469 (runtime.racefuncexit 470 0runtime.morestack_noctxt0"".autotmp_0022type.string"".r ,type.*net/http.Request"".w8type.net/http.ResponseWriterL ? Tgclocalsa9147c3531f082a2cfd2e5842c99b4f1Tgclocalsd8fdd2a55187867c76648dc792366181dprebuilts/go/linux-x86/src/net/http/pprof/pprof.go"".Profile dH%HD$H;A-HH$H$H$H$HH\$HD$HL$HD$ H$H$H$HD$HD$ 475 HD$@HD$ HD$PHu HD$PH$H$H$H[ H\$H$HH\$HD$HH\$HD$ HH$H$H\$H$H\$H\$HH$HKHL$HL$HD$HD$`HL$XHH$H$H$H[ H\$H$HH\$HD$HH\$HD$ HD$H$H$H$H[01H\$xH$H\$xH'H$H$H$H\$XH$H\$`H\$H\$H\$hH\$H\$pH$H$H$Hl$hH+Hl$p=HkHH$H$H\$H$H\$H\$HH$HKHL$HH\$HD$#H$H\$ H$H\$(H$H\$0HLCL$Hl$\H\$PHi;H$H< 482 X 483 *runtime.racefuncenter~&go.string."seconds" 484 :net/http.(*Request).FormValue 485 strconv.ParseInt0go.string."Content-Type"Hgo.string."application/octet-stream" 486 &net/http.Header.Settype.io.Writer 487 runtime.convI2I 488 :runtime/pprof.StartCPUProfile0go.string."Content-Type"Jgo.string."text/plain; charset=utf-8" 489 &net/http.Header.Set 490 runtime.convI2E 491 "runtime.racewrite 6runtime.writeBarrierEnabled type.io.Writer 492 493 runtime.convI2I 494 `go.string."Could not enable CPU profiling: %s\n" 496 fmt.Fprintf 498 (runtime.racefuncexit 500 .runtime.writebarrierptr 502 time.Sleep 504 8runtime/pprof.StopCPUProfile 506 (runtime.racefuncexit 508 0runtime.morestack_noctxt0"".autotmp_0032"type.interface {}"".autotmp_0031o(type.[1]interface {}"".autotmp_0028/&type.[]interface {}"".autotmp_0027(type.net/http.Header"".autotmp_0023Otype.string"".errtype.error"".sectype.int64"".r ,type.*net/http.Request"".w8type.net/http.ResponseWriter&DJ&#e 513 RbR# 514 '*+%PV!"Tgclocalsb51977347780199bdeb5c3bc2af3d367Tgclocals3bf5de336d33c8515e96cc583f0ae115dprebuilts/go/linux-x86/src/net/http/pprof/pprof.go"".Trace dH%HD$H;A-HH$H$H$H$HH\$HD$HL$HD$ H$H$H$HD$HD$ 520 HD$@HD$ HD$PHu HD$PH$H$H$H[ H\$H$HH\$HD$HH\$HD$ HH$H$H\$H$H\$H\$HH$HKHL$HL$HD$HD$`HL$XHH$H$H$H[ H\$H$HH\$HD$HH\$HD$ HD$H$H$H$H[01H\$xH$H\$xH'H$H$H$H\$XH$H\$`H\$H\$H\$hH\$H\$pH$H$H$Hl$hH+Hl$p=HkHH$H$H\$H$H\$H\$HH$HKHL$HH\$HD$H$H\$ H$H\$(H$H\$0HLCL$Hl$\H\$PHi;H$H< 527 X 528 *runtime.racefuncenter~&go.string."seconds" 529 :net/http.(*Request).FormValue 530 strconv.ParseInt0go.string."Content-Type"Hgo.string."application/octet-stream" 531 &net/http.Header.Settype.io.Writer 532 runtime.convI2I 533 &runtime/trace.Start0go.string."Content-Type"Jgo.string."text/plain; charset=utf-8" 534 &net/http.Header.Set 535 runtime.convI2E 536 "runtime.racewrite 6runtime.writeBarrierEnabled type.io.Writer 537 538 runtime.convI2I 539 Tgo.string."Could not enable tracing: %s\n" 541 fmt.Fprintf 543 (runtime.racefuncexit 545 .runtime.writebarrierptr 547 time.Sleep 549 $runtime/trace.Stop 551 (runtime.racefuncexit 553 0runtime.morestack_noctxt0"".autotmp_0042"type.interface {}"".autotmp_0041o(type.[1]interface {}"".autotmp_0038/&type.[]interface {}"".autotmp_0037(type.net/http.Header"".autotmp_0033Otype.string"".errtype.error"".sectype.int64"".r ,type.*net/http.Request"".w8type.net/http.ResponseWriter&DJ$!e 558 RbR# 559 %*+%PV!"Tgclocalsb51977347780199bdeb5c3bc2af3d367Tgclocals3bf5de336d33c8515e96cc583f0ae115dprebuilts/go/linux-x86/src/net/http/pprof/pprof.go"".Symbol88dH%H$ H;AH`1H$(H$pH$xH$`H$H$pH$H$hH[ H\$H$HH\$HD$HH\$HD$ HH$HD$H$H$HD$pH$H$H1H9H$H$`H$H$hHL$HH\$HD$1H\$ H\$(H\$0H$xH$H$xHH 565 H$HBH$H H$HD$H-Hl$HD$H$x\$ H$H$@HH$H$xHH^@H|$HHHKHOHL$HD$ H$H$H$ H$(HD$XH$HH$H$@HL$H$HHD$H$H\$HL$X\$ H$H$H$H$HL$XHZH9HH$H$H$D$+Ht$HD$HL$ Hl$(HT$0H$XH$PHuHHH9HH$H$Ht$H$HD$H$HL$H\$ HH$HKHL$HD$HD$@HD$ H2HD$`H$HD$1H9H$H$H\$`H\$hH$H\$H$H\$H$HH$1H91H$8H$@H$HH$PH$8HH$(H$0H$ HH$H\$hH\$HD$H\$H$H\$ H$H$ H$H$ H$H+H$=HkHH$H$H\$HD$H\$H$H\$ H$H$ HH$H$ H$HH+H$=vHkH$H$H$`H$H$hHL$HH\$HD$H$ H\$ H$(H\$(H$0H\$0H$PHHH$H$PH-H9(HH$H$PH,$H$XHl$H-Hl$H-Hl$\$ H$1H$H$H$H$H$H$H$HhHl$pH$H$Hl$pLCLKL9waLI)I)ItM*L$LT$L$LD$L$LL$H$pH$H$hH[(H`H$H$HH$1H9B1H$pH$xH$pHH$(H$0H$ H$PH$H$XH\$H\$H$H\$H$H$ H$H$ H$H+H$=usHkH$H$H$`H$H$hHL$HH\$HD$H$ H\$ H$(H\$(H$0H\$0LCL$Hl$zHH$HH\$HH\$H\$H$LCL$Hl$wLCL$Hl$:HH$HH\$HH\$H\$H$H}HH$1HH$H\$xH$HH$HL$HL$LD$Ht$ Hl$(H$@H$HH$1HL$L$H$H$H$H$H$H$ H$H$(H$PH$XH$H$HD$XH$Ht,H$H\$Hl$H-H,$HD$xE_H$H$H$xHkH,$H$XH$xHkHH]XH$H]`H$HH$HD$H$H$H$H$HkH$=H+H$H$H$H$H@H$H$H$H@H$H1H9 H$H$H$H$H$HD$PH$HH$H$0HD$H$8HT$H$H\$HL$P\$ H$t7H$H$H$HL$PHZH9|HH$zH}HH$X1HH$XH$H$HH$HL$HL$LD$Ht$ Hl$(H$0H$8H$1HL$L$H$H$H$H$H$H$ H$H$(H$PH$XH$H$HD$XH$Ht/H$H\$Hl$H-H,$H$HH$HH\$HH\$HD$H$Hl$TEwHH$HH\$HH\$HD$ 572 Z 573 runtime.duffzero 574 *runtime.racefuncenter0go.string."Content-Type"Jgo.string."text/plain; charset=utf-8" 575 &net/http.Header.Set"type.bytes.Buffer 576 "runtime.newobject 577 ,runtime.racewriterange>go.itab.*bytes.Buffer.io.Writer8go.string."num_symbols: 1\n" 578 fmt.Fprintf 579 runtime.raceread go.string."POST" 580 runtime.eqstring 581 runtime.racereadtype.io.Reader 582 runtime.convI2I $type.*bufio.Reader 583 $runtime.assertI2T2 584 585 runtime.raceread 587 2bufio.(*Reader).ReadSlice 589 2runtime.slicebytetostring 591 "strconv.ParseUint 592 "runtime.FuncForPC 593 (runtime.(*Func).Name>go.itab.*bytes.Buffer.io.Writertype.uint64 594 runtime.convT2E 595 "runtime.racewrite6runtime.writeBarrierEnabledtype.string 596 runtime.convT2E 597 "runtime.racewrite6runtime.writeBarrierEnabled(go.string."%#x %s\n" 598 fmt.Fprintfio.EOF 600 runtime.racereadio.EOFio.EOF 603 runtime.racereadio.EOFio.EOF 606 runtime.ifaceeq 607 runtime.raceread 608 runtime.raceread 609 (runtime.racefuncexit 610 $runtime.panicslice>go.itab.*bytes.Buffer.io.Writer 611 runtime.convI2E 612 "runtime.racewrite6runtime.writeBarrierEnabled Bgo.string."reading request: %v\n"! 613 fmt.Fprintf" 614 .runtime.writebarrierptr"$type.*bytes.Buffer"type.io.Writer">go.itab.*bytes.Buffer.io.Writer" 615 runtime.typ2Itab# 616 .runtime.writebarrierptr# 617 .runtime.writebarrierptr$$type.*bytes.Buffer$type.io.Writer$>go.itab.*bytes.Buffer.io.Writer$ 618 runtime.typ2Itab$ 619 $runtime.panicslice% 620 runtime.duffzero%type.[]uint8& 621 "runtime.makeslice& 622 runtime.duffzero) 623 ,runtime.racewriterange)"type.bufio.Reader) 624 (runtime.typedmemmove* 625 runtime.raceread* 626 runtime.raceread+&type.strings.Reader+ 627 "runtime.newobject, 628 "runtime.racewrite,6runtime.writeBarrierEnabled- 629 "runtime.racewrite- 630 "runtime.racewrite.Bgo.itab.*strings.Reader.io.Reader/$type.*bufio.Reader0 631 $runtime.assertI2T20 632 runtime.raceread1 633 runtime.duffzero2type.[]uint82 634 "runtime.makeslice3 635 runtime.duffzero5 636 ,runtime.racewriterange5"type.bufio.Reader6 637 (runtime.typedmemmove6(type.*strings.Reader6type.io.Reader6Bgo.itab.*strings.Reader.io.Reader6 638 runtime.typ2Itab7 639 .runtime.writebarrierptr7$type.*bytes.Buffer7type.io.Writer8>go.itab.*bytes.Buffer.io.Writer8 640 runtime.typ2Itab8 641 0runtime.morestack_noctxt0 "".autotmp_0091"type.interface {}"".autotmp_0090(type.[1]interface {}"".autotmp_0087&type.[]interface {}"".autotmp_0086type.*uint8"".autotmp_0085"type.interface {}"".autotmp_0084"type.interface {}"".autotmp_0083(type.[2]interface {}"".autotmp_0080&type.[]interface {}"".autotmp_0079type.*uint8"".autotmp_0078$type.*bufio.Reader"".autotmp_0077"type.bufio.Reader"".autotmp_0076type.*uint8"".autotmp_0075type.io.Reader"".autotmp_0074 643 (type.*strings.Reader"".autotmp_0073(type.*strings.Reader"".autotmp_0072$type.*bufio.Reader"".autotmp_0071"type.bufio.Reader"".autotmp_0070type.io.Reader"".autotmp_0069type.string"".autotmp_0068 644 type.*uint8"".autotmp_0067type.[]uint8"".autotmp_0066type.int"".autotmp_0065$type.*bytes.Buffer"".autotmp_0064type.string"".autotmp_0063type.uint64"".autotmp_0062$type.*bytes.Buffer"".autotmp_0058type.int"".autotmp_0056type.[]uint8"".autotmp_0055"type.bufio.Reader"".autotmp_0054type.[]uint8"".autotmp_0053$type.*bufio.Reader"".autotmp_0052type.int"".autotmp_0051$type.*bufio.Reader"".autotmp_0050(type.*strings.Reader"".autotmp_0049"type.bufio.Reader"".autotmp_0046type.int"".autotmp_0045 647 $type.*bufio.Reader"".autotmp_0044 648 $type.*bytes.Buffer"".&buf 649 $type.*bytes.Buffer"".~r0type.[]uint8bytes.b2$type.*bytes.Bufferbufio.r3 type.io.Readerbufio.buf2type.[]uint8bufio.b1 652 $type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.b4$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Readerbufio.rd2type.io.Readerbufio.r3 type.io.Readerbufio.buf2type.[]uint8bufio.b1 656 $type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.b4$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Readerbufio.rd2 type.io.Readerstrings.s2 type.string 660 "".pctype.uint64"".errtype.error"".wordtype.[]uint8"".b 663 $type.*bufio.Reader"".r ,type.*net/http.Request"".w8type.net/http.ResponseWriter" ATQR/ 668 n}7e 670 |Xo2M,;u|+R/"52+104$K%Q 677 0#XB(x09 T Tgclocals55bee717b53736dce8de0fa175286b01Tgclocalsbf37b5470b13a472142c8993f382808edprebuilts/go/linux-x86/src/net/http/pprof/pprof.go"".HandlerdH%H;aHHH\$HH$1H\$`H\$hH\$PH\$8H\$XH\$@HH$HH\$HH\$H\$8H\$HD$ H\$(H\$`H\$0H\$hHHX 680 B 681 *runtime.racefuncentertype."".handler*type.net/http.HandlerFgo.itab."".handler.net/http.Handler 682 runtime.convT2I 683 (runtime.racefuncexit 684 0runtime.morestack_noctxt@"".autotmp_0099type."".handler"".~r1 *type.net/http.Handler"".nametype.string1c [Tgclocals06be4abc148cc801a93c492b76c8e5c8Tgclocalsf273d95821749b2fa833873bf04b0c5fdprebuilts/go/linux-x86/src/net/http/pprof/pprof.go("".handler.ServeHTTPdH%HD$H;AHH$H$H$H$H$H[ H\$H$HH\$HD$HH\$HD$ H$H$HH\$HD$HL$HD$ H$H$H$HD$H\$H\$XH$H$H$H\$HD$HD$`1H9HD$H$H$H$H[0H$H$H$H$1H\$xH$H\$xH5H$H$H$HH$H$H\$HD$H\$H\$hH\$ H\$pH$H$H$Hl$hH+Hl$p=HkHH$H$H\$H$H\$H\$HH$HKHL$HH\$HD$H$H\$ H$H\$(H$H\$0HLCL$Hl$\H$H$HH\$HD$HL$HD$ H$H$H$HD$H$H\$H\$PHuEH$H,$HL$H-Hl$HD$\$ tH\$PH~HH$H$H\$H$H\$H\$H|$HHHKHOH\$`H$H\$XH\$H:@ 693 X 694 *runtime.racefuncenter0go.string."Content-Type"Jgo.string."text/plain; charset=utf-8" 695 &net/http.Header.Set"go.string."debug" 696 :net/http.(*Request).FormValue 697 strconv.Atoi 698 (runtime/pprof.Lookuptype."".handler 699 runtime.convT2E 700 "runtime.racewrite6runtime.writeBarrierEnabledtype.io.Writer 701 runtime.convI2I Bgo.string."Unknown profile: %s\n" 702 fmt.Fprintf 703 704 (runtime.racefuncexit 705 706 .runtime.writebarrierptr 707 go.string."gc" 709 :net/http.(*Request).FormValue 711 strconv.Atoi go.string."heap" 714 runtime.eqstring 716 runtime.GC type.io.Writer 719 runtime.convI2I 720 @runtime/pprof.(*Profile).WriteTo 721 (runtime.racefuncexit 722 0runtime.morestack_noctxtP"".autotmp_0111"type.interface {}"".autotmp_0110(type.[1]interface {}"".autotmp_0107/&type.[]interface {}"".autotmp_0106type.int"".autotmp_0105type.string"".autotmp_0104otype."".handler"".autotmp_0101Otype.string 723 "".gctype.int"".p6type.*runtime/pprof.Profile"".debugtype.int"".r@,type.*net/http.Request"".w 8type.net/http.ResponseWriter"".nametype."".handler(JRX## `FZ .+%PV2 &Tgclocals9bfba174a58b955c5fb6e13420ce8585Tgclocalsbc664f412d00ccc52d070525422b5869dprebuilts/go/linux-x86/src/net/http/pprof/pprof.go"".IndexdH%H$0H;AHP1H$H$H$PH$H$hH$H$H$hHkH,$H$8H$hHkHdLE8LD$hHu@H=H$H Ht$pH$H9$H9H9L$L$H$HD$H|$HD$\$ H<H$hH$H$H$hHkH,$H$8H$hHkH~Hu8HU@LI 1H\$8H\$@Ht$HHt$XHT$PLD$xL$L$HT$`L$L9I9M9H$H4$L$LT$LD$LT$L$Ht$HHT$P\$ H<HI9L)IHtOLHHL$8H$HD$@H$HtBH$HD$H$XH\$H$`H\$H$hH\$ HPH$HL$HD$H$H$8H$H$@H$H$HHH$HH$H$XH\$H$`H\$H\$H$H\$ H$HH$H$8H\$HD$H\$H|$HHHKHOHH$H$H\$H$H\$HL$(HT$0H$H$H1H$H$H$HH$(H$0H$ H$HT$H\$H$H\$H$H$ H$H$ H$H+H$=u<HkH$ H$H$(H\$H$0H\$HPLCL$Hl$,HHq1@12Ez1%1E> 736 737 *runtime.racefuncenter 738 runtime.raceread 739 runtime.raceread2go.string."/debug/pprof/" 740 runtime.eqstring 741 runtime.raceread 742 runtime.raceread2go.string."/debug/pprof/" 743 runtime.eqstring 744 ("".handler.ServeHTTP 745 746 (runtime.racefuncexit 747 748 ,runtime/pprof.Profiles"".indexTmpl 751 runtime.racereadtype.io.Writer 754 runtime.convI2I:type.[]*runtime/pprof.Profile 757 runtime.convT2E "".indexTmpl 759 Bhtml/template.(*Template).Execute 760 runtime.convI2E 761 "runtime.racewrite6runtime.writeBarrierEnabled 762 log.Print 763 (runtime.racefuncexit 764 .runtime.writebarrierptr 765 $runtime.panicslice 766 $runtime.panicslice 767 $runtime.panicslice 768 0runtime.morestack_noctxt02"".autotmp_0132"type.interface {}"".autotmp_0131(type.[1]interface {}"".autotmp_0128_&type.[]interface {}"".autotmp_0127type.io.Writer"".autotmp_0126type.bool"".autotmp_0123/:type.[]*runtime/pprof.Profile"".autotmp_0121type.string"".autotmp_0120type.int"".autotmp_0119type.string"".autotmp_0118type.int"".autotmp_0117type.int"".autotmp_0116type.int"".autotmp_0115type.string"strings.prefix3type.stringstrings.s2type.string"".~r0type.string"strings.prefix3type.stringstrings.s2type.string"strings.prefix3type.stringstrings.s2type.string"".errtype.error"".profiles:type.[]*runtime/pprof.Profile"".nametype.string"".r ,type.*net/http.Request"".w8type.net/http.ResponseWriter*" 771 L45/6@`jBv+S eTgclocalsa1bbdca80261f4bde6921b9a8af618a6Tgclocals8b05a0b20e69d72b425a5309caea4885dprebuilts/go/linux-x86/src/net/http/pprof/pprof.go"".initdH%H;aHHH\$HH$HH$t-HH$u 774 HHHH$HH$HD$H\$H$HH\$HD$#HD$HT$ HL$(H$HT$8HT$HL$@HL$H\$H\$0HH$H\$0=u-HHH$HHH-H,$H\$WX 776 B 777 *runtime.racefuncenterP"".initdoneb 778 runtime.racereadp"".initdone"".initdone 779 runtime.raceread"".initdone 780 (runtime.racefuncexit 781 "runtime.throwinit"".initdone 782 "runtime.racewrite"".initdone 783 bufio.init 784 bytes.init 785 fmt.init 786 $html/template.init 787 io.init 788 log.init 789 net/http.init 790 os.init 791 runtime.init 792 $runtime/pprof.init 793 $runtime/trace.init 794 strconv.init 795 strings.init 796 time.init"go.string."index" 797 "html/template.New""..gostring.1 798 >html/template.(*Template).Parse 799 $html/template.Must"".indexTmpl 800 "runtime.racewrite6runtime.writeBarrierEnabled"".indexTmpl 801 "".init.1"".initdone 802 "runtime.racewrite"".initdone 803 (runtime.racefuncexit"".indexTmpl 804 .runtime.writebarrierptr 805 0runtime.morestack_noctxt"".autotmp_01388type.*html/template.Template"".autotmp_0134type.error"".autotmp_0133/8type.*html/template.Template&O(!" NTgclocals69c1753bd5f81501d95132d08af04464Tgclocals2c033e7f4f4a74cc7e9f368d1fec9f60dprebuilts/go/linux-x86/src/net/http/pprof/pprof.go4type..hash.[1]interface {}dH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C 807 808 B 809 *runtime.racefuncenter 810 (runtime.nilinterhash 811 (runtime.racefuncexit 812 0runtime.morestack_noctxt0P 813 "".autotmp_0141type.int"".autotmp_0140type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[1]interface {}POP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbdprebuilts/go/linux-x86/src/net/http/pprof/pprof.go0type..eq.[1]interface {}dH%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 817 B 818 *runtime.racefuncenter 819 runtime.raceread 820 runtime.raceread 821 runtime.efaceeq 822 (runtime.racefuncexit 823 (runtime.racefuncexit 824 0runtime.morestack_noctxt0"".autotmp_0145?"type.interface {}"".autotmp_0144"type.interface {}"".autotmp_0143_type.int"".autotmp_0142Otype.int"".iotype.int"".~r2 type.bool"".q*type.*[1]interface {}"".p*type.*[1]interface {}& O_Tgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787dprebuilts/go/linux-x86/src/net/http/pprof/pprof.go4type..hash.[2]interface {}dH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C 827 828 B 829 *runtime.racefuncenter 830 (runtime.nilinterhash 831 (runtime.racefuncexit 832 0runtime.morestack_noctxt0P 833 "".autotmp_0148type.int"".autotmp_0147type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[2]interface {}POP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbdprebuilts/go/linux-x86/src/net/http/pprof/pprof.go0type..eq.[2]interface {}dH%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 837 B 838 *runtime.racefuncenter 839 runtime.raceread 840 runtime.raceread 841 runtime.efaceeq 842 (runtime.racefuncexit 843 (runtime.racefuncexit 844 0runtime.morestack_noctxt0"".autotmp_0152?"type.interface {}"".autotmp_0151"type.interface {}"".autotmp_0150_type.int"".autotmp_0149Otype.int"".iotype.int"".~r2 type.bool"".q*type.*[2]interface {}"".p*type.*[2]interface {}& O_Tgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787dprebuilts/go/linux-x86/src/net/http/pprof/pprof.go."".(*handler).ServeHTTPdH%H;aH0HY Ht H|$8H9;uH#H\$0H$H\$81H9uEHH$HD$HH\$HD$HH\$ HD$( H\$8H$Ht$8HH$HNHL$H\$@H\$H\$HH\$H\$PH\$ H0 850 n 851 *runtime.racefuncenter"go.string."pprof"&go.string."handler"*go.string."ServeHTTP" 852 "runtime.panicwrap 853 runtime.raceread 854 ("".handler.ServeHTTP 855 (runtime.racefuncexit 856 0runtime.morestack_noctxt@`"".r0,type.*net/http.Request"".w8type.net/http.ResponseWriter""..this type.*"".handler`_`6Tgclocals31b2ddfd7c7062d584469c95698a3e1dTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>0Zgo.itab.net/http.HandlerFunc.net/http.Handler:go.string.hdr."/debug/pprof/" 2go.string."/debug/pprof/"2go.string."/debug/pprof/" /debug/pprof/Hgo.string.hdr."/debug/pprof/cmdline" @go.string."/debug/pprof/cmdline"@go.string."/debug/pprof/cmdline"0*/debug/pprof/cmdlineHgo.string.hdr."/debug/pprof/profile" @go.string."/debug/pprof/profile"@go.string."/debug/pprof/profile"0*/debug/pprof/profileFgo.string.hdr."/debug/pprof/symbol" >go.string."/debug/pprof/symbol">go.string."/debug/pprof/symbol"0(/debug/pprof/symbolDgo.string.hdr."/debug/pprof/trace" <go.string."/debug/pprof/trace"<go.string."/debug/pprof/trace"0&/debug/pprof/traceTgclocals2c033e7f4f4a74cc7e9f368d1fec9f60 Tgclocals69c1753bd5f81501d95132d08af044648go.string.hdr."Content-Type" 0go.string."Content-Type"0go.string."Content-Type" Content-TypeRgo.string.hdr."text/plain; charset=utf-8" Jgo.string."text/plain; charset=utf-8"Jgo.string."text/plain; charset=utf-8"@4text/plain; charset=utf-8(go.string.hdr."\x00" go.string."\x00" go.string."\x00"Tgclocalsd8fdd2a55187867c76648dc792366181 Tgclocalsa9147c3531f082a2cfd2e5842c99b4f1 .go.string.hdr."seconds" &go.string."seconds"&go.string."seconds"secondsPgo.string.hdr."application/octet-stream" Hgo.string."application/octet-stream"Hgo.string."application/octet-stream"@2application/octet-streamhgo.string.hdr."Could not enable CPU profiling: %s\n" #`go.string."Could not enable CPU profiling: %s\n"`go.string."Could not enable CPU profiling: %s\n"PHCould not enable CPU profiling: %s 860 Tgclocals3bf5de336d33c8515e96cc583f0ae115880<0Tgclocalsb51977347780199bdeb5c3bc2af3d36788\go.string.hdr."Could not enable tracing: %s\n" Tgo.string."Could not enable tracing: %s\n"Tgo.string."Could not enable tracing: %s\n"@<Could not enable tracing: %s 862 Tgclocals3bf5de336d33c8515e96cc583f0ae115880<0Tgclocalsb51977347780199bdeb5c3bc2af3d367880>go.itab.*bytes.Buffer.io.Writer0Bgo.itab.*strings.Reader.io.Reader@go.string.hdr."num_symbols: 1\n" 8go.string."num_symbols: 1\n"8go.string."num_symbols: 1\n" num_symbols: 1 864 (go.string.hdr."POST" go.string."POST" go.string."POST" 865 POST0go.string.hdr."%#x %s\n" (go.string."%#x %s\n"(go.string."%#x %s\n"%#x %s 866 Jgo.string.hdr."reading request: %v\n" Bgo.string."reading request: %v\n"Bgo.string."reading request: %v\n"0*reading request: %v 867 Tgclocalsbf37b5470b13a472142c8993f382808e]AAd01""d Tgclocals55bee717b53736dce8de0fa175286b010Fgo.itab."".handler.net/http.HandlerTgclocalsf273d95821749b2fa833873bf04b0c5f((Tgclocals06be4abc148cc801a93c492b76c8e5c8(( *go.string.hdr."debug" "go.string."debug""go.string."debug"debugJgo.string.hdr."Unknown profile: %s\n" Bgo.string."Unknown profile: %s\n"Bgo.string."Unknown profile: %s\n"0*Unknown profile: %s 870 $go.string.hdr."gc" go.string."gc"go.string."gc"gc(go.string.hdr."heap" go.string."heap" go.string."heap" 871 heapTgclocalsbc664f412d00ccc52d070525422b5869@@8>8Tgclocals9bfba174a58b955c5fb6e13420ce8585@@Tgclocals8b05a0b20e69d72b425a5309caea4885#0000 < Tgclocalsa1bbdca80261f4bde6921b9a8af618a6HH*go.string.hdr."index" "go.string."index""go.string."index"index$"".hdr..gostring.1 #""..gostring.1""..gostring.1<html> 874 <head> 875 <title>/debug/pprof/</title> 876 </head> 877 <body> 878 /debug/pprof/<br> 879 <br> 880 profiles:<br> 881 <table> 882 {{range .}} 883 <tr><td align=right>{{.Count}}<td><a href="{{.Name}}?debug=1">{{.Name}}</a> 884 {{end}} 885 </table> 886 <br> 887 <a href="goroutine?debug=2">full goroutine stack dump</a><br> 888 </body> 889 </html> 890 Tgclocals2c033e7f4f4a74cc7e9f368d1fec9f60 Tgclocals69c1753bd5f81501d95132d08af04464."".indexTmpl8type.*html/template.Template0"".initdonetype.uint8"".init.1f"".init.1"".Cmdlinef"".Cmdline"".Profilef"".Profile"".Tracef"".Trace"".Symbolf"".Symbol"".Handlerf"".Handler."".handler.ServeHTTPf("".handler.ServeHTTP"".Indexf"".Index"".initf"".init"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 {}"runtime.gcbits.01<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.[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 {}.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.[]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787 Tgclocals51af24152615272c3d9efc8538f95767 <type..hashfunc.[2]interface {}4type..hash.[2]interface {}8type..eqfunc.[2]interface {}0type..eq.[2]interface {}2type..alg.[2]interface {} <type..hashfunc.[2]interface {}8type..eqfunc.[2]interface {}"runtime.gcbits.0f>go.string.hdr."[2]interface {}" 6go.string."[2]interface {}"6go.string."[2]interface {}" [2]interface {}(type.[2]interface {} ,Y02type..alg.[2]interface {}@"runtime.gcbits.0fP>go.string.hdr."[2]interface {}"p:go.weak.type.*[2]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[2]interface {} [2]interface {}(type.[2]interface {}@go.string.hdr."*[2]interface {}" 8go.string."*[2]interface {}"8go.string."*[2]interface {}"0"*[2]interface {}*type.*[2]interface {}s-q60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[2]interface {}"p<go.weak.type.**[2]interface {}"runtime.zerovalue(type.[2]interface {}<go.string.hdr."*pprof.handler" 4go.string."*pprof.handler"4go.string."*pprof.handler" *pprof.handler*go.string.hdr."pprof" "go.string."pprof""go.string."pprof"pprof.go.string.hdr."handler" &go.string."handler"&go.string."handler"handler2go.string.hdr."ServeHTTP" *go.string."ServeHTTP"*go.string."ServeHTTP" ServeHTTPTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals31b2ddfd7c7062d584469c95698a3e1dgo.string.hdr."func(*pprof.handler, http.ResponseWriter, *http.Request)" 8go.string."func(*pprof.handler, http.ResponseWriter, *http.Request)"go.string."func(*pprof.handler, http.ResponseWriter, *http.Request)"rfunc(*pprof.handler, http.ResponseWriter, *http.Request)type.func(*"".handler, net/http.ResponseWriter, *net/http.Request)d$30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*pprof.handler, http.ResponseWriter, *http.Request)"pgo.weak.type.*func(*"".handler, net/http.ResponseWriter, *net/http.Request)"runtime.zerovaluetype.func(*"".handler, net/http.ResponseWriter, *net/http.Request)type.func(*"".handler, net/http.ResponseWriter, *net/http.Request) type.*"".handler8type.net/http.ResponseWriter,type.*net/http.Requestgo.typelink.func(*pprof.handler, http.ResponseWriter, *http.Request) func(*"".handler, net/http.ResponseWriter, *net/http.Request)type.func(*"".handler, net/http.ResponseWriter, *net/http.Request)pgo.string.hdr."func(http.ResponseWriter, *http.Request)" (hgo.string."func(http.ResponseWriter, *http.Request)"hgo.string."func(http.ResponseWriter, *http.Request)"`Rfunc(http.ResponseWriter, *http.Request)jtype.func(net/http.ResponseWriter, *net/http.Request)30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(http.ResponseWriter, *http.Request)"p|go.weak.type.*func(net/http.ResponseWriter, *net/http.Request)"runtime.zerovaluejtype.func(net/http.ResponseWriter, *net/http.Request)jtype.func(net/http.ResponseWriter, *net/http.Request)8type.net/http.ResponseWriter,type.*net/http.Requestgo.typelink.func(http.ResponseWriter, *http.Request) func(net/http.ResponseWriter, *net/http.Request)jtype.func(net/http.ResponseWriter, *net/http.Request) type.*"".handler+60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*pprof.handler"p2go.weak.type.**"".handler"runtime.zerovaluetype."".handler` type.*"".handler type.*"".handler2go.string.hdr."ServeHTTP"jtype.func(net/http.ResponseWriter, *net/http.Request)type.func(*"".handler, net/http.ResponseWriter, *net/http.Request)."".(*handler).ServeHTTP."".(*handler).ServeHTTP:go.string.hdr."pprof.handler" 2go.string."pprof.handler"2go.string."pprof.handler" pprof.handlergo.string.hdr."func(pprof.handler, http.ResponseWriter, *http.Request)" 7go.string."func(pprof.handler, http.ResponseWriter, *http.Request)"go.string."func(pprof.handler, http.ResponseWriter, *http.Request)"ppfunc(pprof.handler, http.ResponseWriter, *http.Request)type.func("".handler, net/http.ResponseWriter, *net/http.Request)V30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(pprof.handler, http.ResponseWriter, *http.Request)"pgo.weak.type.*func("".handler, net/http.ResponseWriter, *net/http.Request)"runtime.zerovaluetype.func("".handler, net/http.ResponseWriter, *net/http.Request)type.func("".handler, net/http.ResponseWriter, *net/http.Request)type."".handler8type.net/http.ResponseWriter,type.*net/http.Requestgo.typelink.func(pprof.handler, http.ResponseWriter, *http.Request) func("".handler, net/http.ResponseWriter, *net/http.Request)type.func("".handler, net/http.ResponseWriter, *net/http.Request)<go.string.hdr."net/http/pprof" 4go.string."net/http/pprof"4go.string."net/http/pprof" net/http/pprof"go.importpath."". 4go.string."net/http/pprof"type."".handlerL0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."pprof.handler"p type.*"".handler"runtime.zerovalue`type."".handler.go.string.hdr."handler""go.importpath."".type."".handler2go.string.hdr."ServeHTTP"jtype.func(net/http.ResponseWriter, *net/http.Request)type.func("".handler, net/http.ResponseWriter, *net/http.Request)."".(*handler).ServeHTTP("".handler.ServeHTTP@go.string.hdr."[]*pprof.Profile" 8go.string."[]*pprof.Profile"8go.string."[]*pprof.Profile"0"[]*pprof.Profile:type.[]*runtime/pprof.ProfileF0 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."[]*pprof.Profile"pLgo.weak.type.*[]*runtime/pprof.Profile"runtime.zerovalue6type.*runtime/pprof.Profilejgo.typelink.[]*pprof.Profile []*runtime/pprof.Profile:type.[]*runtime/pprof.Profile.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime"*go.string.hdr."bufio" "go.string."bufio""go.string."bufio"bufio(go.importpath.bufio. "go.string."bufio"*go.string.hdr."bytes" "go.string."bytes""go.string."bytes"bytes(go.importpath.bytes. "go.string."bytes"$go.string.hdr."io" go.string."io"go.string."io"io"go.importpath.io. go.string."io"&go.string.hdr."fmt" go.string."fmt"go.string."fmt"fmt$go.importpath.fmt. go.string."fmt".go.string.hdr."strconv" &go.string."strconv"&go.string."strconv"strconv,go.importpath.strconv. &go.string."strconv"$go.string.hdr."os" go.string."os"go.string."os"os"go.importpath.os. go.string."os":go.string.hdr."html/template" 2go.string."html/template"2go.string."html/template" html/template8go.importpath.html/template. 2go.string."html/template".go.string.hdr."strings" &go.string."strings"&go.string."strings"strings,go.importpath.strings. &go.string."strings"&go.string.hdr."log" go.string."log"go.string."log"log$go.importpath.log. go.string."log"(go.string.hdr."time" go.string."time" go.string."time" 907 time&go.importpath.time. go.string."time"0go.string.hdr."net/http" (go.string."net/http"(go.string."net/http" net/http.go.importpath.net/http. (go.string."net/http":go.string.hdr."runtime/pprof" 2go.string."runtime/pprof"2go.string."runtime/pprof" runtime/pprof8go.importpath.runtime/pprof. 2go.string."runtime/pprof":go.string.hdr."runtime/trace" 2go.string."runtime/trace"2go.string."runtime/trace" runtime/trace8go.importpath.runtime/trace. 2go.string."runtime/trace":type..hash.[1]interface {}f4type..hash.[1]interface {}6type..eq.[1]interface {}f0type..eq.[1]interface {}:type..hash.[2]interface {}f4type..hash.[2]interface {}6type..eq.[2]interface {}f0type..eq.[2]interface {}4"".(*handler).ServeHTTPf."".(*handler).ServeHTTP"runtime.zerovaluego13ld