go1.4.txt 34 KB

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