Russ Cox | 77e96c9 | 2014-12-10 11:07:40 +1100 | [diff] [blame] | 1 | # CL 134210043 archive/zip: add Writer.Flush, Brad Fitzpatrick <bradfitz@golang.org> |
| 2 | pkg archive/zip, method (*Writer) Flush() error |
| 3 | |
| 4 | # CL 97140043 compress/flate: add Reset() to allow reusing large buffers to compress multiple buffers, James Robinson <jamesr@google.com> |
| 5 | pkg compress/flate, type Resetter interface { Reset } |
| 6 | pkg compress/flate, type Resetter interface, Reset(io.Reader, []uint8) error |
| 7 | pkg compress/zlib, type Resetter interface { Reset } |
| 8 | pkg compress/zlib, type Resetter interface, Reset(io.Reader, []uint8) error |
| 9 | |
| 10 | # CL 159120044 compress/gzip: allow stopping at end of first stream, Russ Cox <rsc@golang.org> |
| 11 | pkg compress/gzip, method (*Reader) Multistream(bool) |
| 12 | |
| 13 | # CL 138800043 crypto: Add SHA3 functions in go.crypto/sha3 to the Hash enum., David Leon Gil <coruus@gmail.com> |
| 14 | pkg crypto, const SHA3_224 = 10 |
| 15 | pkg crypto, const SHA3_224 Hash |
| 16 | pkg crypto, const SHA3_256 = 11 |
| 17 | pkg crypto, const SHA3_256 Hash |
| 18 | pkg crypto, const SHA3_384 = 12 |
| 19 | pkg crypto, const SHA3_384 Hash |
| 20 | pkg crypto, const SHA3_512 = 13 |
| 21 | pkg crypto, const SHA3_512 Hash |
| 22 | |
| 23 | # CL 114680043 crypto: add Signer, Adam Langley <agl@golang.org> |
| 24 | pkg crypto, method (Hash) HashFunc() Hash |
| 25 | pkg crypto, type Signer interface { Public, Sign } |
| 26 | pkg crypto, type Signer interface, Public() PublicKey |
| 27 | pkg crypto, type Signer interface, Sign(io.Reader, []uint8, SignerOpts) ([]uint8, error) |
| 28 | pkg crypto, type SignerOpts interface { HashFunc } |
| 29 | pkg crypto, type SignerOpts interface, HashFunc() Hash |
| 30 | pkg crypto/ecdsa, method (*PrivateKey) Public() crypto.PublicKey |
| 31 | pkg crypto/ecdsa, method (*PrivateKey) Sign(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error) |
| 32 | pkg crypto/rsa, method (*PSSOptions) HashFunc() crypto.Hash |
| 33 | pkg crypto/rsa, method (*PrivateKey) Public() crypto.PublicKey |
| 34 | pkg crypto/rsa, method (*PrivateKey) Sign(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error) |
| 35 | pkg crypto/rsa, type PSSOptions struct, Hash crypto.Hash |
| 36 | |
| 37 | # CL 157090043 crypto/tls: support TLS_FALLBACK_SCSV as a server., Adam Langley <agl@golang.org> |
| 38 | pkg crypto/tls, const TLS_FALLBACK_SCSV = 22016 |
| 39 | pkg crypto/tls, const TLS_FALLBACK_SCSV uint16 |
| 40 | |
| 41 | # CL 107400043 crypto/tls: Added dynamic alternative to NameToCertificate map for SNI, Percy Wegmann <ox.to.a.cart@gmail.com> |
| 42 | pkg crypto/tls, type ClientHelloInfo struct |
| 43 | pkg crypto/tls, type ClientHelloInfo struct, CipherSuites []uint16 |
| 44 | pkg crypto/tls, type ClientHelloInfo struct, ServerName string |
| 45 | pkg crypto/tls, type ClientHelloInfo struct, SupportedCurves []CurveID |
| 46 | pkg crypto/tls, type ClientHelloInfo struct, SupportedPoints []uint8 |
| 47 | pkg crypto/tls, type Config struct, GetCertificate func(*ClientHelloInfo) (*Certificate, error) |
| 48 | pkg crypto/tls, type ConnectionState struct, TLSUnique []uint8 |
| 49 | |
| 50 | # CL 153420045 crypto/x509: continue to recognise MaxPathLen of zero as "no value"., Adam Langley <agl@golang.org> |
| 51 | pkg crypto/x509, type Certificate struct, MaxPathLenZero bool |
| 52 | |
| 53 | # CL 158950043 database/sql: add Drivers, returning list of registered drivers, Russ Cox <rsc@golang.org> |
| 54 | pkg database/sql, func Drivers() []string |
| 55 | |
| 56 | # CL 117280043 debug/dwarf: fix Reader panic on DW_TAG_unspecified_type, Derek Parker <parkerderek86@gmail.com> |
| 57 | pkg debug/dwarf, method (*UnspecifiedType) Basic() *BasicType |
| 58 | pkg debug/dwarf, method (*UnspecifiedType) Common() *CommonType |
| 59 | pkg debug/dwarf, method (*UnspecifiedType) Size() int64 |
| 60 | pkg debug/dwarf, method (*UnspecifiedType) String() string |
| 61 | pkg debug/dwarf, type UnspecifiedType struct |
| 62 | pkg debug/dwarf, type UnspecifiedType struct, embedded BasicType |
| 63 | |
| 64 | # CL 132000043 debug/elf: support arm64 relocations, Michael Hudson-Doyle <michael.hudson@linaro.org> |
| 65 | pkg debug/elf, const EM_AARCH64 = 183 |
| 66 | pkg debug/elf, const EM_AARCH64 Machine |
| 67 | pkg debug/elf, const R_AARCH64_ABS16 = 259 |
| 68 | pkg debug/elf, const R_AARCH64_ABS16 R_AARCH64 |
| 69 | pkg debug/elf, const R_AARCH64_ABS32 = 258 |
| 70 | pkg debug/elf, const R_AARCH64_ABS32 R_AARCH64 |
| 71 | pkg debug/elf, const R_AARCH64_ABS64 = 257 |
| 72 | pkg debug/elf, const R_AARCH64_ABS64 R_AARCH64 |
| 73 | pkg debug/elf, const R_AARCH64_ADD_ABS_LO12_NC = 277 |
| 74 | pkg debug/elf, const R_AARCH64_ADD_ABS_LO12_NC R_AARCH64 |
| 75 | pkg debug/elf, const R_AARCH64_ADR_GOT_PAGE = 311 |
| 76 | pkg debug/elf, const R_AARCH64_ADR_GOT_PAGE R_AARCH64 |
| 77 | pkg debug/elf, const R_AARCH64_ADR_PREL_LO21 = 274 |
| 78 | pkg debug/elf, const R_AARCH64_ADR_PREL_LO21 R_AARCH64 |
| 79 | pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21 = 275 |
| 80 | pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21 R_AARCH64 |
| 81 | pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21_NC = 276 |
| 82 | pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21_NC R_AARCH64 |
| 83 | pkg debug/elf, const R_AARCH64_CALL26 = 283 |
| 84 | pkg debug/elf, const R_AARCH64_CALL26 R_AARCH64 |
| 85 | pkg debug/elf, const R_AARCH64_CONDBR19 = 280 |
| 86 | pkg debug/elf, const R_AARCH64_CONDBR19 R_AARCH64 |
| 87 | pkg debug/elf, const R_AARCH64_COPY = 1024 |
| 88 | pkg debug/elf, const R_AARCH64_COPY R_AARCH64 |
| 89 | pkg debug/elf, const R_AARCH64_GLOB_DAT = 1025 |
| 90 | pkg debug/elf, const R_AARCH64_GLOB_DAT R_AARCH64 |
| 91 | pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 = 309 |
| 92 | pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 R_AARCH64 |
| 93 | pkg debug/elf, const R_AARCH64_IRELATIVE = 1032 |
| 94 | pkg debug/elf, const R_AARCH64_IRELATIVE R_AARCH64 |
| 95 | pkg debug/elf, const R_AARCH64_JUMP26 = 282 |
| 96 | pkg debug/elf, const R_AARCH64_JUMP26 R_AARCH64 |
| 97 | pkg debug/elf, const R_AARCH64_JUMP_SLOT = 1026 |
| 98 | pkg debug/elf, const R_AARCH64_JUMP_SLOT R_AARCH64 |
| 99 | pkg debug/elf, const R_AARCH64_LD64_GOT_LO12_NC = 312 |
| 100 | pkg debug/elf, const R_AARCH64_LD64_GOT_LO12_NC R_AARCH64 |
| 101 | pkg debug/elf, const R_AARCH64_LDST128_ABS_LO12_NC = 299 |
| 102 | pkg debug/elf, const R_AARCH64_LDST128_ABS_LO12_NC R_AARCH64 |
| 103 | pkg debug/elf, const R_AARCH64_LDST16_ABS_LO12_NC = 284 |
| 104 | pkg debug/elf, const R_AARCH64_LDST16_ABS_LO12_NC R_AARCH64 |
| 105 | pkg debug/elf, const R_AARCH64_LDST32_ABS_LO12_NC = 285 |
| 106 | pkg debug/elf, const R_AARCH64_LDST32_ABS_LO12_NC R_AARCH64 |
| 107 | pkg debug/elf, const R_AARCH64_LDST64_ABS_LO12_NC = 286 |
| 108 | pkg debug/elf, const R_AARCH64_LDST64_ABS_LO12_NC R_AARCH64 |
| 109 | pkg debug/elf, const R_AARCH64_LDST8_ABS_LO12_NC = 278 |
| 110 | pkg debug/elf, const R_AARCH64_LDST8_ABS_LO12_NC R_AARCH64 |
| 111 | pkg debug/elf, const R_AARCH64_LD_PREL_LO19 = 273 |
| 112 | pkg debug/elf, const R_AARCH64_LD_PREL_LO19 R_AARCH64 |
| 113 | pkg debug/elf, const R_AARCH64_MOVW_SABS_G0 = 270 |
| 114 | pkg debug/elf, const R_AARCH64_MOVW_SABS_G0 R_AARCH64 |
| 115 | pkg debug/elf, const R_AARCH64_MOVW_SABS_G1 = 271 |
| 116 | pkg debug/elf, const R_AARCH64_MOVW_SABS_G1 R_AARCH64 |
| 117 | pkg debug/elf, const R_AARCH64_MOVW_SABS_G2 = 272 |
| 118 | pkg debug/elf, const R_AARCH64_MOVW_SABS_G2 R_AARCH64 |
| 119 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G0 = 263 |
| 120 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G0 R_AARCH64 |
| 121 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G0_NC = 264 |
| 122 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G0_NC R_AARCH64 |
| 123 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G1 = 265 |
| 124 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G1 R_AARCH64 |
| 125 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G1_NC = 266 |
| 126 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G1_NC R_AARCH64 |
| 127 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G2 = 267 |
| 128 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G2 R_AARCH64 |
| 129 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G2_NC = 268 |
| 130 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G2_NC R_AARCH64 |
| 131 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G3 = 269 |
| 132 | pkg debug/elf, const R_AARCH64_MOVW_UABS_G3 R_AARCH64 |
| 133 | pkg debug/elf, const R_AARCH64_NONE = 0 |
| 134 | pkg debug/elf, const R_AARCH64_NONE R_AARCH64 |
| 135 | pkg debug/elf, const R_AARCH64_NULL = 256 |
| 136 | pkg debug/elf, const R_AARCH64_NULL R_AARCH64 |
| 137 | pkg debug/elf, const R_AARCH64_P32_ABS16 = 2 |
| 138 | pkg debug/elf, const R_AARCH64_P32_ABS16 R_AARCH64 |
| 139 | pkg debug/elf, const R_AARCH64_P32_ABS32 = 1 |
| 140 | pkg debug/elf, const R_AARCH64_P32_ABS32 R_AARCH64 |
| 141 | pkg debug/elf, const R_AARCH64_P32_ADD_ABS_LO12_NC = 12 |
| 142 | pkg debug/elf, const R_AARCH64_P32_ADD_ABS_LO12_NC R_AARCH64 |
| 143 | pkg debug/elf, const R_AARCH64_P32_ADR_GOT_PAGE = 26 |
| 144 | pkg debug/elf, const R_AARCH64_P32_ADR_GOT_PAGE R_AARCH64 |
| 145 | pkg debug/elf, const R_AARCH64_P32_ADR_PREL_LO21 = 10 |
| 146 | pkg debug/elf, const R_AARCH64_P32_ADR_PREL_LO21 R_AARCH64 |
| 147 | pkg debug/elf, const R_AARCH64_P32_ADR_PREL_PG_HI21 = 11 |
| 148 | pkg debug/elf, const R_AARCH64_P32_ADR_PREL_PG_HI21 R_AARCH64 |
| 149 | pkg debug/elf, const R_AARCH64_P32_CALL26 = 21 |
| 150 | pkg debug/elf, const R_AARCH64_P32_CALL26 R_AARCH64 |
| 151 | pkg debug/elf, const R_AARCH64_P32_CONDBR19 = 19 |
| 152 | pkg debug/elf, const R_AARCH64_P32_CONDBR19 R_AARCH64 |
| 153 | pkg debug/elf, const R_AARCH64_P32_COPY = 180 |
| 154 | pkg debug/elf, const R_AARCH64_P32_COPY R_AARCH64 |
| 155 | pkg debug/elf, const R_AARCH64_P32_GLOB_DAT = 181 |
| 156 | pkg debug/elf, const R_AARCH64_P32_GLOB_DAT R_AARCH64 |
| 157 | pkg debug/elf, const R_AARCH64_P32_GOT_LD_PREL19 = 25 |
| 158 | pkg debug/elf, const R_AARCH64_P32_GOT_LD_PREL19 R_AARCH64 |
| 159 | pkg debug/elf, const R_AARCH64_P32_IRELATIVE = 188 |
| 160 | pkg debug/elf, const R_AARCH64_P32_IRELATIVE R_AARCH64 |
| 161 | pkg debug/elf, const R_AARCH64_P32_JUMP26 = 20 |
| 162 | pkg debug/elf, const R_AARCH64_P32_JUMP26 R_AARCH64 |
| 163 | pkg debug/elf, const R_AARCH64_P32_JUMP_SLOT = 182 |
| 164 | pkg debug/elf, const R_AARCH64_P32_JUMP_SLOT R_AARCH64 |
| 165 | pkg debug/elf, const R_AARCH64_P32_LD32_GOT_LO12_NC = 27 |
| 166 | pkg debug/elf, const R_AARCH64_P32_LD32_GOT_LO12_NC R_AARCH64 |
| 167 | pkg debug/elf, const R_AARCH64_P32_LDST128_ABS_LO12_NC = 17 |
| 168 | pkg debug/elf, const R_AARCH64_P32_LDST128_ABS_LO12_NC R_AARCH64 |
| 169 | pkg debug/elf, const R_AARCH64_P32_LDST16_ABS_LO12_NC = 14 |
| 170 | pkg debug/elf, const R_AARCH64_P32_LDST16_ABS_LO12_NC R_AARCH64 |
| 171 | pkg debug/elf, const R_AARCH64_P32_LDST32_ABS_LO12_NC = 15 |
| 172 | pkg debug/elf, const R_AARCH64_P32_LDST32_ABS_LO12_NC R_AARCH64 |
| 173 | pkg debug/elf, const R_AARCH64_P32_LDST64_ABS_LO12_NC = 16 |
| 174 | pkg debug/elf, const R_AARCH64_P32_LDST64_ABS_LO12_NC R_AARCH64 |
| 175 | pkg debug/elf, const R_AARCH64_P32_LDST8_ABS_LO12_NC = 13 |
| 176 | pkg debug/elf, const R_AARCH64_P32_LDST8_ABS_LO12_NC R_AARCH64 |
| 177 | pkg debug/elf, const R_AARCH64_P32_LD_PREL_LO19 = 9 |
| 178 | pkg debug/elf, const R_AARCH64_P32_LD_PREL_LO19 R_AARCH64 |
| 179 | pkg debug/elf, const R_AARCH64_P32_MOVW_SABS_G0 = 8 |
| 180 | pkg debug/elf, const R_AARCH64_P32_MOVW_SABS_G0 R_AARCH64 |
| 181 | pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0 = 5 |
| 182 | pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0 R_AARCH64 |
| 183 | pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0_NC = 6 |
| 184 | pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G0_NC R_AARCH64 |
| 185 | pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G1 = 7 |
| 186 | pkg debug/elf, const R_AARCH64_P32_MOVW_UABS_G1 R_AARCH64 |
| 187 | pkg debug/elf, const R_AARCH64_P32_PREL16 = 4 |
| 188 | pkg debug/elf, const R_AARCH64_P32_PREL16 R_AARCH64 |
| 189 | pkg debug/elf, const R_AARCH64_P32_PREL32 = 3 |
| 190 | pkg debug/elf, const R_AARCH64_P32_PREL32 R_AARCH64 |
| 191 | pkg debug/elf, const R_AARCH64_P32_RELATIVE = 183 |
| 192 | pkg debug/elf, const R_AARCH64_P32_RELATIVE R_AARCH64 |
| 193 | pkg debug/elf, const R_AARCH64_P32_TLSDESC = 187 |
| 194 | pkg debug/elf, const R_AARCH64_P32_TLSDESC R_AARCH64 |
| 195 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADD_LO12_NC = 126 |
| 196 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADD_LO12_NC R_AARCH64 |
| 197 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PAGE21 = 124 |
| 198 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PAGE21 R_AARCH64 |
| 199 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PREL21 = 123 |
| 200 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_ADR_PREL21 R_AARCH64 |
| 201 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_CALL = 127 |
| 202 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_CALL R_AARCH64 |
| 203 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD32_LO12_NC = 125 |
| 204 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD32_LO12_NC R_AARCH64 |
| 205 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD_PREL19 = 122 |
| 206 | pkg debug/elf, const R_AARCH64_P32_TLSDESC_LD_PREL19 R_AARCH64 |
| 207 | pkg debug/elf, const R_AARCH64_P32_TLSGD_ADD_LO12_NC = 82 |
| 208 | pkg debug/elf, const R_AARCH64_P32_TLSGD_ADD_LO12_NC R_AARCH64 |
| 209 | pkg debug/elf, const R_AARCH64_P32_TLSGD_ADR_PAGE21 = 81 |
| 210 | pkg debug/elf, const R_AARCH64_P32_TLSGD_ADR_PAGE21 R_AARCH64 |
| 211 | pkg debug/elf, const R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21 = 103 |
| 212 | pkg debug/elf, const R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21 R_AARCH64 |
| 213 | pkg debug/elf, const R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC = 104 |
| 214 | pkg debug/elf, const R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC R_AARCH64 |
| 215 | pkg debug/elf, const R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19 = 105 |
| 216 | pkg debug/elf, const R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19 R_AARCH64 |
| 217 | pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_HI12 = 109 |
| 218 | pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_HI12 R_AARCH64 |
| 219 | pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12 = 110 |
| 220 | pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12 R_AARCH64 |
| 221 | pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC = 111 |
| 222 | pkg debug/elf, const R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC R_AARCH64 |
| 223 | pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0 = 107 |
| 224 | pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0 R_AARCH64 |
| 225 | pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC = 108 |
| 226 | pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC R_AARCH64 |
| 227 | pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G1 = 106 |
| 228 | pkg debug/elf, const R_AARCH64_P32_TLSLE_MOVW_TPREL_G1 R_AARCH64 |
| 229 | pkg debug/elf, const R_AARCH64_P32_TLS_DTPMOD = 184 |
| 230 | pkg debug/elf, const R_AARCH64_P32_TLS_DTPMOD R_AARCH64 |
| 231 | pkg debug/elf, const R_AARCH64_P32_TLS_DTPREL = 185 |
| 232 | pkg debug/elf, const R_AARCH64_P32_TLS_DTPREL R_AARCH64 |
| 233 | pkg debug/elf, const R_AARCH64_P32_TLS_TPREL = 186 |
| 234 | pkg debug/elf, const R_AARCH64_P32_TLS_TPREL R_AARCH64 |
| 235 | pkg debug/elf, const R_AARCH64_P32_TSTBR14 = 18 |
| 236 | pkg debug/elf, const R_AARCH64_P32_TSTBR14 R_AARCH64 |
| 237 | pkg debug/elf, const R_AARCH64_PREL16 = 262 |
| 238 | pkg debug/elf, const R_AARCH64_PREL16 R_AARCH64 |
| 239 | pkg debug/elf, const R_AARCH64_PREL32 = 261 |
| 240 | pkg debug/elf, const R_AARCH64_PREL32 R_AARCH64 |
| 241 | pkg debug/elf, const R_AARCH64_PREL64 = 260 |
| 242 | pkg debug/elf, const R_AARCH64_PREL64 R_AARCH64 |
| 243 | pkg debug/elf, const R_AARCH64_RELATIVE = 1027 |
| 244 | pkg debug/elf, const R_AARCH64_RELATIVE R_AARCH64 |
| 245 | pkg debug/elf, const R_AARCH64_TLSDESC = 1031 |
| 246 | pkg debug/elf, const R_AARCH64_TLSDESC R_AARCH64 |
| 247 | pkg debug/elf, const R_AARCH64_TLSDESC_ADD = 568 |
| 248 | pkg debug/elf, const R_AARCH64_TLSDESC_ADD R_AARCH64 |
| 249 | pkg debug/elf, const R_AARCH64_TLSDESC_ADD_LO12_NC = 564 |
| 250 | pkg debug/elf, const R_AARCH64_TLSDESC_ADD_LO12_NC R_AARCH64 |
| 251 | pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PAGE21 = 562 |
| 252 | pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PAGE21 R_AARCH64 |
| 253 | pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PREL21 = 561 |
| 254 | pkg debug/elf, const R_AARCH64_TLSDESC_ADR_PREL21 R_AARCH64 |
| 255 | pkg debug/elf, const R_AARCH64_TLSDESC_CALL = 569 |
| 256 | pkg debug/elf, const R_AARCH64_TLSDESC_CALL R_AARCH64 |
| 257 | pkg debug/elf, const R_AARCH64_TLSDESC_LD64_LO12_NC = 563 |
| 258 | pkg debug/elf, const R_AARCH64_TLSDESC_LD64_LO12_NC R_AARCH64 |
| 259 | pkg debug/elf, const R_AARCH64_TLSDESC_LDR = 567 |
| 260 | pkg debug/elf, const R_AARCH64_TLSDESC_LDR R_AARCH64 |
| 261 | pkg debug/elf, const R_AARCH64_TLSDESC_LD_PREL19 = 560 |
| 262 | pkg debug/elf, const R_AARCH64_TLSDESC_LD_PREL19 R_AARCH64 |
| 263 | pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G0_NC = 566 |
| 264 | pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G0_NC R_AARCH64 |
| 265 | pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G1 = 565 |
| 266 | pkg debug/elf, const R_AARCH64_TLSDESC_OFF_G1 R_AARCH64 |
| 267 | pkg debug/elf, const R_AARCH64_TLSGD_ADD_LO12_NC = 514 |
| 268 | pkg debug/elf, const R_AARCH64_TLSGD_ADD_LO12_NC R_AARCH64 |
| 269 | pkg debug/elf, const R_AARCH64_TLSGD_ADR_PAGE21 = 513 |
| 270 | pkg debug/elf, const R_AARCH64_TLSGD_ADR_PAGE21 R_AARCH64 |
| 271 | pkg debug/elf, const R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 = 541 |
| 272 | pkg debug/elf, const R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 R_AARCH64 |
| 273 | pkg debug/elf, const R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC = 542 |
| 274 | pkg debug/elf, const R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC R_AARCH64 |
| 275 | pkg debug/elf, const R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 = 543 |
| 276 | pkg debug/elf, const R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 R_AARCH64 |
| 277 | pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC = 540 |
| 278 | pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC R_AARCH64 |
| 279 | pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 = 539 |
| 280 | pkg debug/elf, const R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 R_AARCH64 |
| 281 | pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_HI12 = 549 |
| 282 | pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_HI12 R_AARCH64 |
| 283 | pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12 = 550 |
| 284 | pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12 R_AARCH64 |
| 285 | pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12_NC = 551 |
| 286 | pkg debug/elf, const R_AARCH64_TLSLE_ADD_TPREL_LO12_NC R_AARCH64 |
| 287 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0 = 547 |
| 288 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0 R_AARCH64 |
| 289 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0_NC = 548 |
| 290 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G0_NC R_AARCH64 |
| 291 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1 = 545 |
| 292 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1 R_AARCH64 |
| 293 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1_NC = 546 |
| 294 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G1_NC R_AARCH64 |
| 295 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G2 = 544 |
| 296 | pkg debug/elf, const R_AARCH64_TLSLE_MOVW_TPREL_G2 R_AARCH64 |
| 297 | pkg debug/elf, const R_AARCH64_TLS_DTPMOD64 = 1028 |
| 298 | pkg debug/elf, const R_AARCH64_TLS_DTPMOD64 R_AARCH64 |
| 299 | pkg debug/elf, const R_AARCH64_TLS_DTPREL64 = 1029 |
| 300 | pkg debug/elf, const R_AARCH64_TLS_DTPREL64 R_AARCH64 |
| 301 | pkg debug/elf, const R_AARCH64_TLS_TPREL64 = 1030 |
| 302 | pkg debug/elf, const R_AARCH64_TLS_TPREL64 R_AARCH64 |
| 303 | pkg debug/elf, const R_AARCH64_TSTBR14 = 279 |
| 304 | pkg debug/elf, const R_AARCH64_TSTBR14 R_AARCH64 |
| 305 | pkg debug/elf, method (R_AARCH64) GoString() string |
| 306 | pkg debug/elf, method (R_AARCH64) String() string |
| 307 | pkg debug/elf, type R_AARCH64 int |
| 308 | |
| 309 | # CL 107530043 debug/elf: add (*File).DynamicSymbols, ErrNoSymbols, and tests for (*File).Symbols and (*File).DynamicSymbols, and formalize symbol order., Pietro Gagliardi <pietro10@mac.com> |
| 310 | pkg debug/elf, method (*File) DynamicSymbols() ([]Symbol, error) |
| 311 | pkg debug/elf, var ErrNoSymbols error |
| 312 | |
| 313 | # CL 106460044 debug/plan9obj, cmd/addr2line: on Plan 9 use a.out header, Aram Hăvărneanu <aram@mgk.ro> |
| 314 | pkg debug/plan9obj, type FileHeader struct, HdrSize uint64 |
| 315 | pkg debug/plan9obj, type FileHeader struct, LoadAddress uint64 |
| 316 | |
| 317 | # CL 122960043 encoding/xml: add InputOffset method to Decoder, Russ Cox <rsc@golang.org> |
| 318 | pkg encoding/xml, method (*Decoder) InputOffset() int64 |
| 319 | |
| 320 | # CL 124940043 cmd/go, go/build: implement import comment checking, Russ Cox <rsc@golang.org> |
| 321 | pkg go/build, const ImportComment = 4 |
| 322 | pkg go/build, const ImportComment ImportMode |
| 323 | pkg go/build, type Package struct, ImportComment string |
| 324 | |
| 325 | # CL 155050043 go/build: Return MultiplePackageError on importing a dir containing multiple packages, Jens Frederich <jfrederich@gmail.com> |
| 326 | pkg go/build, method (*MultiplePackageError) Error() string |
| 327 | pkg go/build, type MultiplePackageError struct |
| 328 | pkg go/build, type MultiplePackageError struct, Dir string |
| 329 | pkg go/build, type MultiplePackageError struct, Files []string |
| 330 | pkg go/build, type MultiplePackageError struct, Packages []string |
| 331 | |
| 332 | # CL 135110044 go/token: implement PositionFor accessors, Robert Griesemer <gri@golang.org> |
| 333 | pkg go/token, method (*File) PositionFor(Pos, bool) Position |
| 334 | pkg go/token, method (*FileSet) PositionFor(Pos, bool) Position |
| 335 | |
| 336 | # CL 109000049 image: add RGBAAt, Gray16At, etc., ChaiShushan <chaishushan@gmail.com> |
| 337 | pkg image, method (*Alpha) AlphaAt(int, int) color.Alpha |
| 338 | pkg image, method (*Alpha16) Alpha16At(int, int) color.Alpha16 |
| 339 | pkg image, method (*Gray) GrayAt(int, int) color.Gray |
| 340 | pkg image, method (*Gray16) Gray16At(int, int) color.Gray16 |
| 341 | pkg image, method (*NRGBA) NRGBAAt(int, int) color.NRGBA |
| 342 | pkg image, method (*NRGBA64) NRGBA64At(int, int) color.NRGBA64 |
| 343 | pkg image, method (*RGBA) RGBAAt(int, int) color.RGBA |
| 344 | pkg image, method (*RGBA64) RGBA64At(int, int) color.RGBA64 |
| 345 | pkg image, method (*YCbCr) YCbCrAt(int, int) color.YCbCr |
| 346 | |
| 347 | # CL 129190043 png: make the encoder configurable, Jeff R. Allen <jra@nella.org> |
| 348 | pkg image/png, const BestCompression = -3 |
| 349 | pkg image/png, const BestCompression CompressionLevel |
| 350 | pkg image/png, const BestSpeed = -2 |
| 351 | pkg image/png, const BestSpeed CompressionLevel |
| 352 | pkg image/png, const DefaultCompression = 0 |
| 353 | pkg image/png, const DefaultCompression CompressionLevel |
| 354 | pkg image/png, const NoCompression = -1 |
| 355 | pkg image/png, const NoCompression CompressionLevel |
| 356 | pkg image/png, method (*Encoder) Encode(io.Writer, image.Image) error |
| 357 | pkg image/png, type CompressionLevel int |
| 358 | pkg image/png, type Encoder struct |
| 359 | pkg image/png, type Encoder struct, CompressionLevel CompressionLevel |
| 360 | |
| 361 | # CL 101750048 math: implement Nextafter32, Robert Griesemer <gri@golang.org> |
| 362 | pkg math, func Nextafter32(float32, float32) float32 |
| 363 | |
| 364 | # CL 93550043 math/big: implement Rat.Float32, Robert Griesemer <gri@golang.org> |
| 365 | pkg math/big, method (*Rat) Float32() (float32, bool) |
| 366 | |
| 367 | # CL 76540043 net/http: add BasicAuth method to *http.Request, Kelsey Hightower <kelsey.hightower@gmail.com> |
| 368 | pkg net/http, method (*Request) BasicAuth() (string, string, bool) |
| 369 | |
| 370 | # CL 137940043 net/http: add Transport.DialTLS hook, Brad Fitzpatrick <bradfitz@golang.org> |
| 371 | pkg net/http, type Transport struct, DialTLS func(string, string) (net.Conn, error) |
| 372 | |
| 373 | # CL 132750043 net/http/httputil: Pass a Logger to ReverseProxy, allowing the user to control logging., Mark Theunissen <mark.theunissen@gmail.com> |
| 374 | pkg net/http/httputil, type ReverseProxy struct, ErrorLog *log.Logger |
| 375 | |
| 376 | # CL 148370043 os, syscall: add Unsetenv, Brad Fitzpatrick <bradfitz@golang.org> |
| 377 | pkg os, func Unsetenv(string) error |
| 378 | pkg syscall, func Unsetenv(string) error |
| 379 | |
| 380 | # CL 144020043 reflect: add Type.Comparable, Russ Cox <rsc@golang.org> |
| 381 | pkg reflect, type Type interface, Comparable() bool |
| 382 | |
| 383 | # CL 153670043 runtime: add PauseEnd array to MemStats and GCStats, Jens Frederich <jfrederich@gmail.com> |
| 384 | pkg runtime, type MemStats struct, PauseEnd [256]uint64 |
| 385 | pkg runtime/debug, type GCStats struct, PauseEnd []time.Time |
| 386 | |
| 387 | # CL 136710045 sync/atomic: add Value, Dmitriy Vyukov <dvyukov@google.com> |
| 388 | pkg sync/atomic, method (*Value) Load() interface{} |
| 389 | pkg sync/atomic, method (*Value) Store(interface{}) |
| 390 | pkg sync/atomic, type Value struct |
| 391 | |
| 392 | # CL 126190043 syscall: support UID/GID map files for Linux user namespaces, Mrunal Patel <mrunalp@gmail.com> |
| 393 | pkg syscall (linux-386), type SysProcAttr struct, GidMappings []SysProcIDMap |
| 394 | pkg syscall (linux-386), type SysProcAttr struct, UidMappings []SysProcIDMap |
| 395 | pkg syscall (linux-386), type SysProcIDMap struct |
| 396 | pkg syscall (linux-386), type SysProcIDMap struct, ContainerID int |
| 397 | pkg syscall (linux-386), type SysProcIDMap struct, HostID int |
| 398 | pkg syscall (linux-386), type SysProcIDMap struct, Size int |
| 399 | pkg syscall (linux-386-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap |
| 400 | pkg syscall (linux-386-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap |
| 401 | pkg syscall (linux-386-cgo), type SysProcIDMap struct |
| 402 | pkg syscall (linux-386-cgo), type SysProcIDMap struct, ContainerID int |
| 403 | pkg syscall (linux-386-cgo), type SysProcIDMap struct, HostID int |
| 404 | pkg syscall (linux-386-cgo), type SysProcIDMap struct, Size int |
| 405 | pkg syscall (linux-amd64), type SysProcAttr struct, GidMappings []SysProcIDMap |
| 406 | pkg syscall (linux-amd64), type SysProcAttr struct, UidMappings []SysProcIDMap |
| 407 | pkg syscall (linux-amd64), type SysProcIDMap struct |
| 408 | pkg syscall (linux-amd64), type SysProcIDMap struct, ContainerID int |
| 409 | pkg syscall (linux-amd64), type SysProcIDMap struct, HostID int |
| 410 | pkg syscall (linux-amd64), type SysProcIDMap struct, Size int |
| 411 | pkg syscall (linux-amd64-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap |
| 412 | pkg syscall (linux-amd64-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap |
| 413 | pkg syscall (linux-amd64-cgo), type SysProcIDMap struct |
| 414 | pkg syscall (linux-amd64-cgo), type SysProcIDMap struct, ContainerID int |
| 415 | pkg syscall (linux-amd64-cgo), type SysProcIDMap struct, HostID int |
| 416 | pkg syscall (linux-amd64-cgo), type SysProcIDMap struct, Size int |
| 417 | pkg syscall (linux-arm), type SysProcAttr struct, GidMappings []SysProcIDMap |
| 418 | pkg syscall (linux-arm), type SysProcAttr struct, UidMappings []SysProcIDMap |
| 419 | pkg syscall (linux-arm), type SysProcIDMap struct |
| 420 | pkg syscall (linux-arm), type SysProcIDMap struct, ContainerID int |
| 421 | pkg syscall (linux-arm), type SysProcIDMap struct, HostID int |
| 422 | pkg syscall (linux-arm), type SysProcIDMap struct, Size int |
| 423 | pkg syscall (linux-arm-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap |
| 424 | pkg syscall (linux-arm-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap |
| 425 | pkg syscall (linux-arm-cgo), type SysProcIDMap struct |
| 426 | pkg syscall (linux-arm-cgo), type SysProcIDMap struct, ContainerID int |
| 427 | pkg syscall (linux-arm-cgo), type SysProcIDMap struct, HostID int |
| 428 | pkg syscall (linux-arm-cgo), type SysProcIDMap struct, Size int |
| 429 | |
| 430 | # CL 122200043 net: fix CNAME resolving on Windows, Egon Elbre <egonelbre@gmail.com> |
| 431 | pkg syscall (windows-386), const DNS_INFO_NO_RECORDS = 9501 |
| 432 | pkg syscall (windows-386), const DNS_INFO_NO_RECORDS ideal-int |
| 433 | pkg syscall (windows-386), const DnsSectionAdditional = 3 |
| 434 | pkg syscall (windows-386), const DnsSectionAdditional ideal-int |
| 435 | pkg syscall (windows-386), const DnsSectionAnswer = 1 |
| 436 | pkg syscall (windows-386), const DnsSectionAnswer ideal-int |
| 437 | pkg syscall (windows-386), const DnsSectionAuthority = 2 |
| 438 | pkg syscall (windows-386), const DnsSectionAuthority ideal-int |
| 439 | pkg syscall (windows-386), const DnsSectionQuestion = 0 |
| 440 | pkg syscall (windows-386), const DnsSectionQuestion ideal-int |
| 441 | pkg syscall (windows-386), func DnsNameCompare(*uint16, *uint16) bool |
| 442 | pkg syscall (windows-amd64), const DNS_INFO_NO_RECORDS = 9501 |
| 443 | pkg syscall (windows-amd64), const DNS_INFO_NO_RECORDS ideal-int |
| 444 | pkg syscall (windows-amd64), const DnsSectionAdditional = 3 |
| 445 | pkg syscall (windows-amd64), const DnsSectionAdditional ideal-int |
| 446 | pkg syscall (windows-amd64), const DnsSectionAnswer = 1 |
| 447 | pkg syscall (windows-amd64), const DnsSectionAnswer ideal-int |
| 448 | pkg syscall (windows-amd64), const DnsSectionAuthority = 2 |
| 449 | pkg syscall (windows-amd64), const DnsSectionAuthority ideal-int |
| 450 | pkg syscall (windows-amd64), const DnsSectionQuestion = 0 |
| 451 | pkg syscall (windows-amd64), const DnsSectionQuestion ideal-int |
| 452 | pkg syscall (windows-amd64), func DnsNameCompare(*uint16, *uint16) bool |
| 453 | |
| 454 | # CL 86160044 os: Implement symlink support for Windows, Michael Fraenkel <michael.fraenkel@gmail.com> |
| 455 | pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD = 1314 |
| 456 | pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD Errno |
| 457 | pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD = 1314 |
| 458 | pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD Errno |
| 459 | |
| 460 | # CL 86160044 os: Implement symlink support for Windows, Michael Fraenkel <michael.fraenkel@gmail.com> |
| 461 | pkg syscall (windows-386), const FILE_ATTRIBUTE_REPARSE_POINT = 1024 |
| 462 | pkg syscall (windows-386), const FILE_ATTRIBUTE_REPARSE_POINT ideal-int |
| 463 | pkg syscall (windows-386), const FILE_FLAG_OPEN_REPARSE_POINT = 2097152 |
| 464 | pkg syscall (windows-386), const FILE_FLAG_OPEN_REPARSE_POINT ideal-int |
| 465 | pkg syscall (windows-386), const FSCTL_GET_REPARSE_POINT = 589992 |
| 466 | pkg syscall (windows-386), const FSCTL_GET_REPARSE_POINT ideal-int |
| 467 | pkg syscall (windows-386), const IO_REPARSE_TAG_SYMLINK = 2684354572 |
| 468 | pkg syscall (windows-386), const IO_REPARSE_TAG_SYMLINK ideal-int |
| 469 | pkg syscall (windows-386), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16384 |
| 470 | pkg syscall (windows-386), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE ideal-int |
| 471 | pkg syscall (windows-386), const SYMBOLIC_LINK_FLAG_DIRECTORY = 1 |
| 472 | pkg syscall (windows-386), const SYMBOLIC_LINK_FLAG_DIRECTORY ideal-int |
| 473 | pkg syscall (windows-386), func CreateHardLink(*uint16, *uint16, uintptr) error |
| 474 | pkg syscall (windows-386), func CreateSymbolicLink(*uint16, *uint16, uint32) error |
| 475 | pkg syscall (windows-386), func DeviceIoControl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped) error |
| 476 | pkg syscall (windows-386), func LoadCreateSymbolicLink() error |
| 477 | pkg syscall (windows-amd64), const FILE_ATTRIBUTE_REPARSE_POINT = 1024 |
| 478 | pkg syscall (windows-amd64), const FILE_ATTRIBUTE_REPARSE_POINT ideal-int |
| 479 | pkg syscall (windows-amd64), const FILE_FLAG_OPEN_REPARSE_POINT = 2097152 |
| 480 | pkg syscall (windows-amd64), const FILE_FLAG_OPEN_REPARSE_POINT ideal-int |
| 481 | pkg syscall (windows-amd64), const FSCTL_GET_REPARSE_POINT = 589992 |
| 482 | pkg syscall (windows-amd64), const FSCTL_GET_REPARSE_POINT ideal-int |
| 483 | pkg syscall (windows-amd64), const IO_REPARSE_TAG_SYMLINK = 2684354572 |
| 484 | pkg syscall (windows-amd64), const IO_REPARSE_TAG_SYMLINK ideal-int |
| 485 | pkg syscall (windows-amd64), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16384 |
| 486 | pkg syscall (windows-amd64), const MAXIMUM_REPARSE_DATA_BUFFER_SIZE ideal-int |
| 487 | pkg syscall (windows-amd64), const SYMBOLIC_LINK_FLAG_DIRECTORY = 1 |
| 488 | pkg syscall (windows-amd64), const SYMBOLIC_LINK_FLAG_DIRECTORY ideal-int |
| 489 | pkg syscall (windows-amd64), func CreateHardLink(*uint16, *uint16, uintptr) error |
| 490 | pkg syscall (windows-amd64), func CreateSymbolicLink(*uint16, *uint16, uint32) error |
| 491 | pkg syscall (windows-amd64), func DeviceIoControl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped) error |
| 492 | pkg syscall (windows-amd64), func LoadCreateSymbolicLink() error |
| 493 | |
| 494 | # CL 149510043 net: disable SIO_UDP_CONNRESET behavior on windows., Ron Hashimoto <mail@h2so5.net> |
| 495 | pkg syscall (windows-386), const SIO_UDP_CONNRESET = 2550136844 |
| 496 | pkg syscall (windows-386), const SIO_UDP_CONNRESET ideal-int |
| 497 | pkg syscall (windows-amd64), const SIO_UDP_CONNRESET = 2550136844 |
| 498 | pkg syscall (windows-amd64), const SIO_UDP_CONNRESET ideal-int |
| 499 | |
| 500 | # CL 102320044 syscall: implement syscall.Getppid() on Windows, Alan Shreve <alan@inconshreveable.com> |
| 501 | pkg syscall (windows-386), const TH32CS_INHERIT = 2147483648 |
| 502 | pkg syscall (windows-386), const TH32CS_INHERIT ideal-int |
| 503 | pkg syscall (windows-386), const TH32CS_SNAPALL = 15 |
| 504 | pkg syscall (windows-386), const TH32CS_SNAPALL ideal-int |
| 505 | pkg syscall (windows-386), const TH32CS_SNAPHEAPLIST = 1 |
| 506 | pkg syscall (windows-386), const TH32CS_SNAPHEAPLIST ideal-int |
| 507 | pkg syscall (windows-386), const TH32CS_SNAPMODULE = 8 |
| 508 | pkg syscall (windows-386), const TH32CS_SNAPMODULE ideal-int |
| 509 | pkg syscall (windows-386), const TH32CS_SNAPMODULE32 = 16 |
| 510 | pkg syscall (windows-386), const TH32CS_SNAPMODULE32 ideal-int |
| 511 | pkg syscall (windows-386), const TH32CS_SNAPPROCESS = 2 |
| 512 | pkg syscall (windows-386), const TH32CS_SNAPPROCESS ideal-int |
| 513 | pkg syscall (windows-386), const TH32CS_SNAPTHREAD = 4 |
| 514 | pkg syscall (windows-386), const TH32CS_SNAPTHREAD ideal-int |
| 515 | pkg syscall (windows-386), func CreateToolhelp32Snapshot(uint32, uint32) (Handle, error) |
| 516 | pkg syscall (windows-386), func Process32First(Handle, *ProcessEntry32) error |
| 517 | pkg syscall (windows-386), func Process32Next(Handle, *ProcessEntry32) error |
| 518 | pkg syscall (windows-386), type ProcessEntry32 struct |
| 519 | pkg syscall (windows-386), type ProcessEntry32 struct, DefaultHeapID uintptr |
| 520 | pkg syscall (windows-386), type ProcessEntry32 struct, ExeFile [260]uint16 |
| 521 | pkg syscall (windows-386), type ProcessEntry32 struct, Flags uint32 |
| 522 | pkg syscall (windows-386), type ProcessEntry32 struct, ModuleID uint32 |
| 523 | pkg syscall (windows-386), type ProcessEntry32 struct, ParentProcessID uint32 |
| 524 | pkg syscall (windows-386), type ProcessEntry32 struct, PriClassBase int32 |
| 525 | pkg syscall (windows-386), type ProcessEntry32 struct, ProcessID uint32 |
| 526 | pkg syscall (windows-386), type ProcessEntry32 struct, Size uint32 |
| 527 | pkg syscall (windows-386), type ProcessEntry32 struct, Threads uint32 |
| 528 | pkg syscall (windows-386), type ProcessEntry32 struct, Usage uint32 |
| 529 | pkg syscall (windows-amd64), const TH32CS_INHERIT = 2147483648 |
| 530 | pkg syscall (windows-amd64), const TH32CS_INHERIT ideal-int |
| 531 | pkg syscall (windows-amd64), const TH32CS_SNAPALL = 15 |
| 532 | pkg syscall (windows-amd64), const TH32CS_SNAPALL ideal-int |
| 533 | pkg syscall (windows-amd64), const TH32CS_SNAPHEAPLIST = 1 |
| 534 | pkg syscall (windows-amd64), const TH32CS_SNAPHEAPLIST ideal-int |
| 535 | pkg syscall (windows-amd64), const TH32CS_SNAPMODULE = 8 |
| 536 | pkg syscall (windows-amd64), const TH32CS_SNAPMODULE ideal-int |
| 537 | pkg syscall (windows-amd64), const TH32CS_SNAPMODULE32 = 16 |
| 538 | pkg syscall (windows-amd64), const TH32CS_SNAPMODULE32 ideal-int |
| 539 | pkg syscall (windows-amd64), const TH32CS_SNAPPROCESS = 2 |
| 540 | pkg syscall (windows-amd64), const TH32CS_SNAPPROCESS ideal-int |
| 541 | pkg syscall (windows-amd64), const TH32CS_SNAPTHREAD = 4 |
| 542 | pkg syscall (windows-amd64), const TH32CS_SNAPTHREAD ideal-int |
| 543 | pkg syscall (windows-amd64), func CreateToolhelp32Snapshot(uint32, uint32) (Handle, error) |
| 544 | pkg syscall (windows-amd64), func Process32First(Handle, *ProcessEntry32) error |
| 545 | pkg syscall (windows-amd64), func Process32Next(Handle, *ProcessEntry32) error |
| 546 | pkg syscall (windows-amd64), type ProcessEntry32 struct |
| 547 | pkg syscall (windows-amd64), type ProcessEntry32 struct, DefaultHeapID uintptr |
| 548 | pkg syscall (windows-amd64), type ProcessEntry32 struct, ExeFile [260]uint16 |
| 549 | pkg syscall (windows-amd64), type ProcessEntry32 struct, Flags uint32 |
| 550 | pkg syscall (windows-amd64), type ProcessEntry32 struct, ModuleID uint32 |
| 551 | pkg syscall (windows-amd64), type ProcessEntry32 struct, ParentProcessID uint32 |
| 552 | pkg syscall (windows-amd64), type ProcessEntry32 struct, PriClassBase int32 |
| 553 | pkg syscall (windows-amd64), type ProcessEntry32 struct, ProcessID uint32 |
| 554 | pkg syscall (windows-amd64), type ProcessEntry32 struct, Size uint32 |
| 555 | pkg syscall (windows-amd64), type ProcessEntry32 struct, Threads uint32 |
| 556 | pkg syscall (windows-amd64), type ProcessEntry32 struct, Usage uint32 |
| 557 | |
| 558 | # CL 127740043 os: make SameFile handle paths like c:a.txt properly, Alex Brainman <alex.brainman@gmail.com> |
| 559 | pkg syscall (windows-386), func FullPath(string) (string, error) |
| 560 | pkg syscall (windows-amd64), func FullPath(string) (string, error) |
| 561 | |
| 562 | # CL 98150043 testing: add Coverage function, Russ Cox <rsc@golang.org> |
| 563 | pkg testing, func Coverage() float64 |
| 564 | |
| 565 | # CL 148770043 cmd/go, testing: add TestMain support, Russ Cox <rsc@golang.org> |
| 566 | pkg testing, func MainStart(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample) *M |
| 567 | pkg testing, method (*M) Run() int |
| 568 | pkg testing, type M struct |
| 569 | |
| 570 | # CL 108030044 text/scanner: provide facility for custom identifiers, Robert Griesemer <gri@golang.org> |
| 571 | pkg text/scanner, type Scanner struct, IsIdentRune func(int32, int) bool |
| 572 | |
| 573 | # CL 130620043 text/template: add back pointer to Nodes for better error generation, Rob Pike <r@golang.org> |
| 574 | pkg text/template/parse, type DotNode struct, embedded NodeType |
| 575 | pkg text/template/parse, type NilNode struct, embedded NodeType |
| 576 | pkg text/template/parse, method (*BranchNode) Copy() Node |
| 577 | pkg text/template/parse, method (*IdentifierNode) SetTree(*Tree) *IdentifierNode |
| 578 | pkg html/template, type Error struct, Node parse.Node |
| 579 | |
| 580 | # CL 127470043 unicode: strconv: regexp: Upgrade to Unicode 7.0.0., Marcel van Lohuizen <mpvl@golang.org> |
| 581 | pkg unicode, const Version = "7.0.0" |
| 582 | pkg unicode, var Bassa_Vah *RangeTable |
| 583 | pkg unicode, var Caucasian_Albanian *RangeTable |
| 584 | pkg unicode, var Duployan *RangeTable |
| 585 | pkg unicode, var Elbasan *RangeTable |
| 586 | pkg unicode, var Grantha *RangeTable |
| 587 | pkg unicode, var Khojki *RangeTable |
| 588 | pkg unicode, var Khudawadi *RangeTable |
| 589 | pkg unicode, var Linear_A *RangeTable |
| 590 | pkg unicode, var Mahajani *RangeTable |
| 591 | pkg unicode, var Manichaean *RangeTable |
| 592 | pkg unicode, var Mende_Kikakui *RangeTable |
| 593 | pkg unicode, var Modi *RangeTable |
| 594 | pkg unicode, var Mro *RangeTable |
| 595 | pkg unicode, var Nabataean *RangeTable |
| 596 | pkg unicode, var Old_North_Arabian *RangeTable |
| 597 | pkg unicode, var Old_Permic *RangeTable |
| 598 | pkg unicode, var Pahawh_Hmong *RangeTable |
| 599 | pkg unicode, var Palmyrene *RangeTable |
| 600 | pkg unicode, var Pau_Cin_Hau *RangeTable |
| 601 | pkg unicode, var Psalter_Pahlavi *RangeTable |
| 602 | pkg unicode, var Siddham *RangeTable |
| 603 | pkg unicode, var Tirhuta *RangeTable |
| 604 | pkg unicode, var Warang_Citi *RangeTable |